logo       

svn commit: r1295 - trunk/viewvc.org: msg#00023

Subject: svn commit: r1295 - trunk/viewvc.org
Author: cmpilato
Date: Mon Mar 27 11:31:35 2006
New Revision: 1295

Modified:
   trunk/viewvc.org/contributing.html
   trunk/viewvc.org/template-authoring-guide.html
   trunk/viewvc.org/url-reference.html
Log:
* viewvc.org/url-reference.html
  Make the stylesheet more like that of the template authoring guide.

* viewvc.org/template-authoring-guide.html
  Collapse some style definitions, and add a little intro paragraph.

* viewvc.org/contributing.html
  Hook the template authoring guide and URL reference into this document.


Modified: trunk/viewvc.org/contributing.html
Url: 
http://viewvc.tigris.org/source/browse/viewvc/trunk/viewvc.org/contributing.html?view=diff&rev=1295&p1=trunk/viewvc.org/contributing.html&r1=1294&p2=trunk/viewvc.org/contributing.html&r2=1295
==============================================================================
--- trunk/viewvc.org/contributing.html  (original)
+++ trunk/viewvc.org/contributing.html  Mon Mar 27 11:31:35 2006
@@ -110,7 +110,7 @@
    — Jamie Zawinski
 </blockquote>
 
-<p>Of course, an symphony of insanity can be composed in any language,
+<p>Of course, a symphony of insanity can be composed in any language,
    so we do try to stick to some basic guiding principles.  Maintain
    whatever style is present in the code being modified.  New code can
    use anything sane (which generally means <a
@@ -170,6 +170,16 @@
    <code>cgi/viewvc.conf.dist</code> file and the library module
    <code>lib/config.py</code> in sync.</p>
 
+<p>Because ViewVC is a Web-based application, people will have ViewVC
+   URLs hyperlinked from other sites, embedded in emails, bookmarked
+   in their browsers, etc.  It is very important to ensure that those
+   URLs continue to retrieve the information they were intended to
+   retrieve even if ViewVC is upgraded on the hosting server.  In
+   other words, as new features require modifications to the <a
+   href="./url-reference.html">ViewVC URL schema</a>, make sure those
+   modifications preserve the existing functionality of all ViewVC
+   URLs.</p>
+
 <p>The library subdirectory contains a module <code>debug.py</code>,
    which you may find useful for performance testing.</p>
 
@@ -184,7 +194,9 @@
 <p>The library module <code>ezt.py</code> contains a module docstring
    which describes the directives used in the HTML templates used by
    ViewVC.  The templates themselves can be found in the
-   <code>templates</code> subdirectory.</p>
+   <code>templates</code> subdirectory.  We're currently developing a
+   how-to guide for <a href="./template-authoring-guide.html">ViewVC
+   template customization</a>.</p>
 
 </div>
 <div class="section">

Modified: trunk/viewvc.org/template-authoring-guide.html
Url: 
http://viewvc.tigris.org/source/browse/viewvc/trunk/viewvc.org/template-authoring-guide.html?view=diff&rev=1295&p1=trunk/viewvc.org/template-authoring-guide.html&r1=1294&p2=trunk/viewvc.org/template-authoring-guide.html&r2=1295
==============================================================================
--- trunk/viewvc.org/template-authoring-guide.html      (original)
+++ trunk/viewvc.org/template-authoring-guide.html      Mon Mar 27 11:31:35 2006
@@ -9,9 +9,13 @@
 }
 table { margin-left: 1em; }
 td, th { padding: 0 0.5em; }
-th { vertical-align: bottom; }
-td { vertical-align: top; }
-th { background: rgb(60%,70%,90%); }
+th { 
+  vertical-align: bottom; 
+  background: rgb(60%,70%,90%);
+}
+td { 
+  vertical-align: top; 
+}
 .h2, .h3 {
   padding: 0.5em 1em;
   border-color: black;
@@ -39,7 +43,9 @@
 <div class="h2">
 <h2 id="introduction">Introduction</h2>
 
-<p>### TODO ###</p>
+<p>This document represents an (unfinished) attempt at providing
+   documentation for how to customize ViewVC 1.0-dev's HTML output via
+   modification of its templates.</p>
 
 </div>
 

Modified: trunk/viewvc.org/url-reference.html
Url: 
http://viewvc.tigris.org/source/browse/viewvc/trunk/viewvc.org/url-reference.html?view=diff&rev=1295&p1=trunk/viewvc.org/url-reference.html&r1=1294&p2=trunk/viewvc.org/url-reference.html&r2=1295
==============================================================================
--- trunk/viewvc.org/url-reference.html (original)
+++ trunk/viewvc.org/url-reference.html Mon Mar 27 11:31:35 2006
@@ -2,50 +2,29 @@
 <head>
 <title>ViewVC 1.0 URL Reference</title>
 <style>
-
 body {
   background-color: rgb(180,193,205);
   color: black;
   font-family: sans-serif;
 }
-
-table { margin-left: 1em; vertical-align: top; }
-
-code { font-size: 130% }
-
-th {
-  color: #ffffff; 
-  background: #7a5ada;
-  font-size: 0.8em;
-  font-weight: bold;
-  text-align: left;
-  padding-left: 0.5em;
-  padding-right: 0.5em;
-  padding-bottom: 0em;
-  padding-top: 0em;
+table { margin-left: 1em; }
+td, th { padding: 0 0.5em; }
+th { 
+  vertical-align: bottom; 
+  background: rgb(60%,70%,90%);
 }
-
-td {
-  background: #ddddff;
-  font-size: 0.8em;
-  font-weight: bold;
-  vertical-align: top;
-  padding-bottom: 0.1em; 
-  padding-top: 0.1em;
-  padding-left: 1em;
-  padding-right: 1em;
+td { 
+  vertical-align: top; 
+  background: rgb(65%,85%,65%);
 }
-
-.h2, .h3 {
+.h2 {
   padding: 0.5em 1em;
   border-color: black;
   border-style: solid;
   margin-bottom: 1em;
   background: white;
+  border-width: 1px 2px 2px 1px;
 }
-
-.h2 { border-width: 1px 2px 2px 1px; }
-.h3 { border-width: 1px 0 0 0; }
 .toc-list { font-size: 90%; }
 
 </style>


<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
linux.arklinux....    user-groups.lin...    kde.usability/2...    ietf.ipp/2002-0...    mail.spam.spamc...    os.netbsd.devel...    audio.cd-record...    text.unicode.de...    php.documentati...    games.fps.halfl...    window-managers...    suse.oracle.gen...    bug-tracking.gn...    video.dvdrip.us...    xfree86.cvs/200...    java.netbeans.m...    network.argus/2...    culture.sf.kill...    debian.ports.al...    freebsd.questio...    qplus.devel/200...    handhelds.palm....   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe