You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2005/12/08 21:33:52 UTC

svn commit: r355193 - in /incubator/roller/trunk/web: WEB-INF/tiles-defs.xml theme/head-main.jsp theme/head-planet.jsp

Author: snoopdave
Date: Thu Dec  8 12:33:45 2005
New Revision: 355193

URL: http://svn.apache.org/viewcvs?rev=355193&view=rev
Log:
ROL-879 added to both main and planet pages

Added:
    incubator/roller/trunk/web/theme/head-main.jsp
    incubator/roller/trunk/web/theme/head-planet.jsp
Modified:
    incubator/roller/trunk/web/WEB-INF/tiles-defs.xml

Modified: incubator/roller/trunk/web/WEB-INF/tiles-defs.xml
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/web/WEB-INF/tiles-defs.xml?rev=355193&r1=355192&r2=355193&view=diff
==============================================================================
--- incubator/roller/trunk/web/WEB-INF/tiles-defs.xml (original)
+++ incubator/roller/trunk/web/WEB-INF/tiles-defs.xml Thu Dec  8 12:33:45 2005
@@ -57,11 +57,13 @@
 
 <definition name=".main" extends=".tiles-frontpage" >
     <put name="content" value="/main.jsp" />
+    <put name="head"    value="/head-main.jsp" />
     <put name="sidebar" value="/main-sidebar.jsp" />
 </definition>
 
 <definition name=".planet" extends=".tiles-frontpage" >
     <put name="content" value="/planet/planet.jsp" />
+    <put name="head"    value="/head-planet.jsp" />
     <put name="sidebar" value="/planet/planet-sidebar.jsp" />
 </definition>
 

Added: incubator/roller/trunk/web/theme/head-main.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/web/theme/head-main.jsp?rev=355193&view=auto
==============================================================================
--- incubator/roller/trunk/web/theme/head-main.jsp (added)
+++ incubator/roller/trunk/web/theme/head-main.jsp Thu Dec  8 12:33:45 2005
@@ -0,0 +1,6 @@
+<%@ include file="/theme/head.jsp" %>
+<link rel="alternate" type="application/atom+xml" 
+    title="Atom feed for main page" href="<%= request.getContextPath() %>/atom" />
+
+
+

Added: incubator/roller/trunk/web/theme/head-planet.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/web/theme/head-planet.jsp?rev=355193&view=auto
==============================================================================
--- incubator/roller/trunk/web/theme/head-planet.jsp (added)
+++ incubator/roller/trunk/web/theme/head-planet.jsp Thu Dec  8 12:33:45 2005
@@ -0,0 +1,5 @@
+<%@ include file="/theme/head.jsp" %>
+<link rel="alternate" type="application/rss+xml" 
+    title="RSS feed for planet page" href="<%= request.getContextPath() %>/planetrss" />
+
+