You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by gr...@apache.org on 2005/01/27 04:03:15 UTC

svn commit: r126571 - /lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl /lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl

Author: gregor
Date: Wed Jan 26 19:03:13 2005
New Revision: 126571

URL: http://svn.apache.org/viewcvs?view=rev&rev=126571
Log:
Fixed order of XSL import statements to avoid xslt exceptions
Modified:
   lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl
   lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl

Modified: lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl
Url: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl?view=diff&rev=126571&p1=lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl&r1=126570&p2=lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl&r2=126571
==============================================================================
--- lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl	(original)
+++ lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-authoring.xsl	Wed Jan 26 19:03:13 2005
@@ -15,14 +15,14 @@
   limitations under the License.
 -->
 
-<!-- $Id: main-authoring.xsl,v 1.5 2004/03/13 12:31:30 gregor Exp $ -->
+<!-- $Id$ -->
 
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 >
 
-<xsl:include href="../global.xsl"/>
-
 <xsl:import href="body.xsl"/>
+  
+<xsl:include href="../global.xsl"/>
  
 </xsl:stylesheet>  

Modified: lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl
Url: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl?view=diff&rev=126571&p1=lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl&r1=126570&p2=lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl&r2=126571
==============================================================================
--- lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl	(original)
+++ lenya/branches/BRANCH_1_2_X/src/webapp/lenya/pubs/blog/xslt/entry/main-live.xsl	Wed Jan 26 19:03:13 2005
@@ -15,14 +15,14 @@
   limitations under the License.
 -->
 
-<!-- $Id: main-live.xsl,v 1.5 2004/03/13 12:31:30 gregor Exp $ -->
+<!-- $Id$ -->
 
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 >
 
-<xsl:include href="../global.xsl"/>
-
 <xsl:import href="body.xsl"/>
+
+<xsl:include href="../global.xsl"/>
  
 </xsl:stylesheet>  

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org