You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2009/03/24 11:11:16 UTC

svn commit: r757699 - in /incubator/click/trunk/click/examples/webapp: border-template.htm border-template.jsp general/broken-border.htm general/page-imports-example.htm

Author: sabob
Date: Tue Mar 24 10:11:13 2009
New Revision: 757699

URL: http://svn.apache.org/viewvc?rev=757699&view=rev
Log:
use new headElements variables

Modified:
    incubator/click/trunk/click/examples/webapp/border-template.htm
    incubator/click/trunk/click/examples/webapp/border-template.jsp
    incubator/click/trunk/click/examples/webapp/general/broken-border.htm
    incubator/click/trunk/click/examples/webapp/general/page-imports-example.htm

Modified: incubator/click/trunk/click/examples/webapp/border-template.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/examples/webapp/border-template.htm?rev=757699&r1=757698&r2=757699&view=diff
==============================================================================
--- incubator/click/trunk/click/examples/webapp/border-template.htm (original)
+++ incubator/click/trunk/click/examples/webapp/border-template.htm Tue Mar 24 10:11:13 2009
@@ -21,7 +21,7 @@
 <head>
 <title>Click Examples</title>
 <link type="text/css" rel="stylesheet" href="${context}/assets/css/style.css" title="Style"/>
-${cssImports}
+${headElements}
 #if($headInclude)#parse($headInclude)#end
 </head>
 <body>
@@ -69,7 +69,10 @@
 </tr>
 </table>
 </center>
+
+${jsElements}
+
+#if (${jsInclude}) #parse(${jsInclude}) #end
+
 </body>
 </html>
-${jsImports}
-#if (${jsInclude}) #parse(${jsInclude}) #end

Modified: incubator/click/trunk/click/examples/webapp/border-template.jsp
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/examples/webapp/border-template.jsp?rev=757699&r1=757698&r2=757699&view=diff
==============================================================================
--- incubator/click/trunk/click/examples/webapp/border-template.jsp (original)
+++ incubator/click/trunk/click/examples/webapp/border-template.jsp Tue Mar 24 10:11:13 2009
@@ -23,7 +23,7 @@
 <head>
 <title>Click Examples</title>
 <link type="text/css" rel="stylesheet" href="${context}/assets/css/style.css" title="Style"/>
-${cssImports}
+${headElements}
 </head>
 <body>
 
@@ -94,6 +94,7 @@
 </table>
 </center>
 
+${jsElements}
+
 </body>
 </html>
-${jsImports}
\ No newline at end of file

Modified: incubator/click/trunk/click/examples/webapp/general/broken-border.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/examples/webapp/general/broken-border.htm?rev=757699&r1=757698&r2=757699&view=diff
==============================================================================
--- incubator/click/trunk/click/examples/webapp/general/broken-border.htm (original)
+++ incubator/click/trunk/click/examples/webapp/general/broken-border.htm Tue Mar 24 10:11:13 2009
@@ -21,7 +21,8 @@
 <head>	
 <title>Click Examples - $title</title>
 <link rel="stylesheet" type="text/css" href="style.css" title="Style"/>
-$imports
+$headElements
+$jsElements
 </head>	
 <body>
  	

Modified: incubator/click/trunk/click/examples/webapp/general/page-imports-example.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/examples/webapp/general/page-imports-example.htm?rev=757699&r1=757698&r2=757699&view=diff
==============================================================================
--- incubator/click/trunk/click/examples/webapp/general/page-imports-example.htm (original)
+++ incubator/click/trunk/click/examples/webapp/general/page-imports-example.htm Tue Mar 24 10:11:13 2009
@@ -20,7 +20,7 @@
 <html>
 <head>
 <title>Click Examples</title>
-${cssImports}
+${headElements}
 </head>
 <body>
 <center>
@@ -80,6 +80,6 @@
 </tr>
 </table>
 </center>
+${jsElements}
 </body>
 </html>
-${jsImports}