You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/12/08 12:43:08 UTC

svn commit: r1773226 - in /myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF: tobago-config.xml web.xml

Author: lofwyr
Date: Thu Dec  8 12:43:08 2016
New Revision: 1773226

URL: http://svn.apache.org/viewvc?rev=1773226&view=rev
Log:
logging session id

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml
    myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml?rev=1773226&r1=1773225&r2=1773226&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml Thu Dec  8 12:43:08 2016
@@ -24,7 +24,12 @@
     version="3.0">
 
   <theme-config>
-    <default-theme>speyside</default-theme>
+    <default-theme>standard</default-theme>
   </theme-config>
 
+<!--
+  <create-session-secret>false</create-session-secret>
+  <check-session-secret>false</check-session-secret>
+-->
+
 </tobago-config>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml?rev=1773226&r1=1773225&r2=1773226&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml Thu Dec  8 12:43:08 2016
@@ -55,4 +55,13 @@
     </cookie-config>
   </session-config>
 
+  <filter>
+    <filter-name>LoggingMdcFilter</filter-name>
+    <filter-class>org.apache.myfaces.tobago.internal.webapp.LoggingMdcFilter</filter-class>
+  </filter>
+  <filter-mapping>
+    <filter-name>LoggingMdcFilter</filter-name>
+    <url-pattern>/*</url-pattern>
+  </filter-mapping>
+
 </web-app>