Header and status updates
authorGavin Carothers <gavin@carothers.name>
Wed, 20 Jun 2012 15:44:49 -0700
changeset 477 fa52d45123c7
parent 476 dfd89b0ac9d3
child 478 92a532e3ce23
Header and status updates
ReSpec.js/js/respec.js
rdf-turtle/index.html
--- a/ReSpec.js/js/respec.js	Wed Jun 20 15:07:21 2012 -0700
+++ b/ReSpec.js/js/respec.js	Wed Jun 20 15:44:49 2012 -0700
@@ -749,11 +749,24 @@
                 header += "<span" + rn + ">" + pers.name + "</span>";
             }
             if (pers.company) {
-                header += ", ";
-                if (pers.companyURL) {
-                    header += "<a" + rwu + " href='" + pers.companyURL + "'>" + pers.company + "</a>";
+                
+                if (Object.prototype.toString.call(pers.company) === '[object Array]') {
+                    for (var j = 0; j < pers.company.length; j++) {
+                        header += ", ";
+                        var company = pers.company[j];
+                        if (company.url) {
+                            header += "<a" + rwu + " href='" + company.url + "'>" + company.name + "</a>";
+                        } else {
+                            header += company.name;
+                        }
+                    }
                 } else {
-                    header += pers.company;
+                    header += ", ";
+                    if (pers.companyURL) {
+                        header += "<a" + rwu + " href='" + pers.companyURL + "'>" + pers.company + "</a>";
+                    } else {
+                        header += pers.company;
+                    }
                 }
             }
             if (pers.mailto) {
--- a/rdf-turtle/index.html	Wed Jun 20 15:07:21 2012 -0700
+++ b/rdf-turtle/index.html	Wed Jun 20 15:44:49 2012 -0700
@@ -24,7 +24,7 @@
       };
       var respecConfig = {
 	  // specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
-	  specStatus:           "ED",
+	  specStatus:           "LC",
 	  
 	  // the specification's short name, as in http://www.w3.org/TR/short-name/
 	  shortName:            "turtle",
@@ -34,7 +34,7 @@
 	  subtitle   :  "Terse RDF Triple Language",
 
 	  // if you wish the publication date to be other than today, set this
-	  // publishDate:  "2011-08-09",
+	  publishDate:  "2012-06-27",
 
 	  // if the specification's copyright date is a range of years, specify
 	  // the start date here:
@@ -50,7 +50,7 @@
 	  edDraftURI:           "http://dvcs.w3.org/hg/rdf/raw-file/default/rdf-turtle/index.html",
 
 	  // if this is a LCWD, uncomment and set the end of its review period
-	  // lcEnd: "2009-08-05",
+	  lcEnd: "2012-08-15",
 
 	  // if you want to have extra CSS, append them to this list
 	  // it is recommended that the respec.css stylesheet be kept
@@ -62,7 +62,8 @@
 	      { name: "Eric Prud'hommeaux", url: "http://www.w3.org/People/Eric/",
 		company: "W3C", companyURL: "http://www.w3.org/" },
 	      { name: "Gavin Carothers", url: "http://gavin.carothers.name/",
-		company: "TopQuadrant, Inc", companyURL: "http://topquadrant.com/" },
+		company: [{name:"TopQuadrant, Inc", url: "http://topquadrant.com/"},
+				  {name:"Lex Machina, Inc", url: "http://lexmachina.com/"} ] },
 	  ],
 
 	  // authors, add as many as you like. 
@@ -76,7 +77,8 @@
 	      { name: "Eric Prud'hommeaux", url: "http://www.w3.org/People/Eric/",
 		company: "W3C", companyURL: "http://www.w3.org/" },
 	      { name: "Gavin Carothers", url: "http://gavin.carothers.name/",
-		company: "TopQuadrant, Inc", companyURL: "http://topquadrant.com/" },
+		company: [{name:"TopQuadrant, Inc", url: "http://topquadrant.com/"},
+				  {name:"Lex Machina, Inc", url: "http://lexmachina.com/"} ]},
 	  ],
 	  
 	  // name of the WG