Changeset 1908

Show
Ignore:
Timestamp:
2008-04-11 09:41:44 (4 months ago)
Author:
th-schwarz
Message:

rename of properties beginning with requestcycle to connector.*

Location:
FCKeditor.Java/branches/2.4
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/branches/2.4/java-core/src/main/java/net/fckeditor/handlers/RequestCycleHandler.java

    r1905 r1908  
    4444                 
    4545                // 1. try to instantiate the UserAction object 
    46                 String fqcn = PropertiesLoader.getProperty("requestcycle.userActionImpl"); 
     46                String fqcn = PropertiesLoader.getProperty("connector.userActionImpl"); 
    4747                if (fqcn == null) 
    4848                        logger.warn("No property found for UserAction implementation, any user action is disabled!"); 
     
    6060 
    6161                // 2. try to instantiate the UserPathBuilder object 
    62                 fqcn = PropertiesLoader.getProperty("requestcycle.userPathBuilderImpl"); 
     62                fqcn = PropertiesLoader.getProperty("connector.userPathBuilderImpl"); 
    6363                if (fqcn == null) 
    6464                        logger.warn("No property found for UserPathBuilder implementation, any user action is disabled!"); 
  • FCKeditor.Java/branches/2.4/java-demo/src/main/resources/fckeditor.properties

    r1905 r1908  
    1 requestcycle.userActionImpl=net.fckeditor.requestcycle.impl.UserActionImpl 
    2 requestcycle.userPathBuilderImpl=net.fckeditor.requestcycle.impl.UserPathBuilderImpl 
     1connector.userActionImpl=net.fckeditor.requestcycle.impl.UserActionImpl 
     2connector.userPathBuilderImpl=net.fckeditor.requestcycle.impl.UserPathBuilderImpl