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 2006/11/21 20:52:24 UTC

svn commit: r477848 - /incubator/roller/trunk/src/org/apache/roller/ui/core/RequestConstants.java

Author: agilliland
Date: Tue Nov 21 11:52:23 2006
New Revision: 477848

URL: http://svn.apache.org/viewvc?view=rev&rev=477848
Log:
code reformatting.


Modified:
    incubator/roller/trunk/src/org/apache/roller/ui/core/RequestConstants.java

Modified: incubator/roller/trunk/src/org/apache/roller/ui/core/RequestConstants.java
URL: http://svn.apache.org/viewvc/incubator/roller/trunk/src/org/apache/roller/ui/core/RequestConstants.java?view=diff&rev=477848&r1=477847&r2=477848
==============================================================================
--- incubator/roller/trunk/src/org/apache/roller/ui/core/RequestConstants.java (original)
+++ incubator/roller/trunk/src/org/apache/roller/ui/core/RequestConstants.java Tue Nov 21 11:52:23 2006
@@ -1,41 +1,43 @@
 /*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-*  contributor license agreements.  The ASF licenses this file to You
-* under the Apache License, Version 2.0 (the "License"); you may not
-* use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-*     http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.  For additional information regarding
-* copyright in this work, please see the NOTICE file in the top level
-* directory of this distribution.
-*/
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  The ASF licenses this file to You
+ * under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.  For additional information regarding
+ * copyright in this work, please see the NOTICE file in the top level
+ * directory of this distribution.
+ */
+
 package org.apache.roller.ui.core;
 
 /**
  * Static collection of request parameter names.
  */
 public class RequestConstants {
-    public static final String ANCHOR            = "entry"; 
-    public static final String BOOKMARK_ID       = "bookmarkId"; 
-    public static final String FOLDER_ID         = "folderId"; 
+    
+    public static final String ANCHOR            = "entry";
+    public static final String BOOKMARK_ID       = "bookmarkId";
+    public static final String FOLDER_ID         = "folderId";
     public static final String PAGE_ID           = "pageId";
     public static final String PARENT_ID         = "parentId";
     public static final String PINGTARGET_ID     = "pingtargetId";
     public static final String REFERRER_ID       = "referrerId";
     public static final String USERNAME          = "username";
-    public static final String WEBLOG            = "weblog"; 
+    public static final String WEBLOG            = "weblog";
     public static final String WEBLOG_ID         = "websiteId";
     public static final String WEBLOGCATEGORY    = "cat";
     public static final String WEBLOGCATEGORY_ID = "categoryId";
     public static final String WEBLOGENTRY_ID    = "entryId";
     
-    // this should ONLY be used in file-upload situations where 
+    // this should ONLY be used in file-upload situations where
     // weblog handle cannot be conveyed as a request parameter
     public static final String WEBLOG_SESSION_STASH = "weblog_session_stash";
 }