--- a/spec/index.php Thu Aug 30 16:50:04 2012 +0200
+++ b/spec/index.php Thu Aug 30 17:21:37 2012 +0200
@@ -1,7 +1,5 @@
-<?php
-print <<< htmlcode
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
- "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
+ "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html version="XHTML+RDFa 1.0" xmlns="http://www.w3.org/1999/xhtml"
xmlns:xhv="http://www.w3.org/1999/xhtml/vocab#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
@@ -9,122 +7,148 @@
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
xmlns:v="http://rdf.data-vocabulary.org/#"
- >
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
- <title>JSON-LD - Specifications</title>
- <link href="../site.css" rel="stylesheet" type="text/css" />
- <link rel="shortcut icon" href="favicon.ico" />
- </head>
-
- <body>
- <div id="container">
- <div id="header">
- <span class="col">
+ >
+ <head>
+ <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
+ <title>JSON-LD - Specifications</title>
+ <link href="../site.css" rel="stylesheet" type="text/css" />
+ <link rel="shortcut icon" href="favicon.ico" />
+ </head>
+
+ <body>
+ <div id="container">
+ <div id="header">
+ <span class="col">
<img class="banner" src="../images/json-ld-logo-1.png" />
<img class="banner" src="../images/json-ld-logo-2.png" />
<img class="banner" src="../images/json-ld-logo-3.png" />
<h1>Specifications</h1>
- </span>
- </div>
+ </span>
+ </div>
- <div id="content">
+ <div id="content">
<div class="breadcrumbs"><a href="../">JSON-LD</a> > Specifications</div>
- <div id="info">
- <h1>Specifications</h1>
+ <div id="info">
+ <h1>Specifications</h1>
<p>The following specifications are sorted in most recent to
least recent order.</p>
-
+
<h2>The JSON-LD Syntax</h2>
<ul>
<li><a href="latest/json-ld-syntax/">latest</a></li>
-
-htmlcode;
-
-$editorsDrafts = scandir('ED/json-ld-syntax', 1);
+<?php
-foreach($editorsDrafts as $draft)
+function getDrafts($spec)
{
- if($draft != "." and $draft != "..")
- {
- print(" <li><a href=\"ED/json-ld-syntax/$draft/\">$draft</a></li>");
- }
+ $spec .= '/';
+
+ // Find all drafts
+ $ed = @scandir('ED/' . $spec);
+ $fcgs = @scandir('FCGS/' . $spec);
+ $wd = @scandir('WD/' . $spec);
+
+ $all = array();
+
+ // Transform the arrays to date -> directory form
+ if ($ed) {
+ foreach ($ed as $date) {
+ if ('.' === $date[0]) {
+ continue;
+ }
+
+ $all[$date] = 'ED/' . $spec . $date;
+ }
+ }
+
+ if ($fcgs) {
+ foreach ($fcgs as $date) {
+ if ('.' === $date[0]) {
+ continue;
+ }
+
+ $all[$date] = 'FCGS/' . $spec . $date;
+ }
+ }
+
+ if ($wd) {
+ foreach ($wd as $date) {
+ if ('.' === $date[0]) {
+ continue;
+ }
+
+ $all[$date] = 'WD/' . $spec . $date;
+ }
+ }
+
+ // Sort draftsin descending order
+ krsort($all);
+
+ return $all;
}
-print <<< htmlcode
+$drafts = getDrafts('json-ld-syntax');
+
+foreach ($drafts as $date => $dir) {
+ print(" <li><a href=\"$dir/\">$date</a></li>");
+}
+
+?>
</ul>
<h2>The JSON-LD API</h2>
<ul>
<li><a href="latest/json-ld-api/">latest</a></li>
-htmlcode;
-
-$editorsDrafts = scandir('ED/json-ld-api', 1);
+<?php
-foreach($editorsDrafts as $draft)
-{
- if($draft != "." and $draft != "..")
- {
- print(" <li><a href=\"ED/json-ld-api/$draft/\">$draft</a></li>");
- }
+$drafts = getDrafts('json-ld-api');
+
+foreach ($drafts as $date => $dir) {
+ print(" <li><a href=\"$dir/\">$date</a></li>");
}
-print <<< htmlcode
+?>
</ul>
<h2>JSON-LD Framing</h2>
<ul>
<li><a href="latest/json-ld-framing/">latest</a></li>
-htmlcode;
-
-$editorsDrafts = scandir('ED/json-ld-framing', 1);
+<?php
-foreach($editorsDrafts as $draft)
-{
- if($draft != "." and $draft != "..")
- {
- print(" <li><a href=\"ED/json-ld-framing/$draft/\">$draft</a></li>");
- }
+$drafts = getDrafts('json-ld-framing');
+
+foreach ($drafts as $date => $dir) {
+ print(" <li><a href=\"$dir/\">$date</a></li>");
}
-print <<< htmlcode
+?>
</ul>
<h2>RDF Graph Normalization</h2>
<ul>
<li><a href="latest/rdf-graph-normalization/">latest</a></li>
-htmlcode;
-
-$editorsDrafts = scandir('ED/rdf-graph-normalization', 1);
+<?php
-foreach($editorsDrafts as $draft)
-{
- if($draft != "." and $draft != "..")
- {
- print(" <li><a href=\"ED/rdf-graph-normalization/$draft/\">$draft</a></li>");
- }
+$drafts = getDrafts('rdf-graph-normalization');
+
+foreach ($drafts as $date => $dir) {
+ print(" <li><a href=\"$dir/\">$date</a></li>");
}
-print <<< htmlcode
+?>
</ul>
</div>
</div>
-
- <div id="footer">
- <p id="copyright">
+
+ <div id="footer">
+ <p id="copyright">
Website content released under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution Share-Alike license</a> except where an alternate is specified.
- </p>
- <p id="legal">
+ </p>
+ <p id="legal">
Part of the <a href="http://payswarm.com/">payswarm.com</a> initiative.
</p>
- </div>
- </div>
- </body>
+ </div>
+ </div>
+ </body>
</html>
-
-htmlcode;
-
-?>
-