You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2017/06/08 03:24:00 UTC

svn commit: r1798014 [3/3] - in /myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces: application/ cdi/util/ cdi/view/ cdi/viewTransient/ component/visit/ config/element/ config/impl/digester/elements/ config/util/ context/ context/servle...

Modified: myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/core/ViewHandler.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/core/ViewHandler.java?rev=1798014&r1=1798013&r2=1798014&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/core/ViewHandler.java (original)
+++ myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/core/ViewHandler.java Thu Jun  8 03:23:59 2017
@@ -40,8 +40,7 @@ import org.apache.myfaces.shared.util.St
 import org.apache.myfaces.view.facelets.tag.jsf.ComponentSupport;
 
 /**
- * Container for all JavaServer Faces core and custom component actions used on a page. <p/> See <a target="_new"
- * href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/tlddocs/f/view.html">tag documentation</a>.
+ * Container for all JavaServer Faces core and custom component actions used on a page. 
  * 
  * @author Jacob Hookom
  * @version $Id$

Modified: myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/webapp/StartupServletContextListener.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/webapp/StartupServletContextListener.java?rev=1798014&r1=1798013&r2=1798014&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/webapp/StartupServletContextListener.java (original)
+++ myfaces/core/branches/2.3.x/impl/src/main/java/org/apache/myfaces/webapp/StartupServletContextListener.java Thu Jun  8 03:23:59 2017
@@ -52,18 +52,19 @@ import java.util.logging.Logger;
 
 /**
  * Initialise the MyFaces system.
- * <p/>
+ * <p>
  * This context listener is registered by the JSP TLD file for the standard JSF "f" components. Normally, servlet
  * containers will automatically load and process .tld files at startup time, and therefore register and run this class
  * automatically.
- * <p/>
+ * </p><p>
  * Some very old servlet containers do not do this correctly, so in those cases this listener may be registered manually
  * in web.xml. Registering it twice (ie in both .tld and web.xml) will result in a harmless warning message being
  * generated. Very old versions of MyFaces Core do not register the listener in the .tld file, so those also need a
  * manual entry in web.xml. However all versions since at least 1.1.2 have this entry in the tld.
- * <p/>
+ * </p><p>
  * This listener also delegates all session, request and context events to ManagedBeanDestroyer.
  * Because of that we only need to register one listener in the tld.
+ * </p>
  *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$