changelog shortlog tags changeset files revisions annotate raw

bin/index

changeset 23: a54c67e2232d
parent:a27f6ddf6a81
child:b6d673da8465
author: Gregor Richards <Richards@codu.org>
date: Wed Nov 04 01:48:26 2009 +0000 (2 years ago)
permissions: -rwxr-xr-x
description: 'edit' 'bin/index'
1#!/bin/bash
2cat <<EOF
3<html>
4 <head>
5 <title>Hackiki</title>
6 </head>
7 <body>
8 <h1>Hackiki</h1>
9 <p>Welcome to Hackiki, the world's most hackable wiki!</p>
10 <p>This is a wiki in which every page is a script, run in a more-or-less normal GNU/Linux environment (protected by <a href="http://plash.beasts.org/download.html">plash</a>)</p>
11 <form action="/wiki/edit" method="get">
12 Edit a page: <input type="text" name="arg1" value="bin/hello" /><br/>
13 <input type="submit" value="Edit" />
14 </form>
15 <p><a href="/wiki/hello">An example page</a></p>
16 <p><a href="/wiki/runner">An arbitrary command runner</a></p>
17 <p><a href="/wiki/list">A list of all pages</a></p>
18 </body>
19</html>
20EOF