- Timestamp:
- 06/15/2011 12:51:53 PM (11 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 14 edited
-
. (modified) (1 prop)
-
config (added)
-
install/index.php (modified) (1 diff)
-
install/srtm_download.php (modified) (1 diff)
-
install/steps/step_dbinit.php (modified) (1 diff)
-
install/steps/step_dbsetup.php (modified) (1 diff)
-
install/steps/step_deps.php (modified) (1 diff)
-
install/steps/step_file_perms.php (modified) (1 diff)
-
install/steps/step_final.php (modified) (1 diff)
-
install/steps/step_gmap.php (modified) (1 diff)
-
install/steps/step_mapbounds.php (modified) (1 diff)
-
install/steps/step_smarty.php (modified) (1 diff)
-
install/steps/step_srtm.php (modified) (1 diff)
-
install/steps/step_welcome.php (modified) (1 diff)
-
install/tools.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
--- +++
- Property svn:ignore
-
trunk/install/index.php
r237 r238 1 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 2 22 require_once dirname(__FILE__) . '/tools.php'; 3 23 header('Content-Type: text/html;charset=utf-8;'); -
trunk/install/srtm_download.php
r237 r238 1 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 2 22 ini_set('max_execution_time', 300); 3 23 header('Content-Type: application/json'); -
trunk/install/steps/step_dbinit.php
r237 r238 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 ?> 1 22 <p class="description">This is a fresh database. We will need information about administrator user. 2 23 </p> -
trunk/install/steps/step_dbsetup.php
r237 r238 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 ?> 1 22 <p class="description"> 2 23 WiND depends on MySQL Server. To continue give all information needed to connect at your mysql service. -
trunk/install/steps/step_deps.php
r237 r238 1 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 2 21 3 22 $step_result = true; -
trunk/install/steps/step_file_perms.php
r237 r238 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 22 ?> 1 23 <p class="description">Some folders must be writtable by the script itself. 2 24 If any check fails, then make the folder writable by web server process and retry.</p> -
trunk/install/steps/step_final.php
r237 r238 1 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 2 21 3 22 // Create configuration content -
trunk/install/steps/step_gmap.php
r237 r238 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 22 ?> 1 23 <p class="description"> 2 24 For the google maps to work, you need <a href="http://code.google.com/apis/maps/signup.html" target="_blank">an API Key</a>. -
trunk/install/steps/step_mapbounds.php
r237 r238 1 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 2 22 // Process input 3 23 $def_values = $_SESSION['config']['gmap']['bounds']; -
trunk/install/steps/step_smarty.php
r237 r238 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 22 ?> 1 23 <p class="description"><a target="_blank" href="http://www.smarty.net/">SMARTY</a> is used for generating HTML content and it is a mandatory dependency. 2 24 WiND depends on <strong>Smarty v2.X</strong>, please visit <a target="_blank" href="http://www.smarty.net/download">download section</a> and get the latest of 2.X series. -
trunk/install/steps/step_srtm.php
r237 r238 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 22 ?> 1 23 <p class="description"> WiND depends on external information about the elevation of the ground. These data are 2 24 distributed freely by NASA and they are called SRTM. The installer will download the needed files for you. -
trunk/install/steps/step_welcome.php
r237 r238 1 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 21 22 ?> 2 23 <p class="description"> Welcome at WiND Installation. Please follow the installation guide to complete installation procedure. 3 24 The guide will evaluate host and also request mandadotory information needed for the system to work. -
trunk/install/tools.php
r237 r238 1 1 <?php 2 /* 3 * WiND - Wireless Nodes Database 4 * 5 * Copyright (C) 2005 Nikolaos Nikalexis <winner@cube.gr> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; version 2 dated June, 1991. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 19 * 20 */ 2 21 3 22 $_GLOBALS['root_path'] = dirname(__FILE__) . '/../';
Note: See TracChangeset
for help on using the changeset viewer.
