You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2018/03/25 21:16:07 UTC

[jspwiki] branch master updated (7dc525f -> 5150708)

This is an automated email from the ASF dual-hosted git repository.

juanpablo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git.


    from 7dc525f  Fixed all javadoc errors when building using java 8 - no version bump
     new 3e3b53c  Further fix on JSPWIKI-1064 - Link to non-existing page doesn't change if linked page is created, not all page caches where properly flushed.
     new 5150708  2.10.4-git-02

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                                                         | 8 +++++++-
 jspwiki-war/src/main/java/org/apache/wiki/Release.java            | 2 +-
 .../src/main/java/org/apache/wiki/render/RenderingManager.java    | 5 +++--
 3 files changed, 11 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
juanpablo@apache.org.

[jspwiki] 01/02: Further fix on JSPWIKI-1064 - Link to non-existing page doesn't change if linked page is created, not all page caches where properly flushed.

Posted by ju...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

juanpablo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git

commit 3e3b53cfc71687ec5c5d147f2091e6563da8f2e8
Author: juanpablo <ju...@apache.org>
AuthorDate: Sun Mar 25 23:15:31 2018 +0200

    Further fix on JSPWIKI-1064 - Link to non-existing page doesn't change if linked page is created, not all page caches where properly flushed.
---
 .../src/main/java/org/apache/wiki/render/RenderingManager.java       | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/jspwiki-war/src/main/java/org/apache/wiki/render/RenderingManager.java b/jspwiki-war/src/main/java/org/apache/wiki/render/RenderingManager.java
index aaa123a..6af59f1 100644
--- a/jspwiki-war/src/main/java/org/apache/wiki/render/RenderingManager.java
+++ b/jspwiki-war/src/main/java/org/apache/wiki/render/RenderingManager.java
@@ -101,8 +101,8 @@ public class RenderingManager implements WikiEventListener, InternalModule
     public static final String WYSIWYG_EDITOR_MODE = "WYSIWYG_EDITOR_MODE";
 
     /**
-     *  Variable name which tells whether plugins should be executed or not.  Value
-     *  can be either Boolean.TRUE or Boolean.FALSE.
+     *  Variable name which tells whether plugins should be executed or not.  Value can be either
+     *  {@code Boolean.TRUE} or {@code Boolean.FALSE}. While not set it's value is {@code null}
      */
     public static final String VAR_EXECUTE_PLUGINS = "_PluginContent.execute";
 
@@ -368,6 +368,7 @@ public class RenderingManager implements WikiEventListener, InternalModule
                             // as there is a new version of the page expire both plugin and pluginless versions of the old page
                             m_documentCache.remove( page + VERSION_DELIMITER + WikiPageProvider.LATEST_VERSION  + VERSION_DELIMITER + Boolean.FALSE );
                             m_documentCache.remove( page + VERSION_DELIMITER + WikiPageProvider.LATEST_VERSION  + VERSION_DELIMITER + Boolean.TRUE );
+                            m_documentCache.remove( page + VERSION_DELIMITER + WikiPageProvider.LATEST_VERSION  + VERSION_DELIMITER + null );
                         }
                     }
                 }

-- 
To stop receiving notification emails like this one, please contact
juanpablo@apache.org.

[jspwiki] 02/02: 2.10.4-git-02

Posted by ju...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

juanpablo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git

commit 51507083dbb2774d998de69049fe48f533efc1cb
Author: juanpablo <ju...@apache.org>
AuthorDate: Sun Mar 25 23:15:41 2018 +0200

    2.10.4-git-02
---
 ChangeLog                                              | 8 +++++++-
 jspwiki-war/src/main/java/org/apache/wiki/Release.java | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 13b9b5b..69a8fce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2018-03-25  Juan Pablo Santos (juanpablo AT apache DOT org)
+
+       * 2.10.4-git-02
+
+       * Further fix on JSPWIKI-1064 - Link to non-existing page doesn't change if
+         linked page is created, not all page caches where properly flushed.
+
 2018-03-04  Juan Pablo Santos (juanpablo AT apache DOT org)
 
        * Fixed all javadoc errors when building using java 8 - no version bump
@@ -10,7 +17,6 @@
          the ADMIN page, fixing javascript bugs in user management page
          (reported by Harry)
 
-
 2018-02-03  Juan Pablo Santos (juanpablo AT apache DOT org)
 
        * 2.10.3-git-48
diff --git a/jspwiki-war/src/main/java/org/apache/wiki/Release.java b/jspwiki-war/src/main/java/org/apache/wiki/Release.java
index 641b29d..77b6865 100644
--- a/jspwiki-war/src/main/java/org/apache/wiki/Release.java
+++ b/jspwiki-war/src/main/java/org/apache/wiki/Release.java
@@ -72,7 +72,7 @@ public final class Release {
      *  <p>
      *  If the build identifier is empty, it is not added.
      */
-    public static final String     BUILD         = "1";
+    public static final String     BUILD         = "2";
 
     /**
      *  This is the generic version string you should use when printing out the version.  It is of

-- 
To stop receiving notification emails like this one, please contact
juanpablo@apache.org.