aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README15
-rwxr-xr-xsources/josm/update.sh2
-rwxr-xr-xsources/update_all.sh2
3 files changed, 10 insertions, 9 deletions
diff --git a/README b/README
index 5b824de..d25a397 100644
--- a/README
+++ b/README
@@ -5,15 +5,15 @@ Taginfo
Brings together information about OpenStreetMap tags and makes it searchable and browsable.
Documentation: http://wiki.openstreetmap.org/wiki/Taginfo
-Live System: http://taginfo.openstreetmap.de/
+Live System: http://taginfo.openstreetmap.org/
FILES
-----
-* sources - import scripts
+* sources - Import scripts
* web - Web User Interface and API
-* examples - script to use the API
+* examples - Some misc example stuff
* tagstats - C++ program to create database statistics
@@ -26,13 +26,13 @@ Uses
* Rack Contrib Gem (for Rack::JSONP)
* JSON gem (install with gem, Debian/Ubuntu packages are too old and buggy)
* jQuery (www.jquery.com), necessary files are included
+ * curl binary
* Flexigrid (Originally from http://code.google.com/p/flexigrid/
http://www.flexigrid.info/ , the version used and included
- is the one from http://github.com/joto/flexigrid with
- some bugfixes.)
+ has some changes and bugfixes.)
Debian/Ubuntu packages:
- rubygems
+ rubygems curl
Gems:
gem install mongrel rack rack-contrib sinatra json
@@ -52,7 +52,7 @@ WEB USER INTERFACE
You need a 'data' directory in the parent directory of the directory where
this README is. It must contain the sqlite database files created in the
-data import step or downloaded from http://taginfo.openstreetmap.de/download .
+data import step or downloaded from http://taginfo.openstreetmap.org/download .
To start the web user interface:
cd web
@@ -64,6 +64,7 @@ THANKS
Stefano Tampieri - for the Italian translation
Ilya Zverev <zverik@textual.ru> - for the Russion translation
Jocelyn Jaubert <jocelyn.jaubert@gmail.com> - for the French translation
+Jacek BuczyƄski <jacekzlodzi@gmail.com> - for the Polish translation
AUTHOR
diff --git a/sources/josm/update.sh b/sources/josm/update.sh
index c8507fd..a52a8e8 100755
--- a/sources/josm/update.sh
+++ b/sources/josm/update.sh
@@ -25,7 +25,7 @@ rm -f $DATABASE
rm -f $ELEMSTYLES
echo "`$DATECMD` Getting styles..."
-wget -O $ELEMSTYLES http://josm.openstreetmap.de/svn/trunk/styles/standard/elemstyles.xml
+curl --silent --output $ELEMSTYLES http://josm.openstreetmap.de/svn/trunk/styles/standard/elemstyles.xml
echo "`$DATECMD` Updating images..."
if [ -d $DIR/svn-source ]; then
diff --git a/sources/update_all.sh b/sources/update_all.sh
index c9fbc40..db1fa56 100755
--- a/sources/update_all.sh
+++ b/sources/update_all.sh
@@ -50,7 +50,7 @@ for source in $SOURCES_DOWNLOAD; do
echo "====================================="
echo "Downloading $source..."
mkdir -p $DIR/$source
- wget --quiet -O $DIR/download/taginfo-$source.db.bz2 http://taginfo.openstreetmap.org/download/taginfo-$source.db.bz2
+ curl --silent --output $DIR/download/taginfo-$source.db.bz2 http://taginfo.openstreetmap.org/download/taginfo-$source.db.bz2
bzcat $DIR/download/taginfo-$source.db.bz2 >$DIR/$source/taginfo-$source.db
echo "Done."
done