Index: src/django_gheat/csv_to_db.php
===================================================================
--- src/django_gheat/csv_to_db.php	(revision 9047)
+++ 	(revision )
@@ -1,37 +1,0 @@
-<?php
-
-// edit with personal settings
-$location = '127.0.0.1';
-$username = 'root';
-$password = 'password';
-$database = 'project_heatmap';
-
-// connect to database
-mysql_connect($location, $username, $password)
-	or die("Error connecting to mysql: " . mysql_error());
-mysql_select_db($database)
-	or die("Error connecting to database: " . mysql_error());
-
-
-
-foreach($filelist as $file) {
-
-$table = "gheat_meting";
-
-	if (($handle = fopen("wleiden.csv", "r")) !== FALSE) {
-		while (($data = fgetcsv($handle, 1000, "\t")) !== FALSE) {
-			$lat=str_replace("N ", "", $data[0]);
-			$lon=str_replace("E ", "", $data[1]);
-			$ssid=str_replace("'", "", $data[2]);
-			$enc = substr($data[8], -2, 1);
-			$query=mysql_query("INSERT INTO ".$table." (lat, long) VALUES ('$lat','$lon')");
-			if (!$query) {
-				die('Invalid query: ' . mysql_error());
-			}
-		}
-		fclose($handle);
-	}
-
-}
-
-?>
Index: src/django_gheat/settings.py
===================================================================
--- src/django_gheat/settings.py	(revision 9047)
+++ src/django_gheat/settings.py	(revision 9048)
@@ -71,5 +71,5 @@
 )
 
-ROOT_URLCONF = 'persisted.urls'
+ROOT_URLCONF = 'django_gheat.gheat.urls'
 
 TEMPLATE_DIRS = (
Index: src/django_gheat/used_setup.txt
===================================================================
--- src/django_gheat/used_setup.txt	(revision 9047)
+++ 	(revision )
@@ -1,4 +1,0 @@
-Python 2.6 (r26:66721, Oct  2 2008, 11:35:03)
-Psycopg 2.4.0 (For Python 2.6)
-PostgreSQL 9.0.3-1
-Django 1.3
