2009/dap/ReSpec.js documentation.html,1.23,1.24 template.html,1.5,1.6

Update of /sources/public/2009/dap/ReSpec.js
In directory hutz:/tmp/cvs-serv32437

Modified Files:
	documentation.html template.html 
Log Message:
add support for optional authors list

Index: documentation.html
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/documentation.html,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- documentation.html	30 Sep 2009 15:24:54 -0000	1.23
+++ documentation.html	12 Nov 2009 17:24:28 -0000	1.24
@@ -300,6 +300,57 @@
             editor who stands out as having contributed far more than most is placed first.
           </p>
         </dd>
+        <dt>authors</dt>
+        <dd>
+          <p>
+            An array describing authors that contains objects with the following fields:
+          </p>
+          <table class='simple'>
+            <thead>
+              <tr><th>key</th><th>optional</th><th>description</th></tr>
+            </thead>
+            <tbody>
+              <tr>
+                <td>name</td>
+                <td>No</td>
+                <td>
+                  The name of the author.
+                </td>
+              </tr>
+              <tr>
+                <td>url</td>
+                <td>Yes</td>
+                <td>
+                  The URL to the author's website.
+                </td>
+              </tr>
+              <tr>
+                <td>company</td>
+                <td>Yes</td>
+                <td>
+                  The author's affiliation.
+                </td>
+              </tr>
+              <tr>
+                <td>companyURL</td>
+                <td>Yes</td>
+                <td>
+                  The URL to the author's affiliation's website.
+                </td>
+              </tr>
+            </tbody>
+          </table>
+          <p>
+            Use of authors is entirely optional,none are required. You
+            can have as many authors as you want. They will be displayed 
+            in the provided order. There are two conventions usually
+            applied within W3C: by alphabetical 
+            order of last name, or of first name — choose whichever
+            applies to your WG. Sometimes one 
+            author who stands out as having contributed far more than
+            most is placed first. 
+          </p>
+        </dd>
         <dt>wg</dt>
         <dd>
           The full and official name of the group (WG, IG, CG, XG, TF, etc.) in charge of this document.

Index: template.html
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/template.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- template.html	2 Sep 2009 13:34:28 -0000	1.5
+++ template.html	12 Nov 2009 17:24:28 -0000	1.6
@@ -41,6 +41,15 @@
               { name: "Your Name", url: "http://example.org/",
                 company: "Your Company", companyURL: "http://example.com/" },
           ],
+
+          // authors, add as many as you like. 
+          // This is optional, uncomment if you have authors as well as editors.
+          // only "name" is required. Same format as editors.
+
+          //authors:  [
+          //    { name: "Your Name", url: "http://example.org/",
+          //      company: "Your Company", companyURL: "http://example.com/" },
+          //],
           
           // name of the WG
           wg:           "In Charge Of This Document Working Group",

Received on Thursday, 12 November 2009 17:24:39 UTC