Author: julien(a)jboss.com
Date: 2007-02-27 12:44:10 -0500 (Tue, 27 Feb 2007)
New Revision: 6433
Modified:
trunk/build/ide/intellij/idea60/modules/core-admin/core-admin.iml
trunk/build/ide/intellij/idea60/modules/core/core.iml
trunk/core-admin/src/main/org/jboss/portal/core/portlet/management/actions/PropertyAction.java
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml
Log:
minor fixes after fattomahawk removal
Modified: trunk/build/ide/intellij/idea60/modules/core/core.iml
===================================================================
--- trunk/build/ide/intellij/idea60/modules/core/core.iml 2007-02-27 17:27:14 UTC (rev
6432)
+++ trunk/build/ide/intellij/idea60/modules/core/core.iml 2007-02-27 17:44:10 UTC (rev
6433)
@@ -176,15 +176,6 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root
url="jar://$MODULE_DIR$/../../../../../../thirdparty/apache-tomahawk/lib/tomahawk.jar!/"
/>
- </CLASSES>
- <JAVADOC />
- <SOURCES />
- </library>
- </orderEntry>
- <orderEntry type="module-library">
- <library>
- <CLASSES>
<root
url="jar://$MODULE_DIR$/../../../../../../thirdparty/apache-log4j/lib/log4j.jar!/"
/>
</CLASSES>
<JAVADOC />
Modified: trunk/build/ide/intellij/idea60/modules/core-admin/core-admin.iml
===================================================================
--- trunk/build/ide/intellij/idea60/modules/core-admin/core-admin.iml 2007-02-27 17:27:14
UTC (rev 6432)
+++ trunk/build/ide/intellij/idea60/modules/core-admin/core-admin.iml 2007-02-27 17:44:10
UTC (rev 6433)
@@ -65,15 +65,6 @@
</orderEntry>
<orderEntry type="module" module-name="faces" />
<orderEntry type="module" module-name="core" />
- <orderEntry type="module-library">
- <library>
- <CLASSES>
- <root
url="jar://$MODULE_DIR$/../../../../../../thirdparty/apache-tomahawk/lib/tomahawk.jar!/"
/>
- </CLASSES>
- <JAVADOC />
- <SOURCES />
- </library>
- </orderEntry>
<orderEntry type="module" module-name="identity" />
<orderEntry type="module" module-name="portlet" />
<orderEntry type="module" module-name="common" />
Modified:
trunk/core-admin/src/main/org/jboss/portal/core/portlet/management/actions/PropertyAction.java
===================================================================
---
trunk/core-admin/src/main/org/jboss/portal/core/portlet/management/actions/PropertyAction.java 2007-02-27
17:27:14 UTC (rev 6432)
+++
trunk/core-admin/src/main/org/jboss/portal/core/portlet/management/actions/PropertyAction.java 2007-02-27
17:44:10 UTC (rev 6433)
@@ -22,7 +22,6 @@
******************************************************************************/
package org.jboss.portal.core.portlet.management.actions;
-import org.apache.myfaces.component.html.ext.HtmlDataTable;
import org.jboss.portal.core.portlet.management.PortalObjectManagerBean;
import javax.faces.application.FacesMessage;
@@ -39,8 +38,6 @@
/** . */
private PortalObjectManagerBean pomgr;
- private HtmlDataTable propertyDataTable;
-
private String selectedProperty;
private String propertyValue;
@@ -73,16 +70,6 @@
this.selectedProperty = selectedProperty;
}
- public HtmlDataTable getPropertyDataTable()
- {
- return propertyDataTable;
- }
-
- public void setPropertyDataTable(HtmlDataTable propertyDataTable)
- {
- this.propertyDataTable = propertyDataTable;
- }
-
public String getPropertyValue()
{
return propertyValue;
@@ -110,15 +97,10 @@
public void selectProperty()
{
- String[] property = (String[])getPropertyDataTable().getRowData();
- selectedProperty = property[0];
- propertyValue = property[1];
}
public void removeProperty()
{
- String[] property = (String[])getPropertyDataTable().getRowData();
- getPortalObjectManager().getSelectedObject().setDeclaredProperty(property[0],
null);
}
public void updateProperty()
Modified: trunk/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml
===================================================================
--- trunk/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml 2007-02-27 17:27:14
UTC (rev 6432)
+++ trunk/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml 2007-02-27 17:44:10
UTC (rev 6433)
@@ -67,44 +67,6 @@
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
- <!-- Extensions Filter -->
- <filter>
- <filter-name>extensionsFilter</filter-name>
-
<filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
- <init-param>
- <description>Set the size limit for uploaded files.
- Format: 10 - 10 bytes
- 10k - 10 KB
- 10m - 10 MB
- 1g - 1 GB
- </description>
- <param-name>uploadMaxFileSize</param-name>
- <param-value>100m</param-value>
- </init-param>
- <init-param>
- <description>Set the threshold size - files
- below this limit are stored in memory, files above
- this limit are stored on disk.
-
- Format: 10 - 10 bytes
- 10k - 10 KB
- 10m - 10 MB
- 1g - 1 GB
- </description>
- <param-name>uploadThresholdSize</param-name>
- <param-value>100k</param-value>
- </init-param>
- <!-- <init-param>
- <description>Set the path where the intermediary files will be stored.
- </description>
- <param-name>uploadRepositoryPath</param-name>
- <param-value>/temp</param-value>
- </init-param>-->
- </filter>
- <filter-mapping>
- <filter-name>extensionsFilter</filter-name>
- <url-pattern>/faces/*</url-pattern>
- </filter-mapping>
<listener>
<listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
</listener>
Show replies by date