From b31a9ab3cb87f48ab6ebd1d3fad31e9086f398c6 Mon Sep 17 00:00:00 2001
From: alvaro <alvaro@alia.(none)>
Date: Fri, 7 Dec 2012 09:47:43 -0800
Subject: [PATCH] updating readme

---
 README.md      | 22 ++++++++++------------
 common.inc.php |  2 +-
 2 files changed, 11 insertions(+), 13 deletions(-)

diff --git a/README.md b/README.md
index a7f66db6..e4f8dc42 100644
--- a/README.md
+++ b/README.md
@@ -1,32 +1,30 @@
-Visualbox
+LODSPeaKr
 =========
 
 author: Alvaro Graves (alvaro@graves.cl)
 
-version: 20121029
+version: 20121107
 
 
-Visualbox is a simplified edition of [LODSPeaKr](http://lodspeakr.org) focused on allowing people to create visualizations using Linked Data.
+[LODSPeaKr](http://lodspeakr.org) is a framework for creating Linked Data applications in a simple and easy way. You can see [several applications](http://alangrafu.github.com/lodspeakr/applications.html) created using LODSPeaKr.
 
 Simplest Installation
 ---------------------
 
-Simply go to your web server root directory (e.g., /var/www/visualizations) and run
+Simply go to your web server root directory (e.g., /var/www/) and run
 
-   bash < <(curl -sL http://visualbox.org/install)
+   bash < <(curl -sL http://lodspeakr.org/install)
 
 You will be required to answer 3 questions:
 
-* What is the location of visualbox? If you are running the script in `/var/www/visualizations` it is highly likely it will be `http://localhost/visualizations` or `http://yourdomainname/visualizations`
+* What is the location of lodspeakr? If you are running the script in `/var/www/visualizations` it is highly likely it will be `http://localhost/visualizations` or `http://yourdomainname/visualizations`
 * What is the domain of the data you want to query? For now, you can leave it as the default (i.e., press Enter)
 * What is the URL of your SPARQL endpoint? Where should Visualbox look to execute SPARQL queries.
 
-Finally, give write permissions to the web server in `visualbox/meta`, `visualbox/cache`, `visualbox/settings.inc.php`  and `visualbox/components`. This can be done in several ways:
+Finally, give write permissions to the web server in `lodspeakr/meta`, `lodspeakr/cache`, `lodspeakr/settings.inc.php`  and `lodspeakr/components`. This can be done in several ways:
 
-* `sudo chown WEBSERVERUSER visualbox/meta visualbox/cache visualbox/settings.inc.php visualbox/components`
+* `sudo chown WEBSERVERUSER lodspeakr/meta lodspeakr/cache lodspeakr/settings.inc.php lodspeakr/components`
     * **Note** You can find the name of your web server user by running `ps aux|egrep "apache|httpd|www" |egrep -v "grep|root"|awk '{print $1}'|uniq`
-* Alternatively you can run `chdmod -R 777 visualbox/meta visualbox/cache visualbox/settings.inc.php visualbox/components` but this is highly discouraged
+* Alternatively you can run `chdmod -R 777 lodspeakr/meta lodspeakr/cache lodspeakr/settings.inc.php lodspeakr/components` but this is highly discouraged
 
-Now you can go to `http://localhost/visualizations` and you should see the welcome page. You can check now [How to create a new visualization](https://github.com/alangrafu/visualbox/wiki/How-to-create-a-new-visualization)
-
-More documentation on installation of LODSPeaKr/Visualbox is available at the [LODSPeaKr wiki](https://github.com/alangrafu/lodspeakr/wiki)
+More documentation on installation of LODSPeaKr is available at the [LODSPeaKr wiki](https://github.com/alangrafu/lodspeakr/wiki)
diff --git a/common.inc.php b/common.inc.php
index 12480ae2..0fe23cdc 100644
--- a/common.inc.php
+++ b/common.inc.php
@@ -1,6 +1,6 @@
 <?php
 
-$conf['version'] = '20121029';
+$conf['version'] = '20121107';
 $conf['output']['select'] = 'json';
 $conf['output']['ask'] = 'json';
 $conf['output']['describe'] = 'rdf';
-- 
GitLab