Search found 4580 matches

by Timbalu
Thu Feb 04, 2016 4:52 pm
Forum: Plugins
Topic: Contact form + Spamblock bayes
Replies: 45
Views: 134076

Re: Contact form + Spamblock bayes

Now we know: Don is a SPAMmer... :), since ix.dnsbl.manitu.net is a serious RBL by heise.de! A very trustable service here, over the pond! These S9y spamblock Plugins do not report this to any RBL, ... as far as I know (but maybe Uberspace listens on mail() somehow?).
by Timbalu
Thu Feb 04, 2016 2:25 pm
Forum: Plugins
Topic: major upgrade lightbox and usergallery plugins
Replies: 74
Views: 87677

Re: major upgrade lightbox and usergallery plugins

if (strpos($eventData, '.serendipity_BlahBlah') === false) { $this->addToCSS($eventData); } or if (strpos($eventData, '.serendipity_BlahBlah') === false) { $eventData .= 'fake example for the styles you wish to append'; } I normally do for 2.1 cases if (version_compare($serendipity['version'], '2.0...
by Timbalu
Thu Feb 04, 2016 12:11 pm
Forum: Development
Topic: Standardizing CSS generation in s9y
Replies: 2
Views: 14181

Re: Standardizing CSS generation in s9y

For me it does not make sense to push everything to streamed serendipity.css! There are special plugin cases, where we have little CSS only, which is easy to add, say append to the serendipity.css $eventData. In other more extended cases, this just blows up that file. Then a secondary css file added...
by Timbalu
Thu Feb 04, 2016 10:24 am
Forum: Plugins
Topic: major upgrade lightbox and usergallery plugins
Replies: 74
Views: 87677

Re: major upgrade lightbox and usergallery plugins

yellowled wrote:add it to master in /templates/default/style_fallback.css so that we can remove fixchrome.css from the plugin once 2.1 is released
No. We can't do this for compat. But we can write a condition for >= 2.1 to not use it.
by Timbalu
Wed Feb 03, 2016 4:57 pm
Forum: Plugins
Topic: major upgrade lightbox and usergallery plugins
Replies: 74
Views: 87677

Re: major upgrade lightbox and usergallery plugins

Great! Was this a matter of an updated webkit? Or does it even work with "older" webkit engined Browsers (lets say ~1 year old...)?
by Timbalu
Wed Feb 03, 2016 11:31 am
Forum: Plugins
Topic: major upgrade lightbox and usergallery plugins
Replies: 74
Views: 87677

Re: major upgrade lightbox and usergallery plugins

I cannot answer this, since it is something like before DOM, while DOM and after DOM manipulating. It expects something set or not set, to start working.
by Timbalu
Tue Feb 02, 2016 8:21 pm
Forum: Bugs
Topic: [serendipity_event_cal] no database entries available
Replies: 15
Views: 18555

Re: [serendipity_event_cal] no database entries available

It was an easy to use approach having it like this ... and remember, I only did that by request! ;-)
I see the issue with end of month. But fetching future events here takes a little more work and is woth some pennies. I am not sure I want to spend this....
by Timbalu
Tue Feb 02, 2016 8:07 pm
Forum: Development
Topic: Evidence of multiple categories selected?
Replies: 11
Views: 24032

Re: Evidence of multiple categories selected?

Don, the all categories link is set, when you use that option. But I found a style.css restriction which removes the view. In my template it looked like #contactform .serendipity_commentDirection, .category_link_all a { display: none; } Better check your template for something like this and remove ,...
by Timbalu
Tue Feb 02, 2016 7:33 pm
Forum: Development
Topic: Update notification
Replies: 13
Views: 28938

Re: Update notification

Fifth: Do what I did testwise.
Take what we have already and use it in a new plugin. Shall I paste that testwise to 2.1 plugins?
by Timbalu
Tue Feb 02, 2016 7:20 pm
Forum: Development
Topic: Evidence of multiple categories selected?
Replies: 11
Views: 24032

Re: Evidence of multiple categories selected?

and we will have to use this in the same function adding the "!isset($month)".

Code: Select all

    if ((isset($month) && !is_numeric($month)) || !isset($month)) {
        $month = date('m');
    }
by Timbalu
Tue Feb 02, 2016 7:06 pm
Forum: Development
Topic: Evidence of multiple categories selected?
Replies: 11
Views: 24032

Re: Evidence of multiple categories selected?

I also managed to re-add the "by week" archive (#serendipity_plugin_archives) option again. function serveArchives() { global $serendipity; $serendipity['view'] = 'archives'; $_args = locateHiddenVariables($serendipity['uriArguments']); + foreach ($_args AS $k => $v){ + if ($v[0] == 'W') {...
by Timbalu
Tue Feb 02, 2016 6:29 pm
Forum: Development
Topic: Evidence of multiple categories selected?
Replies: 11
Views: 24032

Re: Evidence of multiple categories selected?

Yes, but related. MultiAuthor is the serendipity_plugin_authors Plugin. Nothing broken.
If you acticate it for the frontend sidebar (before your removements in it), you are able to select entries by authors or multiAuthors, like suggested in the diffs.
by Timbalu
Tue Feb 02, 2016 5:17 pm
Forum: Development
Topic: Evidence of multiple categories selected?
Replies: 11
Views: 24032

Re: Evidence of multiple categories selected?

Thanks for comming up with that, Don! I also had in my mind that this removement commit https://github.com/s9y/Serendipity/commit/55ae435c898bfcff1a4722a34e25116188a1079c was at least, ... lets say "suspicious". Now I remembered to give it a try. Using the "old" Serendipity index...
by Timbalu
Mon Feb 01, 2016 3:46 pm
Forum: Generelles in Deutsch
Topic: Gruppenrechte im Backend
Replies: 41
Views: 17542

Re: Gruppenrechte im Backend

- Wenn ich ein normaler Redakteur bin sehe ich im Dashboard nur die Kommentare zu Einträgen, die ich selber erstellt habe. Alle Einträge, die ich sehe, kann ich bearbeiten. - Wenn ich ein Chefredakteur oder Admin bin, sehe ich im Dashboard die Kommentare zu allen Einträgen, egal von wem die stammen...
by Timbalu
Wed Jan 27, 2016 11:18 am
Forum: Generelles in Deutsch
Topic: Link List
Replies: 3
Views: 2519

Re: Link List

Das ist auch nicht ganz so einfach..., denn die Einstellungen werden grundsätzlich im sidebar plugin gemacht und dann vereinzelt per interner Übergabe an das event Plugin weitergereicht und auch dort noch als spezielle event config Einstellungen gespeichert. Sind das zwei separate Installationen? Ab...