[Zope3-checkins] CVS: Zope3/src/zope/pagetemplate/tests/output - __init__.py:1.2 checknotexpression.html:1.2 checknothing.html:1.2 checkpathalt.html:1.2 checkpathnothing.html:1.2 checkwithxmlheader.html:1.2 dtml1a.html:1.2 dtml1b.html:1.2 dtml3.html:1.2 globalsshadowlocals.html:1.2 loop1.html:1.2 stringexpression.html:1.2 teeshop1.html:1.2 teeshop2.html:1.2 teeshoplaf.html:1.2
Jim Fulton
jim@zope.com
Wed, 25 Dec 2002 09:15:46 -0500
Update of /cvs-repository/Zope3/src/zope/pagetemplate/tests/output
In directory cvs.zope.org:/tmp/cvs-serv20790/src/zope/pagetemplate/tests/output
Added Files:
__init__.py checknotexpression.html checknothing.html
checkpathalt.html checkpathnothing.html
checkwithxmlheader.html dtml1a.html dtml1b.html dtml3.html
globalsshadowlocals.html loop1.html stringexpression.html
teeshop1.html teeshop2.html teeshoplaf.html
Log Message:
Grand renaming:
- Renamed most files (especially python modules) to lower case.
- Moved views and interfaces into separate hierarchies within each
project, where each top-level directory under the zope package
is a separate project.
- Moved everything to src from lib/python.
lib/python will eventually go away. I need access to the cvs
repository to make this happen, however.
There are probably some bits that are broken. All tests pass
and zope runs, but I haven't tried everything. There are a number
of cleanups I'll work on tomorrow.
=== Zope3/src/zope/pagetemplate/tests/output/__init__.py 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/__init__.py Wed Dec 25 09:15:14 2002
@@ -0,0 +1,2 @@
+#
+# This file is necessary to make this directory a package.
=== Zope3/src/zope/pagetemplate/tests/output/checknotexpression.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/checknotexpression.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,9 @@
+<html>
+<head></head>
+<body>
+<div>not:python:0</div>
+
+
+
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/checknothing.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/checknothing.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,7 @@
+<html>
+<body>
+<head>
+ <title></title>
+</head>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/checkpathalt.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/checkpathalt.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,17 @@
+<html>
+<body>
+ <div>
+ <p>X</p>
+ <p>X</p>
+ <p>X</p>
+ <p>X</p>
+ <p>X</p>
+
+ <p name="">Z</p>
+ <p name="">Z</p>
+ <p>Z</p>
+
+ <p>c</p>
+ </div>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/checkpathnothing.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/checkpathnothing.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,7 @@
+<html>
+<body>
+<head>
+ <title></title>
+</head>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/checkwithxmlheader.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/checkwithxmlheader.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,4 @@
+<?xml version="1.0" ?>
+<html>
+<body>Hello!</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/dtml1a.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/dtml1a.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,34 @@
+<html>
+ <head><title>Test of documentation templates</title></head>
+ <body>
+
+ <dl>
+ <dt>The arguments to this test program were:</dt>
+ <dd>
+ <ul>
+ <li>
+ Argument number 1
+ is one
+ </li><li>
+ Argument number 2
+ is two
+ </li><li>
+ Argument number 3
+ is three
+ </li><li>
+ Argument number 4
+ is cha
+ </li><li>
+ Argument number 5
+ is cha
+ </li><li>
+ Argument number 6
+ is cha
+ </li>
+ </ul>
+ </dd>
+ </dl>
+
+ And thats da trooth.
+ </body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/dtml1b.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/dtml1b.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,7 @@
+<html>
+ <head><title>Test of documentation templates</title></head>
+ <body>
+ <p>No arguments were given.</p>
+ And thats da trooth.
+ </body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/dtml3.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/dtml3.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,30 @@
+<head><title>Test of documentation templates</title></head>
+<body>
+ <div>
+ The arguments were:
+
+ <dl>
+ <span>
+ <dt>one.</dt>
+ <dd>Argument 1 was one</dd>
+ </span><span>
+ <dt>two.</dt>
+ <dd>Argument 2 was two</dd>
+ </span><span>
+ <dt>three.</dt>
+ <dd>Argument 3 was three</dd>
+ </span><span>
+ <dt>four.</dt>
+ <dd>Argument 4 was four</dd>
+ </span><span>
+ <dt>five.</dt>
+ <dd>Argument 5 was five</dd>
+ </span>
+ </dl>
+ <span>
+ (six-ten)
+ </span>
+ </div>
+
+ And I am 100% sure!
+</body>
=== Zope3/src/zope/pagetemplate/tests/output/globalsshadowlocals.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/globalsshadowlocals.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,14 @@
+<html>
+<head></head>
+<body>
+ <div>
+ <span>2</span>
+ </div>
+ <div>
+ <span>1</span>
+ </div>
+ <div>
+ <span>3</span>
+ </div>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/loop1.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/loop1.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,25 @@
+<html>
+<head>
+<title>Loop doc</title>
+</head>
+<body>
+<p>Choose your type:</p>
+<ul>
+ <li>
+ <a href="/mach/digital">
+ 1.
+ digital</a>
+ </li>
+ <li>
+ <a href="/mach/analog">
+ 2.
+ analog</a>
+ </li>
+ <li>
+ <a href="/mach/organic">
+ 3.
+ organic</a>
+ </li>
+</ul>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/stringexpression.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/stringexpression.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,7 @@
+<html>
+<body>
+<head>
+ <title>Hello World!</title>
+</head>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/teeshop1.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/teeshop1.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,106 @@
+<html>
+<head>
+<title>Zope Stuff</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<link rel="stylesheet" href="/common.css">
+</head>
+
+<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tr bgcolor="#0000CC" align="center">
+ <td>
+ <table width="200" border="0" cellspacing="0" cellpadding="0">
+ <tr bgcolor="#FFFFFF">
+ <td><img src="/images/lside.gif" width="52" height="94"><img src="/images/swlogo.gif" width="150" height="89"><img src="/images/rside.gif" width="52" height="94"></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+<br>
+<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
+ <tr align="center">
+ <td width="25%" class="boldbodylist">apparel</td>
+ <td width="25%" class="boldbodylist">mugs</td>
+ <td width="25%" class="boldbodylist">toys</td>
+ <td width="25%" class="boldbodylist">misc</td>
+ </tr>
+</table>
+<br>
+<br>
+<div>
+<table width="500" border="0" cellspacing="0" cellpadding="0" align="center">
+ <tr>
+ <td bgcolor="#0000CC">
+ <table width="100%" border="0" cellspacing="1" cellpadding="3">
+ <tr bgcolor="#FFFFFF" align="center">
+ <td><img src="/images/welcome.gif" width="293" height="28"></td>
+ </tr>
+ <tr bgcolor="#FFFFFF" align="center" valign="top">
+ <td>
+ <table width="100%" border="0" cellspacing="0" cellpadding="6">
+ <tr>
+ <td colspan="2" class="bodylist" height="200" valign="top"><b>Description:
+ </b>This is the tee for those who LOVE Zope. Show your heart on your tee.</td>
+ <td align="right" width="1%" rowspan="2">
+ <p><img src="/images/smlatee.jpg"
+ width="200" height="200"></p>
+ </td>
+ </tr>
+ <tr>
+ <td class="bodylist"><img src="images/clear.gif" width="150" height="10"></td>
+ <td class="bodylist"><b>Price</b>:12.99</td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <tr bgcolor="#FFFFFF" align="center" valign="top">
+ <td>
+ <table width="100%" border="0" cellspacing="0" cellpadding="6">
+ <tr>
+ <td colspan="2" class="bodylist" height="200" valign="top"><b>Description:
+ </b>This is the tee for Jim Fulton. He's the Zope Pope!</td>
+ <td align="right" width="1%" rowspan="2">
+ <p><img src="/images/smpztee.jpg"
+ width="200" height="200"></p>
+ </td>
+ </tr>
+ <tr>
+ <td class="bodylist"><img src="images/clear.gif" width="150" height="10"></td>
+ <td class="bodylist"><b>Price</b>:11.99</td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <tr bgcolor="#FFFFFF" align="center" valign="top">
+ <td>
+ <table width="100%" border="0" cellspacing="0" cellpadding="6">
+ <tr>
+ <td align="center"><img src="images/buttons/submit.gif" width="87" height="30"></td>
+ <td align="center"><img src="images/buttons/cancel.gif" width="87" height="30"></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+</div>
+<br><br>
+<table width="100%" border="0" cellspacing="1" cellpadding="3" align="center">
+ <tr>
+ <td align="center" bgcolor="#FFFFFF" class="bodylist">
+ Copyright © 2000
+ <a href="http://www.4-am.com">4AM Productions, Inc.</a>.
+ All rights reserved. <br>
+ Questions or problems should be directed to
+ <a href="mailto:webmaster@teamzonline.com">the webmaster</a>,
+ 254-412-0846.</td>
+ </tr>
+ <tr>
+ <td align="center"><img src="/images/zopelogos/buildzope.gif" width="54" height="54"></td>
+ </tr>
+</table>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/teeshop2.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:45 2002
+++ Zope3/src/zope/pagetemplate/tests/output/teeshop2.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,50 @@
+<html>
+<head>
+<title>Zope Stuff</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<link rel="stylesheet" href="/common.css">
+</head>
+
+<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tr bgcolor="#0000CC" align="center">
+ <td>
+ <table width="200" border="0" cellspacing="0" cellpadding="0">
+ <tr bgcolor="#FFFFFF">
+ <td><img src="/images/lside.gif" width="52" height="94"><img src="/images/swlogo.gif" width="150" height="89"><img src="/images/rside.gif" width="52" height="94"></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+<br>
+<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
+ <tr align="center">
+ <td width="25%" class="boldbodylist">apparel</td>
+ <td width="25%" class="boldbodylist">mugs</td>
+ <td width="25%" class="boldbodylist">toys</td>
+ <td width="25%" class="boldbodylist">misc</td>
+ </tr>
+</table>
+<br>
+<br>
+<div>
+Body
+</div>
+<br><br>
+<table width="100%" border="0" cellspacing="1" cellpadding="3" align="center">
+ <tr>
+ <td align="center" bgcolor="#FFFFFF" class="bodylist">
+ Copyright © 2000
+ <a href="http://www.4-am.com">4AM Productions, Inc.</a>.
+ All rights reserved. <br>
+ Questions or problems should be directed to
+ <a href="mailto:webmaster@teamzonline.com">the webmaster</a>,
+ 254-412-0846.</td>
+ </tr>
+ <tr>
+ <td align="center"><img src="/images/zopelogos/buildzope.gif" width="54" height="54"></td>
+ </tr>
+</table>
+</body>
+</html>
=== Zope3/src/zope/pagetemplate/tests/output/teeshoplaf.html 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:15:46 2002
+++ Zope3/src/zope/pagetemplate/tests/output/teeshoplaf.html Wed Dec 25 09:15:14 2002
@@ -0,0 +1,73 @@
+<html>
+<head>
+<title>Zope Stuff</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<link rel="stylesheet" href="/common.css">
+</head>
+
+<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tr bgcolor="#0000CC" align="center">
+ <td>
+ <table width="200" border="0" cellspacing="0" cellpadding="0">
+ <tr bgcolor="#FFFFFF">
+ <td><img src="/images/lside.gif" width="52" height="94"><img src="/images/swlogo.gif" width="150" height="89"><img src="/images/rside.gif" width="52" height="94"></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+<br>
+<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
+ <tr align="center">
+ <td width="25%" class="boldbodylist">apparel</td>
+ <td width="25%" class="boldbodylist">mugs</td>
+ <td width="25%" class="boldbodylist">toys</td>
+ <td width="25%" class="boldbodylist">misc</td>
+ </tr>
+</table>
+<br>
+<br>
+<div>
+<table width="500" border="0" cellspacing="0" cellpadding="0" align="center">
+ <tr>
+ <td bgcolor="#0000CC">
+ <table width="100%" border="0" cellspacing="1" cellpadding="3">
+ <tr bgcolor="#FFFFFF" align="center">
+ <td><img src="/images/welcome.gif" width="293" height="28"></td>
+ </tr>
+ <tr bgcolor="#FFFFFF" align="center" valign="top">
+ <td> <br>
+ <table width="100%" border="0" cellspacing="0" cellpadding="6">
+ <tr>
+ <td>This is the tee for those who LOVE Zope. Show your heart on
+ your tee.</td>
+ <td align="right" width="1%">
+ <p><img src="/images/smlatee.jpg" width="200" height="200"></p>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+</div>
+<br><br>
+<table width="100%" border="0" cellspacing="1" cellpadding="3" align="center">
+ <tr>
+ <td align="center" bgcolor="#FFFFFF" class="bodylist">
+ Copyright © 2000
+ <a href="http://www.4-am.com">4AM Productions, Inc.</a>.
+ All rights reserved. <br>
+ Questions or problems should be directed to
+ <a href="mailto:webmaster@teamzonline.com">the webmaster</a>,
+ 254-412-0846.</td>
+ </tr>
+ <tr>
+ <td align="center"><img src="/images/zopelogos/buildzope.gif" width="54" height="54"></td>
+ </tr>
+</table>
+</body>
+</html>