Implemented a match template for cutaway-shadowed boxes
authorAaron Bentley <abentley@panoramicfeedback.com>
Fri, 2 Dec 2005 22:44:59 +0000 (22:44 +0000)
committerAaron Bentley <abentley@panoramicfeedback.com>
Fri, 2 Dec 2005 22:44:59 +0000 (22:44 +0000)
beweb/beweb/static/images/is-b.png [new file with mode: 0644]
beweb/beweb/static/images/is-bl.png [new file with mode: 0644]
beweb/beweb/static/images/is-br.png [new file with mode: 0644]
beweb/beweb/static/images/is-l.png [new file with mode: 0644]
beweb/beweb/static/images/is-r.png [new file with mode: 0644]
beweb/beweb/static/images/is-t.png [new file with mode: 0644]
beweb/beweb/static/images/is-tl.png [new file with mode: 0644]
beweb/beweb/static/images/is-tr.png [new file with mode: 0644]
beweb/beweb/static/images/shadows.png [new file with mode: 0644]
beweb/beweb/templates/master.kid

diff --git a/beweb/beweb/static/images/is-b.png b/beweb/beweb/static/images/is-b.png
new file mode 100644 (file)
index 0000000..25d3cfa
Binary files /dev/null and b/beweb/beweb/static/images/is-b.png differ
diff --git a/beweb/beweb/static/images/is-bl.png b/beweb/beweb/static/images/is-bl.png
new file mode 100644 (file)
index 0000000..f496223
Binary files /dev/null and b/beweb/beweb/static/images/is-bl.png differ
diff --git a/beweb/beweb/static/images/is-br.png b/beweb/beweb/static/images/is-br.png
new file mode 100644 (file)
index 0000000..74cbd91
Binary files /dev/null and b/beweb/beweb/static/images/is-br.png differ
diff --git a/beweb/beweb/static/images/is-l.png b/beweb/beweb/static/images/is-l.png
new file mode 100644 (file)
index 0000000..dd567fa
Binary files /dev/null and b/beweb/beweb/static/images/is-l.png differ
diff --git a/beweb/beweb/static/images/is-r.png b/beweb/beweb/static/images/is-r.png
new file mode 100644 (file)
index 0000000..9ac4486
Binary files /dev/null and b/beweb/beweb/static/images/is-r.png differ
diff --git a/beweb/beweb/static/images/is-t.png b/beweb/beweb/static/images/is-t.png
new file mode 100644 (file)
index 0000000..fbb06c8
Binary files /dev/null and b/beweb/beweb/static/images/is-t.png differ
diff --git a/beweb/beweb/static/images/is-tl.png b/beweb/beweb/static/images/is-tl.png
new file mode 100644 (file)
index 0000000..9336290
Binary files /dev/null and b/beweb/beweb/static/images/is-tl.png differ
diff --git a/beweb/beweb/static/images/is-tr.png b/beweb/beweb/static/images/is-tr.png
new file mode 100644 (file)
index 0000000..de74808
Binary files /dev/null and b/beweb/beweb/static/images/is-tr.png differ
diff --git a/beweb/beweb/static/images/shadows.png b/beweb/beweb/static/images/shadows.png
new file mode 100644 (file)
index 0000000..9ddc676
Binary files /dev/null and b/beweb/beweb/static/images/shadows.png differ
index b2d9fa80499e92890a2a67a4e41b9cf0c41ee349..6e254bdc9dae61bfc9468e567f4ae08b0a3ae576 100644 (file)
     
     <div py:replace="item[:]"/>
 </body>
+<table py:match="item.tag=='{http://www.w3.org/1999/xhtml}innerbox'" cellspacing="0" cellpadding="0">
+<tr><td><img src="/static/images/is-tl.png" /></td>
+    <td background="/static/images/is-t.png" />
+    <td><img src="/static/images/is-tr.png"/></td>
+</tr>
+<tr>
+    <td background="/static/images/is-l.png"/>
+    <td py:content="item.text"> Hello, this is some random text</td>
+    <td background="/static/images/is-r.png"/>
+</tr>
+<tr>
+    <td><img src="/static/images/is-bl.png" /></td>
+    <td background="/static/images/is-b.png" />
+    <td><img src="/static/images/is-br.png"/></td>
+</tr>
+</table>
 </html>