Author: katstevens Date: 2008-07-25 20:43:58 +0100 (Fri, 25 Jul 2008) New Revision: 1181
Added: website-new/preview/branding.html website-new/preview/css/ website-new/preview/css/dropdown.css website-new/preview/css/dropdown_ie.css website-new/preview/css/openguides.css website-new/preview/img/ website-new/preview/img/aec_logo.gif website-new/preview/img/example_image.png website-new/preview/img/freeourdata.gif website-new/preview/img/locales_example.png website-new/preview/img/logo.jpg website-new/preview/img/logo.png website-new/preview/img/map_header.jpg website-new/preview/img/mapping_hacks.gif website-new/preview/img/new_logo_2006.png website-new/preview/img/new_logo_2006_tests.png website-new/preview/img/ogbg.png website-new/preview/img/old_logo/ website-new/preview/img/old_logo/logo.jpg website-new/preview/img/old_logo/logo_small.jpg website-new/preview/img/openguides-perldotcom.gif website-new/preview/img/openguides-web20.png website-new/preview/img/paypal_donate.gif website-new/preview/img/pgd.png website-new/preview/img/powered_by_perl.png website-new/preview/img/prix_ars_electronica_2004.gif website-new/preview/img/rdf_icon.png website-new/preview/img/rdf_icon_small.png website-new/preview/img/republic.gif website-new/preview/img/thermo-base.png website-new/preview/img/thermo-empty.png website-new/preview/img/thermo-full.png website-new/preview/img/thermo-top.png website-new/preview/img/thermo.html website-new/preview/includes/ website-new/preview/includes/cities_list.inc website-new/preview/includes/footer.inc website-new/preview/includes/header.inc website-new/preview/includes/latest_news.inc website-new/preview/includes/sidebar.shtml website-new/preview/index.html website-new/preview/information.html website-new/preview/irc.html website-new/preview/lists.html website-new/preview/news.html website-new/preview/release_notes.html website-new/preview/search_help.html website-new/preview/software.html website-new/preview/text_formatting.html Log: First check in of rewrite using SSI but no perl.
Added: website-new/preview/branding.html =================================================================== --- website-new/preview/branding.html (rev 0) +++ website-new/preview/branding.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,70 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Branding Guidelines</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + + <h1>Using the Name</h1> + <p> + We count our brand as the premiere of our corporate assets. Our brand and + corporate identity have immeasurable value; their utility increases each time + it they are presented properly and decreases with every incorrect or improper + application. Brand attributes define OpenGuides, and accurate and consistent use + of our trademarks is vital to protect the OpenGuides corporate identity. When + it is presented consistently, we create a positive and lasting impression of our + company. It is your responsibility to comply with the most current version of + these guidelines. + </p> + <p> + ...Just kidding. + </p> + <p> + In reality, we have a pretty relaxed approach to the application of the + OpenGuides name. It can be summed up as follows: + </p> + <ol> + <li>If you set up a city guide and would like to be part of our + guide network, please link to openguides.org from your site's front page. + Using the words "the OpenGuides network" somewhere would be ideal.</li> + <li>It's "OpenGuides" for the project name, but "The Open Guide + to..." when it comes to naming Guides. On the other hand, your site + doesn't have to be called "the Open Guide to Wherever"; you can name it + whatever you like. Do what suits you best.</li> + <li>If you're using our software for another purpose, please mention on + the front page that your site's powered by OpenGuides, and have a link to us.</li> + </ol> + <p> + That's it - thanks! + </p> + + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> +<!-- end content --> + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/css/dropdown.css =================================================================== --- website-new/preview/css/dropdown.css (rev 0) +++ website-new/preview/css/dropdown.css 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,44 @@ +/* ================================================================ +This copyright notice must be untouched at all times. + +The original version of this stylesheet and the associated (x)html +is available at http://www.cssplay.co.uk/menus/dd_valid.html +Copyright (c) 2005-2007 Stu Nicholls. All rights reserved. +This stylesheet and the assocaited (x)html may be modified in any +way to fit your requirements. +=================================================================== */ +/* common styling */ +.menu {font-family: arial, sans-serif; width:393px; height:32px; position:relative; + font-size:12px; z-index:100;margin: 0 auto;vertical-align:middle;} + +/* top level menu block styles when not hovered */ + +.menu ul li a, +.menu ul li a:visited + {display:block; text-decoration:none; + width:129px; height:25px; text-align:center; color:#fff; + border:1px solid #fff; background:#ccc; line-height:18px; font-size:12px;} + +.menu ul {padding:0; margin:0; list-style: none;} +.menu ul li {float:left; position:relative;} +.menu ul li ul {display: none;} + + +/* *** specific to non IE browsers *** */ + +/* top level menu blocks hover style*/ + +.menu ul li:hover a {color:#fff; background:#999;} +.menu ul li:hover ul {display:block; position:absolute; top:26px; left:0; width:130px;} + +/* dropdown menu blocks hover style*/ + +.menu ul li:hover ul li a:hover {background:#72b72e; color:#000;} + +/* dropdown menu blocks non-hovered style */ + +.menu ul li:hover ul li a {display:block; background:#ddd; color:#000;} + + + +
Added: website-new/preview/css/dropdown_ie.css =================================================================== --- website-new/preview/css/dropdown_ie.css (rev 0) +++ website-new/preview/css/dropdown_ie.css 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,42 @@ +/* ================================================================ +This copyright notice must be untouched at all times. + +The original version of this stylesheet and the associated (x)html +is available at http://www.cssplay.co.uk/menus/dd_valid.html +Copyright (c) 2005-2007 Stu Nicholls. All rights reserved. +This stylesheet and the assocaited (x)html may be modified in any +way to fit your requirements. +=================================================================== */ + +/* these commands hide the top level menu blocks in IE when not hovered */ +.menu ul li a.hide, +.menu ul li a:visited.hide {display:none;} + +/* top level menu blocks hover style */ +.menu ul li a:hover {color:#fff; background:#999;} + +/* dropdown menu blocks style*/ + +.menu ul li a:hover ul {display:block; overflow:visible; position:absolute; top:26px; left:0; width:130px;} +.menu ul li a:hover ul li a {display:block; overflow:visible; background:#ccc; color:#fff;} + +/* dropdown menu blocks hover style*/ +.menu ul li a:hover ul li a:hover {background:#72b72e; color:#fff;} + + + + + + + + + + + + + + + + + +
Added: website-new/preview/css/openguides.css =================================================================== --- website-new/preview/css/openguides.css (rev 0) +++ website-new/preview/css/openguides.css 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,240 @@ +/* ****** default tag styles ****** */ + +body +{ + margin: 20px; + padding-right: 10%; + background: #fff; +} + +body, div, p, th, td +{ + font-family: Helvetica, Arial, sans-serif; + font-size: 12px; + line-height: 1.3em; +} + +a +{ + background: transparent; + color: #006; +} + +h1, h2, h3 +{ + letter-spacing: 0em; + background: transparent; + color: #72b72e; + text-align: left; + font-weight: bold; +} + +#centeringdivforie +{ + text-align:center; +} + + +/* ****** header logo styles ****** */ +/* ****** (header menu styles are found in dropdown.css and dropdown_ie.css) ****** */ + +#header +{ + margin-bottom: 20px; + text-align: center; +} + +#header img +{ + display: block; + margin: auto; + border:none; +} + +#sidebar +{ + float: right; + width: 30%; + margin: 0px 0px 20px 20px; +} + +/* ****** cities list styles ****** */ + +#cities_list +{ + width: 100%; + padding: 10px 5px; + -moz-border-radius: 10px; + background-color: #5ed8e7; + color: #000; + margin: 10px 0px 20px 0px; +} + +#cities_list table +{ + margin: auto; +} + +#cities_list table td +{ + width: 50%; +} + +#cities_list_header +{ + width: 100%; + text-align: center; + font-size: 1.2em; + font-weight: bold; + letter-spacing: -0.05em; +} + +#cities_list table th +{ + text-align: left; + font-weight: bold; + padding: 10px 5px 0px 5px; +} + +#cities_list table td +{ + vertical-align: top; + padding: 0px 5px 0px 5px; + line-height: 1.1em; +} + +/* ****** latest news styles ****** */ + +#news +{ + width: 100%; + background:#eee; + color: #000; + padding: 2px 5px 5px 5px; + margin-bottom: 20px; + -moz-border-radius: 10px; +} + +.news_title, dd +{ + margin-bottom: 1em; +} + +.news_date +{ + font-weight: bold; +} + +/* ****** mapping hacks styles ****** */ + +#mapping_hacks +{ + width:100%; + background:#eee; + padding: 2px 5px 5px 5px; + text-align: center; + -moz-border-radius: 10px; +} + + +/* ****** main content styles ****** */ + +#main_text +{ + margin: 10px 5px 20px 40px; + padding-top:5px; + width: 100%; + text-align: left; +} + + + + +/* ****** footer styles ****** */ + +#footer { + text-align:left; + background:#fff; + width:67%; + margin-left:35px; + padding: 2px 5px 5px 5px; +} + +#freeourdata { + margin: 10px 0px; +} + +#freeimg { + width:150; height:91; border:none; +} + +#freethepostcode { + text-align:center; + margin: 10px 0px; + width: 200px; border: 2px solid #800; + padding: 5px; +} + +#freethepostcode a { + font-weight: bold; color: #800; background: transparent; + text-decoration: none; font-family: serif; +} + +#trademarks +{ + padding-top: 1em; + text-align: center; + font-size: 0.9em; + clear:both; +} + +#trademarks em, dt { + font-style: italic; +} + + + + +/* ****** release notes table styles ****** */ + +.version_latest +{ + border-top: 1px solid #000; + border-left: 1px solid #000; + border-bottom: 1px solid #000; +} + +.version_latest, +.version, +.version_details, +.version_details_grey, +.version_details_grey_latest +{ + padding: 5px; +} + +.version_details_grey, +.version_details_grey_latest, +.release_links +{ + background: #dedede; color: #000; +} + +.version_details_grey_latest +{ + border-top: 1px solid #000; + border-bottom: 1px solid #000; +} + +.release_links +{ + text-align: center; + border-left: 1px dotted #000; + border-top: 1px solid #000; + border-right: 1px solid #000; + border-bottom: 1px solid #000; +} + + + +
Added: website-new/preview/img/aec_logo.gif =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/aec_logo.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/example_image.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/example_image.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/freeourdata.gif =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/freeourdata.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/locales_example.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/locales_example.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/logo.jpg =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/logo.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/logo.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/logo.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/map_header.jpg =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/map_header.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/mapping_hacks.gif =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/mapping_hacks.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/new_logo_2006.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/new_logo_2006.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/new_logo_2006_tests.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/new_logo_2006_tests.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/ogbg.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/ogbg.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/old_logo/logo.jpg =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/old_logo/logo.jpg ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/old_logo/logo_small.jpg =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/old_logo/logo_small.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/openguides-perldotcom.gif =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/openguides-perldotcom.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/openguides-web20.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/openguides-web20.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/paypal_donate.gif =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/paypal_donate.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/pgd.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/pgd.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/powered_by_perl.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/powered_by_perl.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/prix_ars_electronica_2004.gif =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/prix_ars_electronica_2004.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/rdf_icon.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/rdf_icon.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/rdf_icon_small.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/rdf_icon_small.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/republic.gif =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/republic.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/thermo-base.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/thermo-base.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/thermo-empty.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/thermo-empty.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/thermo-full.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/thermo-full.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/thermo-top.png =================================================================== (Binary files differ)
Property changes on: website-new/preview/img/thermo-top.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
Added: website-new/preview/img/thermo.html =================================================================== --- website-new/preview/img/thermo.html (rev 0) +++ website-new/preview/img/thermo.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,115 @@ +<html> +<head> + <title>The OpenGuides Trademark Fund-O-Meter</title> +<style type="text/css"> +body { + background: white; + color: black; +} +.amount { + text-align: center; + padding-right: 10px; +} +.empty, .full { + width: 10px; + text-align: center; +} +.empty { + background: #ddd; + color: #ddd; +} +.full { + background: #f00; + color: #f00; +} +</style> +</head> +<body> +<h1>The OpenGuides Trademark Fund-O-Meter!</h1> +<table border="0" cellpadding="0" cellspacing="0"> + <tr> + <th class="amount">£</th> + </tr> + <tr> + <td class="amount">200</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">190</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">180</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">170</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">160</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">150</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">140</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">130</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">120</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">110</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">100</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">90</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">80</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">70</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">60</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">50</td> + <td class="empty"></td> + </tr> + <tr> + <td class="amount">40</td> + <td class="full">*</td> + </tr> + <tr> + <td class="amount">30</td> + <td class="full">*</td> + </tr> + <tr> + <td class="amount">20</td> + <td class="full">*</td> + </tr> + <tr> + <td class="amount">10</td> + <td class="full">*</td> + </tr> +</table> +</body> +</html>
Added: website-new/preview/includes/cities_list.inc =================================================================== --- website-new/preview/includes/cities_list.inc (rev 0) +++ website-new/preview/includes/cities_list.inc 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,80 @@ +<!-- begin cities list --> + +<div id="cities_list"> +<table> + <tr> + <td colspan="2" id="cities_list_header">Take me there...</td> + </tr> + <tr> + <th colspan="2">UK</th> + </tr> + + <tr> + <td><a href="http://birmingham.openguides.org/">Birmingham</a></td> + <td><a href="http://miltonkeynes.openguides.org/">Milton Keynes</a></td> + </tr> + <tr> + <td><a href="http://cambridge.openguides.org/">Cambridge</a></td> + <td><a href="http://north-devon.openguides.org/">North Devon</a></td> + + <tr> + <td><a href="http://cotswolds.openguides.org/">Cotswolds</a></td> + <td><a href="http://norwich.openguides.org/">Norwich</a></td> + </tr> + <tr> + <td><a href="http://glasgow.openguides.org/">Glasgow</a></td> + <td><a href="http://nottingham.openguides.org/">Nottingham</a></td> + + </tr> + <tr> + <td><a href="http://lancaster.openguides.org/">Lancaster</a></td> + <td><a href="http://oxford.openguides.org/">Oxford</a></td> + </tr> + <tr> + <td><a href="http://london.openguides.org/">London</a></td> + + <td><a href="http://the.earth.li/~kake/cgi-bin/openguides/vegan-oxford.cgi">Vegan Oxford</a></td> + </tr> + <tr> + <td><a href="http://london.randomness.org.uk/">Randomness (London)</a></td> + <td><a href="http://reading.openguides.org/">Reading</a></td> + </tr> + <tr> + + <td><a href="http://manchester.openguides.org/">Manchester</a></td> + <td><a href="http://southampton.openguides.org/">Southampton</a></td> + </tr> + <tr> + <th>Canada</th> + + <th>Europe</th> + </tr> + <tr> + <td><a href="http://montreal.openguides.org/">Montreal, QC</a></td> + <td><a href="http://www.justbiit.com/cgi-bin/openguides/">Brussels</a></td> + </tr> + <tr> + + <td><a href="http://victoria.openguides.org/">Victoria, BC</a></td> + <td><a href="http://vienna.openguides.org/">Vienna</a></td> + </tr> + <tr> + <th>USA</th> + <th>Worldwide</th> + </tr> + + <tr> + <td><a href="http://boston.openguides.org/">Boston, MA</a></td> + <td><a href="http://engineer.openguides.org/">Tourist Engineer</a></td> + </tr> + <tr> + <td><a href="http://saintpaul.openguides.org/">Saint Paul, MN</a></td> + </tr> + + <tr> + <td><a href="http://newyork.openguides.org/">New York, NY</a></td> + </tr> +</table> +</div> + +<!-- end cities list --> \ No newline at end of file
Added: website-new/preview/includes/footer.inc =================================================================== --- website-new/preview/includes/footer.inc (rev 0) +++ website-new/preview/includes/footer.inc 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,26 @@ + +<!-- begin footer --> + <div id="footer"> + <div id="freeourdata"> + <a href="http://www.freeourdata.org.uk/" title="Free Our Data: Make taxpayers' data available to them."> + <img id="freeimg" src="img/freeourdata.gif" + alt="Free Our Data: Make taxpayers' data available to them. http://www.freeourdata.org.uk/"></a> + </div> + + <div id="freethepostcode"> + <a href="http://www.freethepostcode.org/">FREE THE POSTCODE!</a> + </div> + </div> + + + <div id="trademarks"> + <em>OpenGuides</em>, <em>[The] Open Guide + to...</em> and <em>the guides made by you</em> are + trademarks of The OpenGuides Project, copyright ©2002-2006. All rights + reserved.<br> + Trademarks used on member sites of the OpenGuides network by permission. + </div> + +<!-- end footer --> + +
Added: website-new/preview/includes/header.inc =================================================================== --- website-new/preview/includes/header.inc (rev 0) +++ website-new/preview/includes/header.inc 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,68 @@ + + <div id="header"> + <a href="http://openguides.org/"><img src="img/logo.png" width="360" height="120" + alt="OpenGuides: the guides made by you"></a> + </div> + + <div id="centeringdivforie"> + <div class="menu"> + + <!-- Navigation menu --> + + <ul> + <li> + <a class="hide" href="index.html">Home</a> + + <!--[if lte IE 6]> + <a href="index.html">Home</a> + <![endif]--> + </li> + + + <li> + <a class="hide" href="information.html">Project</a> + + <!--[if lte IE 6]> + <a href="project.html">Project<table><tr><td> + <![endif]--> + + <ul> + <li><a href="news.html">News Archive</a></li> + <li><a href="lists.html">MailingLists</a></li> + <li><a href="irc.html">IRC Channel</a></li> + <li><a href="branding.html">Branding Guidelines</a></li> + </ul> + + <!--[if lte IE 6]> + </td></tr></table></a> + <![endif]--> + + + </li> + <li><a class="hide" href="software.html">Software</a> + + <!--[if lte IE 6]> + <a href="software.html">Software<table><tr><td> + <![endif]--> + + <ul> + <li><a href="release_notes.html">Release Notes</a></li> + <li><a href="search_help.html">Search Help</a></li> + <li><a href="text_formatting.html">Text Formatting Help</a></li> + </ul> + + <!--[if lte IE 6]> + </td></tr></table></a> + <![endif]--> + + </li> + </ul> + + </div> + </div> + <!-- end header --> + + + + +
Added: website-new/preview/includes/latest_news.inc =================================================================== --- website-new/preview/includes/latest_news.inc (rev 0) +++ website-new/preview/includes/latest_news.inc 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,21 @@ +<!-- begin latest_news --> + +<div id="news"> + <h3 class="news_title">Latest project news</h3> + <div class="news_date"> + May 28, 2007 + </div> + <p> + We're pleased to announce that OpenGuides has been chosen as the subject of + <a href="http://vienna.yapceurope.org/ye2007/talk/668">a hackathon</a> + at <a href="http://vienna.yapceurope.org/ye2007/index.html">YAPC::Europe + 2007</a>, which takes place between 28 and 30 August in Vienna. We're also + holding + <a href="http://dev.openguides.org/cgi-bin/trac.fcgi/wiki/HackfestSummer2007">a + hackfest</a> in London on 9–10 June, focusing on bug triage and bug + fixing. + </p> + <strong><a href="news.html">More news...</a></strong> +</div> + +<!-- end latest_news --> \ No newline at end of file
Added: website-new/preview/includes/sidebar.shtml =================================================================== --- website-new/preview/includes/sidebar.shtml (rev 0) +++ website-new/preview/includes/sidebar.shtml 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,29 @@ +<!-- begin sidebar --> + +<div id="sidebar"> + +<!--#include virtual="../includes/cities_list.inc" --> + + +<!--#include virtual="../includes/latest_news.inc" --> + + + + <div id="mapping_hacks"> + <p> + <a href="http://www.amazon.co.uk/exec/obidos/ASIN/0596007035/downlode-20/"> + <img src="img/mapping_hacks.gif" width="127" height="190" alt="Mapping Hacks" border="0"> + </a> + </p> + We feature in the <a href="http://www.oreilly.com/">O'Reilly and Associates</a> book + <em>Mapping Hacks</em>.<br> + You can <a + href="http://www.oreilly.com/catalog/mappinghks/chapter/hack97.pdf%22%3Eread the + OpenGuides chapter for free</a>! (<acronym title="Portable Document Format">PDF</acronym>, + 695K) + </div> + + +</div> + +<!-- end sidebar --> \ No newline at end of file
Added: website-new/preview/index.html =================================================================== --- website-new/preview/index.html (rev 0) +++ website-new/preview/index.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,78 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Home</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + + <h1>What it's about.</h1> +<p> +<strong>OpenGuides™</strong> is a network of free, community-maintained +<a href="http://wiki.org/wiki.cgi?WhatIsWiki">wiki</a> guidebooks to places +around the world. Anyone is free to contribute, whether it's by writing new +articles or editing the articles that we already have. Read more at the <a +href="information.html">project</a> page. + +</p> +<h2>Software that works.</h2> +<p> +We built our own software engine to do exactly what we wanted to do. You can +read all about it in the <a href="software.html">software</a> section of this +site. And it's free and open, so you can use and extend it yourself. +</p> +<p> +Here comes the science bit: our technical policy is to provide the maximum +possible amount of <a href="http://en.wikipedia.org/wiki/Metadata">metadata</a> +about the stuff in our guides in <a href="http://www.w3.org/RDF/"><acronym +title="Resource Description Framework">RDF</acronym></a>, in order to allow it +to be easily integrated into other systems as part of the <a +href="http://www.w3.org/2001/sw/%22%3ESemantic Web</a>. What that means to you +and me is that the information our users provide can be shared and re-used +automatically between other sites and technologies. + +</p> +<h2>Join us.</h2> +<p> +The OpenGuides network needs you. We're always looking for more places to +add to our collection of guides. If your town, city, district or even region +isn't represented here, you can <a href="software.html">set up a guide</a> +yourself and join us. +</p> +<p> +Contact us by <a href="mailto:openguides-dev@openguides.org">mailing the +developers</a>, joining the <a href="lists.html">mailing list</a> or +talking to us on <acronym title="Internet Relay Chat"><a href="irc.html">IRC</a></acronym>. + +</p> + + + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> + + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/information.html =================================================================== --- website-new/preview/information.html (rev 0) +++ website-new/preview/information.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,63 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Project Information</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + + <h1>The OpenGuides Project</h1> + <h2>General</h2> + <p> + Various bits of information regarding the project. For technical + details and help, head over to our <a href="software.html">software pages</a>. + </p> + <dl> + <dt><a href="http://dev.openguides.org/">OpenGuides Bug Tracker, Code Repository and + Wiki</a></dt> + <dd>This site is the place to report bugs, make suggestions and browse the project's code.</dd> + <dt><a href="news.html">News Archive</a></dt> + <dd>What's happening with the project.</dd> + <dt><a href="branding.html">Branding Guidelines</a></dt> + <dd>How to use the OpenGuides name.</dd> + </dl> + <h2>How to get in touch</h2> + <p> + Resources for OpenGuides users and developers to be in contact. + </p> + <dl> + <dt><a href="lists.html">Mailing Lists</a></dt> + <dd>Publically-archived project discussions.</dd> + <dt><a href="irc.html">IRC Channel</a></dt> + <dd>Live chat. Get quick help here!</dd> + </dl> + + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> +<!-- end content --> + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/irc.html =================================================================== --- website-new/preview/irc.html (rev 0) +++ website-new/preview/irc.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,81 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - IRC</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + +<h1>#OpenGuides IRC</h1> + <p> + Most of the OpenGuides developers can be found on <a + href="http://www.irc.org/%22%3E<acronym title="Internet Relay Chat">IRC</acronym></a> + on a regular basis. We have our own channel, where you + can drop by and discuss features or get help with things if you need it. Here + are the details: + </p> + <ul> + <li><b>Network:</b> irc.perl.org</li> + <li><b>Channel:</b> #OpenGuides</li> + <!-- + <li><b>Logs:</b> <a + href="http://openguides.org/irc/logs/">http://openguides.org/irc/logs/</a></li> + --> + </ul> + <p> + Hope to see you there! Please note, most people on-channel tend to be in the UK, + so it might be very quiet from midnight-8am UTC or so. + </p> + <h2>Utility bots for #OpenGuides</h2> + <!-- + <h3>oglog</h3> + <p> + This bot sits quietly and produces the channel logfiles. If you don't want + it to record what you're saying, start your comment with "[off]" (without + the quotes). + </p> + --> + <h3>pasty</h3> + <p> + If you need to display a block of code, or maybe part of an error log, or similar, + please don't paste it directly into the channel! We have a facility called + <a href="http://paste.husk.org/">pasty</a> that lets you create temporary + webpages with pasted material, so please <a href="http://paste.husk.org/">use + pasty instead</a>. <strong>Remember to select #OpenGuides to paste + to</strong> when filling in the form, and <em>pasty</em> will announce a URL + to the IRC channel where your pasted material can be viewed. + </p><!-- + <h3>hel</h3> + <p> + <em>hel</em> announces any new releases that are made of OpenGuides or CGI::Wiki + modules to the <a href="http://search.cpan.org/" title="Comprehensive Perl Archive Network">CPAN</a>. + </p> --> + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> + + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/lists.html =================================================================== --- website-new/preview/lists.html (rev 0) +++ website-new/preview/lists.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,49 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Mailing Lists</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + + <h1>Mailing Lists</h1> + <p> + We have a mailing list, <em>OpenGuides-Dev</em>, for discussion of the + OpenGuides system. You can subscribe to it at the <a + href="http://lists.openguides.org/cgi-bin/mailman/listinfo/openguides-dev%22%3EOpe... + info page</a> (or read the <a + href="http://lists.openguides.org/mail/openguides-dev/%22%3EOpenGuides-Dev + archives</a>). This list replaces the old <em>grubstreet</em> mailing list, + the <a href="http://london.openguides.org/old-list-archives">archives</a> of + which are still available. + </p> + + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> + + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/news.html =================================================================== --- website-new/preview/news.html (rev 0) +++ website-new/preview/news.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,210 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - News Archive</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + + <h1>OpenGuides News Archive</h1> +<p style="font-style: italic"> +Note: only releases with major improvements are mentioned here. For a full +release history, please see the <a href="release_notes.html">release +notes</a>. +</p><div class="news_date"> +May 28, 2007 +</div> +<p> +We're pleased to announce that OpenGuides has been chosen as the subject of +<a href="http://vienna.yapceurope.org/ye2007/talk/668">a hackathon</a> +at <a href="http://vienna.yapceurope.org/ye2007/index.html">YAPC::Europe +2007</a>, which takes place between 28 and 30 August in Vienna. We're also +holding + +<a href="http://dev.openguides.org/cgi-bin/trac.fcgi/wiki/HackfestSummer2007">a +hackfest</a> in London on 9–10 June, focusing on bug triage and bug +fixing. +</p> +<div class="news_date"> +May 22, 2007 +</div> +<p> +<a href="http://search.cpan.org/dist/OpenGuides-0.60/">OpenGuides +0.60</a> has now been <a href="release_notes.html">released</a>, with +improved stylability of the “edit page” form, increased admin +control over the “random page” link in the sidebar, and a new +macro for providing a link to a random page in a specific category or locale. + +</p> +<div class="news_date"> +March 25, 2007 +</div> +<p> +<a href="http://search.cpan.org/dist/OpenGuides-0.59/">OpenGuides 0.59</a> +has now been <a href="release_notes.html">released</a>, with a number of +bugfixes, plus new stylesheet hooks and template tweaks to give Guide admins +more control over the appearance of their sites. +</p> +<div class="news_date"> +March 5, 2006 +</div> +<p> +<a href="http://search.cpan.org/dist/OpenGuides-0.52/">OpenGuides 0.52</a> + +has now been <a href="release_notes.html#0.52">released</a>. The major new feature +is <a href="http://maps.google.com/">Google Maps</a> support! +</p> +<div class="news_date"> +November 25, 2005 +</div> +<p> +Please welcome the +<a href="http://miltonkeynes.openguides.org/">Open Guide to +Milton Keynes</a>. +</p> +<div class="news_date"> +November 15, 2005 + +</div> +<p> +<a href="http://search.cpan.org/dist/OpenGuides-0.51/">OpenGuides 0.51</a> +has now been <a href="release_notes.html#0.51">released</a>, with quite a number +of improvements. +</p> +<div class="news_date"> +October 15, 2005 +</div> +<p> +<a href="http://search.cpan.org/~ivorw/OpenGuides-RDF-Reader/lib/OpenGuides/RDF/Reader.pm">New +module</a> for converting OpenGuides RDF back into Perl data structures released. +</p> +<div class="news_date"> + +October 14, 2005 +</div> +<p> +Please welcome the +<a href="http://cortex.ecs.soton.ac.uk/openguide/">Open Guide to +Southampton</a>. +</p> +<div class="news_date"> +October 7, 2005 +</div> +<p> +Please welcome the +<a href="http://cotswolds.openguides.org/">Cotswolds Guide</a>. +</p> +<div class="news_date"> +July 24, 2005 + +</div> +<p> +<a href="release_notes.html#0.49">OpenGuides 0.49</a> +released: numerous RDF output refinements and various minor improvements. +</p> +<div class="news_date"> +April 18, 2005 +</div> +<p> +<a +href="http://search.cpan.org/dist/OpenGuides-Statistics/%22%3EOpenGuides::Statisti...</a> +released to let you produce nice graphs of how many nodes you have, like <a +href="http://london.openguides.org/statistics/%22%3Ethese ones for London</a>. +</p> +<div class="news_date"> +December 21, 2004 +</div> + +<p> +<a href="release_notes.html#0.47">OpenGuides 0.47</a> released with a number +of bugfixes. +</p> +<div class="news_date"> +November 30, 2004 +</div> +<p> +Release of <a href="release_notes.html#0.45">OpenGuides +0.45</a>, with new support for global geolocation. +</p> +<div class="news_date"> +September 26, 2004 +</div> +<p> + +We are pleased to announce the opening of the new +<a href="http://chesterguide.org.uk/">Open Guide to Chester</a>. +</p> +<div class="news_date"> +July 5, 2004 +</div> +<p> +Earle Martin, one of our developers, recently spoke at the <a +href="http://www.notcon04.com/%22%3ENotCon</a> conference in London about +OpenGuides. A <a href="http://www.ejhp.net/notcon/#audio">recording</a> +of his talk is now available ("Geolocation" session, 20 minutes in). +</p> +<div class="news_date"> + +June 25, 2004 +</div> +<p> +<a +href="release_notes.html#0.35">OpenGuides 0.35</a> - to help protect your wiki +from spammers, you can now delete individual historical versions of a node. +</p> +<div class="news_date"> +June 20, 2004 +</div> +<p> +<a href="release_notes.html#0.33">OpenGuides 0.33</a> - improved +templates and a new search by distance feature. +</p> +<div class="news_date"> +May 28, 2004 + +</div> +<p> +<a href="http://london.openguides.org/">The Open Guide to +London</a> gets <a +href="http://www.businessweek.com/magazine/content/04_23/b3886141.htm%22%3Emention... +in <em>Business Week</em></a>. +</p> +<div class="news_date"> +June 12, 2003 +</div> +<p> +<a href="http://london.openguides.org/">The Open Guide to +London</a> (in its earlier incarnation as "Grubstreet") was <a +href="http://www.guardian.co.uk/online/story/0,3605,975131,00.html%22%3Ementioned +in the <em>Guardian</em>'s "Online" section</a>. + +</p> + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> + + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/release_notes.html =================================================================== --- website-new/preview/release_notes.html (rev 0) +++ website-new/preview/release_notes.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,309 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Release Notes</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + + <h1>OpenGuides Release Notes</h1> + +<p> +The following table shows the major changes for all releases of the <a +href="software.html">OpenGuides software</a>. For full details, please consult the <a +href="http://search.cpan.org/dist/OpenGuides/Changes%22%3Elatest Changes file</a>. Versions +with "recommended upgrade" have important improvements that you would be advised +to upgrade your installation to as soon as possible. +</p> +<table id="release_notes" cellpadding="0" cellspacing="0"> + <tr> + <td colspan="3" style="text-align: center; font-weight: bold">Latest +Version</td> + </tr> + <tr> + + <th scope="row" class="version_latest"><a name="0.52">0.52</a></th> + <td class="version_details_grey_latest"><a href="http://maps.google.com/">Google Maps</a> + support; various bugfixes and RDF improvements; SuperSearch renamed to Search. Recommended + upgrade.</td> + <td class="release_links"> +<a href="http://search.cpan.org/CPAN/authors/id/D/DO/DOM/OpenGuides-0.52.tar.gz">download</a>, +<a href="http://search.cpan.org/dist/OpenGuides-0.52">view</a>, +<a href="http://search.cpan.org/src/DOM/OpenGuides-0.52/">browse</a></td> + </tr> + + <tr> + <th scope="row" class="version"><a name="0.51">0.51</a></th> + <td class="version_details" colspan="2">Change URL parameter for Recent Changes; new "create + node?" message; new "summary" metadata field; raw output option for nodes; DOAP metadata + in RSS; various RDF fixes; two search bugs fixed; various minor improvements and fixes. + Recommended upgrade.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.50">0.50</a></th> + <td class="version_details_grey" colspan="2">Fix the RSS feed, which had become broken.</td> + + </tr> + <tr> + <th scope="row" class="version"><a name="0.49">0.49</a></th> + <td class="version_details" colspan="2">Numerous RDF output enhancements; new "format=plain" + option for node index listing; various template tweaks; sort wanted pages by number of links; + new message informing you of redirection; prevent redirection loops. Recommended upgrade.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.48">0.48</a></th> + + <td class="version_details_grey" colspan="2">See version 0.49 - this version had a test failure.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.47">0.47</a></th> + <td class="version_details" colspan="2">Various template bugfixes, remove default city/country + setting of London/UK, require latest version of CGI::Wiki to fix node deletion bug.</td> + </tr> + <tr> + + <th scope="row" class="version"><a name="0.46">0.46</a></th> + <td class="version_details_grey" colspan="2">Template display bugfixes, fix a bug that allowed + autocreation of locales and categories with trailing spaces in the name, more install time + tests, updated feedback and bug tracking details.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.45">0.45</a></th> + <td class="version_details" colspan="2">Geolocation features now work worldwide! Recommended + upgrade, especially for those outside the UK.</td> + </tr> + + <tr> + <th scope="row" class="version"><a name="0.44">0.44</a></th> + <td class="version_details_grey" colspan="2">Increase search efficiency and speed - recommended + upgrade.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.43">0.43</a></th> + <td class="version_details" colspan="2">Fix a template bug in 0.42.</td> + + </tr> + <tr> + <th scope="row" class="version"><a name="0.42">0.42</a></th> + <td class="version_details_grey" colspan="2">Distance search code improvements, allow + user-definable path to custom templates, replace use of CGI::Wiki::Plugin::Geocache with + improved node.tt.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.41">0.41</a></th> + + <td class="version_details" colspan="2">Anti-robot tags for edit pages etc., improved install + time options, option of custom templates, more semantic markup.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.40">0.40</a></th> + <td class="version_details_grey" colspan="2">Improved Recent Changes output, template + improvements, new RSS feeds for contributors, locales and categories.</td> + </tr> + <tr> + + <th scope="row" class="version"><a name="0.39">0.39</a></th> + <td class="version_details" colspan="2">Added option of using + <a href="http://www.perl.com/pub/a/2004/02/19/plucene.html">Plucene</a> for site indexing.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.38">0.38</a></th> + <td class="version_details_grey" colspan="2">Major improvements to search result ordering - + recommended upgrade.</td> + + </tr> + <tr> + <th scope="row" class="version"><a name="0.37">0.37</a></th> + <td class="version_details" colspan="2">Minor bugfixes.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.36">0.36</a></th> + + <td class="version_details_grey" colspan="2">Various bugfixes, including prevention of rendering + of arbitrary HTML in edit comments in node history view - recommended upgrade.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.35">0.35</a></th> + <td class="version_details" colspan="2">Bugfix related to change in 0.34 - recommended upgrade.</td> + </tr> + <tr> + + <th scope="row" class="version"><a name="0.34">0.34</a></th> + <td class="version_details_grey" colspan="2">Allow deletion of individual node revisions to + eliminate wiki spam.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.33">0.33</a></th> + <td class="version_details" colspan="2">Improved node history view; allow searching by + distance from an arbitrary point; replace "Anonymous" with IP address; better <title> + tags.</td> + + </tr> + <tr> + <th scope="row" class="version"><a name="0.32">0.32</a></th> + <td class="version_details_grey" colspan="2">Change autocreation behaviour to prevent accidental + creations (RFC 2616 9.1.1).</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.31">0.31</a></th> + + <td class="version_details" colspan="2">Greatly improved RDF output; template usability enhancements; + allow embedding of RSS feeds; improved search results listings - recommended upgrade.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.30">0.30</a></th> + <td class="version_details_grey" colspan="2">Node deletion facility; major template overhaul.</td> + </tr> + <tr> + + <th scope="row" class="version"><a name="0.29">0.29</a></th> + <td class="version_details" colspan="2">Improved diff output.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.28">0.28</a></th> + <td class="version_details_grey" colspan="2">Add support for SQLite databases.</td> + </tr> + + <tr> + <th scope="row" class="version"><a name="0.27">0.27</a></th> + <td class="version_details" colspan="2">Search syntax improvements.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.26">0.26</a></th> + <td class="version_details_grey" colspan="2">Various bugfixes.</td> + + </tr> + <tr> + <th scope="row" class="version"><a name="0.25">0.25</a></th> + <td class="version_details" colspan="2">Modify search to look in categories and locales.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.24">0.24</a></th> + + <td class="version_details_grey" colspan="2">Various bugfixes.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.23">0.23</a></th> + <td class="version_details" colspan="2">Template bugfix.</td> + </tr> + <tr> + + <th scope="row" class="version"><a name="0.22">0.22</a></th> + <td class="version_details_grey" colspan="2">Various bugfixes.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.21">0.21</a></th> + <td class="version_details" colspan="2">Remove Makefile.PL again as not capable enough.</td> + </tr> + + <tr> + <th scope="row" class="version"><a name="0.20">0.20</a></th> + <td class="version_details_grey" colspan="2">Fixed all contact addresses to go to + <a href="lists.html">OpenGuides-Dev</a>.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.19">0.19</a></th> + + <td class="version_details" colspan="2">Ability to mark edits as minor.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.18">0.18</a></th> + <td class="version_details_grey" colspan="2">Makefile.PL for CPAN.pm users.</td> + </tr> + <tr> + + <th scope="row" class="version"><a name="0.17">0.17</a></th> + <td class="version_details" colspan="2">Bugfix: recognise dbhost; example stylesheet.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.16">0.16</a></th> + <td class="version_details_grey" colspan="2">Improved edit conflict handling; option to show + lat/long as deg-min-sec.</td> + </tr> + + <tr> + <th scope="row" class="version"><a name="0.15">0.15</a></th> + <td class="version_details" colspan="2">Minor bugfixes.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.14">0.14</a></th> + <td class="version_details_grey" colspan="2">Ability to find wanted pages.</td> + + </tr> + <tr> + <th scope="row" class="version"><a name="0.13">0.13</a></th> + <td class="version_details" colspan="2">New map metadata field.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.12">0.12</a></th> + + <td class="version_details_grey" colspan="2">OpenGuides::CGI for cookie handling etc.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.11">0.11</a></th> + <td class="version_details" colspan="2">New page maker script.</td> + </tr> + <tr> + + <th scope="row" class="version"><a name="0.10">0.10</a></th> + <td class="version_details_grey" colspan="2">OpenGuides::Diff for node diff reports and + OpenGuides::Template for handling Template Toolkit stuff.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.09">0.09</a></th> + <td class="version_details" colspan="2">OpenGuides::Utils for utility scripts.</td> + </tr> + + <tr> + <th scope="row" class="version"><a name="0.08">0.08</a></th> + <td class="version_details_grey" colspan="2">Fuzzy title matching.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.07">0.07</a></th> + <td class="version_details" colspan="2">Autocreation of stub pages.</td> + + </tr> + <tr> + <th scope="row" class="version"><a name="0.06">0.06</a></th> + <td class="version_details_grey" colspan="2">Support for MySQL in supersearch.cgi.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.05">0.05</a></th> + + <td class="version_details" colspan="2">Support for non-local databases and fix for + installation bug.</td> + </tr> + <tr> + <th scope="row" class="version"><a name="0.04">0.04</a></th> + <td class="version_details_grey" colspan="2">First public release.</td> + </tr> +</table> + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> + + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/search_help.html =================================================================== --- website-new/preview/search_help.html (rev 0) +++ website-new/preview/search_help.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,90 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Search Help</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + +<h1>How to search an Open Guide</h1> +<p> + +This page outlines how to use the search facility on OpenGuides sites. If you +have any feedback or tips, please send them to the <a href="lists.html">developers' mailing +list</a>. Please also let us know if you are able to translate this page +into other languages. +</p> +<h2>Simple searches</h2> +<p> +Every page on an OpenGuides site contains a "Search" textbox. Entering a word +into the search box will bring up a list of pages containing the word, much +like any search engine you're used to. The list of results will be divided +up into pages, each showing 20 results. +</p> +<h2>This <em>or</em> that searches</h2> +<p> +If you want to search for more than one thing but not necessarily all of +them, separate your search words by commas. So, a search for +</p> + +<kbd class="search_example">restaurant, cafe</kbd> +<p> +will list you all pages containing either the word "restaurant" or the word "cafe". +</p> +<h2>"Group of words" searches</h2> +<p> +To search for an exact phrase, enclose it in double quotes. For example: +</p> +<kbd class="search_example">"pedestrian street"</kbd> +<p> +will get you the pages that contain the exact phrase "pedestrian street", +but not pages that contain something like "the pedestrian should avoid this +street". +</p> +<hr> +<h3>A note on search scores</h3> + +<p> +The results of your search are sorted by their scores, which appear next to +them. If you're interested, this is how they're worked out; otherwise, you +can skip this bit without worrying. +</p> +<ul> + <li>A match for your search in a page's title scores 10 points.</li> + <li>A match in a page's category or locale scores 3 points.</li> + <li>A match in a page's main content scores 1 point.</li> +</ul> +<p> +These points are then added together. Pages matching in score are sorted by +title. +</p> + + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> + + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/software.html =================================================================== --- website-new/preview/software.html (rev 0) +++ website-new/preview/software.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,88 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Software</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + + <h1>The Software</h1> + <p> + <a href="http://www.perl.org/" title="OpenGuides is Proudly Powered by Perl!"> + <img src="img/powered_by_perl.png" id="powered_by_perl" alt="Powered by Perl"></a> + The OpenGuides system is <a href="http://www.gnu.org/philosophy/free-sw.html" + title="What is Free Software? (at gnu.org)">free software</a>, written in <a + href="http://www.perl.org/%22%3EPerl</a>. It is available for <a + href="http://search.cpan.org/dist/OpenGuides/" style="font-weight: bold">download</a> + from the <a href="http://www.cpan.org/"><acronym title="Comprehensive Perl Archive Network">CPAN</acronym></a>. + To see what's new in the latest version, consult the <a + href="release_notes.html">release notes</a>. + </p> + <h2>System Requirements</h2> + <p> + To run OpenGuides, you will need a webserver capable of running Perl, and + a number of Perl modules as prerequisites, all of which are also available + from the CPAN. We recommend installing OpenGuides via <a + href="http://search.cpan.org/dist/CPAN/%22%3ECPAN.pm</a> or the newer <a + href="http://search.cpan.org/dist/CPANPLUS/%22%3ECPANPLUS.pm</a>, as these will + handle the installation of prerequisites for you. Alternatively, if you run a + <a href="http://www.debian.org/" title="Debian GNU/Linux">Debian</a> system, + you can install OpenGuides with "apt". Full details and packages are available + at the <a href="http://www.larted.org.uk/~dom/debian/openguides/">package home + page</a>. + </p> + <h2>Installation</h2> + <p> + General documentation is being developed on the + <a href="http://dev.openguides.org/wiki/OnlineDocumentation">development wiki</a>; + you may also find the <a href="https://urchin.earth.li/svn/openguides/trunk/INSTALL">INSTALL</a> + file that comes with the software useful. + </p> + <h2>Hosting</h2> + <p> + If you don't have your own webserver to run a Guide on, two people are kindly + offering to help out. In the UK, contact Dominic Hargreaves (dom(at)earth.li); + in the US, Christopher Schmidt (crschmidt(at)crschmidt.net). + </p> + <h2>Help and Troubleshooting</h2> + <p> + Some common issues are dealt with in <a + href="https://urchin.earth.li/svn/openguides/trunk/TROUBLESHOOTING%22%3ETROUBLESHO...</a>. + If you have other problems, please get in touch with us via the <a + href="lists.html">mailing list</a> or <a href="irc.html">IRC</a>. + </p> + <h2>Reporting Bugs and Suggesting Features</h2> + <p> + You can use <a href="http://dev.openguides.org/">dev.openguides.org</a> to report bugs and +make feature suggestions. + </p> + + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> + + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +
Added: website-new/preview/text_formatting.html =================================================================== --- website-new/preview/text_formatting.html (rev 0) +++ website-new/preview/text_formatting.html 2008-07-25 19:43:58 UTC (rev 1181) @@ -0,0 +1,170 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en-gb"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>OpenGuides - Text Formatting Help</title> + <link rel="stylesheet" type="text/css" href="css/openguides.css"> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css"> + + <!--[if lte IE 6]> + <link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css"> + <![endif]--> + +</head> +<body> + + <!--#include virtual="includes/header.inc" --> + + <!--#include virtual="includes/sidebar.shtml" --> + + + <div style="text-align: center"> + <div id="main_text"> + <!-- ENTER SOME CONTENT!--> + + +<h1>How to style your text</h1> +<h2>General</h2> + +<ul> +<li>To create plain text, just type. You can make a paragraph break by adding a +blank line.</li> +<li>For preformatted text, you can use the <a +href="http://www.htmlhelp.com/reference/html40/block/pre.html%22%3EHTML "pre" +tag</a>. You should rarely need this.</li> +<li>For <b>bold</b> text, wrap it with three apostrophes on either side +<code>'''like this'''</code>, or if you wish, use HTML +<code><b>like this</b>.</li> + +<li>For <i>italic</i> text, wrap it with two apostrophes on either side +<code>''like this''</code>, or if you wish, use HTML +<code><i>like this</i>.</li> +<li>To create a block of indented text, start a line with a colon (:).</li> +</ul> +<p> +To create a horizontal line, type 4 or more dash (-) characters, like this: +<code>----</code> + +</p> +<h2>Links</h2> +<p> +You can link to a guide page by putting two square brackets around one or more +words <code>[[like this]]</code>. It'll be displayed <a +href="#">like this</a> (although this demo link doesn't go anywhere, while +yours will). +</p> +<p> +If you add a link to a page that hasn't been created yet, it'll appear in +square brackets with a question-mark link [like this]<a href="#">?</a>. You can +then follow the link to create and edit the page. +</p> +<p> + +You can also give the link a title, which will be displayed instead of the +full name of the page you're linking to. Do this by adding a pipe +symbol (|) after the page name in the link, and then typing your title: +<code>[[like this|test link]]</code>. The resulting link will be displayed +as <a href="#">test link</a>. +</p> +<p> +You can make a link to another site by just typing the web address: +<code>http://london.openguides.org/</code> (which would produce <a +href="http://london.openguides.org/%22%3Ehttp://london.openguides.org/</a>). +If you want, you can give the link a title, like this: +<code>[http://london.openguides.org/ example link]</code>. It would appear +as <a href="http://london.openguides.org/">[example link]</a>. +If a URL contains a pipe character (|) you will need to enter it as + +"%7c" instead, since the pipe character has a special meaning in +links (as above). +</p> +<h2>Headings</h2> +<p> +Wrap text in equals (=) signs to make headings. +</p> +<p> +<code>= Heading size 1 =</code><br> +<code>== Heading size 2 ==</code><br> +<code>=== Heading size 3 ===</code><br> + +<code>==== Heading size 4 ====</code><br> +<code>===== Heading size 5 =====</code><br> +<code>====== Heading size 6 ======</code><br> +</p> +<p> +This is what's produced by the above: +</p> +<h1>Heading size 1</h1> +<h2>Heading size 2</h2> +<h3>Heading size 3</h3> +<h4>Heading size 4</h4> + +<h5>Heading size 5</h5> +<h6>Heading size 6</h6> +<p> +Note the spaces between the equals signs and the actual text of the heading. +Also, if your numbers of equals signs are unbalanced it either won't work or +won't work like you expected, so be careful. +</p> +<h2>Lists</h2> +<p> +Unordered lists: +</p> +<p> +<code>* First-level unordered list item</code><br> +<code>** Second-level unordered list item</code> + +</p> +<p> +This produces: +</p> +<ul> + <li>First-level unordered list item + <ul> + <li>Second-level unordered list item</li> + </ul></li> +</ul> +<p> +At present, only one level of nesting is supported. Ordered lists and +definition lists have not been implemented yet. +</p> + +<h2>Images</h2> +<p> +To display an image, use HTML's "img" tag, as in the example below. Please +note that the image may need to be stored on a webserver somewhere, +as many OpenGuides sites don't offer photo hosting yet. +</p> +<p> +<code><img src="http://openguides.org/img/example_image.png" +width="150" height="150" alt="Example Image"></code> +</p> +<p> +Will produce this: +</p> +<p> +<img src="img/example_image.png" width="150" height="150" alt="Example Image"> +</p> +<p> +Whilst specifying the width and height of the image is optional, please make +sure that you always include the "alt" description text for the image, so that +people reading the site with text-only browsers aren't adversely affected. +If you want the image to "float" on the left or the right of the page, you +can use <a href="http://www.w3.org/Style/CSS/"> +<acronym title="Cascading Stylesheets">CSS</acronym></a>, +but that's too big a topic to get into here. + +</p> + + + + <!-- OK YOU CAN STOP NOW --> + </div> + </div> +<!-- end content --> + + <!--#include virtual="includes/footer.inc" --> + +</body> +</html> +