Author: ehillenius
Date: Fri Apr 13 17:35:47 2007
New Revision: 528718

URL: http://svn.apache.org/viewvc?view=rev&rev=528718
Log:
org.apache.wicket.properties -> wicket.properties

Modified:
    
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java
    
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/IInitializer.java
    
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestListenerInterface.java
    
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java
    
incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/ApplicationMBean.java

Modified: 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java?view=diff&rev=528718&r1=528717&r2=528718
==============================================================================
--- 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java
 (original)
+++ 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java
 Fri Apr 13 17:35:47 2007
@@ -631,7 +631,7 @@
                {
                        // Load properties files used by all libraries
                        final Enumeration resources = 
getClass().getClassLoader().getResources(
-                                       "org.apache.wicket.properties");
+                                       "wicket.properties");
                        while (resources.hasMoreElements())
                        {
                                InputStream in = null;

Modified: 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/IInitializer.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/IInitializer.java?view=diff&rev=528718&r1=528717&r2=528718
==============================================================================
--- 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/IInitializer.java
 (original)
+++ 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/IInitializer.java
 Fri Apr 13 17:35:47 2007
@@ -32,7 +32,7 @@
  * they can be initialized lazily.
  * </p>
  * <p>
- * Initializers can be configured by having a org.apache.wicket.properties 
file in the
+ * Initializers can be configured by having a wicket.properties file in the
  * class path root, with property 'initializer=${initializer class name}'. You
  * can have one such properties per jar file, but the initializer that property
  * denotes can delegate to other initializers of that library.

Modified: 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestListenerInterface.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestListenerInterface.java?view=diff&rev=528718&r1=528717&r2=528718
==============================================================================
--- 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestListenerInterface.java
 (original)
+++ 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/RequestListenerInterface.java
 Fri Apr 13 17:35:47 2007
@@ -279,5 +279,7 @@
 
                // Save this interface method by the non-qualified class name
                interfaces.put(requestListenerInterface.getName(), 
requestListenerInterface);
+
+               log.info("registered listener interface " + this);
        }
 }

Modified: 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java?view=diff&rev=528718&r1=528717&r2=528718
==============================================================================
--- 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java
 (original)
+++ 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java
 Fri Apr 13 17:35:47 2007
@@ -18,7 +18,7 @@
 
 /**
  * Framework settings for retrieving and configuring framework settings.
- *
+ * 
  * @author Martijn Dashorst
  */
 public interface IFrameworkSettings
@@ -26,15 +26,16 @@
        /**
         * Gets the Wicket version. The Wicket version is in the same format as 
the
         * version element in the pom.xml file (project descriptor). The 
version is
-        * generated by maven in the build/release cycle and put in the 
org.apache.wicket.properties
-        * file located in the root folder of the Wicket jar.
+        * generated by maven in the build/release cycle and put in the
+        * wicket.properties file located in the root folder of the Wicket jar.
         * 
-        * The version usually follows one of the following formats: 
+        * The version usually follows one of the following formats:
         * <ul>
         * <li>major.minor[.bug] for stable versions. 1.1, 1.2, 1.2.1 are 
examples</li>
-        * <li>major.minor-state for development versions. 1.2-beta2, 
1.3-SNAPSHOT are examples</li>
+        * <li>major.minor-state for development versions. 1.2-beta2, 
1.3-SNAPSHOT
+        * are examples</li>
         * </ul>
-        *
+        * 
         * @return the Wicket version
         */
        public String getVersion();

Modified: 
incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/ApplicationMBean.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/ApplicationMBean.java?view=diff&rev=528718&r1=528717&r2=528718
==============================================================================
--- 
incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/ApplicationMBean.java
 (original)
+++ 
incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/ApplicationMBean.java
 Fri Apr 13 17:35:47 2007
@@ -46,7 +46,8 @@
        String getApplicationClass() throws IOException;
 
        /**
-        * The configuration type, either [EMAIL PROTECTED] 
org.apache.wicket.Application#DEVELOPMENT} or
+        * The configuration type, either
+        * [EMAIL PROTECTED] org.apache.wicket.Application#DEVELOPMENT} or
         * [EMAIL PROTECTED] Application#DEPLOYMENT}.
         * 
         * @return The configuration type
@@ -81,7 +82,7 @@
         * Gets the Wicket version. The Wicket version is in the same format as 
the
         * version element in the pom.xml file (project descriptor). The 
version is
         * generated by maven in the build/release cycle and put in the
-        * org.apache.wicket.properties file located in the root folder of the 
Wicket jar.
+        * wicket.properties file located in the root folder of the Wicket jar.
         * 
         * The version usually follows one of the following formats:
         * <ul>


Reply via email to