[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZMI/www - document_icon.gif:1.2 folder_icon.gif:1.2 standard_laf.pt:1.2 standard_macros.pt:1.2 zmi_stylesheet.css:1.2
Jim Fulton
jim@zope.com
Mon, 10 Jun 2002 19:29:50 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/ZMI/www
In directory cvs.zope.org:/tmp/cvs-serv20468/lib/python/Zope/App/ZMI/www
Added Files:
document_icon.gif folder_icon.gif standard_laf.pt
standard_macros.pt zmi_stylesheet.css
Log Message:
Merged Zope-3x-branch into newly forked Zope3 CVS Tree.
=== Zope3/lib/python/Zope/App/ZMI/www/document_icon.gif 1.1 => 1.2 ===
=== Zope3/lib/python/Zope/App/ZMI/www/folder_icon.gif 1.1 => 1.2 ===
=== Zope3/lib/python/Zope/App/ZMI/www/standard_laf.pt 1.1 => 1.2 ===
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ metal:define-macro="main">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+
+ <metal:block define-slot="title">
+ <!-- Fill this slot to override the generated window title.-->
+ <title>Zope3 Management Interface</title>
+ </metal:block>
+
+ <metal:block define-slot="stylesheets">
+ <!-- Fill this slot to override the available stylesheets -->
+ <link href="zmi_stylesheet.css" rel="stylesheet" type="text/css" />
+ </metal:block>
+
+ <metal:block define-slot="basetag">
+ <!-- If you need to set the base tag, do it here. -->
+ </metal:block>
+</head>
+
+<body>
+ <div metal:define-slot="body" >
+ <!-- *All* renderable templates will fill this slot. -->
+ <h1> Title Here </h1>
+
+ <p> Now is the time for all good men to come to the aid of the Party.</p>
+ </div>
+</body>
+
+</html>
=== Zope3/lib/python/Zope/App/ZMI/www/standard_macros.pt 1.1 => 1.2 ===
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html metal:define-macro="page">
+<head>
+ <title
+ metal:define-slot="title"
+ tal:content="options/getTitle|view/getTitle|context/getTitle|default"
+ >Zope</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <div metal:define-slot="headers">
+ </div>
+</head>
+<body>
+
+ <table><tr>
+ <td tal:repeat="view views/ZMIUtility/getZMIViews">
+ <a href="" tal:attributes="href view/action" tal:content="view/label">
+ label</a>
+ </td>
+ </tr></table>
+
+ <div metal:define-slot="body">
+ <p>Body here</p>
+ </div>
+</body>
+</html>
+
=== Zope3/lib/python/Zope/App/ZMI/www/zmi_stylesheet.css 1.1 => 1.2 ===
+ font-family: sans-serif;
+ color: Black;
+ background-color: White;
+}
+
+h1 {
+ font-size: x-large;
+ font-weight: bold;
+}
+
+h2 {
+ font-size: large;
+ font-weight: bold;
+}
+
+h3 {
+ font-size: large:
+ font-weight: bold;
+ font-style: italic;
+}
+
+h4 {
+ font-weight: bold;
+ font-style: italic;
+}
+
+h5 {
+ font-size: small;
+ font-weight: bold;
+}
+
+h6 {
+ font-size: small;
+ font-weight: bold;
+ font-style: italic;
+}
+
+img {
+ border: none;
+}
+
+caption {
+ font-weight: bold;
+}