Revision: 8202
http://svn.sourceforge.net/mailman/?rev=8202&view=rev
Author: akuchling
Date: 2007-05-05 18:16:06 -0700 (Sat, 05 May 2007)
Log Message:
-----------
Add new files from the XHTML patch
Added Paths:
-----------
branches/modernize_21_webui/mailman/INSTALL-HEADFOOT
branches/modernize_21_webui/mailman/misc/mailman.css
branches/modernize_21_webui/mailman/templates/en/admloginfoot.html
branches/modernize_21_webui/mailman/templates/en/site-footer.html
branches/modernize_21_webui/mailman/templates/en/site-header.html
Added: branches/modernize_21_webui/mailman/INSTALL-HEADFOOT
===================================================================
--- branches/modernize_21_webui/mailman/INSTALL-HEADFOOT
(rev 0)
+++ branches/modernize_21_webui/mailman/INSTALL-HEADFOOT 2007-05-06
01:16:06 UTC (rev 8202)
@@ -0,0 +1,23 @@
+After you compile and install mailman you will need to copy the default css to
+the default cascading style sheet to a location accessible to your web server.
+E.g. a subdirectory of your webroot callled css. For example:
+
+ % cp $PREFIX/misc/*.{css} $WEBROOT/css
+
+You then want to add a line to your $prefix/Mailman/mm_cfg.py file which sets
+the absolute path from the web root to the css, if you have placed it in a
+directory other than /css. For Example: You then want to add a line to your
+$prefix/Mailman/mm_cfg.py file which sets the base URL for the logos.
+For example:
+
+ CSS_FILE = '/css/mailman.css'
+
+The default value for CSS_FILE is /css/mailman.css. Read the comment in
+Defaults.py.in for details.
+
+To change the sitewide headers and footers for the webpages, you will need to
+edit the site-header.html and site-footer.html pages in the templaes/en/
+directory. These will add headers/footers to the pages that are created in the
+Mailman code. The pages that are created from existing templates will need to
+changed separately.
+
Added: branches/modernize_21_webui/mailman/misc/mailman.css
===================================================================
--- branches/modernize_21_webui/mailman/misc/mailman.css
(rev 0)
+++ branches/modernize_21_webui/mailman/misc/mailman.css 2007-05-06
01:16:06 UTC (rev 8202)
@@ -0,0 +1,131 @@
+/* Import Site Specific Style Sheet */
[EMAIL PROTECTED] url("site.css");
+/* page back and fore colors */
+body {
+ background-color: #ffffff;
+ color: #000000;
+}
+/* Main Header color */
+.mmHeader, h1 {
+ background-color: #99ccff;
+ color: #000000;
+ padding: 5px 5px 5px 5px;
+}
+/* Subheader color */
+.mmSubHeader, h2,
+.mmSubHeaderFifty {
+ background-color: #fff0d0;
+ color: #000000;
+}
+
+
+.mmAdminItem, .mmAdminItemFiftyFive,
+ .mmAdminItemRight {
+ background-color: #dddddd;
+ color: #000000;
+}
+
+.mmAdminPW {
+ background-color: #99cccc;
+ color: # 000000;
+}
+
+.mmError {
+ background-color: #ffffff;
+ color: #ff0000;
+}
+
+.mmErrorBackground {
+ background-color: #ff0000;
+ color: #000000;
+}
+
+.mmOptions {
+ background-color: #cccccc;
+ color: #000000;
+}
+
+.mmCenter {
+ text-align: center;
+}
+
+.mmCenter table {
+ margin: auto auto;
+}
+
+.mmRight, .mmAdminItemRight {
+ text-align: right;
+}
+
+.mmFloatRight {
+ float: right;
+ display: block;
+}
+
+.mmLeft {
+ text-align: left;
+}
+
+.mmTwelve {
+ width: 12%;
+}
+
+.mmThirtyThree {
+ width: 33%;
+}
+
+.mmFifty {
+ width: 50%;
+}
+
+.mmAdminItemFiftyFive {
+ width: 55%;
+}
+
+.mmSixty {
+ width: 60%;
+}
+
+.mmSeventy {
+ width: 70%;
+}
+
+.mmSizeMinus1 {
+ font-size: small;
+}
+
+.mmSizePlus1 {
+ font-size: large;
+}
+
+.mmSizePlus2 {
+ font-size: x-large;
+}
+
+h1 {
+ font-size: 1.5em;
+}
+
+h2{
+ font-size: 1.25em;
+}
+
+h3 {
+ font-size: 1.1em;
+}
+
+.mmHighlight {
+ background-color: #dddddd;
+ color: #000000;
+}
+
+.mmListNoBullet {
+ list-style: none;
+}
+
+.mmAdminListError {
+ color: #ff5060;
+ font-size: large;
+ background-color: #ffffff;
+}
+
Added: branches/modernize_21_webui/mailman/templates/en/admloginfoot.html
===================================================================
--- branches/modernize_21_webui/mailman/templates/en/admloginfoot.html
(rev 0)
+++ branches/modernize_21_webui/mailman/templates/en/admloginfoot.html
2007-05-06 01:16:06 UTC (rev 8202)
@@ -0,0 +1,3 @@
+%(mmfooter)s
+</body>
+</html>
Added: branches/modernize_21_webui/mailman/templates/en/site-footer.html
===================================================================
--- branches/modernize_21_webui/mailman/templates/en/site-footer.html
(rev 0)
+++ branches/modernize_21_webui/mailman/templates/en/site-footer.html
2007-05-06 01:16:06 UTC (rev 8202)
@@ -0,0 +1,3 @@
+ </body>
+</html>
+
Added: branches/modernize_21_webui/mailman/templates/en/site-header.html
===================================================================
--- branches/modernize_21_webui/mailman/templates/en/site-header.html
(rev 0)
+++ branches/modernize_21_webui/mailman/templates/en/site-header.html
2007-05-06 01:16:06 UTC (rev 8202)
@@ -0,0 +1,11 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html>
+ <head>
+ <link rel="SHORTCUT ICON" href="%(mm-favicon)s" />
+ <link href="%(mm-stylesheet)s" rel="stylesheet" type="text/css" />
+ <meta name="robots" content="noindex,follow" />
+ <title>%(mm-page-title)s</title>
+ %(meta)s
+ </head>
+ <body>
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org