You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2005/11/29 20:43:44 UTC

svn commit: r349800 - in /incubator/roller/trunk/src/org/roller/presentation: filters/IfModifiedFilter.java filters/RequestFilter.java forms/ pagecache/

Author: agilliland
Date: Tue Nov 29 11:43:39 2005
New Revision: 349800

URL: http://svn.apache.org/viewcvs?rev=349800&view=rev
Log:
removing some old code and directories.

- removed old if-modified filter, which has been replaced
- removed old pagecache package directory
- removed old forms package directory


Removed:
    incubator/roller/trunk/src/org/roller/presentation/filters/IfModifiedFilter.java
    incubator/roller/trunk/src/org/roller/presentation/forms/
    incubator/roller/trunk/src/org/roller/presentation/pagecache/
Modified:
    incubator/roller/trunk/src/org/roller/presentation/filters/RequestFilter.java

Modified: incubator/roller/trunk/src/org/roller/presentation/filters/RequestFilter.java
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/src/org/roller/presentation/filters/RequestFilter.java?rev=349800&r1=349799&r2=349800&view=diff
==============================================================================
--- incubator/roller/trunk/src/org/roller/presentation/filters/RequestFilter.java (original)
+++ incubator/roller/trunk/src/org/roller/presentation/filters/RequestFilter.java Tue Nov 29 11:43:39 2005
@@ -78,6 +78,7 @@
             return;
         }
 
+        /*
         Date updateTime = null;
         try
         {
@@ -91,7 +92,8 @@
         {
             request.setAttribute("updateTime", updateTime);
         }
-
+        */
+        
         chain.doFilter(req, res);
     }