]> gitweb.factorcode.org Git - factor.git/commitdiff
html.templates.chloe: Rename cached-template
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 24 Mar 2013 06:16:54 +0000 (23:16 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 24 Mar 2013 06:16:54 +0000 (23:16 -0700)
basis/html/templates/chloe/chloe.factor

index 19839de5a36af6f453981f0273807ca3fedaac09..092997a1106652f286f59666d92b5c50b0312d02 100644 (file)
@@ -101,14 +101,14 @@ SYMBOL: template-cache
 
 H{ } template-cache set-global
 
-TUPLE: cached-template path last-modified quot ;
+TUPLE: cached-template-state path last-modified quot ;
 
 : load-template ( chloe -- cached-template )
     path>> ".xml" append
     [ ]
     [ file-info modified>> ]
     [ file>xml compile-template ] tri
-    \ cached-template boa ;
+    \ cached-template-state boa ;
 
 \ load-template DEBUG add-input-logging