[interchange-cvs] interchange - docelic modified 2 files

interchange-cvs at icdevgroup.org interchange-cvs at icdevgroup.org
Fri Oct 8 16:41:49 EDT 2004


User:      docelic
Date:      2004-10-08 20:41:49 GMT
Modified:  code/UI_Tag jsq.coretag jsqn.coretag
Log:
- header/license fix
- docs moved to xmldocs

Revision  Changes    Path
1.4       +4 -27     interchange/code/UI_Tag/jsq.coretag


rev 1.4, prev_rev 1.3
Index: jsq.coretag
===================================================================
RCS file: /var/cvs/interchange/code/UI_Tag/jsq.coretag,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- jsq.coretag	30 Oct 2002 20:43:05 -0000	1.3
+++ jsq.coretag	8 Oct 2004 20:41:49 -0000	1.4
@@ -1,3 +1,7 @@
+# Copyright 2002 Interchange Development Group (http://www.icdevgroup.org/)
+# Licensed under the GNU GPL v2. See file LICENSE for details.
+# $Id: jsq.coretag,v 1.4 2004/10/08 20:41:49 docelic Exp $
+
 UserTag jsquote Alias jsq
 UserTag jsq hasEndTag
 UserTag jsq NoReparse
@@ -18,31 +22,4 @@
 	return join (" +\n", @lines);
 }
 EOR
-
-UserTag jsq Documentation <<EOD
-
-=head1 jsq
-
-Returns a string quoted for JavaScript, with variable substitution.
-
-  <script>
-  	var astring = 'just an insert';
-  	var somevar = [jsq] Big long string you don't
-		want to have to quote for JS, and you want to
-		insert the variable $astring.[/jsq];
-  </script>
-
-Generates:
-
-	<script>
-		var astring = 'just an insert';
-		var somevar = " Big long string you don't" +
-	'       want to have to quote for JS, and you want to' +
-	'       insert the variable ' + astring + '.';
-	</script>
-
-Used in the UI dynamic HTML.
-
-=cut
-EOD
 



1.3       +4 -23     interchange/code/UI_Tag/jsqn.coretag


rev 1.3, prev_rev 1.2
Index: jsqn.coretag
===================================================================
RCS file: /var/cvs/interchange/code/UI_Tag/jsqn.coretag,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jsqn.coretag	30 Oct 2002 20:43:05 -0000	1.2
+++ jsqn.coretag	8 Oct 2004 20:41:49 -0000	1.3
@@ -1,26 +1,6 @@
-UserTag jsqn Documentation <<EOD
-
-=head1 jsqn
-
-Returns a string quoted for JavaScript, with no variable substitution.
-
-  <script>
-  	var somevar = [jsqn] Big long string you don't
-		want to have to quote for JS.[/jsqn];
-  </script>
-
-Generates:
-
-	<script>
-      var somevar = " Big long string you don't" +
-	  '         want to have to quote for JS.';
-	</script>
-
-Used in the UI dynamic HTML.
-
-=cut
-
-EOD
+# Copyright 2002 Interchange Development Group (http://www.icdevgroup.org/)
+# Licensed under the GNU GPL v2. See file LICENSE for details.
+# $Id: jsqn.coretag,v 1.3 2004/10/08 20:41:49 docelic Exp $
 
 UserTag jsqn hasEndTag
 UserTag jsqn NoReparse
@@ -41,3 +21,4 @@
 	return join (" +\n", @lines);
 }
 EOR
+








More information about the interchange-cvs mailing list