You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-cvs@tcl.apache.org by da...@apache.org on 2001/03/19 19:09:02 UTC

cvs commit: tcl-site/neowebscript about.ttml index.ttml

davidw      01/03/19 10:09:00

  Modified:    .        FAQ.ttml contact.ttml contributing.ttml
                        credits.ttml examples.ttml index.ttml news.ttml
                        projects.ttml tcl.ttml
               mod_dtcl contact.ttml contributing.ttml credits.ttml
                        documentation.ttml download.ttml examples.ttml
                        index.ttml news.ttml
               neowebscript about.ttml index.ttml
  Log:
  IMPORTANT: switched to new tags: <? ?>
  
  Revision  Changes    Path
  1.2       +1 -1      tcl-site/FAQ.ttml
  
  Index: FAQ.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/FAQ.ttml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FAQ.ttml	2000/09/08 11:31:52	1.1
  +++ FAQ.ttml	2001/03/19 18:08:44	1.2
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  <td valign="top"> 
   	    <h2>Frequently Asked Questions</h2>
   	    <p>
  
  
  
  1.2       +1 -1      tcl-site/contact.ttml
  
  Index: contact.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/contact.ttml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- contact.ttml	2000/09/08 11:31:52	1.1
  +++ contact.ttml	2001/03/19 18:08:44	1.2
  @@ -17,7 +17,7 @@
       <table width="75%" border="0">
   	<tr>
   
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  <td valign="top"> 
   	    <h2>Contact Information</h2>
   	    <p>
  
  
  
  1.4       +1 -1      tcl-site/contributing.ttml
  
  Index: contributing.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/contributing.ttml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- contributing.ttml	2000/12/18 14:19:37	1.3
  +++ contributing.ttml	2001/03/19 18:08:44	1.4
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  <td valign="top"> 
   	    <h2>Contributing to Apache Tcl</h2>
   	    <p>
  
  
  
  1.3       +1 -1      tcl-site/credits.ttml
  
  Index: credits.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/credits.ttml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- credits.ttml	2000/12/18 14:04:18	1.2
  +++ credits.ttml	2001/03/19 18:08:45	1.3
  @@ -15,7 +15,7 @@
   
       <table width="100%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  <td valign="top"> 
   	    <h2>Credits</h2>
   	    <p>
  
  
  
  1.2       +13 -13    tcl-site/examples.ttml
  
  Index: examples.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/examples.ttml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- examples.ttml	2000/09/08 11:31:53	1.1
  +++ examples.ttml	2001/03/19 18:08:45	1.2
  @@ -1,6 +1,6 @@
   <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN">
   <html>
  -<!-- $Id: examples.ttml,v 1.1 2000/09/08 11:31:53 davidw Exp $ -->
  +<!-- $Id: examples.ttml,v 1.2 2001/03/19 18:08:45 davidw Exp $ -->
   <title>mod_dtcl examples</title>
   <body bgcolor=white>
   
  @@ -35,7 +35,7 @@
   Produces:
   <p>
   
  -<+
  +<?
   headers setcookie "foo" "bar"
   
   # once buffering is switched off, it is no longer possible to
  @@ -43,7 +43,7 @@
   buffered off
   
   hputs "hello world" 
  -+>
  +?>
   
   <p>
   
  @@ -68,11 +68,11 @@
   Produces:
   <p>
   
  -<+ if { 1 } { +>
  +<? if { 1 } { ?>
   
   <h2> True </h2>
   
  -<+ } +>
  +<? } ?>
   </td></tr>
   
   <tr><td><hr><b>Loops:</b>
  @@ -95,14 +95,14 @@
   </td></tr>
   
   <tr><td>Produces:<p>
  -<+
  +<?
   set x 0
   while { $x < 5 } { 
    hputs "\$x = $x<br>"
    incr x
  -+>
  +?>
   LOOP<BR>
  -<+ } +>
  +<? } ?>
   </td></tr>
   
   <tr><td><hr><b>Variables (environmental as well as those passed to the script)</b><p>
  @@ -143,7 +143,7 @@
   </td></tr>
   
   <tr><td>Produces:<p>
  -<+
  +<?
   hgetvars
   if { [ array exists VARS ] } {
       hputs "<ul>"
  @@ -170,7 +170,7 @@
       hputs "</ul>"
   }
   
  -+>
  +?>
   </td></tr>
   
   <tr><td><hr><b>Create a table on the fly</b><p>
  @@ -200,7 +200,7 @@
   </td></tr>
   
   <tr><td>Produces:<p>
  -<+
  +<?
   
   set listone { 1 2 3 4 5 6 7 8 }
   set listtwo { 1 2 3 4 5 6 7 8 }
  @@ -216,7 +216,7 @@
       hputs "</tr>\n"
   }
   hputs "</table>\n"
  -+>
  +?>
   </td></tr>
   
   <tr><td><hr>
  @@ -229,7 +229,7 @@
   
   </table>
   
  -<+ dtcl_info +>
  +<? dtcl_info ?>
   
   
   <p>
  
  
  
  1.6       +1 -1      tcl-site/index.ttml
  
  Index: index.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/index.ttml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- index.ttml	2001/03/13 19:10:26	1.5
  +++ index.ttml	2001/03/19 18:08:46	1.6
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   
  
  
  
  1.6       +2 -2      tcl-site/news.ttml
  
  Index: news.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/news.ttml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- news.ttml	2001/03/13 14:37:51	1.5
  +++ news.ttml	2001/03/19 18:08:46	1.6
  @@ -1,5 +1,5 @@
   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
  -<!-- $Id: news.ttml,v 1.5 2001/03/13 14:37:51 davidw Exp $ -->
  +<!-- $Id: news.ttml,v 1.6 2001/03/19 18:08:46 davidw Exp $ -->
   <html>
     <head>
       <title>Apache Tcl News</title>
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  <td valign="top"> 
   	    <h2>News and Status</h2>
   
  
  
  
  1.3       +1 -1      tcl-site/projects.ttml
  
  Index: projects.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/projects.ttml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- projects.ttml	2001/03/10 18:01:53	1.2
  +++ projects.ttml	2001/03/19 18:08:47	1.3
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   	    <h2>Individual Projects</h2>
  
  
  
  1.3       +1 -1      tcl-site/tcl.ttml
  
  Index: tcl.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/tcl.ttml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- tcl.ttml	2001/03/10 18:07:24	1.2
  +++ tcl.ttml	2001/03/19 18:08:47	1.3
  @@ -15,7 +15,7 @@
   
       <table width="100%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  <td valign="top"> 
   	    <h2>The Tcl Language</h2>
   	    <p>
  
  
  
  1.4       +1 -1      tcl-site/mod_dtcl/contact.ttml
  
  Index: contact.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/contact.ttml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- contact.ttml	2000/12/24 16:34:25	1.3
  +++ contact.ttml	2001/03/19 18:08:52	1.4
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   	    <h2>Contact information for mod_dtcl</h2>
  
  
  
  1.5       +1 -1      tcl-site/mod_dtcl/contributing.ttml
  
  Index: contributing.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/contributing.ttml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- contributing.ttml	2001/03/08 17:25:24	1.4
  +++ contributing.ttml	2001/03/19 18:08:53	1.5
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   	    <h2>Contributing to mod_dtcl</h2>
  
  
  
  1.5       +1 -1      tcl-site/mod_dtcl/credits.ttml
  
  Index: credits.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/credits.ttml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- credits.ttml	2001/02/12 14:45:34	1.4
  +++ credits.ttml	2001/03/19 18:08:53	1.5
  @@ -15,7 +15,7 @@
   
       <table width="100%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  <td valign="top"> 
   	    <h2>Credits for mod_dtcl</h2>
   	    <p>
  
  
  
  1.4       +2 -2      tcl-site/mod_dtcl/documentation.ttml
  
  Index: documentation.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/documentation.ttml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- documentation.ttml	2000/12/24 16:34:25	1.3
  +++ documentation.ttml	2001/03/19 18:08:54	1.4
  @@ -16,11 +16,11 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   
  -	    <+ include documentation.html +>
  +	    <? include documentation.html ?>
   
   	    <p align="center">
   	      <a href="http://www.apache.org/">
  
  
  
  1.6       +1 -1      tcl-site/mod_dtcl/download.ttml
  
  Index: download.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/download.ttml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- download.ttml	2001/02/12 21:05:50	1.5
  +++ download.ttml	2001/03/19 18:08:54	1.6
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   	    <h2>Download mod_dtcl</h2>
  
  
  
  1.2       +13 -13    tcl-site/mod_dtcl/examples.ttml
  
  Index: examples.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/examples.ttml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- examples.ttml	2000/12/18 14:05:44	1.1
  +++ examples.ttml	2001/03/19 18:08:55	1.2
  @@ -1,6 +1,6 @@
   <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN">
   <html>
  -<!-- $Id: examples.ttml,v 1.1 2000/12/18 14:05:44 davidw Exp $ -->
  +<!-- $Id: examples.ttml,v 1.2 2001/03/19 18:08:55 davidw Exp $ -->
   <title>mod_dtcl examples</title>
   <body bgcolor=white>
   
  @@ -35,7 +35,7 @@
   Produces:
   <p>
   
  -<+
  +<?
   headers setcookie "foo" "bar"
   
   # once buffering is switched off, it is no longer possible to
  @@ -43,7 +43,7 @@
   buffered off
   
   hputs "hello world" 
  -+>
  +?>
   
   <p>
   
  @@ -68,11 +68,11 @@
   Produces:
   <p>
   
  -<+ if { 1 } { +>
  +<? if { 1 } { ?>
   
   <h2> True </h2>
   
  -<+ } +>
  +<? } ?>
   </td></tr>
   
   <tr><td><hr><b>Loops:</b>
  @@ -95,14 +95,14 @@
   </td></tr>
   
   <tr><td>Produces:<p>
  -<+
  +<?
   set x 0
   while { $x < 5 } { 
    hputs "\$x = $x<br>"
    incr x
  -+>
  +?>
   LOOP<BR>
  -<+ } +>
  +<? } ?>
   </td></tr>
   
   <tr><td><hr><b>Variables (environmental as well as those passed to the script)</b><p>
  @@ -143,7 +143,7 @@
   </td></tr>
   
   <tr><td>Produces:<p>
  -<+
  +<?
   hgetvars
   if { [ array exists VARS ] } {
       hputs "<ul>"
  @@ -170,7 +170,7 @@
       hputs "</ul>"
   }
   
  -+>
  +?>
   </td></tr>
   
   <tr><td><hr><b>Create a table on the fly</b><p>
  @@ -200,7 +200,7 @@
   </td></tr>
   
   <tr><td>Produces:<p>
  -<+
  +<?
   
   set listone { 1 2 3 4 5 6 7 8 }
   set listtwo { 1 2 3 4 5 6 7 8 }
  @@ -216,7 +216,7 @@
       hputs "</tr>\n"
   }
   hputs "</table>\n"
  -+>
  +?>
   </td></tr>
   
   <tr><td><hr>
  @@ -229,7 +229,7 @@
   
   </table>
   
  -<+ dtcl_info +>
  +<? dtcl_info ?>
   
   
   <p>
  
  
  
  1.2       +1 -1      tcl-site/mod_dtcl/index.ttml
  
  Index: index.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/index.ttml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.ttml	2000/09/08 11:32:00	1.1
  +++ index.ttml	2001/03/19 18:08:55	1.2
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   
  
  
  
  1.4       +1 -1      tcl-site/mod_dtcl/news.ttml
  
  Index: news.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/mod_dtcl/news.ttml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- news.ttml	2000/12/24 16:34:25	1.3
  +++ news.ttml	2001/03/19 18:08:55	1.4
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   	    <h2>News & Status</h2>
  
  
  
  1.2       +1 -1      tcl-site/neowebscript/about.ttml
  
  Index: about.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/neowebscript/about.ttml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- about.ttml	2001/03/10 18:01:53	1.1
  +++ about.ttml	2001/03/19 18:08:59	1.2
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top"> 
   
  
  
  
  1.2       +1 -1      tcl-site/neowebscript/index.ttml
  
  Index: index.ttml
  ===================================================================
  RCS file: /home/cvs/tcl-site/neowebscript/index.ttml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.ttml	2001/03/10 18:01:53	1.1
  +++ index.ttml	2001/03/19 18:08:59	1.2
  @@ -16,7 +16,7 @@
   
       <table width="75%" border="0">
   	<tr>
  -	  <+ include navbar.html +>
  +	  <? include navbar.html ?>
   	  
   	  <td valign="top">