Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
New site design & major copy changes
Design by Marko Bijelic of hipinspire.com.
Switched from server-side includes to PHP for deployment simplicity.
Integration with content still a work in progress.
  • Loading branch information
jonjensen committed Jul 10, 2011
1 parent ca8a4b3 commit 49eb8af
Show file tree
Hide file tree
Showing 68 changed files with 1,851 additions and 135 deletions.
16 changes: 0 additions & 16 deletions website/code.html

This file was deleted.

25 changes: 25 additions & 0 deletions website/code.php
@@ -0,0 +1,25 @@
<?php
$title = "Code for Development and Staging Environments | DevCamps.org";
include('header.php');
?>

<h1>Source Code</h1>

<div class="mixcase">

<p>The DevCamps system is written in <a href="http://www.perl.org/">Perl 5</a> and runs on Linux and other Unix-like operating systems. The source code is maintained in a <a href="http://git-scm.com/">Git</a> repository, <a href="/cgi-bin/gitweb">browsable via gitweb</a>. To clone a copy:</p>

<pre>git clone http://git.devcamps.org/camps.git

</pre>

<p>We have a <a href="http://github.com/devcamps/camps/tree/master">GitHub mirror</a> of the repository as well. If you have any changes to submit, please fork the repository, push your changes, and tell us about them on the <a href="https://mail.endcrypt.com/mailman/listinfo/camps-users">camps-users mailing list</a>.</p>

<p>You can see an overview report about the code on our<br />
<a href="https://www.ohloh.net/p/devcamps">DevCamps Ohloh project page</a>.</p>

</div>

<?php
include('footer.php');
?>
18 changes: 0 additions & 18 deletions website/community.html

This file was deleted.

31 changes: 31 additions & 0 deletions website/community.php
@@ -0,0 +1,31 @@
<?php
$title = "Community: Mailing lists, chat, issue tracking | DevCamps";
include('header.php');
?>

<h1>Community</h1>

<div class="mixcase">

<h2>Mailing lists</h2>

<p>
User and developer discussion: <a href="https://mail.endcrypt.com/mailman/listinfo/camps-users">camps-users</a><br />
Source code commit notifications: <a href="https://mail.endcrypt.com/mailman/listinfo/camps-commits">camps-commits</a>
</p>

<h2>Real-time chat</h2>

<p>We meet in IRC channel <strong>#camps</strong> on <a href="http://freenode.net/">freenode</a><br />
(click "Say Hello" below to begin a web chat).</p>

<h2>Issue tracking</h2>

<p>New feature requests and bug reports are handled<br />
in <a href="https://github.com/devcamps/camps/issues">GitHub's issues area</a>.</p>

</div>

<?php
include('footer.php');
?>
3 changes: 0 additions & 3 deletions website/docfooter.html

This file was deleted.

5 changes: 5 additions & 0 deletions website/docfooter.php
@@ -0,0 +1,5 @@
<h1>Other DevCamps Documentation:</h1>

<?php
include('doclist.php');
?>
19 changes: 0 additions & 19 deletions website/doclist.html

This file was deleted.

24 changes: 24 additions & 0 deletions website/doclist.php
@@ -0,0 +1,24 @@
<p>Commands:</p>

<div class="col3">
<ul>
<li><a href="/docs/camp-info">camp-info</a></li>
<li><a href="/docs/camp-lint">camp-lint</a></li>
<li><a href="/docs/mkcamp">mkcamp</a></li>
<li><a href="/docs/mkcampsymlinks">mkcampsymlinks</a></li>
<li><a href="/docs/mysql_camp">mysql_camp</a></li>
<li><a href="/docs/psql_camp">psql_camp</a></li>
<li><a href="/docs/refresh-camp">refresh-camp</a></li>
<li><a href="/docs/re">re</a></li>
<li><a href="/docs/re-all-camps">re-all-camps</a></li>
<li><a href="/docs/rmcamp">rmcamp</a></li>
<li><a href="/docs/with-camp">with-camp</a></li>
</ul>
</div>

<p>Configuration, API, and Internals:</p>

<ul>
<li><a href="/docs/Config">Camp::Config</a></li>
<li><a href="/docs/Master">Camp::Master</a></li>
</ul>
24 changes: 18 additions & 6 deletions website/documentation.html → website/documentation.php
@@ -1,11 +1,23 @@
<!--#set var="title" value="Documentation for Development and Staging Environments | DevCamps.org" -->
<!--#include virtual="/header.html" -->
<h2>Documentation</h2>
<?php
$title = "Documentation | DevCamps Development and Staging Environments";
include('header.php');
?>

<h1>Documentation</h1>

<div class="mixcase">

<ul>
<li><a href="camps-presentation-20080829/">Camps: Better Development Environments</a> - presentation slides from a presentation &amp; demonstration Jon Jensen gave about camps at <a href="http://2008.utosc.com/">UTOSC 2008</a></li>
<li><a href="camps-presentation-20080829/">Camps: Better Development Environments</a> - presentation slides from a presentation &amp; demonstration Jon Jensen gave about camps at <a href="http://utos.org/">UTOSC</a> 2008</li>
<li><a href="http://www.spreecamps.com/camps">SpreeCamps.com DevCamps documentation</a> - tutorial and FAQ specific to the SpreeCamps environment, but of general use as well</li>
</ul>

<!--#include virtual="/doclist.html" -->
<!--#include virtual="/footer.html" -->
<?php
include('doclist.php');
?>

</div>

<?php
include('footer.php');
?>
Binary file added website/favicon.ico
Binary file not shown.
Binary file added website/font/PTC55F-webfont.eot
Binary file not shown.

0 comments on commit 49eb8af

Please sign in to comment.