You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2007/06/09 02:06:46 UTC

svn commit: r545665 - /roller/trunk/apps/weblogger/src/java/org/apache/roller/weblogger/ui/struts2/editor/WeblogConfigBean.java

Author: agilliland
Date: Fri Jun  8 17:06:45 2007
New Revision: 545665

URL: http://svn.apache.org/viewvc?view=rev&rev=545665
Log:
custom stylesheet path should not be part of weblog config bean because it cannot be changed via the weblog config.


Modified:
    roller/trunk/apps/weblogger/src/java/org/apache/roller/weblogger/ui/struts2/editor/WeblogConfigBean.java

Modified: roller/trunk/apps/weblogger/src/java/org/apache/roller/weblogger/ui/struts2/editor/WeblogConfigBean.java
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/src/java/org/apache/roller/weblogger/ui/struts2/editor/WeblogConfigBean.java?view=diff&rev=545665&r1=545664&r2=545665
==============================================================================
--- roller/trunk/apps/weblogger/src/java/org/apache/roller/weblogger/ui/struts2/editor/WeblogConfigBean.java (original)
+++ roller/trunk/apps/weblogger/src/java/org/apache/roller/weblogger/ui/struts2/editor/WeblogConfigBean.java Fri Jun  8 17:06:45 2007
@@ -57,7 +57,6 @@
     private boolean enableMultiLang = false;
     private boolean showAllLangs = true;
     private String pageModels = null;
-    private String customStylesheetPath = null;
     private String icon = null;
     private String about = null;
     
@@ -231,14 +230,6 @@
         this.pageModels = pageModels;
     }
     
-    public String getCustomStylesheetPath() {
-        return this.customStylesheetPath;
-    }
-    
-    public void setCustomStylesheetPath( String customStylesheetPath ) {
-        this.customStylesheetPath = customStylesheetPath;
-    }
-    
     public String getIcon() {
         return icon;
     }
@@ -321,7 +312,6 @@
         this.enableMultiLang = dataHolder.isEnableMultiLang();
         this.showAllLangs = dataHolder.isShowAllLangs();
         this.pageModels = dataHolder.getPageModels();
-        this.customStylesheetPath = dataHolder.getCustomStylesheetPath();
         setIcon(dataHolder.getIconPath());
         setAbout(dataHolder.getAbout());
         
@@ -359,7 +349,6 @@
         dataHolder.setEnableMultiLang(this.enableMultiLang);
         dataHolder.setShowAllLangs(this.showAllLangs);
         dataHolder.setPageModels(this.pageModels);
-        dataHolder.setCustomStylesheetPath(this.customStylesheetPath);
         dataHolder.setIconPath(getIcon());
         dataHolder.setAbout(getAbout());