Notes on this Subversion Repository =================================== This is my public [Subversion](http://subversion.tigris.org) repository. Anything inside of the 'public' tree on is available for public access. A web interface is available from ; that may be more useful for most people. You can check out a read-only copy of any code from this site by installing subversion and running: $ svn checkout http://svn.scottstuff.net/public/ This command will check out all code in the repository. To check out only the most recent version of a specific project, use something more like this: $ svn checkout http://svn.scottstuff.net/public/ab2vcard/trunk/ ab2vcard This will check out the most recent version of the ab2vcard project and put it in a directory called 'ab2vcard'. Once you've checked out a repository, you can easily update it to grab the newest version of the code by running: $ svn update You can also request a tarball from the [ViewCVS](http://svn.scottstuff.net/cgi-bin/viewcvs.cgi) server; you can do this without having to install Subversion on your system. Projects on this server ----------------------- There are several projects hosted here: * [ab2vcard](/project/ab2vcard), a tool to extract vCards from the OS X address book. * [asterisk-cdr-rss](/project/asterisk-cdr-rss), a tool to provide RSS feeds from Asterisk logs. * [asterisk-vcard-cid](/project/asterisk-vcard-cid), a tool to import vcards into Asterisk's caller-id database. * [bookscraper](/project/bookscraper), the code behind . Most of these projects are unreleased and undocumented. If they break, you get to keep both pieces. I'm providing them here because they may prove useful to some people, even though they're incomplete. Notes on directory layout ------------------------- A few quick notes. First, each project here has 4 sub-trees: * branch * release * tag * trunk The development code for each project is located in the trunk/ directory. If I've actually given the code a version number and released it, then a snapshot will be available under release/. The tag/ and branch/ directories are currently unused by any of these projects, but they're supposed to hold tags and branches. For more information -------------------- For more information, see my blog at .