From 5bbda7079e444deb89facafd018565a91aa1953b Mon Sep 17 00:00:00 2001 From: Abel Serrano Juste Date: Fri, 28 Sep 2018 18:24:04 +0200 Subject: [PATCH 1/3] Update README.md Better description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ef58dae..f7a8bf5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # WikiChron -Data visualization tool for wikis. +WikiChron is a web tool for the analysis and visualization of the evolution of wiki online communities. It analyzes the history dump of a wiki and give you nice graphs plotting that data. From bda60fbcc211dbc4766de9b85e99c0d91d4e64b5 Mon Sep 17 00:00:00 2001 From: Abel Serrano Juste Date: Tue, 9 Oct 2018 11:47:35 +0200 Subject: [PATCH 2/3] Fixed mistake in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f7a8bf5..c00f68a 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Activate the virtual environment: `source venv/bin/activate` And finally, install dependencies here: -`source venv/bin/activate` +`pip3 install -r requirements.txt` ## XML dumps Likely, the source data for wikichron will come from a XML file with the full edit history of the wikis you want to analyze. [Go here if you want to learn more about Wikimedia XML dumps](https://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki#Backup_the_content_of_the_wiki_(XML_dump)). From 8d164276e91b7c2e25e48c9ff33ad5acfeb09e24 Mon Sep 17 00:00:00 2001 From: Abel Serrano Juste Date: Tue, 9 Oct 2018 11:49:33 +0200 Subject: [PATCH 3/3] README: Replaced pip3 by pip in virtualenv --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c00f68a..7abefb6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Activate the virtual environment: `source venv/bin/activate` And finally, install dependencies here: -`pip3 install -r requirements.txt` +`pip install -r requirements.txt` ## XML dumps Likely, the source data for wikichron will come from a XML file with the full edit history of the wikis you want to analyze. [Go here if you want to learn more about Wikimedia XML dumps](https://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki#Backup_the_content_of_the_wiki_(XML_dump)).