[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Felix (FELIX) http://cwiki.apache.org/confluence/display/FELIX | |-Pages Added or Edited in This Space |-- Subprojects Release Status was last edited by sfrenot (06:42 AM). | http://cwiki.apache.org/confluence/display/FELIX/Subprojects+Release+Status Apache Directory ASN.1 Documentation (DIRxASN1) http://cwiki.apache.org/confluence/display/DIRxASN1 | |-Pages Added or Edited in This Space |-- Index was last edited by ersiner (02:03 PM). | http://cwiki.apache.org/confluence/display/DIRxASN1/Index Apache Directory SandBox (DIRxSBOX) http://cwiki.apache.org/confluence/display/DIRxSBOX | |-Pages Added or Edited in This Space |-- Index was last edited by ersiner (04:47 PM). | http://cwiki.apache.org/confluence/display/DIRxSBOX/Index Apache Geronimo v1.1 (GMOxDOC11) http://cwiki.apache.org/confluence/display/GMOxDOC11 | |-Pages Added or Edited in This Space |-- DB Pool Testing sample application was last edited by [EMAIL PROTECTED] (10:29 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/DB+Pool+Testing+sample+application |-- Web application security sample was last edited by [EMAIL PROTECTED] (12:33 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/Web+application+security+sample Apache Struts 2 Documentation (WW) http://cwiki.apache.org/confluence/display/WW | |-Pages Added or Edited in This Space |-- Home was last edited by husted (08:00 PM). | http://cwiki.apache.org/confluence/display/WW/Home |-- Release Plan 2.0.2 was last edited by husted (07:24 PM). | http://cwiki.apache.org/confluence/display/WW/Release+Plan+2.0.2 |-- Ready, Set, Go! was last edited by mrdon (04:08 PM). | http://cwiki.apache.org/confluence/display/WW/Ready%2C+Set%2C+Go%21 |-- Struts Maven Archetype was last edited by mrdon (03:56 PM). | http://cwiki.apache.org/confluence/display/WW/Struts+Maven+Archetype |-- Creating and Signing a Distribution was last edited by husted (03:41 PM). | http://cwiki.apache.org/confluence/display/WW/Creating+and+Signing+a+Distribution |-- Using Tags was last edited by husted (01:46 PM). | http://cwiki.apache.org/confluence/display/WW/Using+Tags |-- Hello World was last edited by husted (01:31 PM). | http://cwiki.apache.org/confluence/display/WW/Hello+World |-- Profiling was created by tm_jee (05:49 AM). | http://cwiki.apache.org/confluence/display/WW/Profiling |-- Core Developers Guide was last edited by tm_jee (05:43 AM). | http://cwiki.apache.org/confluence/display/WW/Core+Developers+Guide Apache Cayenne Documentation (CAYDOC) http://cwiki.apache.org/confluence/display/CAYDOC | |-Pages Added or Edited in This Space |-- Deleting Objects was last edited by nirvdrum (07:58 AM). | http://cwiki.apache.org/confluence/display/CAYDOC/Deleting+Objects Apache Struts 2 Wiki (S2WIKI) http://cwiki.apache.org/confluence/display/S2WIKI | |-Pages Added or Edited in This Space |-- Articles and press was last edited by tm_jee (12:15 PM). | http://cwiki.apache.org/confluence/display/S2WIKI/Articles+and+press Apache CXF (CXF) http://cwiki.apache.org/confluence/display/CXF | |-Pages Added or Edited in This Space |-- Index was last edited by dkulp (03:53 PM). | http://cwiki.apache.org/confluence/display/CXF/Index |-- Getting Involved was created by dandiep (01:23 PM). | http://cwiki.apache.org/confluence/display/CXF/Getting+Involved |-- Navigation was last edited by dandiep (01:10 PM). | http://cwiki.apache.org/confluence/display/CXF/Navigation Test Space (test) http://cwiki.apache.org/confluence/display/test | |-Pages Added or Edited in This Space |-- Index was last edited by jefft (07:28 PM). | http://cwiki.apache.org/confluence/display/test/Index - Updated User Profiles: - aldoz |- http://cwiki.apache.org/confluence/display/~aldoz - CONFLUENCE INFORMATION This message is automatically generated by Confluence Unsubscribe or edit your notifications preferences http://cwiki.apache.org/confluence/users/viewnotifications.action If you think it was sent incorrectly contact one of the administrators http://cwiki.apache.org/confluence/administrators.action If you want more information on Confluence, or have a bug to report see http://www.atlassian.com/software/confluence
svn commit: r462774 - /struts/sandbox/trunk/tiles/tiles-core/src/main/java/org/apache/tiles/taglib/InsertTag.java
Author: apetrelli Date: Wed Oct 11 04:32:43 2006 New Revision: 462774 URL: http://svn.apache.org/viewvc?view=rev&rev=462774 Log: SB-21 Removed "definitionName" property, since its corresponding TLD attribute was already removed and it is not referenced by any working code. I also made a small clean-up of the code. Modified: struts/sandbox/trunk/tiles/tiles-core/src/main/java/org/apache/tiles/taglib/InsertTag.java Modified: struts/sandbox/trunk/tiles/tiles-core/src/main/java/org/apache/tiles/taglib/InsertTag.java URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-core/src/main/java/org/apache/tiles/taglib/InsertTag.java?view=diff&rev=462774&r1=462773&r2=462774 == --- struts/sandbox/trunk/tiles/tiles-core/src/main/java/org/apache/tiles/taglib/InsertTag.java (original) +++ struts/sandbox/trunk/tiles/tiles-core/src/main/java/org/apache/tiles/taglib/InsertTag.java Wed Oct 11 04:32:43 2006 @@ -25,7 +25,6 @@ import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; import javax.servlet.jsp.JspException; import javax.servlet.jsp.PageContext; @@ -38,8 +37,6 @@ import org.apache.tiles.ComponentContext; import org.apache.tiles.ComponentDefinition; import org.apache.tiles.Controller; -import org.apache.tiles.DefinitionsFactoryException; -import org.apache.tiles.FactoryNotFoundException; import org.apache.tiles.NoSuchDefinitionException; import org.apache.tiles.TilesUtil; @@ -84,11 +81,6 @@ */ protected boolean isErrorIgnored = false; - /** -* Name of component instance to include. -*/ - protected String definitionName = null; - /** * Optional attribute to explicitly specify whether the thing being * inserted is a(n) definition, attribute, or template. @@ -125,7 +117,6 @@ super.release(); - definitionName = null; flush = true; name = null; template = null; @@ -179,13 +170,6 @@ } /** -* Get definition name. -*/ - public String getDefinitionName() { - return definitionName; - } - - /** * Set flush. */ public void setFlush(boolean flush) { @@ -483,22 +467,15 @@ tilesContext); if (definition == null) { // is it possible ? -throw new NoSuchDefinitionException(); +throw new NoSuchDefinitionException( +"Error - Tag Insert : Can't get definition '" ++ name ++ "'. Check if this name exists in definitions factory."); } return processDefinition(definition); } catch (NoSuchDefinitionException ex) { -throw new JspException( -"Error - Tag Insert : Can't get definition '" -+ definitionName -+ "'. Check if this name exists in definitions factory.", ex); - -} catch (DefinitionsFactoryException ex) { -if (log.isDebugEnabled()) { -ex.printStackTrace(); -} - // Save exception to be able to show it later pageContext.setAttribute( ComponentConstants.EXCEPTION_KEY,
[Struts Wiki] Update of "PoweredBy" by jindix
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by jindix: http://wiki.apache.org/struts/PoweredBy The comment on the change is: Add UNVirtual website -- === Examples of websites built using Struts === + * [http://www.virtual.unal.edu.co] - UNVirtual, Colombian e-learning Website of National University of Colombia. build on STRUTS, Tiles, Velocity and Lucene cooming soon, all on SUN AppServer9. * [http://www.boston.com] - Boston MA, USA Newspaper (''The Boston Globe'') portal (owned by the '''NY Times Co.''') Their login pages are an obvious Struts application on a Sun Application server v8.1 at their [http://members.boston.com/reg/login.do] url. * [http://bof-web.com] - Best of five. Managing your Squash/Badminton/Tennis Championships. Using STRUTS on Tomcat. * [http://www.elasticpath.com] Elastic Path - eCommerce software utilizing Struts, Velocity, Hibernate
[Struts Wiki] Update of "StrutsWebLinks" by angelozerr
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by angelozerr: http://wiki.apache.org/struts/StrutsWebLinks -- * http://struts.application-servers.com/ (Struts Layout -- Struts extension) * http://www.keyboardmonkey.com/next/index.jsp (Struts nesting extension) * http://www.egen.com.br - Rapid Application Development (RAD) environment that enables a highly productive development of transactional Web applications. + * http://gestcv.sourceforge.net/ - WEB Application which manage Curriculum Vitae (create CV, search engine...). It uses Struts, Spring, Hibernate and AJAX. === Commercial Web Apps And Libraries Which Use Struts ===