Release SEMOS 1.0.0

This commit is contained in:
Alex Cabal 2020-03-29 11:51:11 -05:00
parent 6783e0e1a9
commit fe2d83461f
37 changed files with 758 additions and 7111 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -10,8 +10,9 @@ require_once('Core.php');
<p>If a rule is not covered in this manual, the directive is to follow the rules in the Chicago Manual of Style, 16th edition.</p>
<p>These rules align closely with the style rules used in modern publishing. However, books from the turn of the 20th century and older may appear to follow a different set of rules. Producers are expected to adjust those older conventions to match this manual.</p>
<p>Having said that, literature is a complex and multifaceted art, and in the process of converting older books some may call for a bending of a rule, or for an outright exception. Producers should not feel bound to slavishly follow these directives if a book seems to cry out for an exception. As Ralph Waldo Emerson once wrote, “a foolish consistency is the hobgoblin of little minds. If unsure, producers are urged and welcomed to contact the <a href="https://groups.google.com/group/standardebooks/">Standard Ebooks Editor in Chief</a> for final-word guidance.</p>
<p>To contribute, please <a href="https://github.com/standardebooks/manual">visit the GitHub repository</a> or <a href="https://groups.google.com/group/standardebooks/">contact the mailing list</a>.</p>
<p>Editor-in-chief: Alex Cabal</p>
<p>Contributors (in alpha order): David Grigg, B. Timothy Keith, Vince Rice, Emma Sweeney, Robin Whittleton, Kenny Williams.</p>
<p>Contributors (in alpha order): David Grigg, B. Timothy Keith, Vince Rice, Emma Sweeney, Robin Whittleton.</p>
<section>
<h2>Table of Contents</h2>
<ol type="1">

View file

@ -8,5 +8,14 @@ sort($dirs);
$currentManual = str_replace(WEB_ROOT, '', $dirs[sizeof($dirs) - 1]);
$url = HttpInput::GetString('url', true, '');
$url = preg_replace('|^/|ius', '', $url);
$url = preg_replace('|\.php$|ius', '', $url);
$url = preg_replace('|/$|ius', '', $url);
if($url != ''){
$url = '/' . $url;
}
http_response_code(302);
header('Location: ' . $currentManual);
header('Location: ' . $currentManual . $url);