Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Nov 1, 2012
0 parents commit 8383c88
Show file tree
Hide file tree
Showing 385 changed files with 21,515 additions and 0 deletions.
1 change: 1 addition & 0 deletions ENDCONTENT.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
</div>
12 changes: 12 additions & 0 deletions FOOTER.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-2560031-3");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>

45 changes: 45 additions & 0 deletions GLOBALHEADER.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!--#if expr="${PageTitle}" -->
<!--#set var="PageTitle" value="OverTheWire - ${PageTitle}" -->
<!--#else -->
<!--#set var="PageTitle" value="OverTheWire" -->
<!--#endif -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<link rel='shortcut icon' href='/img/favicon.ico' />
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
<link href='http://fonts.googleapis.com/css?family=Inconsolata|Pontano+Sans|Maven+Pro&subset=latin,latin-ext' rel='stylesheet' type='text/css'>

<!--
<link rel="stylesheet" href="https://tracker.overthewire.org/css/otw-hof.css" type="text/css" media="screen" />
<script src="https://tracker.overthewire.org/js/jquery-1.7.2.min.js"></script>
<script src="https://tracker.overthewire.org/js/otw-hof-api.js"></script>
-->

<title><!--#echo var="PageTitle" --></title>
</head>
<body>
<div id="sitename"><a href="/">OverTheWire</a></div>
<div id="siteslogan">We're hackers, and we are good-looking. We are the 1%.</div>
<div id="topmenu">
<ul>
<!--#if expr="${DOCUMENT_URI}=/\/news/" -->
<li><a class='selected' href="/news/">News</a></li>
<!--#else -->
<li><a href="/news/">News</a></li>
<!--#endif -->

<!--#if expr="${DOCUMENT_URI}=/\/wargames/" -->
<li><a class='selected' href="/wargames/">Wargames</a></li>
<!--#else -->
<li><a href="/wargames/">Wargames</a></li>
<!--#endif -->

<!--#if expr="${DOCUMENT_URI}=/\/about/" -->
<li><a class='selected' href="/about/">About</a></li>
<!--#else -->
<li><a href="/about/">About</a></li>
<!--#endif -->
</ul>
</div>

Empty file added LOCALHEADER.shtml
Empty file.
1 change: 1 addition & 0 deletions MORETODO
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
what's with genesis? it's not yet indexed in wargames/LOCALHEADER.shtml
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
cobjects = $(patsubst %.c,%.c.colored.html,$(wildcard *.c))
hobjects = $(patsubst %.h,%.h.colored.html,$(wildcard *.h))
binobjects = $(patsubst %.bin,%.bin.sums,$(wildcard *.bin))

all: $(cobjects) $(hobjects) $(binobjects)

%.c.colored.html: %.c
code2html -N -H $< $@

%.h.colored.html: %.h
code2html -N -H $< $@

%.bin.sums: %.bin
echo -n " MD5SUM: " > $@
md5sum $< | cut -d ' ' -f 1 >> $@
echo -n "SHA1SUM: " >> $@
sha1sum $< | cut -d ' ' -f 1 >> $@
1 change: 1 addition & 0 deletions STARTCONTENT.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<div id="content">
19 changes: 19 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Hall of fame
------------
Some application where people can somehow register that they finished a wargame level. This data can then be viewed online with statistics(?)
And the data can also be added to the forum profile.

Fark-style board
----------------
Like the old portal.overthewire.org, a place where users can post links with a snappy deascription and a tag showing the type of link. Comments could be posted on the forum.
An IRC-bot logging links for use on this fark-style board would also be handy.

Wiki/Forum IRC-bot
------------------
An IRC-bot that logs changes to Wiki and Forum to an IRC-channel.

Centralised account registration
--------------------------------
A site that can register useraccounts (with OpenID authn) and that will register the same username on a number of other components (wiki, forum, ...).
That way we can disable the registration process on all components, require only a single registration per user and use OpenID for everything.

1 change: 1 addition & 0 deletions about/ENDCONTENT.shtml
22 changes: 22 additions & 0 deletions about/LOCALHEADER.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<div id="sidemenu">
<ul>
<!--#if expr="${DOCUMENT_URI}=/\/about\/contribute/" -->
<li><a class='selected' href="/about/contribute.shtml">Contribute</a></li>
<!--#else -->
<li><a href="/about/contribute.shtml">Contribute</a></li>
<!--#endif -->

<!--#if expr="${DOCUMENT_URI}=/\/about\/us/" -->
<li><a class='selected' href="/about/us.shtml">About&nbsp;Us</a></li>
<!--#else -->
<li><a href="/about/us.shtml">About&nbsp;Us</a></li>
<!--#endif -->

<!--#if expr="${DOCUMENT_URI}=/\/about\/contact/" -->
<li><a class='selected' href="/about/contact.shtml">Contact</a></li>
<!--#else -->
<li><a href="/about/contact.shtml">Contact</a></li>
<!--#endif -->
</ul>
</div>

1 change: 1 addition & 0 deletions about/STARTCONTENT.shtml
12 changes: 12 additions & 0 deletions about/contact.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!--#set var="PageTitle" value="Contact Us" -->
<!--#include virtual="/GLOBALHEADER.shtml" -->
<!--#include virtual="LOCALHEADER.shtml" -->
<!--#include virtual="STARTCONTENT.shtml" -->
<h1>Contact Us</h1>

If you have a problem, a question, a suggestion, or just want to hang out with us,
you can join <a href="ircs://irc.overthewire.org/social">irc.overthewire.org</a> on port 6697 using an SSL-enabled IRC client,
or <a href="irc://irc.overthewire.org/social">irc.overthewire.org</a> on port 6667 using a regular IRC client.</li>

<!--#include virtual="ENDCONTENT.shtml" -->
<!--#include virtual="/FOOTER.shtml" -->
31 changes: 31 additions & 0 deletions about/contribute.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!--#set var="PageTitle" value="Volunteer" -->
<!--#include virtual="/GLOBALHEADER.shtml" -->
<!--#include virtual="LOCALHEADER.shtml" -->
<!--#include virtual="STARTCONTENT.shtml" -->

<h1>Contributing</h1>
<p>
If you appreciate our wargames community and would like to contribute, contact us about it!
</p>

<a name="donate"><h2>Donate</h2></a>
<p>
Keeping the servers running costs us several thousands of dollars each year. If it were not for the financial backing of a couple
generous <a href="/about/us.shtml">sponsors</a>, our servers would have disappeared a long time ago.
<b>We gladly accept any donations, even if you have only $1 to donate.</b>
</p>
<p>Donations can be made through PayPal. Please contact us if you want to contribute in another way.</p>

<p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG_global.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</p>


<!--#include virtual="ENDCONTENT.shtml" -->
<!--#include virtual="/FOOTER.shtml" -->
1 change: 1 addition & 0 deletions about/index.shtml
44 changes: 44 additions & 0 deletions about/us.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!--#set var="PageTitle" value="About Us" -->
<!--#include virtual="/GLOBALHEADER.shtml" -->
<!--#include virtual="LOCALHEADER.shtml" -->
<!--#include virtual="STARTCONTENT.shtml" -->
<h1>About Us</h1>

<p>
The OverTheWire staff consists of a group of volunteers that spend their spare time maintaining the systems and inventing new wargames.
More important than the active staff, are the sponsors, contributors and volunteers that help support this community.
We appreciate all of them and their efforts.
</p>

<div style='border: solid 1px black; background: #ccffcc; padding: 10px;'>
<i>These lists are most likely incomplete. If your name should be on this list, then don't hesitate to contact us so we can correct this mistake!</i>
</div>

<h2>Contributions</h2>
<table>
<tr><td><b>joe at yabazaba dot net</b></td><td>Monetary</td></tr>
<tr><td><b>S. "rootfiend" S.</b></td><td>Monetary</td></tr>
<tr><td><b>Amitesh S.</b></td><td>Monetary</td></tr>
<tr><td><b>Kurtis "Poni" M.</b></td><td>Hardware</td></tr>
<tr><td><b>Brian "dies" G.</b></td><td>Hardware, rackspace, bandwidth, founder</td></tr>
<tr><td><b>Samy "Samy" Al Bahra</b></td><td>Retired staff</td></tr>
<tr><td><b>"dila"</b></td><td>Retired staff</td></tr>
<tr><td><b>Ken "misery" D.</b></td><td>Retired staff</td></tr>
<tr><td><b>Frank "frank" Stefan</b></td><td>VM Hosting through <a href="http://copyleft.no/">Copyleft Solutions</a></td></tr>
<tr><td><b>Astera "astera" S.</b></td><td>Pixel hustling & plenking detection</td></tr>
</table>

<h2>Staff</h2>

<table>
<tr><td><b>Andrew "andrewg" Griffiths</b></td></tr>
<tr><td><b>Daniel "arcanum" Alvarez</b></td></tr>
<tr><td><b>"aton"</b></td></tr>
<tr><td><b>Bob "bk" Krouse</b></td></tr>
<tr><td><b>deadbyte</b></td></tr>
<tr><td><b>Steven "Steven" Van Acker</b></td></tr>
<tr><td><b>"zimzum"</b></td></tr>
</table>

<!--#include virtual="ENDCONTENT.shtml" -->
<!--#include virtual="/FOOTER.shtml" -->
Binary file added css/origins.ttf
Binary file not shown.
Loading

0 comments on commit 8383c88

Please sign in to comment.