diff --git a/ccm-cms/src/com/arsdigita/cms/ui/authoring/BasicItemForm.java b/ccm-cms/src/com/arsdigita/cms/ui/authoring/BasicItemForm.java index 658d99072..3afe0bacb 100755 --- a/ccm-cms/src/com/arsdigita/cms/ui/authoring/BasicItemForm.java +++ b/ccm-cms/src/com/arsdigita/cms/ui/authoring/BasicItemForm.java @@ -178,7 +178,7 @@ public abstract class BasicItemForm extends FormSection // title field to something different than 'title'. // This can nowbe done by overwriting the getTitleLabel() method. // (jensp 2011-01-28) - add(new Label(getTitleLabel())); +// add(new Label(getTitleLabel())); final TextField titleWidget = new TextField(new TrimmedStringParameter(TITLE)); titleWidget.setLabel(getTitleLabel()); titleWidget.setHint(getTitleHint()); @@ -195,7 +195,7 @@ public abstract class BasicItemForm extends FormSection // the name (or URL) field to something different than 'name (url)'. // This can now be accomplished by overwriting the getNameLabel() method. // (jensp 2011-01-28) - add(new Label(getNameLabel())); +// add(new Label(getNameLabel())); final TextField nameWidget = new TextField(new TrimmedStringParameter(NAME)); nameWidget.setLabel(getNameLabel()); nameWidget.setHint(getNameHint()); diff --git a/ccm-core/src/log4j.properties b/ccm-core/src/log4j.properties index 8e5aa9e2d..410ea406d 100755 --- a/ccm-core/src/log4j.properties +++ b/ccm-core/src/log4j.properties @@ -63,18 +63,17 @@ log4j.logger.com.arsdigita.web.CCMApplicationContextListener=INFO # Package templating # ================== # For debuging XSLT file resolution -log4j.logger.com.arsdigita.templating.PatternStylesheetResolver=DEBUG -log4j.logger.com.arsdigita.templating.PatternStylesheetResolver=DEBUG +#log4j.logger.com.arsdigita.templating.PatternStylesheetResolver=DEBUG # Package web # =========== # For debugging the general dispatcher process: #log4j.logger.com.arsdigita.web.BaseServlet=DEBUG -log4j.logger.com.arsdigita.web.CCMDispatcherServlet=DEBUG +#log4j.logger.com.arsdigita.web.CCMDispatcherServlet=DEBUG # For debugging the JSP file dispatcher #log4j.logger.com.arsdigita.web.ApplicationFileServlet=DEBUG #log4j.logger.com.arsdigita.web.DefaultApplicationFileResolver=DEBUG -log4j.logger.com.arsdigita.web.Web=DEBUG +#log4j.logger.com.arsdigita.web.Web=DEBUG diff --git a/ccm-themedirector/src/com/arsdigita/themedirector/ui/ThemeForm.java b/ccm-themedirector/src/com/arsdigita/themedirector/ui/ThemeForm.java index ad76209fe..0c8ba8d62 100755 --- a/ccm-themedirector/src/com/arsdigita/themedirector/ui/ThemeForm.java +++ b/ccm-themedirector/src/com/arsdigita/themedirector/ui/ThemeForm.java @@ -105,7 +105,7 @@ public class ThemeForm extends Form implements Cancellable, ThemeDirectorConstan m_theme = theme; // Initialize ThemeSelectionModel // Add the Title input field - add(new Label(GlobalizationUtil.globalize("theme.title"))); +// add(new Label(GlobalizationUtil.globalize("theme.title"))); m_title = new TextField(new StringParameter("title")); // Experimental. We are migrating the Label if a widget as part of the // widgets's xml properties. @@ -115,7 +115,7 @@ public class ThemeForm extends Form implements Cancellable, ThemeDirectorConstan m_title.setSize(40); add(m_title); - add(new Label(GlobalizationUtil.globalize("theme.description"))); +// add(new Label(GlobalizationUtil.globalize("theme.description"))); m_description = new TextArea(new StringParameter("description")); // Experimental, see above m_description.setLabel(GlobalizationUtil.globalize("theme.description")); @@ -125,7 +125,7 @@ public class ThemeForm extends Form implements Cancellable, ThemeDirectorConstan .globalize("theme.description_hint")); add(m_description); - add(new Label(GlobalizationUtil.globalize("theme.url"))); +// add(new Label(GlobalizationUtil.globalize("theme.url"))); m_url = new TextField(new StringParameter("url")); // Experimental, see above m_url.setLabel(GlobalizationUtil.globalize("theme.url"));