[PythonReports-checkins] htdocs prp.html, 1.1.1.1, 1.2 prt.html, 1.1.1.1, 1.2 style.css, 1.2, 1.3
Brought to you by:
a1s
From: KACAH <ka...@us...> - 2012-05-15 10:46:58
|
Update of /cvsroot/pythonreports/htdocs In directory vz-cvs-3.sog:/tmp/cvs-serv13892 Modified Files: prp.html prt.html style.css Log Message: Added API for PythonReports and Editor. New site style. Index: prp.html =================================================================== RCS file: /cvsroot/pythonreports/htdocs/prp.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** prp.html 25 Feb 2007 05:42:24 -0000 1.1.1.1 --- prp.html 15 May 2012 10:46:56 -0000 1.2 *************** *** 3,724 **** <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" /> ! <title>PythonReports Printout</title> ! <meta name="date" content="20-oct-2006" /> ! <style type="text/css"> ! ! html body { ! line-height:1.4em; [...1402 lines suppressed...] + </div> + </div> + </div> </div> + <div class="footer container"> + <div class="footnote"> + <a id="PythonTM"><b>Python</b><sup>®</sup></a> and the Python logos are trademarks or registered trademarks of the <a href="http://www.python.org/psf/">Python Software Foundation</a>. + <a id="NoHTML"><sup>(*)</sup></a> HTML output is not implemented yet. + </p> + </div> + <div class="logos"> + <a href="http://www.python.org/"><img src="python-powered-w-120x40.png" + width="120" height="40" alt="[Python Powered]"/></a> + <a href="http://sourceforge.net/projects/pythonreports/"><img + src="http://sflogo.sourceforge.net/sflogo.php?group_id=181233&type=12" + width="120" height="30" border="0" + alt="Get PythonReports at sourceforge.net. Fast, secure and Free Open Source software downloads"/></a> + </div> </div> </body> Index: style.css =================================================================== RCS file: /cvsroot/pythonreports/htdocs/style.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** style.css 30 Mar 2012 09:06:40 -0000 1.2 --- style.css 15 May 2012 10:46:56 -0000 1.3 *************** *** 1,92 **** ! body { ! background-color: #99CCFF; ! } ! ! body, p, td, h1 { ! font-family: verdana, arial, helvetica, sans-serif } ! ! td.body { ! background-color: white; ! padding: 1em; } - blockquote { ! font-size: 80%; ! font-style: italic; ! margin-left: 50%; } ! ! .footnote { ! font-size: 60%; } ! ! pre { ! background-color: #FFFFCC; ! margin-left: 2em; ! margin-right: 2em; ! padding: 1em; } ! ! img { ! border: 0px; ! padding: 5px; } ! ! td.leftbar { ! vertical-align: top; } ! ! li.menul1 { ! padding-bottom: .5em; ! position: relative; ! left: -2em; ! list-style-type: none; ! white-space: pre; } ! ! li.menul2 { ! padding-bottom: .5em; ! position: relative; ! left: -1em; ! list-style-type: none; ! white-space: pre; } ! ! div.menu { ! padding-top: 1em; ! /* must be wider than p.logos which includes 125px-wide sf logo */ ! width: 140px; } ! ! div.logos { ! position: absolute; ! bottom: 0px; } ! ! .python-code { ! background-color: #E0E0E0; ! margin-left: 2em; ! margin-right: 2em; ! padding: 1em; ! border-style: solid; ! border-width: 1px; } ! .python-token-string { ! color: #8E2323; ! #font-style: italic; } ! .python-token-name { ! color: Black; } ! .python-token-op { ! color: Green; } ! .python-token-name-keyword { ! color: black; ! font-weight: bold; } ! .python-token-comment { ! color: LightSeaGreen; ! font-weight: bold; ! } --- 1,111 ---- ! * { ! margin:0; ! padding:0; ! font-size:20px; ! } ! body { ! background-color:#f2f2f2; ! font:normal 14px "Cambria"; ! color:black; } ! img { ! border:none; } blockquote { ! font-style: italic; ! margin-left: 70%; } ! h1, h2 { ! margin:10px 0px 10px 30px; } ! p { ! padding:10px; } ! a { ! color:#378ac4; } ! .header { ! background:url("navigation.png") repeat-x; ! position: relative; ! height:47px; } ! .header .container { ! border:none; ! background:none; } ! .header .logo { ! position:relative; } ! .header .navigation{ ! float:right; ! line-height:42px; } ! .main .navigation { ! list-style:none; } ! .header ul { ! list-style:none; } ! .header ul li { ! float:left; ! margin-left:20px; } ! .header ul li a, .header ul li a.visited { ! color:#222222; ! text-decoration:none; } ! .header ul li a:hover { ! color:#378ac4; } ! .container { ! position: relative; ! width:900px; ! margin:0 auto; ! border-left:solid 1px #cacaca; ! border-right:1px solid #cacaca; ! background-color:#fafafa; ! color:#545353; } ! .main { ! padding:50px 10px 10px 10px; ! border-bottom:1px solid #cacaca; ! } ! .container .list { ! padding-left:50px; ! } ! .container .logos { ! height:50px; ! width:300px; ! margin:0 auto; ! padding-bottom:10px; ! } ! .container .logos a { ! float:left; ! } ! .footer { ! margin:0 auto; ! position:relative; ! background-color:#f2f2f2; ! border:none; ! } ! .footnote { ! text-align:center; ! width:500px; ! margin:0 auto; ! padding-top:10px; ! } ! .docinfo, .topic { ! padding-left:10px; ! } ! .simple, .topic li ul { ! padding-left:20px; ! } ! .section .simple { ! padding-left:40px; ! } ! .docutils { ! margin:0px 10px 0px 10px; ! } ! .docutils th, td { ! padding:5px; ! } \ No newline at end of file Index: prt.html =================================================================== RCS file: /cvsroot/pythonreports/htdocs/prt.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** prt.html 25 Feb 2007 05:42:26 -0000 1.1.1.1 --- prt.html 15 May 2012 10:46:56 -0000 1.2 *************** *** 3,1554 **** <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" /> ! <title>PythonReports Templates</title> ! <meta name="date" content="15-dec-2006" /> ! <style type="text/css"> ! ! html body { ! line-height:1.4em; [...3060 lines suppressed...] + </div> + </div> + </div> </div> + <div class=" footer container"> + <div class="footnote"> + <a id="PythonTM"><b>Python</b><sup>®</sup></a> and the Python logos are trademarks or registered trademarks of the <a href="http://www.python.org/psf/">Python Software Foundation</a>. + <a id="NoHTML"><sup>(*)</sup></a> HTML output is not implemented yet. + </p> + </div> + <div class="logos"> + <a href="http://www.python.org/"><img src="python-powered-w-120x40.png" + width="120" height="40" alt="[Python Powered]"/></a> + <a href="http://sourceforge.net/projects/pythonreports/"><img + src="http://sflogo.sourceforge.net/sflogo.php?group_id=181233&type=12" + width="120" height="30" border="0" + alt="Get PythonReports at sourceforge.net. Fast, secure and Free Open Source software downloads"/></a> + </div> </div> </body> |