summaryrefslogtreecommitdiff
path: root/.files/README-0.5.10.xhtml
diff options
context:
space:
mode:
Diffstat (limited to '.files/README-0.5.10.xhtml')
-rw-r--r--.files/README-0.5.10.xhtml113
1 files changed, 0 insertions, 113 deletions
diff --git a/.files/README-0.5.10.xhtml b/.files/README-0.5.10.xhtml
deleted file mode 100644
index e3c171f..0000000
--- a/.files/README-0.5.10.xhtml
+++ /dev/null
@@ -1,113 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!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" xml:lang="en" lang="en">
-<head>
- <title>rvs 0.5.10</title>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
-</head>
-<body>
-<h1>rvs 0.5.10</h1>
-<p>rvs is a basic versioning system I've been writing. If you don't know what that means, it isn't for you (at least not at this stage in development).</p>
-
-<h2>installation</h2>
-<p>Download the tarball <a href="http://bazaar.launchpad.net/%7Elukeshu/%2Bjunk/rvs-release/download/head%3A/rvs0.5.10.tar.gz-20090626054542-a8njfgco94idohdt-1/rvs-0.5.10.tar.gz"><kbd>rvs-0.5.10.tar.gz</kbd></a>.</p>
-<p>To install, simply extract the tarball in the root directory (preferably as root).</p>
-<p>Here is a list of all the files in <kbd>rvs-0.5.10.tar.gz</kbd>:</p>
-<ul>
- <li><kbd>/etc/abomination/modules/rvs/commit</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/commit.d</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/commit.f</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/get</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/get.d</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/get.f</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/init</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/lib/rvsdb</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/lib/stdio</kbd></li>
- <li><kbd>/usr/bin/rvs</kbd></li>
-</ul>
-
-<h2>system requirements</h2>
-<p>Pretty much any *nix system should be able to run rvs, provided it has bash, and bash is installed at <kbd>/bin/bash</kbd> (e.g.: <a href="http://www.freebsd.org/">FreeBSD</a> has it at <kbd>/usr/bin/bash</kbd>, so you should set up a symlink). rvs is not designed for Windows, but should be able to run in bash if you have some *nix pack installed.</p>
-<p>To my knowledge, this is the absolute requirements (all need to be in your PATH):</p>
-<ul>
- <li><a href="http://www.gnu.org/software/bash/">bash</a> (needs to be installed at <kbd>/bin/bash</kbd>)</li>
- <li>cat (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>cp (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>cut (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>echo (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>mkdir (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>rm (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>sed (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>sha1sum (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>tempfile (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
- <li>tr (included in <a href="http://www.gnu.org/software/coreutils/">GNU Core Utils</a>)</li>
-</ul>
-
-<h2>usage</h2>
-<dl>
- <dt>create repository in the current directory</dt>
- <dd><kbd>rvs init</kbd></dd>
- <dt>check in the current directory</dt>
- <dd><kbd>rvs commit</kbd> This will return a commit id. You need this to check the revision back out.</dd>
- <dt>check out to the current directory</dt>
- <dd><kbd>rvs get <var>ID</var></kbd> This checks out commit <var>ID</var></dd>
-</dl>
-<p>The system will bork if you have filenames with spaces or newlines. Why? Because you haven't written a patch to fix it yet.</p>
-<p>Feel free to push to the <a href="https://code.launchpad.net/~lukeshu/+junk/rvs-release">launchpad repository</a>.</p>
-
-<h2>hacking</h2>
-<p>Again, here is a list of all files in <kbd>rvs-0.5.10.tar.gz</kbd>:</p>
-<ul>
- <li><kbd>/etc/abomination/modules/rvs/commit</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/commit.d</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/commit.f</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/get</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/get.d</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/get.f</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/init</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/lib/rvsdb</kbd></li>
- <li><kbd>/etc/abomination/modules/rvs/lib/stdio</kbd></li>
- <li><kbd>/usr/bin/rvs</kbd></li>
-</ul>
-<p>These are all shell scripts and may be modified directly. I have designed this system to be extremely modular. As you may have figured out, each bit on functionality is in it's own script, and <kbd>/usr/bin/rvs</kbd> is just a wrapper for them. If you wish to move the directory with the sub-modules, all you have to do is update the variablle <code><var>RVSDIR</var></code> towards the beginning of <kbd>/usr/bin/rvs</kbd>.</p>
-<p><kbd>commit</kbd> actually does take a parameter. It can commit any file or directory. It works as it does because if no file is given, it defaults to <kbd>./</kbd>. If it is given a directory (as it is by default), it loops through each file in the directory and commits them (by calling itself). In order to actually commit a file or directory it calls <code>rvs commit.<var>type</var></code> where <var>type</var> is the standard unix file-type code:</p>
-
-<table>
- <tr><td><pre><em>b</em>lock (buffered) special</pre></td><td>b</td></tr>
- <tr><td><pre><em>c</em>haracter (unbuffered) special</pre></td><td>c</td></tr>
- <tr><td><pre><em>d</em>irectory </pre></td><td>d</td></tr>
- <tr><td><pre>named <em>p</em>ipe (FIFO) </pre></td><td>p</td></tr>
- <tr><td><pre>regular <em>f</em>ile </pre></td><td>f</td></tr>
- <tr><td><pre>symbolic <em>l</em>ink </pre></td><td>l</td></tr>
- <tr><td><pre><em>d</em>ocket </pre></td><td>s</td></tr>
- <tr><td><pre><em>d</em>oor (Solaris only) </pre></td><td>D</td></tr>
-</table>
-<p>As you probably noticed, only directories and regular files have been implemented in this release. <kbd>get</kbd> works in much the same way. If you implement any other file types, save the commit and get functions accordingly, and uncomment the line in <kbd>/etc/abomination/modules/rvs/commit</kbd>. Any commit function takes a filename as an argument and outputs the according commit id to stdout. Any get function takes the commit id as an argument and uses stdout only if verbose, or to report errors. So the modules communicate via pipes, which is generally considered bad-design, and libraries should be used. I deliberatly broke this because this way:</p>
-<ol>
- <li>incompatible licences can be used for different modules</li>
- <li>modules can be added/removed on the fly</li>
- <li>one can use any lanugage to write new modules, without having to worry about bindings</li>
-</ol>
-
-<h3>TODO</h3>
-<ul>
- <li>implment other unix file types (see above)</li>
- <li>add real option handling (code from another project is provided in <kbd>/usr/bin/rvs</kbd>)</li>
- <li>write real documentation</li>
- <li>implment a parent/child tree<ul>
- <li>implement branch ids (NOTE: <q>wch</q> should be used to refer to the latest commit in a branch)</li>
- </ul></li>
- <li>implement tags</li>
- <li>owner/filepermissions/timestamps</li>
- <li>usernames/author</li>
-</ul>
-
-<p>I have set up bazaar repository at <a href="https://code.launchpad.net/~lukeshu/+junk/rvs-release">Launchpad</a>. Only until rvs becomes self-hosting.</p>
-<p>If anyone needs any help, let me know.
-<br />~ Luke Shumaker &lt;<a href="mailto:lukeshu@sbcglobal.net">LukeShu@sbcglobal.net</a>&gt;
-<br />Happy Hacking!</p>
-</body>
-</html>
-