From: <cph...@us...> - 2006-04-09 22:19:59
|
Revision: 36 Author: cphillip Date: 2006-04-09 15:19:46 -0700 (Sun, 09 Apr 2006) ViewCVS: http://svn.sourceforge.net/wnmap/?rev=36&view=rev Log Message: ----------- Update name to WNMap. Update README with more detailed information about the software and instructions for installation. Modified Paths: -------------- trunk/src/README trunk/src/sql/create-tables.mysql trunk/src/web/AddPotentialNode.php trunk/src/web/AddPotentialNodeSubmit.php trunk/src/web/DeleteNodeYes.php trunk/src/web/VerifyNode.php trunk/src/web/config.php.dist trunk/src/web/data.php trunk/src/web/geocode.php trunk/src/web/geocode_lib.php trunk/src/web/help.php trunk/src/web/index.php trunk/src/web/js.php trunk/src/web/kml-feed.php Modified: trunk/src/README =================================================================== --- trunk/src/README 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/README 2006-04-09 22:19:46 UTC (rev 36) @@ -1,14 +1,66 @@ -SeattleWireless Map - http://eric.extremeboredom.net/projects/swnmap -by Eric Butler <er...@ex...> +WNMap: Wireless network map display + http://wnmap.sourceforge.net/ -INSTALLATION -============ +ABSTRACT: -1) Create a mysql database, use the create-tables.mysql script in the sql/ - directory to set it up. + WNMap is a wireless network map display based on Google and Yahoo! Maps. Once + installed network "nodes" can be added to the map's database and can be shown + for web visitors. WNMap provides at-a-glance knowledge of the size of a + wireless network project. -2) Copy everything in 'web' to wherever +FEATURES: -3) Edit the 'config.php.dist' file and then rename it to 'config.php' + * display your project's network infrastructure with a simple-to-use interface + * themeable display allows you to brand your WNMap site as you wish + * most map features are supported in all "modern" JS-enabled web browsers + * extremely easy to install (if it's not, see the SUPPORT section below) -4) That should be it. +REQUIREMENTS: + + Web server (Apache recommended): http://httpd.apache.org/ + + PHP 4 or greater: http://www.php.net/ + + MySQL 3.23 or greater: http://www.mysql.com/ + + Google Maps API key: http://www.google.com/apis/maps/ + + Google Maps requires users of its web services API to provide a key given + to those who have registered for use of their service. Register for your + API key at Google Maps API URL above. + + Yahoo! Maps Application ID: http://api.search.yahoo.com/webservices/register_application + + Yahoo! Maps requires users of its web services API to provide an application + ID which uniquely identifies your instance of WNMap. Register for your + application ID at the Yahoo! Maps Application ID URL above. + +INSTALLATION: + + 1. Create a WNMap MySQL database using 'sql/create-tables.sql'. + + 2. Copy the entire contents of 'web/' to a directory served by HTTP. Note + the URL that you will be accessing the application from. + + 3. Register for a Google API key and Yahoo! app ID with your URL. + + 4. Edit 'config.php.dist' in your web directory and rename it to 'config.php'. + +SUPPORT: + + Please send questions, bugs, patches, etc, to the wnmap-devel mailing list + reachable through http://wnmap.sourceforge.net/, so that everyone can see + them. + +CREDITS: + + WNMap is currently maintained and supported by: + + Chase Phillips <sh...@am...> + + This software was originally developed for SeattleWireless by: + + Eric Butler <er...@ex...> + + Much of the website and structure of the introductory documentation was taken + from The BuildBot project (http://buildbot.sourceforge.net/). Modified: trunk/src/sql/create-tables.mysql =================================================================== --- trunk/src/sql/create-tables.mysql 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/sql/create-tables.mysql 2006-04-09 22:19:46 UTC (rev 36) @@ -1,3 +1,12 @@ +-- To configure a WNMap database using this file, run the following command: +-- +-- sh$ mysql -u <user> -p < create-tables.sql +-- + +CREATE DATABASE wnmap; + +USE wnmap; + CREATE TABLE nodes ( id int(11) NOT NULL auto_increment, createdOn timestamp(14) NOT NULL, Modified: trunk/src/web/AddPotentialNode.php =================================================================== --- trunk/src/web/AddPotentialNode.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/AddPotentialNode.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/AddPotentialNodeSubmit.php =================================================================== --- trunk/src/web/AddPotentialNodeSubmit.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/AddPotentialNodeSubmit.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/DeleteNodeYes.php =================================================================== --- trunk/src/web/DeleteNodeYes.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/DeleteNodeYes.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <? /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/VerifyNode.php =================================================================== --- trunk/src/web/VerifyNode.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/VerifyNode.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <? /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/config.php.dist =================================================================== --- trunk/src/web/config.php.dist 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/config.php.dist 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or @@ -21,22 +21,22 @@ // Configure all of this accordingly! define ("MYSQL_HOST", "127.0.0.1"); -define ("MYSQL_USER", "swnmap"); +define ("MYSQL_USER", "wnmap"); define ("MYSQL_PASS", ""); -define ("MYSQL_DB", "swnmap"); +define ("MYSQL_DB", "wnmap"); -define ("SITE_TITLE", "SeattleWireless Map"); +define ("SITE_TITLE", "My Wireless Network Map"); -define ("ORG_NAME", "SeattleWireless"); -define ("ORG_URL", "http://seattlewireless.net/"); -define ("ORG_DESC", "The SeattleWireless network"); +define ("ORG_NAME", "My Wireless"); +define ("ORG_URL", "http://mywireless.net/"); +define ("ORG_DESC", "The MyWireless network"); // No trailing slash -define ("MAP_URL", 'http://map.seattlewireless.net'); +define ("MAP_URL", 'http://map.mywireless.net'); -define ("GETTING_STARTED_URL", "http://seattlewireless.net/GetStarted"); +define ("GETTING_STARTED_URL", "http://mywireless.net/GetStarted"); -define ("MAIL_FROM", "no...@se..."); +define ("MAIL_FROM", "no...@my..."); // This is appended to the message sent to people when they add a node define ("MAIL_FOOTER",<<<EOF @@ -45,18 +45,17 @@ For information about putting up a node, visit our Getting Started page at: -http://seattlewireless.net/GetStarted +http://mywireless.net/GetStarted If you would like to discuss anything with us, you can send a message to the -appropriate mailing list (http://seattlewireless.net/MailingLists) or attend -one of our meetings (http://seattlewireless.net/EventCalendar) and get to know -the group in person. +appropriate mailing list (http://mywireless.net/MailingLists) or attend one of +our meetings (http://mywireless.net/EventCalendar) and get to know the group in +person. - We look forward to hearing from you! Regards, -The SeattleWireless.net Community +The MyWireless.net Community EOF ); @@ -70,7 +69,7 @@ define ("THEME_NAME", "rightsidebar-swnbluegray"); // %s = node name -define ("NODE_URL_FORMAT", "http://seattlewireless.net/%s"); +define ("NODE_URL_FORMAT", "http://mywireless.net/%s"); define ("MAP_CENTER_LAT", 47.625); define ("MAP_CENTER_LONG", -122.324); @@ -110,7 +109,7 @@ // SWNCFG_NODE_URL // Base URL of the node database // Possible values: <URL> - "SWNCFG_NODE_URL" => "http://seattlewireless.net/", + "SWNCFG_NODE_URL" => "http://mywireless.net/", ); // remove this line Modified: trunk/src/web/data.php =================================================================== --- trunk/src/web/data.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/data.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/geocode.php =================================================================== --- trunk/src/web/geocode.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/geocode.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/geocode_lib.php =================================================================== --- trunk/src/web/geocode_lib.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/geocode_lib.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Chase Phillips <sh...@am...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/help.php =================================================================== --- trunk/src/web/help.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/help.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/index.php =================================================================== --- trunk/src/web/index.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/index.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/js.php =================================================================== --- trunk/src/web/js.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/js.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Chase Phillips <sh...@am...> This program is free software; you can redistribute it and/or Modified: trunk/src/web/kml-feed.php =================================================================== --- trunk/src/web/kml-feed.php 2006-04-02 00:15:05 UTC (rev 35) +++ trunk/src/web/kml-feed.php 2006-04-09 22:19:46 UTC (rev 36) @@ -1,6 +1,6 @@ <?php /* -SeattleWireless Map +WNMap Copyright (C) 2006 Eric Butler <er...@ex...> This program is free software; you can redistribute it and/or This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |