Skip to content

Commit

Permalink
Item13531: don't cache webfilters in persist. perl
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDaum committed Jul 17, 2015
1 parent 16edc70 commit 24283ca
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion data/System/FlexWebListExamples.txt
@@ -1,4 +1,4 @@
%META:TOPICINFO{author="ProjectContributor" date="1411736309" format="1.1" version="1"}%
%META:TOPICINFO{author="ProjectContributor" date="1437150802" format="1.1" version="1"}%
%META:TOPICPARENT{name="FlexWebListPlugin"}%
---+!! %TOPIC%

Expand Down
5 changes: 3 additions & 2 deletions data/System/FlexWebListPlugin.txt
@@ -1,4 +1,4 @@
%META:TOPICINFO{author="ProjectContributor" date="1411736309" format="1.1" version="1"}%
%META:TOPICINFO{author="ProjectContributor" date="1437150802" format="1.1" version="1"}%
---+!! <nop>%TOPIC%
%TOC%

Expand Down Expand Up @@ -144,11 +144,12 @@ See FlexWebListExamples and FlexWebListTree.
-->

| Plugin Author: | Foswiki:Main.MichaelDaum |
| Copyright &copy;: | 2006-2014, Michael Daum http://michaeldaumconsulting.com |
| Copyright &copy;: | 2006-2015, Michael Daum http://michaeldaumconsulting.com |
| License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | &nbsp; |
| 17 Jul 2015: | more caching issues fixed |
| 26 Sep 2014: | fixed caching issue when using Foswiki:Extensions/VirtualHostingContrib (Foswiki:Main/MaikGlatki) |
| 28 May 2014: | !TopicTitle defaults to web name (not !WebHome) if not set otherwise |
| 28 Apr 2014: | added support for !TopicTitle |
Expand Down
2 changes: 1 addition & 1 deletion data/System/FlexWebListTree.txt
@@ -1,4 +1,4 @@
%META:TOPICINFO{author="ProjectContributor" date="1411736309" format="1.1" version="1"}%
%META:TOPICINFO{author="ProjectContributor" date="1437150802" format="1.1" version="1"}%
%META:TOPICPARENT{name="FlexWebListPlugin"}%
---+!! %TOPIC%

Expand Down
10 changes: 7 additions & 3 deletions lib/Foswiki/Plugins/FlexWebListPlugin.pm
@@ -1,6 +1,6 @@
# Plugin for Foswiki - The Free and Open Source Wiki, http://foswiki.org/
#
# Copyright (C) 2006-2014 Michael Daum http://michaeldaumconsulting.com
# Copyright (C) 2006-2015 Michael Daum http://michaeldaumconsulting.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand All @@ -17,8 +17,8 @@ package Foswiki::Plugins::FlexWebListPlugin;
use strict;
use warnings;

our $VERSION = '1.92';
our $RELEASE = '1.92';
our $VERSION = '1.93';
our $RELEASE = '1.93';
our $NO_PREFS_IN_TOPIC = 1;
our $SHORTDESCRIPTION = 'Flexible way to display hierarchical weblists';
our %cores = ();
Expand Down Expand Up @@ -46,6 +46,10 @@ sub initPlugin {
return 1;
}

sub finishPlugin {
%cores = ();
}

sub afterRenameHandler {
my ($oldWeb, $oldTopic, $oldAttachment, $newWeb, $newTopic, $newAttachment) = @_;

Expand Down
2 changes: 1 addition & 1 deletion lib/Foswiki/Plugins/FlexWebListPlugin/Core.pm
@@ -1,6 +1,6 @@
# Plugin for Foswiki - The Free and Open Source Wiki, http://foswiki.org/
#
# Copyright (C) 2006-2014 Michael Daum http://michaeldaumconsulting.com
# Copyright (C) 2006-2015 Michael Daum http://michaeldaumconsulting.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down

0 comments on commit 24283ca

Please sign in to comment.