remove old plain-text README and fix some markdown
authorRichard Cyganiak <richard@cyganiak.de>
Fri, 01 Jun 2012 18:41:53 +0100
changeset 428 89f2f8f722e5
parent 427 6b36d5bafa37
child 430 3ab154ad58c5
child 500 13313b238612
remove old plain-text README and fix some markdown
README.markdown
README.txt
--- a/README.markdown	Fri Jun 01 18:39:24 2012 +0100
+++ b/README.markdown	Fri Jun 01 18:41:53 2012 +0100
@@ -31,8 +31,7 @@
 
 ### Additional information
 
-* [Richard's mail explaining branches in the repository](http://lists.w3.org/Archives/Public/www-archive/2011Aug/0032.html)
-** [Ivan's correction](http://lists.w3.org/Archives/Public/www-archive/2011Aug/0033.html)
+* [Richard's mail explaining branches in the repository](http://lists.w3.org/Archives/Public/www-archive/2011Aug/0032.html), [Ivan's correction](http://lists.w3.org/Archives/Public/www-archive/2011Aug/0033.html)
 * [hg init](http://hginit.com/) — a good intro to mercurial
 
 ### Mercurial 101
--- a/README.txt	Fri Jun 01 18:39:24 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,57 +0,0 @@
-This repository is used by the RDF WG.
-http://www.w3.org/2011/rdf-wg/wiki/Main_Page
-
-All members of the RDF WG should be able to use this repository.
-
-
-Work will happen in subdirectories like these:
-
-/rdf-concepts
-/rdf-mt
-/rdf-schema
-/rdf-primer (?) (old primer used rdf-syntax, which is weird)
-/rdf-turtle
-/rdf-syntax-grammar
-/ReSpec.js (shared copy of ReSpec)
-
-
-For those who have not used mercurial before, here is how to start:
-
-# To start:
-# Create on your own filespace a directory for mercurial
-cd mercurial-directory
-# Create a clone of the repository
-hg clone https://dvcs.w3.org/hg/rdf/
-
-# From that point on:
-# Edit a file
-cd rdf
-edit Any-file-in the-directory-tree
-
-# Commit the change to your local clone
-hg commit -m 'Some comments on what you did and why'
-
-# Push all your local changes to the public repository
-cd rdf
-hg push
-
-# (If you get the error "did you forget to merge? use push -f to force"
-# then you'll need to do a merge.  DO NOT use push -f.)
-
-# To receive changes made by others into your local repository:
-cd rdf
-hg pull
-
-# To receive all the changes with the repository as a whole:
-hg update 
-
-# the two previous steps can be in one:
-hg pull -u 
-
-A good intro to mercurial: http://hginit.com/
-
-See also additional information (mails of Ivan and Richard) at:
-
-http://lists.w3.org/Archives/Public/www-archive/2011Aug/0032.html
-http://lists.w3.org/Archives/Public/www-archive/2011Aug/0033.html
-