Modified: incubator/jspwiki/trunk/doc/Compiling.txt
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/doc/Compiling.txt?rev=1237454&r1=1237453&r2=1237454&view=diff
==============================================================================
--- incubator/jspwiki/trunk/doc/Compiling.txt (original)
+++ incubator/jspwiki/trunk/doc/Compiling.txt Sun Jan 29 20:34:03 2012
@@ -57,7 +57,7 @@ To get JSPWiki build from within Eclipse
 Directory structure
 ===================
 
-'src' contains the source code (under org.apache.wiki).
+'src' contains the source code (under org/apache/wiki).
 
 'src/webdocs' contains all the files that are published in the final
 webapps directory, including all of the deployment files under

Modified: incubator/jspwiki/trunk/src/org/apache/wiki/Release.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/org/apache/wiki/Release.java?rev=1237454&r1=1237453&r2=1237454&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/org/apache/wiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/org/apache/wiki/Release.java Sun Jan 29 
20:34:03 2012
@@ -77,7 +77,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

Modified: 
incubator/jspwiki/trunk/src/org/apache/wiki/filters/ProfanityFilter.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/org/apache/wiki/filters/ProfanityFilter.java?rev=1237454&r1=1237453&r2=1237454&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/org/apache/wiki/filters/ProfanityFilter.java 
(original)
+++ incubator/jspwiki/trunk/src/org/apache/wiki/filters/ProfanityFilter.java 
Sun Jan 29 20:34:03 2012
@@ -35,7 +35,7 @@ import org.apache.wiki.WikiContext;
 /**
  *  This class is an example of how to have a simple filter.  It removes
  *  all nasty words located at <code>profanity.properties</code> file, inside 
- *  <code>org.apache.wiki/filters</code> package. The search of profanities
+ *  <code>org/apache/wiki/filters</code> package. The search of profanities
  *  is case unsensitive.
  *
  */
@@ -43,7 +43,7 @@ public class ProfanityFilter extends Bas
 {
     private static Logger     log = Logger.getLogger(ProfanityFilter.class);
     
-    private static final String PROPERTYFILE = 
"org.apache.wiki/filters/profanity.properties";
+    private static final String PROPERTYFILE = 
"org/apache/wiki/filters/profanity.properties";
     private static String[] c_profanities = new String[0];
     
     static 

Modified: incubator/jspwiki/trunk/src/org/apache/wiki/plugin/Denounce.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/org/apache/wiki/plugin/Denounce.java?rev=1237454&r1=1237453&r2=1237454&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/org/apache/wiki/plugin/Denounce.java (original)
+++ incubator/jspwiki/trunk/src/org/apache/wiki/plugin/Denounce.java Sun Jan 29 
20:34:03 2012
@@ -35,7 +35,7 @@ import javax.servlet.http.HttpServletReq
 
 /**
  *  Denounces a link by removing it from any search engine. 
- *  <br> The bots are listed in org.apache.wiki/plugin/denounce.properties.
+ *  <br> The bots are listed in org/apache/wiki/plugin/denounce.properties.
  *  
  *  <p>Parameters : </p>
  *  <ul>
@@ -54,7 +54,7 @@ public class Denounce implements WikiPlu
     /** Parameter name for setting the text.  Value is <tt>{@value}</tt>. */
     public static final String PARAM_TEXT = "text";
 
-    private static final String PROPERTYFILE = 
"org.apache.wiki/plugin/denounce.properties";
+    private static final String PROPERTYFILE = 
"org/apache/wiki/plugin/denounce.properties";
     private static final String PROP_AGENTPATTERN   = "denounce.agentpattern.";
     private static final String PROP_HOSTPATTERN    = "denounce.hostpattern.";
     private static final String PROP_REFERERPATTERN = 
"denounce.refererpattern.";


Reply via email to