├── .gitignore ├── .htaccess ├── AUTHORS.txt ├── COPYING.txt ├── README.md ├── config-sample ├── config.php └── language │ ├── dutch_overwrite.php │ ├── english_overwrite.php │ └── greek_overwrite.php ├── debug └── mysql.php ├── globals ├── classes │ ├── DBDescriptors.inc.php │ ├── DBUpdater.class.php │ ├── HTMLTag.class.php │ ├── SmartMenu.class.php │ ├── SmartMenuEntry.class.php │ ├── construct.php │ ├── form.php │ ├── geocalc.php │ ├── geoimage.php │ ├── message.php │ ├── mysql.php │ ├── srtm.php │ ├── table.php │ └── userdata.php ├── common.php ├── functions.php ├── html.lib.php ├── ipv6subnetcalculator.php ├── language │ ├── dutch.php │ ├── english.php │ └── greek.php └── vars.php ├── includes ├── body.php ├── head.php ├── html.php ├── main.php ├── main_center.php ├── main_footer.php ├── main_header.php ├── main_menu.php └── pages │ ├── admin │ ├── admin.php │ ├── admin_areas.php │ ├── admin_areas_area.php │ ├── admin_nodes.php │ ├── admin_nodes_services.php │ ├── admin_regions.php │ ├── admin_regions_region.php │ ├── admin_services.php │ ├── admin_services_service.php │ └── admin_users.php │ ├── dnszones │ └── dnszones.php │ ├── gearth │ ├── gearth.php │ ├── gearth_download.php │ └── gearth_main.php │ ├── hostmaster │ ├── hostmaster.php │ ├── hostmaster_dnsnameserver.php │ ├── hostmaster_dnsnameservers.php │ ├── hostmaster_dnszone.php │ ├── hostmaster_dnszones.php │ ├── hostmaster_dnszones_schema.php │ ├── hostmaster_range.php │ ├── hostmaster_range_v6.php │ ├── hostmaster_ranges.php │ └── hostmaster_ranges_v6.php │ ├── map │ ├── map.php │ ├── map_json.php │ └── map_xml.php │ ├── node_editor │ ├── node_editor.php │ ├── node_editor_dnsnameserver.php │ ├── node_editor_dnszone.php │ ├── node_editor_ipaddr.php │ ├── node_editor_link.php │ ├── node_editor_nodesettingschanges.php │ ├── node_editor_range.php │ ├── node_editor_range_v6.php │ ├── node_editor_services.php │ ├── node_editor_subnet.php │ └── node_editor_subnet_v6.php │ ├── nodechangeslog │ └── nodechangeslog.php │ ├── nodes │ ├── nodes.php │ ├── nodes_contact.php │ ├── nodes_plot.php │ ├── nodes_plot_link.php │ ├── nodes_search.php │ ├── nodes_stats.php │ └── nodes_view.php │ ├── pickup │ ├── pickup.php │ ├── pickup_dns_nameservers.php │ ├── pickup_links_ap.php │ ├── pickup_map.php │ ├── pickup_nodes.php │ └── pickup_users.php │ ├── ranges │ ├── ranges.php │ ├── ranges_allocation.php │ └── ranges_search.php │ ├── search │ ├── search.php │ ├── search_query.php │ ├── search_suggest.php │ └── search_suggest_js.php │ ├── services │ └── services.php │ ├── startup │ └── startup.php │ └── users │ ├── users.php │ ├── users_loginform.php │ └── users_restore.php ├── index.php ├── install ├── images │ ├── checkmark.png │ ├── checkmark_small.gif │ ├── downloading.gif │ ├── exclamation.png │ ├── step_current.png │ ├── step_next.png │ ├── step_previous.png │ └── warning.png ├── index.php ├── install.css ├── js │ ├── jquery.min.js │ └── keydragzoom_packed.js ├── schema.sql ├── srtm_download.php ├── steps │ ├── step_community.php │ ├── step_dbinit.php │ ├── step_dbsetup.php │ ├── step_deps.php │ ├── step_file_perms.php │ ├── step_final.php │ ├── step_mapbounds.php │ ├── step_smarty.php │ ├── step_srtm.php │ └── step_welcome.php └── tools.php ├── templates └── basic │ ├── config.php │ ├── constructors │ ├── form.tpl │ ├── form_enum.tpl │ ├── message.tpl │ ├── table.tpl │ └── table2.tpl │ ├── css │ ├── jquery-ui │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_666666_256x240.png │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui.min.css │ ├── map.css │ └── styles.css │ ├── generic │ ├── button.tpl │ ├── filter.tpl │ ├── help.tpl │ ├── language_selection.tpl │ ├── page-title.tpl │ ├── photosview_image.tpl │ ├── plot.tpl │ ├── section-level2.tpl │ ├── section-level3.tpl │ ├── section-level4.tpl │ ├── section-level5.tpl │ ├── section-level6.tpl │ └── section.tpl │ ├── images │ ├── DSC00155_12.gif │ ├── admin.gif │ ├── areas-small.png │ ├── arrow.gif │ ├── bg-shadow.gif │ ├── bullet-arrow2.png │ ├── compass.png │ ├── custom_dns_records.gif │ ├── dns-small.png │ ├── favicon.svg │ ├── favicon_256.png │ ├── favicon_32.png │ ├── favicon_64.png │ ├── flags │ │ ├── dutch.gif │ │ ├── english.gif │ │ └── greek.gif │ ├── fullscreen.png │ ├── header-back.png │ ├── header-bot-back.png │ ├── help.png │ ├── help_150.png │ ├── help_center.gif │ ├── ip-small.png │ ├── ip_manager.gif │ ├── left-bg.png │ ├── login.gif │ ├── login_close.png │ ├── logo-mysql.gif │ ├── logo-php.gif │ ├── logo-smarty.gif │ ├── logo.png │ ├── main_logo.png │ ├── map │ │ ├── layers_maximize.png │ │ ├── mm_20_blue.png │ │ ├── mm_20_blue_inactive.png │ │ ├── mm_20_green.png │ │ ├── mm_20_green_inactive.png │ │ ├── mm_20_grey.png │ │ ├── mm_20_orange.png │ │ ├── mm_20_orange_inactive.png │ │ ├── mm_20_red.png │ │ ├── mm_20_red_inactive.png │ │ ├── mm_20_shadow.png │ │ ├── mm_50_blue.png │ │ ├── mm_50_green.png │ │ ├── mm_50_grey.png │ │ ├── mm_50_orange.png │ │ ├── mm_50_red.png │ │ └── mm_50_shadow.png │ ├── menu-top-bullet.png │ ├── menu2-back.png │ ├── menu2-back2.png │ ├── nameserver.gif │ ├── node-small.png │ ├── node.gif │ ├── page-bg.gif │ ├── plot.png │ ├── popup-arrow.png │ ├── regions-small.png │ ├── search.gif │ ├── search_dns.gif │ ├── search_dns.png │ ├── search_ip.gif │ ├── search_ip.png │ ├── search_nodes.gif │ ├── search_nodes.png │ ├── services-small.png │ ├── services.gif │ ├── small-border.png │ ├── stats.png │ ├── submit1.png │ ├── table-d1-footer.png │ ├── table-d1-side.gif │ ├── table-d1-side.png │ ├── table-d1-text-back.png │ ├── table-d1-title-down.gif │ ├── table-d1-title.gif │ ├── table-d1-title.png │ ├── table-list-title-bg.png │ ├── table-list-title-bg2.png │ ├── title-back.png │ ├── title-bg.png │ ├── title-bullet-shadow.png │ ├── title-bullet.png │ ├── title-login-back.png │ ├── user-small.png │ ├── user.gif │ ├── vert-border.png │ └── windlogo_watermark.png │ ├── includes │ ├── body.tpl │ ├── head.tpl │ ├── html.tpl │ ├── main_footer.tpl │ ├── main_header.tpl │ ├── main_menu.tpl │ └── pages │ │ ├── admin │ │ ├── admin_areas.tpl │ │ ├── admin_areas_area.tpl │ │ ├── admin_nodes.tpl │ │ ├── admin_nodes_services.tpl │ │ ├── admin_regions.tpl │ │ ├── admin_regions_region.tpl │ │ ├── admin_services.tpl │ │ ├── admin_services_service.tpl │ │ └── admin_users.tpl │ │ ├── dnszones │ │ └── dnszones.tpl │ │ ├── gearth │ │ └── gearth_main.tpl │ │ ├── hostmaster │ │ ├── hostmaster_dnsnameserver.tpl │ │ ├── hostmaster_dnsnameservers.tpl │ │ ├── hostmaster_dnszone.tpl │ │ ├── hostmaster_dnszone_form_zone.tpl │ │ ├── hostmaster_dnszones.tpl │ │ ├── hostmaster_dnszones_schema.tpl │ │ ├── hostmaster_range.tpl │ │ ├── hostmaster_range_form_range.tpl │ │ ├── hostmaster_range_form_range_v6.tpl │ │ ├── hostmaster_range_v6.tpl │ │ ├── hostmaster_ranges.tpl │ │ └── hostmaster_ranges_v6.tpl │ │ ├── node_editor │ │ ├── node_editor.tpl │ │ ├── node_editor_dnsnameserver.tpl │ │ ├── node_editor_dnszone.tpl │ │ ├── node_editor_ipaddr.tpl │ │ ├── node_editor_link.tpl │ │ ├── node_editor_link_form_link.tpl │ │ ├── node_editor_nodesettingschanges.tpl │ │ ├── node_editor_nodesettingschanges_form_nodesettingschanges.tpl │ │ ├── node_editor_range.tpl │ │ ├── node_editor_range_v6.tpl │ │ ├── node_editor_services.tpl │ │ ├── node_editor_subnet.tpl │ │ ├── node_editor_subnet_form_subnet.tpl │ │ ├── node_editor_subnet_v6.tpl │ │ └── node_editor_table_photosview.tpl │ │ ├── nodechangeslog │ │ └── nodechangeslog.tpl │ │ ├── nodes │ │ ├── comments.tpl │ │ ├── link_info.tpl │ │ ├── link_info_free.tpl │ │ ├── myview.tpl │ │ ├── node_info.tpl │ │ ├── nodes_contact.tpl │ │ ├── nodes_contact_form_contact.tpl │ │ ├── nodes_plot_link.tpl │ │ ├── nodes_search.tpl │ │ ├── nodes_view.tpl │ │ ├── nodes_view_table_dns.tpl │ │ ├── nodes_view_table_ip_ranges.tpl │ │ ├── nodes_view_table_ip_ranges_v6.tpl │ │ ├── nodes_view_table_ipaddr_subnets.tpl │ │ ├── nodes_view_table_ipaddr_subnets_v6.tpl │ │ ├── nodes_view_table_links_ap.tpl │ │ ├── nodes_view_table_links_free.tpl │ │ ├── nodes_view_table_links_p2p.tpl │ │ ├── nodes_view_table_nameservers.tpl │ │ └── nodes_view_table_services.tpl │ │ ├── pickup │ │ ├── pickup_dns_nameservers.tpl │ │ ├── pickup_links_ap.tpl │ │ ├── pickup_map.tpl │ │ ├── pickup_nodes.tpl │ │ └── pickup_users.tpl │ │ ├── ranges │ │ ├── ranges.tpl │ │ ├── ranges_allocation.tpl │ │ └── ranges_search.tpl │ │ ├── search │ │ ├── search_suggest.tpl │ │ └── search_suggest_js.tpl │ │ ├── services │ │ └── services.tpl │ │ ├── startup │ │ └── startup.tpl │ │ └── users │ │ ├── users.tpl │ │ ├── users_loginform.tpl │ │ └── users_restore.tpl │ ├── plugins │ ├── modifier.escape.php │ ├── modifier.lower.php │ ├── modifier.truncate.php │ └── shared.escape_special_chars.php │ ├── scripts │ └── javascripts │ │ ├── fancyzoom │ │ ├── images-global │ │ │ └── zoom │ │ │ │ ├── closebox.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── zoom-caption-fill.png │ │ │ │ ├── zoom-caption-l.png │ │ │ │ ├── zoom-caption-r.png │ │ │ │ ├── zoom-shadow1.png │ │ │ │ ├── zoom-shadow2.png │ │ │ │ ├── zoom-shadow3.png │ │ │ │ ├── zoom-shadow4.png │ │ │ │ ├── zoom-shadow5.png │ │ │ │ ├── zoom-shadow6.png │ │ │ │ ├── zoom-shadow7.png │ │ │ │ ├── zoom-shadow8.png │ │ │ │ ├── zoom-spin-1.png │ │ │ │ ├── zoom-spin-10.png │ │ │ │ ├── zoom-spin-11.png │ │ │ │ ├── zoom-spin-12.png │ │ │ │ ├── zoom-spin-2.png │ │ │ │ ├── zoom-spin-3.png │ │ │ │ ├── zoom-spin-4.png │ │ │ │ ├── zoom-spin-5.png │ │ │ │ ├── zoom-spin-6.png │ │ │ │ ├── zoom-spin-7.png │ │ │ │ ├── zoom-spin-8.png │ │ │ │ └── zoom-spin-9.png │ │ └── js-global │ │ │ ├── FancyZoom.js │ │ │ ├── FancyZoomHTML.js │ │ │ ├── FancyZoomHTML_packed.js │ │ │ └── FancyZoom_packed.js │ │ ├── jquery-1.9.1.js │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ ├── map.js │ │ ├── openlayers │ │ ├── .gitignore │ │ ├── OpenLayers.js │ │ ├── img │ │ │ ├── blank.gif │ │ │ ├── cloud-popup-relative.png │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── east-mini.png │ │ │ ├── layer-switcher-maximize.png │ │ │ ├── layer-switcher-minimize.png │ │ │ ├── marker-blue.png │ │ │ ├── marker-gold.png │ │ │ ├── marker-green.png │ │ │ ├── marker.png │ │ │ ├── measuring-stick-off.png │ │ │ ├── measuring-stick-on.png │ │ │ ├── north-mini.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── slider.png │ │ │ ├── south-mini.png │ │ │ ├── west-mini.png │ │ │ ├── zoom-minus-mini.png │ │ │ ├── zoom-plus-mini.png │ │ │ ├── zoom-world-mini.png │ │ │ └── zoombar.png │ │ └── theme │ │ │ └── default │ │ │ ├── google.css │ │ │ ├── google.tidy.css │ │ │ ├── ie6-style.css │ │ │ ├── ie6-style.tidy.css │ │ │ ├── img │ │ │ ├── add_point_off.png │ │ │ ├── add_point_on.png │ │ │ ├── blank.gif │ │ │ ├── close.gif │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── draw_line_off.png │ │ │ ├── draw_line_on.png │ │ │ ├── draw_point_off.png │ │ │ ├── draw_point_on.png │ │ │ ├── draw_polygon_off.png │ │ │ ├── draw_polygon_on.png │ │ │ ├── editing_tool_bar.png │ │ │ ├── move_feature_off.png │ │ │ ├── move_feature_on.png │ │ │ ├── navigation_history.png │ │ │ ├── overview_replacement.gif │ │ │ ├── pan-panel-NOALPHA.png │ │ │ ├── pan-panel.png │ │ │ ├── pan_off.png │ │ │ ├── pan_on.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── remove_point_off.png │ │ │ ├── remove_point_on.png │ │ │ ├── ruler.png │ │ │ ├── save_features_off.png │ │ │ ├── save_features_on.png │ │ │ ├── view_next_off.png │ │ │ ├── view_next_on.png │ │ │ ├── view_previous_off.png │ │ │ ├── view_previous_on.png │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ └── zoom-panel.png │ │ │ ├── style.css │ │ │ ├── style.mobile.css │ │ │ ├── style.mobile.tidy.css │ │ │ └── style.tidy.css │ │ ├── pickup.js │ │ └── ui.js │ └── static │ └── bootstrap │ ├── css │ ├── bootstrap-theme.min.css │ └── bootstrap.min.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── js │ └── bootstrap.min.js ├── tools ├── .htaccess ├── dnszones-poller │ ├── 10.in-addr.arpa.conf │ ├── 10.in-addr.arpa.schema │ ├── dnszones-poller.php │ ├── ip6.arpa.conf │ ├── ip6.arpa.schema │ ├── yourdomain.conf │ └── yourdomain.schema ├── download_strm.php ├── gmaps │ ├── proxy.php │ └── server.php ├── update.php ├── updates │ ├── all.inc.php │ └── schema-v1.1.inc.php ├── whoind │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── examples │ │ ├── init │ │ ├── install │ │ ├── manpages │ │ └── rules │ ├── whoind │ └── whoind.conf └── zone_update │ └── zone_update └── update.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Exclude WiND installation-specific files 2 | /config/ 3 | /files 4 | /templates/_compiled 5 | 6 | # Exclude Eclipse build files 7 | .project 8 | .settings/ 9 | .buildpath 10 | .externalToolBuilders/ 11 | 12 | # Exclude other editors meta files 13 | .*.swp 14 | *.orig 15 | *.rej 16 | *~ 17 | .#* 18 | *# 19 | .emacs.desktop* 20 | nbproject/ -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | # Redirection rules 2 | 3 | RewriteEngine On 4 | 5 | # If your site can be accessed both with and without the 'www.' prefix, you 6 | # can use one of the following settings to redirect users to your preferred 7 | # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option: 8 | # 9 | # To redirect all users to access the site WITH the 'www.' prefix, 10 | # (http://example.com/... will be redirected to http://www.example.com/...) 11 | # adapt and uncomment the following: 12 | # RewriteCond %{HTTP_HOST} ^example\.com$ [NC] 13 | # RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301] 14 | # 15 | # To redirect all users to access the site WITHOUT the 'www.' prefix, 16 | # (http://www.example.com/... will be redirected to http://example.com/...) 17 | # uncomment and adapt the following: 18 | # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC] 19 | # RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] 20 | 21 | # Modify the RewriteBase if you are using site in a subdirectory or in a 22 | # VirtualDocumentRoot and the rewrite rules are not working properly. 23 | # For example if your site is at http://example.com/drupal uncomment and 24 | # modify the following line: 25 | # RewriteBase /drupal 26 | # 27 | # If your site is running in a VirtualDocumentRoot at http://example.com/subfolder, 28 | # uncomment the following line: 29 | RewriteBase /projects/wind 30 | 31 | RewriteCond %{REQUEST_FILENAME} !-f 32 | RewriteCond %{REQUEST_FILENAME} !-d 33 | RewriteRule ^(.*)$ ./index.php/$1 [PT,L,QSA] 34 | 35 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Authors ordered by first contribution. 2 | 3 | Nikolaos Nikalexis 4 | Faidon Liambotis 5 | Konstantinos Papadimitriou 6 | Petros Moisiadis 7 | Konstantinos Paliouras 8 | John Kolovos 9 | Eddy Kikkert 10 | Vasilis Tsiligiannis 11 | Yiannis Samouhos 12 | Leonidas Papadopoulos 13 | -------------------------------------------------------------------------------- /config-sample/language/dutch_overwrite.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | /* ENTER HERE THE OVERWRITE VALUES TO FIT YOUR SITE */ 21 | 22 | $lang_overwrite = array( 23 | 24 | 'site_title' => "MY SITE TITLE HERE" 25 | 26 | ); 27 | 28 | ?> -------------------------------------------------------------------------------- /config-sample/language/english_overwrite.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | /* ENTER HERE THE OVERWRITE VALUES TO FIT YOUR SITE */ 21 | 22 | $lang_overwrite = array( 23 | 24 | 'site_title' => "MY SITE TITLE HERE" 25 | 26 | ); 27 | 28 | ?> -------------------------------------------------------------------------------- /config-sample/language/greek_overwrite.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | /* ENTER HERE THE OVERWRITE VALUES TO FIT YOUR SITE */ 21 | 22 | $lang_overwrite = array( 23 | 24 | 'site_title' => "MY SITE TITLE HERE" 25 | 26 | ); 27 | 28 | ?> 29 | -------------------------------------------------------------------------------- /globals/vars.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | $vars = array( 21 | 22 | 'info' => array( 23 | 'version' => array(1, 1, '0-a1'), 24 | 'min_template_version' => 0 25 | ), 26 | 27 | // Default Configuration 28 | 'site' => array( 29 | 'short_urls' => false 30 | ) 31 | ); 32 | -------------------------------------------------------------------------------- /includes/body.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | class body { 21 | 22 | var $tags; 23 | var $tpl; 24 | 25 | function output() { 26 | return template($this->tpl, __FILE__); 27 | } 28 | 29 | } 30 | 31 | ?> -------------------------------------------------------------------------------- /includes/html.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | include_once(ROOT_PATH."includes/head.php"); 21 | include_once(ROOT_PATH."includes/body.php"); 22 | 23 | class html { 24 | 25 | var $tpl; 26 | var $head; 27 | var $body; 28 | 29 | function html() { 30 | $this->head = new head; 31 | $this->body = new body; 32 | } 33 | 34 | function output() { 35 | $this->tpl['head'] = $this->head->output(); 36 | $this->tpl['body'] = $this->body->output(); 37 | $this->tpl['body_tags'] = $this->body->tags; 38 | $ret = template($this->tpl, __FILE__); 39 | return $ret; 40 | } 41 | 42 | } 43 | 44 | ?> -------------------------------------------------------------------------------- /includes/main_footer.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | class footer { 21 | 22 | var $hide=FALSE; 23 | 24 | function output() { 25 | global $db, $php_start, $main, $vars; 26 | if ($this->hide) return; 27 | $this->tpl['php_time'] = getmicrotime() - $php_start; 28 | $this->tpl['mysql_time'] = $db->total_time; 29 | $this->tpl['wind_version'] = format_version($vars['info']['version']); 30 | if (isset($main->userdata->privileges['admin']) && $main->userdata->privileges['admin'] === TRUE && $vars['debug']['enabled'] == TRUE) { 31 | $this->tpl['debug_mysql'] = ROOT_PATH."debug/mysql.php?".get_query_string(); 32 | } 33 | return template($this->tpl, __FILE__); 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /includes/pages/admin/admin.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | if (get('subpage') != '') 21 | include_once(ROOT_PATH."includes/pages/admin/admin_".get('subpage').".php"); 22 | 23 | class admin { 24 | 25 | var $tpl; 26 | var $page; 27 | 28 | function __construct() { 29 | if (get('subpage') != '') { 30 | $p = "admin_".get('subpage'); 31 | $this->page = new $p; 32 | } else { 33 | redirect(make_ref('/admin/nodes')); 34 | } 35 | } 36 | 37 | function output() { 38 | global $main, $lang; 39 | $admin_entry = $main->menu->main_menu->getRootEntry()->getChild('admin'); 40 | $admin_entry->createLink($lang['nodes'], make_ref('/admin/nodes')); 41 | $admin_entry->createLink($lang['users'], make_ref('/admin/users')); 42 | $admin_entry->createLink($lang['services'], make_ref('/admin/nodes_services')); 43 | $admin_entry->createLink($lang['services_categories'], make_ref('/admin/services')); 44 | $admin_entry->createLink($lang['regions'], make_ref('/admin/regions')); 45 | $admin_entry->createLink($lang['areas'], make_ref('/admin/areas')); 46 | 47 | return $this->page->output(); 48 | 49 | } 50 | 51 | } 52 | 53 | ?> 54 | -------------------------------------------------------------------------------- /includes/pages/gearth/gearth.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | 21 | if (get('subpage') != '') { 22 | include_once(ROOT_PATH."includes/pages/gearth/gearth_".get('subpage').".php"); 23 | } else { 24 | include_once(ROOT_PATH."includes/pages/gearth/gearth_main.php"); 25 | } 26 | 27 | class gearth { 28 | 29 | var $tpl; 30 | var $page; 31 | 32 | function gearth() { 33 | if (get('subpage') != '') { 34 | $p = "gearth_".get('subpage'); 35 | $this->page = new $p; 36 | } else { 37 | $this->page = new gearth_main; 38 | } 39 | } 40 | 41 | function output() { 42 | return $this->page->output(); 43 | } 44 | 45 | } 46 | 47 | ?> 48 | -------------------------------------------------------------------------------- /includes/pages/gearth/gearth_main.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | class gearth_main { 21 | 22 | var $tpl; 23 | 24 | function gearth_main() { 25 | 26 | } 27 | 28 | function output() { 29 | return template($this->tpl, __FILE__); 30 | } 31 | 32 | } 33 | 34 | ?> 35 | -------------------------------------------------------------------------------- /includes/pages/hostmaster/hostmaster.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | if (get('subpage') != '') include_once(ROOT_PATH."includes/pages/hostmaster/hostmaster_".get('subpage').".php"); 21 | 22 | class hostmaster { 23 | 24 | var $tpl; 25 | var $page; 26 | 27 | function __construct() { 28 | if (get('subpage') != '') { 29 | $p = "hostmaster_".get('subpage'); 30 | $this->page = new $p; 31 | } else { 32 | redirect(make_ref('/hostmaster/ranges')); 33 | } 34 | 35 | 36 | } 37 | 38 | function output() { 39 | global $main, $lang; 40 | $hostmaster_entry = $main->menu->main_menu->getRootEntry()->getChild('hostmaster'); 41 | $hostmaster_entry->createLink($lang['ip_ranges'], make_ref('/hostmaster/ranges')); 42 | $hostmaster_entry->createLink($lang['ip_ranges_v6'], make_ref('/hostmaster/ranges_v6')); 43 | $hostmaster_entry->createLink($lang['dns_zones'], make_ref('/hostmaster/dnszones')); 44 | $hostmaster_entry->createLink($lang['db']['schema'], make_ref('/hostmaster/dnszones_schema')); 45 | $hostmaster_entry->createLink($lang['dns_nameservers'], make_ref('/hostmaster/dnsnameservers')); 46 | 47 | return $this->page->output(); 48 | } 49 | 50 | } 51 | 52 | ?> 53 | -------------------------------------------------------------------------------- /includes/pages/map/map.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | require_once(ROOT_PATH."includes/pages/map/map_".get('subpage').".php"); 21 | 22 | class map { 23 | 24 | var $tpl; 25 | var $page; 26 | 27 | function __construct() { 28 | $p = "map_".get('subpage'); 29 | $this->page = new $p; 30 | } 31 | 32 | function output() { 33 | return $this->page->output(); 34 | } 35 | 36 | } 37 | 38 | ?> -------------------------------------------------------------------------------- /includes/pages/nodes/nodes.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | if (get('subpage') != '') { 21 | include_once(ROOT_PATH."includes/pages/nodes/nodes_".get('subpage').".php"); 22 | } else { 23 | if (get('node') != '') { 24 | include_once(ROOT_PATH."includes/pages/nodes/nodes_view.php"); 25 | } else { 26 | include_once(ROOT_PATH."includes/pages/nodes/nodes_search.php"); 27 | } 28 | } 29 | 30 | class nodes { 31 | 32 | var $tpl; 33 | var $page; 34 | 35 | function nodes() { 36 | if (get('subpage') != '') { 37 | $p = "nodes_".get('subpage'); 38 | $this->page = new $p; 39 | } else { 40 | if (get('node') != '') { 41 | $this->page = new nodes_view; 42 | } else { 43 | $this->page = new nodes_search; 44 | } 45 | } 46 | } 47 | 48 | function output() { 49 | global $main; 50 | 51 | return $this->page->output(); 52 | } 53 | 54 | } 55 | 56 | ?> -------------------------------------------------------------------------------- /includes/pages/pickup/pickup.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | if (get('subpage') != '') include_once(ROOT_PATH."includes/pages/pickup/pickup_".get('subpage').".php"); 21 | 22 | class pickup { 23 | 24 | var $tpl; 25 | var $page; 26 | 27 | function pickup() { 28 | if (get('subpage') != '') { 29 | $p = "pickup_".get('subpage'); 30 | $this->page = new $p; 31 | } 32 | } 33 | 34 | function output() { 35 | return $this->page->output(); 36 | } 37 | 38 | } 39 | 40 | ?> -------------------------------------------------------------------------------- /includes/pages/pickup/pickup_map.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | class pickup_map { 21 | 22 | var $tpl; 23 | 24 | function output() { 25 | global $construct, $main, $vars; 26 | $main->header->hide = TRUE; 27 | $main->menu->hide = TRUE; 28 | $main->footer->hide = TRUE; 29 | include_map('map', true); 30 | return template($this->tpl, __FILE__); 31 | } 32 | 33 | } 34 | 35 | ?> -------------------------------------------------------------------------------- /includes/pages/ranges/ranges.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | if (get('subpage') != '') include_once(ROOT_PATH."includes/pages/ranges/ranges_".get('subpage').".php"); 21 | else include_once(ROOT_PATH."includes/pages/ranges/ranges_search.php"); 22 | 23 | class ranges { 24 | 25 | var $tpl; 26 | var $page; 27 | 28 | function ranges() { 29 | if (get('subpage') != '') { 30 | $p = "ranges_".get('subpage'); 31 | $this->page = new $p; 32 | } 33 | else $this->page = new ranges_search; 34 | } 35 | 36 | function output() { 37 | global $main, $lang; 38 | $menu_addr = $main->menu->main_menu->getRootEntry()->getChild('addresses'); 39 | $menu_addr->createLink($lang['ip_ranges_search'], make_ref('/ranges/search')); 40 | $menu_addr->createLink($lang['ip_ranges_allocation'], make_ref('/ranges/allocation')); 41 | 42 | return $this->page->output(); 43 | } 44 | 45 | } 46 | 47 | ?> -------------------------------------------------------------------------------- /includes/pages/search/search.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | if (get('subpage') != '') { 21 | include_once(ROOT_PATH."includes/pages/search/search_".get('subpage').".php"); 22 | } else { 23 | include_once(ROOT_PATH."includes/pages/search/search_query.php"); 24 | } 25 | 26 | 27 | class search { 28 | 29 | var $tpl; 30 | var $page; 31 | 32 | function search() { 33 | if (get('subpage') != '') { 34 | $p = "search_".get('subpage'); 35 | $this->page = new $p; 36 | } else { 37 | $this->page = new search_query; 38 | } 39 | } 40 | 41 | function output() { 42 | return $this->page->output(); 43 | } 44 | 45 | } 46 | 47 | ?> 48 | -------------------------------------------------------------------------------- /includes/pages/search/search_query.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | class search_query { 21 | 22 | var $tpl; 23 | 24 | function search_query() { 25 | 26 | } 27 | 28 | function output() { 29 | global $db, $vars; 30 | $q = get('q'); 31 | if(strrpos($q, "#")!==false && intval(substr(strrchr($q,'#'),1))!=0) { 32 | $q = intval(substr(strrchr($q,'#'),1)); 33 | } 34 | if (is_numeric($q) && strpos($q, ".") === FALSE) { 35 | $path = '/nodes'; 36 | $qs = array('node' => $q); 37 | } elseif ($db->cnt('', 'nodes', "name = '".$q."'") == 1) { 38 | $node = $db->get('id', 'nodes', "name = '".$q."'"); 39 | $path = '/nodes'; 40 | $qs = array('node' => $node[0]['id']); 41 | } elseif (is_ip($q, FALSE)) { 42 | $path = '/ranges/search'; 43 | $qs = array("form_search_ranges_search" => serialize(array("ip" => $q))); 44 | } elseif (substr($q, -strlen(".".$vars['dns']['root_zone'])) == ".".$vars['dns']['root_zone']) { 45 | $path = '/dnszones'; 46 | $qs = array("form_search_dns_search" => serialize(array("dns_zones__name" => $q))); 47 | } else { 48 | $path = '/nodes'; 49 | $qs = array("form_search_nodes_search" => serialize(array("nodes__name" => $q))); 50 | 51 | } 52 | redirect( make_ref($path, $qs) ); 53 | } 54 | 55 | } 56 | 57 | ?> -------------------------------------------------------------------------------- /includes/pages/search/search_suggest_js.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | class search_suggest_js { 21 | 22 | var $tpl; 23 | 24 | function search_suggest_js() { 25 | 26 | } 27 | 28 | function output() { 29 | 30 | $this->tpl['suggest_url'] = make_ref('/search/suggest'); 31 | header('Content-Type: text/javascript'); 32 | 33 | echo template($this->tpl, __FILE__); 34 | exit; 35 | } 36 | 37 | } 38 | 39 | ?> -------------------------------------------------------------------------------- /includes/pages/startup/startup.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | class startup { 21 | 22 | var $tpl; 23 | 24 | function startup() { 25 | 26 | } 27 | 28 | function output() { 29 | global $vars; 30 | if (file_exists(ROOT_PATH."config/startup.html")) 31 | $this->tpl['startup_html'] = file_get_contents(ROOT_PATH."config/startup.html"); 32 | $this->tpl['wind_version'] = format_version($vars['info']['version']); 33 | $this->tpl['community_name'] = $vars['community']['name']; 34 | $this->tpl['community_short_name'] = $vars['community']['short_name']; 35 | return template($this->tpl, __FILE__); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | ob_start(); 21 | 22 | define("ROOT_PATH", dirname(__FILE__) . '/'); 23 | 24 | include_once(ROOT_PATH."globals/common.php"); 25 | 26 | include_once(ROOT_PATH."includes/main.php"); 27 | 28 | $main = new main; 29 | 30 | echo $main->output(); 31 | 32 | ob_end_flush(); 33 | -------------------------------------------------------------------------------- /install/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/checkmark.png -------------------------------------------------------------------------------- /install/images/checkmark_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/checkmark_small.gif -------------------------------------------------------------------------------- /install/images/downloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/downloading.gif -------------------------------------------------------------------------------- /install/images/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/exclamation.png -------------------------------------------------------------------------------- /install/images/step_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/step_current.png -------------------------------------------------------------------------------- /install/images/step_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/step_next.png -------------------------------------------------------------------------------- /install/images/step_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/step_previous.png -------------------------------------------------------------------------------- /install/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/install/images/warning.png -------------------------------------------------------------------------------- /install/steps/step_deps.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | $step_result = true; 21 | 22 | /** 23 | * Function to check WiND dependencies 24 | */ 25 | function check_wind_dependencies() { 26 | $dependancies = array(); 27 | 28 | // PHP Version 29 | $phpversion = explode('.', phpversion()); 30 | $dependancies['PHP Version >= 5.3'] = ($phpversion[0] >= 5 && $phpversion[1] >=3); 31 | 32 | // MySQL Support 33 | $dependancies['PHP-MySQL extension'] = (extension_loaded('mysql') && function_exists('mysql_connect')); 34 | 35 | // GD Library 36 | $dependancies['PHP-GD extension'] = (extension_loaded('gd') && function_exists('gd_info')); 37 | 38 | return $dependancies; 39 | } 40 | 41 | ?> 42 |

43 | WiND depends on various subsystems. This ensures that all subsystems exist and support all needed features.

44 |
    45 | $result) { 47 | $result_text = result_text($result); 48 | echo "
  • $dep {$result_text}
  • "; 49 | if (!$result) 50 | $step_result = false; 51 | } 52 | ?> 53 |
54 | . 18 | */ 19 | 20 | // Create configuration content 21 | $config_content= "config\config.php. Check file permissions.'); 25 | } else { 26 | ?> 27 |
You have succesfully finished installing WiND! 28 |

In order to view the site, You have to remove folder "install", eitherwise WiND will prevent you from normal 29 | operation.

30 |

Don't forget that you can further parametrize WiND by directly editing config/config.php. 31 | You can find a documented configuration sample at config-sample/config.php

32 |
33 | 34 | . 18 | */ 19 | 20 | ?> 21 |

Welcome at WiND Installation. Please follow the installation guide to complete installation procedure. 22 | The guide will evaluate host and also request mandadotory information needed for the system to work. 23 |

-------------------------------------------------------------------------------- /templates/basic/config.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'version' => 0, 7 | 'minor_version' => 0 8 | ) 9 | 10 | ); 11 | 12 | ?> 13 | -------------------------------------------------------------------------------- /templates/basic/constructors/form_enum.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | {assign var=temp value=$fullField|cat:"-"|cat:$value} 20 | {if $lang.db.$temp != ''}{$lang.db.$temp}{else}{$value|escape}{/if} -------------------------------------------------------------------------------- /templates/basic/constructors/message.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {if $image != ''} 19 | {html_image file=$image} 20 | {/if} 21 | {if $forward != ''} 22 | {assign var=f value="

"} 23 | {/if} 24 | {if $type == "error"} 25 | {assign var=panel_type value="panel-danger"} 26 | {else} 27 | {assign var=panel_type value="panel-info"} 28 | {/if} 29 |
30 |
31 |

{$title}

32 |
33 | 34 |
35 | {$message|nl2br} 36 | {$f} 37 |
38 | 39 |
-------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/animated-overlay.gif -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_flat_55_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_flat_55_ffffff_40x100.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_highlight-soft_25_0073ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_highlight-soft_25_0073ea_1x100.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-bg_highlight-soft_50_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-bg_highlight-soft_50_dddddd_1x100.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /templates/basic/css/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/css/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /templates/basic/generic/button.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | {if $glyph} 20 | {assign var=extra_left_content value=" "} 21 | {else} 22 | {assign var=extra_left_content value=''} 23 | {/if} 24 | 25 | {if $class} 26 | {assign var=btn_class value=`$class`} 27 | {else} 28 | {assign var=btn_class value="btn-default"} 29 | {/if} 30 | 31 | {if $href} 32 | {if $confirm == TRUE} 33 | {assign var=onclick value="javascript: if (confirm('$content?') == true) window.location='`$href`';"} 34 | {else} 35 | {assign var=onclick value="javascript: window.location='`$href`'"} 36 | {/if} 37 | {/if} 38 | -------------------------------------------------------------------------------- /templates/basic/generic/filter.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 |
20 | {$content} 21 |
22 |
23 | {literal} 24 | 29 | {/literal} -------------------------------------------------------------------------------- /templates/basic/generic/help.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
23 | {$lang.help.$help.body} 24 |
25 | 26 | help 27 | 28 | {literal} 29 | 38 | {/literal} 39 | -------------------------------------------------------------------------------- /templates/basic/generic/language_selection.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 | current 20 |
    21 | {foreach key=key item=item from=$languages} 22 |
  • 23 | {$item.name} {$item.name} 24 |
  • 25 | {/foreach} 26 |
27 |
28 | 29 | {literal} 30 | 39 | {/literal} -------------------------------------------------------------------------------- /templates/basic/generic/page-title.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 |

{$title}

20 | {if $right != ''}
{$right}
{/if} 21 |
-------------------------------------------------------------------------------- /templates/basic/generic/photosview_image.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 | {if $image.image != ''} 20 | {$image.info|escape} 21 | {else} 22 | 23 | {/if} 24 |
25 | -------------------------------------------------------------------------------- /templates/basic/generic/plot.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 |
20 | {$data[rowl].node_name|escape} #{$data[rowl].node_id} 21 | #{$data[rowl].links__peer_node_id} {$data[rowl].peer_node_name|escape} 22 |
23 | -- {$data[rowl].distance|round:3}km -- 24 |
25 | {$lang.plot} 26 |
27 |
-------------------------------------------------------------------------------- /templates/basic/generic/section-level2.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="generic/section.tpl" title=`$title` content=`$content` level=2} 19 | -------------------------------------------------------------------------------- /templates/basic/generic/section-level3.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="generic/section.tpl" title=`$title` content=`$content` level=3} -------------------------------------------------------------------------------- /templates/basic/generic/section-level4.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="generic/section.tpl" title=`$title` content=`$content` level=4} -------------------------------------------------------------------------------- /templates/basic/generic/section-level5.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="generic/section.tpl" title=`$title` content=`$content` level=5} -------------------------------------------------------------------------------- /templates/basic/generic/section-level6.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="generic/section.tpl" title=`$title` content=`$content` level=6} -------------------------------------------------------------------------------- /templates/basic/generic/section.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 |
20 | {$title} 21 | 22 | {if $buttons} 23 |
24 | {$buttons} 25 |
26 | {/if} 27 |
28 |
29 | {$content} 30 |
31 |
-------------------------------------------------------------------------------- /templates/basic/images/DSC00155_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/DSC00155_12.gif -------------------------------------------------------------------------------- /templates/basic/images/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/admin.gif -------------------------------------------------------------------------------- /templates/basic/images/areas-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/areas-small.png -------------------------------------------------------------------------------- /templates/basic/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/arrow.gif -------------------------------------------------------------------------------- /templates/basic/images/bg-shadow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/bg-shadow.gif -------------------------------------------------------------------------------- /templates/basic/images/bullet-arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/bullet-arrow2.png -------------------------------------------------------------------------------- /templates/basic/images/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/compass.png -------------------------------------------------------------------------------- /templates/basic/images/custom_dns_records.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/custom_dns_records.gif -------------------------------------------------------------------------------- /templates/basic/images/dns-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/dns-small.png -------------------------------------------------------------------------------- /templates/basic/images/favicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/favicon_256.png -------------------------------------------------------------------------------- /templates/basic/images/favicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/favicon_32.png -------------------------------------------------------------------------------- /templates/basic/images/favicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/favicon_64.png -------------------------------------------------------------------------------- /templates/basic/images/flags/dutch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/flags/dutch.gif -------------------------------------------------------------------------------- /templates/basic/images/flags/english.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/flags/english.gif -------------------------------------------------------------------------------- /templates/basic/images/flags/greek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/flags/greek.gif -------------------------------------------------------------------------------- /templates/basic/images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/fullscreen.png -------------------------------------------------------------------------------- /templates/basic/images/header-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/header-back.png -------------------------------------------------------------------------------- /templates/basic/images/header-bot-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/header-bot-back.png -------------------------------------------------------------------------------- /templates/basic/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/help.png -------------------------------------------------------------------------------- /templates/basic/images/help_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/help_150.png -------------------------------------------------------------------------------- /templates/basic/images/help_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/help_center.gif -------------------------------------------------------------------------------- /templates/basic/images/ip-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/ip-small.png -------------------------------------------------------------------------------- /templates/basic/images/ip_manager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/ip_manager.gif -------------------------------------------------------------------------------- /templates/basic/images/left-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/left-bg.png -------------------------------------------------------------------------------- /templates/basic/images/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/login.gif -------------------------------------------------------------------------------- /templates/basic/images/login_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/login_close.png -------------------------------------------------------------------------------- /templates/basic/images/logo-mysql.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/logo-mysql.gif -------------------------------------------------------------------------------- /templates/basic/images/logo-php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/logo-php.gif -------------------------------------------------------------------------------- /templates/basic/images/logo-smarty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/logo-smarty.gif -------------------------------------------------------------------------------- /templates/basic/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/logo.png -------------------------------------------------------------------------------- /templates/basic/images/main_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/main_logo.png -------------------------------------------------------------------------------- /templates/basic/images/map/layers_maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/layers_maximize.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_blue.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_blue_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_blue_inactive.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_green.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_green_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_green_inactive.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_grey.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_orange.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_orange_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_orange_inactive.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_red.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_red_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_red_inactive.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_20_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_20_shadow.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_50_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_50_blue.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_50_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_50_green.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_50_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_50_grey.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_50_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_50_orange.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_50_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_50_red.png -------------------------------------------------------------------------------- /templates/basic/images/map/mm_50_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/map/mm_50_shadow.png -------------------------------------------------------------------------------- /templates/basic/images/menu-top-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/menu-top-bullet.png -------------------------------------------------------------------------------- /templates/basic/images/menu2-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/menu2-back.png -------------------------------------------------------------------------------- /templates/basic/images/menu2-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/menu2-back2.png -------------------------------------------------------------------------------- /templates/basic/images/nameserver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/nameserver.gif -------------------------------------------------------------------------------- /templates/basic/images/node-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/node-small.png -------------------------------------------------------------------------------- /templates/basic/images/node.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/node.gif -------------------------------------------------------------------------------- /templates/basic/images/page-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/page-bg.gif -------------------------------------------------------------------------------- /templates/basic/images/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/plot.png -------------------------------------------------------------------------------- /templates/basic/images/popup-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/popup-arrow.png -------------------------------------------------------------------------------- /templates/basic/images/regions-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/regions-small.png -------------------------------------------------------------------------------- /templates/basic/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/search.gif -------------------------------------------------------------------------------- /templates/basic/images/search_dns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/search_dns.gif -------------------------------------------------------------------------------- /templates/basic/images/search_dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/search_dns.png -------------------------------------------------------------------------------- /templates/basic/images/search_ip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/search_ip.gif -------------------------------------------------------------------------------- /templates/basic/images/search_ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/search_ip.png -------------------------------------------------------------------------------- /templates/basic/images/search_nodes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/search_nodes.gif -------------------------------------------------------------------------------- /templates/basic/images/search_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/search_nodes.png -------------------------------------------------------------------------------- /templates/basic/images/services-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/services-small.png -------------------------------------------------------------------------------- /templates/basic/images/services.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/services.gif -------------------------------------------------------------------------------- /templates/basic/images/small-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/small-border.png -------------------------------------------------------------------------------- /templates/basic/images/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/stats.png -------------------------------------------------------------------------------- /templates/basic/images/submit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/submit1.png -------------------------------------------------------------------------------- /templates/basic/images/table-d1-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-d1-footer.png -------------------------------------------------------------------------------- /templates/basic/images/table-d1-side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-d1-side.gif -------------------------------------------------------------------------------- /templates/basic/images/table-d1-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-d1-side.png -------------------------------------------------------------------------------- /templates/basic/images/table-d1-text-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-d1-text-back.png -------------------------------------------------------------------------------- /templates/basic/images/table-d1-title-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-d1-title-down.gif -------------------------------------------------------------------------------- /templates/basic/images/table-d1-title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-d1-title.gif -------------------------------------------------------------------------------- /templates/basic/images/table-d1-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-d1-title.png -------------------------------------------------------------------------------- /templates/basic/images/table-list-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-list-title-bg.png -------------------------------------------------------------------------------- /templates/basic/images/table-list-title-bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/table-list-title-bg2.png -------------------------------------------------------------------------------- /templates/basic/images/title-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/title-back.png -------------------------------------------------------------------------------- /templates/basic/images/title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/title-bg.png -------------------------------------------------------------------------------- /templates/basic/images/title-bullet-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/title-bullet-shadow.png -------------------------------------------------------------------------------- /templates/basic/images/title-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/title-bullet.png -------------------------------------------------------------------------------- /templates/basic/images/title-login-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/title-login-back.png -------------------------------------------------------------------------------- /templates/basic/images/user-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/user-small.png -------------------------------------------------------------------------------- /templates/basic/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/user.gif -------------------------------------------------------------------------------- /templates/basic/images/vert-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/vert-border.png -------------------------------------------------------------------------------- /templates/basic/images/windlogo_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/images/windlogo_watermark.png -------------------------------------------------------------------------------- /templates/basic/includes/body.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 | {if $header != ''} 20 |
{$header}
21 | {/if} 22 | {if $menu != ''} 23 | 24 | {/if} 25 |
26 | {if $message==''} 27 | {$center} 28 | {else} 29 |
{$message}
30 | {/if} 31 |
32 | {if $footer != ''} 33 |
34 | {$footer} 35 |
36 | {/if} 37 |
-------------------------------------------------------------------------------- /templates/basic/includes/head.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {if $title != ''} 19 | {$title} 20 | {/if} 21 | {foreach from=$base item=i} 22 | 23 | {/foreach} 24 | {foreach from=$link item=i} 25 | 26 | {/foreach} 27 | {foreach from=$meta item=i} 28 | 29 | {/foreach} 30 | {foreach from=$script item=i} 31 | 32 | {/foreach} 33 | {if $extra != ''} 34 | {$extra} 35 | {/if} -------------------------------------------------------------------------------- /templates/basic/includes/html.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | {$head} 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | {$body} 40 | 41 | -------------------------------------------------------------------------------- /templates/basic/includes/main_footer.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 |
20 | PHP Hypertext Preprocessor 21 | MySQL database server 22 | smarty template engine 23 |
24 |
25 | Powered by: WiND v{$wind_version}
26 | Copyright 2005-2014 WiND Contributors 27 |
28 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_areas.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign="btn_add" file="generic/button.tpl" class="btn-success btn-sm" glyph="plus-sign" 19 | href=$link_area_add content="`$lang.area_add`"} 20 | {include file=generic/page-title.tpl title="`$lang.admin_panel` > `$lang.areas`" right="$btn_add} 21 | {$table_areas} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_areas_area.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {assign var=t value="area_`$area_method`"} 19 | {include file=generic/page-title.tpl title="`$lang.$t`"} 20 | {$form_area} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_nodes.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.admin_panel` > `$lang.nodes`"} 19 | {include file=generic/filter.tpl title="`$lang.nodes_search`" content=$form_search_nodes} 20 | {$table_nodes} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_nodes_services.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="admin_nodes_services_edit"} 19 | {include file=generic/page-title.tpl title="`$lang.admin_panel` > `$lang.services`" right="$help"} 20 | {include file=generic/filter.tpl title="`$lang.services_search`" content=$form_search_services_edit} 21 | {$table_services} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_regions.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign="btn_add" file="generic/button.tpl" class="btn-success btn-sm" glyph="plus-sign" 19 | href=$link_region_add content="`$lang.region_add`"} 20 | {include file=generic/page-title.tpl title="`$lang.admin_panel` > `$lang.regions`" right=$btn_add} 21 | 22 | {$table_regions} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_regions_region.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {assign var=t value="region_`$region_method`"} 19 | {include file=generic/page-title.tpl title="`$lang.$t`"} 20 | {$form_region} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_services.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign="add_btn" file="generic/button.tpl" class="btn-success btn-sm" glyph="plus-sign" 19 | href=$link_services_categories_add content="`$lang.services_categories_add`"} 20 | {include file=generic/page-title.tpl title="`$lang.admin_panel` > `$lang.services_categories`" right="`$add_btn`"} 21 | 22 | {$table_services} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_services_service.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {assign var=t value="services_categories_`$services_method`"} 19 | {include file=generic/page-title.tpl title="`$lang.$t`"} 20 | {$form_services} -------------------------------------------------------------------------------- /templates/basic/includes/pages/admin/admin_users.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.admin_panel` > `$lang.users`"} 19 | {include file=generic/filter.tpl title="`$lang.users_search`" content=$form_search_users} 20 | {$table_users} -------------------------------------------------------------------------------- /templates/basic/includes/pages/dnszones/dnszones.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help=dnszones} 19 | {include file=generic/page-title.tpl title="`$lang.all_zones`" right="$help"} 20 | {include file=generic/filter.tpl title="`$lang.dns_zones_search`" content=$form_search_dns} 21 | {$table_dns} -------------------------------------------------------------------------------- /templates/basic/includes/pages/gearth/gearth_main.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.gearth_download`"} 19 |
20 |

21 |

22 |
23 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_dnsnameserver.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign="delete_btn" file=generic/button.tpl class="btn btn-sm btn-danger" glyph="remove" 19 | content="`$lang.delete`" href=$link_nameserver_delete confirm=TRUE} 20 | {include file=generic/page-title.tpl title="`$lang.nameserver_edit`" right="`$delete_btn`"} 21 | {$form_nameserver} 22 | {include file=generic/section-level3.tpl title="`$lang.node_info`" content=$table_node_info} 23 | {include file=generic/section-level3.tpl title="`$lang.users_info`" content=$table_user_info} 24 | {include file=generic/section-level3.tpl title="`$lang.links`" content=$table_links} 25 | {include file=generic/section-level3.tpl title="`$lang.dns_zones`" content=$table_dns} -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_dnsnameservers.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.hostmaster_panel` > `$lang.dns_nameservers`"} 19 | {include file=generic/filter.tpl title="`$lang.dns_nameservers_search`" content=$form_search_nameservers} 20 | {$table_nameservers} -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_dnszone.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign="delete_link" file=generic/button.tpl class="btn-danger btn-sm" content="`$lang.delete`" 19 | href=$link_dnszone_delete glyph=remove confirm=TRUE} 20 | {include file=generic/page-title.tpl title="`$lang.dnszone_edit`" right="`$delete_link`"} 21 | {$form_zone} 22 | {include file=generic/section-level3.tpl title="`$lang.node_info`" content=$table_node_info} 23 | {include file=generic/section-level3.tpl title="`$lang.users_info`" content=$table_user_info} 24 | {include file=generic/section-level3.tpl title="`$lang.links`" content=$table_links} 25 | {include file=generic/section-level3.tpl title="`$lang.ip_ranges`" content=$table_ip_ranges} 26 | {include file=generic/section-level3.tpl title="`$lang.dns_zones`" content=$table_dns} 27 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_dnszones.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.hostmaster_panel` > `$lang.dns_zones`"} 19 | {include file=generic/filter.tpl title="`$lang.dns_zones_search`" content=$form_search_dns} 20 | {$table_dns} -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_dnszones_schema.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.hostmaster_panel` > `$lang.dns_zones` (`$lang.db.schema`)"} 19 | {include file=generic/section-level3.tpl title="`$lang.zone_forward`" content=$form_zone_forward} 20 | {include file=generic/section-level3.tpl title="`$lang.zone_reverse`" content=$form_zone_reverse} 21 | {include file=generic/section-level3.tpl title="`$lang.zone_reverse_v6`" content=$form_zone_reverse_v6} -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_range.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign="delete_link" file=generic/button.tpl class="btn-danger btn-sm" content="`$lang.delete`" 19 | href=$link_range_delete glyph=remove confirm=TRUE} 20 | {include file=generic/page-title.tpl title="`$lang.ip_range_edit`" right="`$delete_link`"} 21 | 22 | {$form_range} 23 | {include file=generic/section-level2.tpl title="`$lang.node_info`" content=$table_node_info} 24 | {include file=generic/section-level2.tpl title="`$lang.users_info`" content=$table_user_info} 25 | {include file=generic/section-level2.tpl title="`$lang.links`" content=$table_links} 26 | {include file=generic/section-level2.tpl title="`$lang.ip_ranges`" content=$table_ip_ranges} 27 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_range_v6.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=range_delete file=generic/button.tpl class="btn-danger btn-sm" glyph=remove 19 | content="`$lang.delete`" href=$link_range_delete confirm=TRUE} 20 | {include file=generic/page-title.tpl title="`$lang.ip_range_v6_edit`" right="`$delete_link`"} 21 | 22 | {$form_range_v6} 23 | {include file=generic/section-level2.tpl title="`$lang.node_info`" content=$table_node_info} 24 | {include file=generic/section-level2.tpl title="`$lang.users_info`" content=$table_user_info} 25 | {include file=generic/section-level2.tpl title="`$lang.links`" content=$table_links} 26 | {include file=generic/section-level2.tpl title="`$lang.ip_ranges_v6`" content=$table_ip_ranges_v6} 27 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_ranges.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.hostmaster_panel` > `$lang.ip_ranges`"} 19 | {include file=generic/filter.tpl title="`$lang.ip_ranges_search`" content=$form_search_ranges} 20 | {$table_ranges} 21 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/hostmaster/hostmaster_ranges_v6.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.hostmaster_panel` > `$lang.ip_ranges_v6`"} 19 | {include file=generic/filter.tpl title="`$lang.ip_ranges_search_v6`" content=$form_search_ranges_v6} 20 | {$table_ranges_v6} 21 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_dnsnameserver.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="node_editor_dnsnameserver_`$nameserver_method`"} 19 | {assign var=t value="nameserver_`$nameserver_method`"} 20 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 21 | {include file=generic/section-level2.tpl title="`$lang.$t`" content=$form_nameserver} -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_dnszone.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="node_editor_dnszone_`$dnszone_method`"} 19 | {assign var=t value="dnszone_`$dnszone_method`"} 20 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 21 | {include file=generic/section-level2.tpl title="`$lang.$t`" content=$form_zone} -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_ipaddr.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="node_editor_ipaddr_`$ip_address_method`"} 19 | {assign var=t value="ip_address_`$ip_address_method`"} 20 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 21 | {include file=generic/section-level2.tpl title="`$lang.$t`" content=$form_ipaddr} -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_link.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="node_editor_link_`$link_method`"} 19 | {assign var=t value="link_`$link_method`"} 20 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 21 | {include file=generic/section-level2.tpl title="`$lang.$t`" content=$form_link} -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_nodesettingschanges.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | {include assign=help file=generic/help.tpl help="node_editor_nodesettingschanges_`$nodesettingschanges_method`"} 20 | {assign var=t value="nodesettingschanges_`$nodesettingschanges_method`"} 21 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 22 | {$form_nodesettingschanges} 23 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_range.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help=node_editor_range} 19 | {include file=generic/page-title.tpl title="`$lang.ip_range_request`" right="$help"} 20 | {include file=generic/section-level2.tpl title="`$lang.ip_range_request_for_node` $node_name (#$node_id)"|escape content=$form_getrange} -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_range_v6.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help=mynodes_range_v6} 19 | {include file=generic/page-title.tpl title="`$lang.ip_range_v6_request`" right="$help"} 20 | {include file=generic/section-level2.tpl title="`$lang.ip_range_v6_request_for_node` $node_name (#$node_id)"|escape content=$form_getrange_v6} 21 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_services.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="node_editor_services_`$services_method`"} 19 | {assign var=t value="services_`$services_method`"} 20 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 21 | {$form_services} -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_subnet.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="node_editor_subnet_`$subnet_method`"} 19 | {assign var=t value="subnet_`$subnet_method`"} 20 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 21 | {$form_subnet} 22 | 23 | 24 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/node_editor/node_editor_subnet_v6.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="node_editor_subnet_v6_`$subnet_v6_method`"} 19 | {assign var=t value="subnet_v6_`$subnet_v6_method`"} 20 | {include file=generic/page-title.tpl title="`$lang.$t`" right="$help"} 21 | {$form_subnet_v6} 22 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodechangeslog/nodechangeslog.tpl: -------------------------------------------------------------------------------- 1 | /* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | {include file=generic/page-title.tpl title="`$lang.admin_panel` > `$lang.nodechangeslog`"} 20 | 21 | 22 | 23 | 27 | 28 |
24 | 25 | {include file=generic/title2.tpl title="`$lang.nodechangeslog`" content=$table_nodechangeslog} 26 |
29 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/comments.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
{$lang.db.nodes__info}
{$node.info|escape}
-------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/node_info.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 | {$node.status|escape} 20 |
21 |
{$lang.db.user_id_owner}
22 |
{$node.owner_username|escape} 23 | {include file="generic/button.tpl" glyph=envelope class="btn-info btn-xs" onclick="javascript: t = window.open('$link_contact', 'contact', 'width=700,height=600,toolbar=0,resizable=1,scrollbars=1'); t.focus(); return false;" content=$lang.contact} 24 |
25 |
{$lang.location}
26 |
{if $node.area_name}{$node.area_name|escape}{else}n/a{/if}
27 | {if $node.region_name}{$node.region_name|escape}{else}n/a{/if}
28 | {$node.latitude}, {$node.longitude} 29 |
30 |
{$lang.db.nodes__date_in}
31 |
{$node.date_in|date_format:"%x"}
32 |
{$lang.db.nodes__due_date}
33 |
{$node.due_date|escape}
34 |
35 | {if $node.info } 36 |
37 | {$node.info}
38 | 
39 | {/if} 40 |
-------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_contact.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help=node_contact} 19 | {include file=generic/page-title.tpl title="`$lang.contact`" right="$help"} 20 | {include file=generic/section-level2.tpl title="`$lang.contact_node` $node_name (#$node_id)"|escape content=$form_contact} -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_contact_form_contact.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 |
20 | 21 |
22 | 23 | 24 |
25 |
26 | 27 | 31 |
32 |
33 | 34 | 35 |
36 |
37 | 38 | 39 |
40 |
41 | 42 |
43 |
44 |
-------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_search.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | {include assign=help file=generic/help.tpl help=nodes_search} 20 | {include file=generic/page-title.tpl title="`$lang.all_nodes`" right="$help"} 21 |
22 | {include file=generic/filter.tpl title="`$lang.nodes_search`" content=$form_search_nodes} 23 | {$table_nodes} -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_view_table_dns.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="constructors/table2.tpl"} -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_view_table_ip_ranges.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="constructors/table2.tpl"} -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_view_table_ip_ranges_v6.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="constructors/table2.tpl"} -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_view_table_links_free.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | {section name=rowl loop=$data} 20 | {if $smarty.section.rowl.index != 0} 21 | 22 | 25 | 26 | {/if} 27 | {/section} 28 |
29 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_view_table_links_p2p.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | 19 | {section name=rowl loop=$data} 20 | {if $smarty.section.rowl.index != 0} 21 | 22 | 25 | 26 | {/if} 27 | {/section} 28 |
-------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_view_table_nameservers.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="constructors/table2.tpl"} -------------------------------------------------------------------------------- /templates/basic/includes/pages/nodes/nodes_view_table_services.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file="constructors/table2.tpl"} -------------------------------------------------------------------------------- /templates/basic/includes/pages/pickup/pickup_dns_nameservers.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.nodes`"} 19 | {include file=generic/section-level2.tpl title="`$lang.dns_nameservers_search`" content=$form_search_nameservers} 20 | {include file=generic/section-level2.tpl title="`$lang.dns_nameservers_found`" content=$table_nameservers} -------------------------------------------------------------------------------- /templates/basic/includes/pages/pickup/pickup_links_ap.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.aps`"} 19 | {include file=generic/section-level2.tpl title="`$lang.aps_search`" content=$form_search_links_ap} 20 | {include file=generic/section-level2.tpl title="`$lang.aps_found`" content=$table_links_ap} -------------------------------------------------------------------------------- /templates/basic/includes/pages/pickup/pickup_map.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
-------------------------------------------------------------------------------- /templates/basic/includes/pages/pickup/pickup_nodes.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.nodes`"} 19 | {include file=generic/section-level2.tpl title="`$lang.nodes_search`" content=$form_search_nodes} 20 | {include file=generic/section-level2.tpl title="`$lang.nodes_found`" content=$table_nodes} -------------------------------------------------------------------------------- /templates/basic/includes/pages/pickup/pickup_users.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.users`"} 19 | {include file=generic/section-level2.tpl title="`$lang.users_search`" content=$form_search_users} 20 | {include file=generic/section-level2.tpl title="`$lang.users_found`" content=$table_users} -------------------------------------------------------------------------------- /templates/basic/includes/pages/ranges/ranges.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include file=generic/page-title.tpl title="`$lang.all_ranges`"} 19 | {include file=generic/section-level2.tpl title="`$lang.ip_ranges`" content=$table_areas} -------------------------------------------------------------------------------- /templates/basic/includes/pages/ranges/ranges_allocation.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help=ranges_allocation} 19 | {include file=generic/page-title.tpl title="`$lang.all_ranges` > `$lang.ip_ranges_allocation`" right="$help"} 20 | {$table_areas} -------------------------------------------------------------------------------- /templates/basic/includes/pages/ranges/ranges_search.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help=ranges_search} 19 | {include file=generic/page-title.tpl title="`$lang.all_ranges` > `$lang.ip_ranges_search`" right="$help"} 20 | {include file=generic/filter.tpl title="`$lang.ip_ranges_search`" content=$form_search_ranges} 21 | {$table_ranges} 22 | {$table_ranges_v6} -------------------------------------------------------------------------------- /templates/basic/includes/pages/services/services.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help=services} 19 | {include file=generic/page-title.tpl title="`$lang.all_services`" right="$help"} 20 | {include file=generic/filter.tpl title="`$lang.services_search`" content=$form_search_services} 21 | {$table_services} -------------------------------------------------------------------------------- /templates/basic/includes/pages/users/users.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {include assign=help file=generic/help.tpl help="users_`$user_method`"} 19 | {assign var=t value="user_`$user_method`"} 20 | 21 | {if $link_user_delete} 22 | {include assign=user_delete file=generic/button.tpl class="btn btn-danger btn-sm" glyph="remove" content="`$lang.delete`" href=$link_user_delete confirm=TRUE} 23 | {/if} 24 | {include file=generic/page-title.tpl title="`$lang.$t`" right="`$user_delete` `$help`"} 25 | 26 | 27 | {$form_user} -------------------------------------------------------------------------------- /templates/basic/includes/pages/users/users_loginform.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 |
19 | 20 |
21 | 22 |
23 | 24 | 25 | 26 |
27 |
28 | {$lang.password_recover} 29 |
30 |
31 | -------------------------------------------------------------------------------- /templates/basic/includes/pages/users/users_restore.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * WiND - Wireless Nodes Database 3 | * 4 | * Copyright (C) 2005-2014 by WiND Contributors (see AUTHORS.txt) 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU Affero General Public License as 7 | * published by the Free Software Foundation, either version 3 of the 8 | * License, or (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU Affero General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Affero General Public License 16 | * along with this program. If not, see . 17 | *} 18 | {if $form_restore != ''} 19 | {include assign=help file=generic/help.tpl help=users_restore_password_recover} 20 | {include file=generic/page-title.tpl title="`$lang.password_recover`" right="$help"} 21 | {include file=generic/section-level2.tpl title="`$lang.user_info`" content=$form_restore} 22 | {elseif $form_change_password != ''} 23 | {include assign=help file=generic/help.tpl help=users_restore_password_change} 24 | {include file=generic/page-title.tpl title="`$lang.password_change`" right="$help"} 25 | {include file=generic/section-level2.tpl title="`$lang.password_change`" content=$form_change_password} 26 | {/if} -------------------------------------------------------------------------------- /templates/basic/plugins/modifier.lower.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: lower
14 | * Purpose: convert multi-byte string to lowercase 15 | * @link http://smarty.php.net/manual/en/language.modifier.lower.php 16 | * lower (Smarty online manual) 17 | * @param string 18 | * @return string 19 | */ 20 | function smarty_modifier_lower($string) 21 | { 22 | return mb_strtolower($string); 23 | } 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /templates/basic/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: truncate
14 | * Purpose: Truncate a string to a certain length if necessary, 15 | * optionally splitting in the middle of a word, and 16 | * appending the $etc string. 17 | * @link http://smarty.php.net/manual/en/language.modifier.truncate.php 18 | * truncate (Smarty online manual) 19 | * @param string 20 | * @param integer 21 | * @param string 22 | * @param boolean 23 | * @return string 24 | */ 25 | function smarty_modifier_truncate($string, $length = 80, $etc = '...', 26 | $break_words = false) 27 | { 28 | if ($length == 0) 29 | return ''; 30 | 31 | if (strlen($string) > $length) { 32 | $length -= strlen($etc); 33 | if (!$break_words) 34 | $string = preg_replace('/\s+?(\S+)?$/', '', mb_substr($string, 0, $length+1)); 35 | 36 | return mb_substr($string, 0, $length).$etc; 37 | } else 38 | return $string; 39 | } 40 | 41 | /* vim: set expandtab: */ 42 | 43 | ?> 44 | -------------------------------------------------------------------------------- /templates/basic/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- 1 | 13 | * Purpose: used by other smarty functions to escape 14 | * special chars except for already escaped ones 15 | * @param string 16 | * @return string 17 | */ 18 | function smarty_function_escape_special_chars($string) 19 | { 20 | $encoding = mb_internal_encoding(); 21 | if(!is_array($string)) { 22 | $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); 23 | $string = htmlspecialchars($string, ENT_COMPAT, $encoding); 24 | $string = str_replace(array('%%%SMARTY_START%%%','%%%SMARTY_END%%%'), array('&',';'), $string); 25 | } 26 | return $string; 27 | } 28 | 29 | /* vim: set expandtab: */ 30 | 31 | ?> 32 | -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/closebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/closebox.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/spacer.gif -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-caption-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-caption-fill.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-caption-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-caption-l.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-caption-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-caption-r.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow1.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow2.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow3.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow4.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow5.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow6.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow7.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-shadow8.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-1.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-10.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-11.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-12.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-2.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-3.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-4.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-5.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-6.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-7.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-8.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/fancyzoom/images-global/zoom/zoom-spin-9.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore all files of openlayers 2 | /* 3 | # Except the production ones 4 | !.gitignore 5 | !/themes/ 6 | !/img/ 7 | !/OpenLayers.js 8 | -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/blank.gif -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/cloud-popup-relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/cloud-popup-relative.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/east-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/east-mini.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/layer-switcher-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/layer-switcher-maximize.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/layer-switcher-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/layer-switcher-minimize.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/marker-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/marker-blue.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/marker-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/marker-gold.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/marker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/marker-green.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/marker.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/measuring-stick-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/measuring-stick-off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/measuring-stick-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/measuring-stick-on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/north-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/north-mini.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/panning-hand-off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/panning-hand-on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/slider.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/south-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/south-mini.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/west-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/west-mini.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/zoom-minus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/zoom-minus-mini.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/zoom-plus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/zoom-plus-mini.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/zoom-world-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/zoom-world-mini.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/img/zoombar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/img/zoombar.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/google.css: -------------------------------------------------------------------------------- 1 | .olLayerGoogleCopyright { 2 | right: 3px; 3 | bottom: 2px; 4 | left: auto; 5 | } 6 | .olLayerGooglePoweredBy { 7 | left: 2px; 8 | bottom: 2px; 9 | } 10 | -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/google.tidy.css: -------------------------------------------------------------------------------- 1 | .olLayerGoogleCopyright{right:3px;bottom:2px;left:auto;}.olLayerGooglePoweredBy{left:2px;bottom:2px;} -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/ie6-style.css: -------------------------------------------------------------------------------- 1 | .olControlZoomPanel div { 2 | background-image: url(img/zoom-panel-NOALPHA.png); 3 | } 4 | .olControlPanPanel div { 5 | background-image: url(img/pan-panel-NOALPHA.png); 6 | } 7 | .olControlEditingToolbar { 8 | width: 200px; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/ie6-style.tidy.css: -------------------------------------------------------------------------------- 1 | .olControlZoomPanel div{background-image:url(img/zoom-panel-NOALPHA.png);}.olControlPanPanel div{background-image:url(img/pan-panel-NOALPHA.png);}.olControlEditingToolbar{width:200px;} -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/blank.gif -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/close.gif -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/navigation_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/navigation_history.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/overview_replacement.gif -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/pan-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/pan-panel-NOALPHA.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/pan-panel.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/ruler.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/save_features_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/save_features_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/save_features_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/view_previous_off.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/zoom-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/zoom-panel-NOALPHA.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/scripts/javascripts/openlayers/theme/default/img/zoom-panel.png -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/openlayers/theme/default/style.mobile.tidy.css: -------------------------------------------------------------------------------- 1 | div.olControlZoom{position:absolute;top:8px;left:8px;background:rgba(255,255,255,0.4);border-radius:4px;padding:2px;}*{-webkit-tap-highlight-color:rgba(0,0,0,0);}div.olControlZoom a{display:block;color:#FFF;font-size:28px;font-family:sans-serif;font-weight:700;text-decoration:none;text-align:center;height:32px;width:32px;line-height:28px;text-shadow:0 0 3px rgba(0,0,0,0.8);background:rgba(0,60,136,0.5);filter:alpha(opacity=80);margin:1px;padding:0;}a.olControlZoomIn{border-radius:4px 4px 0 0;}a.olControlZoomOut{border-radius:0 0 4px 4px;}div.olControlZoom a:hover{background:rgba(0,60,136,0.7);filter:alpha(opacity=100);}div.olMapViewport{-ms-touch-action:none;}.olLayerGrid .olTileImage{-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;-o-transition:opacity .2s linear;transition:opacity .2s linear;}.olTileImage{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;-moz-perspective:1000;-ms-perspective:1000;perspective:1000;}@media only screen and max-width 600px{div.olControlZoom a:hover{background:rgba(0,60,136,0.5);}} -------------------------------------------------------------------------------- /templates/basic/scripts/javascripts/pickup.js: -------------------------------------------------------------------------------- 1 | function pickup(list, text, value, mywindow) { 2 | if (list.multiple) { 3 | for(x=0; x<(list.length); x++){ 4 | if (list.options[x].value == value) return; 5 | } 6 | var opt = new Option(text, value) 7 | list.options[list.options.length] = opt 8 | for(x=0; x<(list.length); x++){ 9 | list.options[x].selected = "true" 10 | } 11 | } else { 12 | list.value = value 13 | l = document.getElementsByName(list.name + '_output') 14 | l[0].value = text 15 | mywindow.close() 16 | } 17 | } 18 | 19 | function remove_selected(list) { 20 | for(x=0; x<(list.length); x++){ 21 | if (list.options[x].selected == true) { 22 | list.options[x] = null 23 | x-- 24 | } 25 | } 26 | for(x=0; x<(list.length); x++){ 27 | list.options[x].selected = "true" 28 | } 29 | } 30 | 31 | function pickup_value(object, value) { 32 | object.value = value 33 | } -------------------------------------------------------------------------------- /templates/basic/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /templates/basic/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /templates/basic/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wind-project/wind/5f5f6cbe4a4b1753c58b0eefc205a49491757b18/templates/basic/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /tools/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /tools/dnszones-poller/10.in-addr.arpa.conf: -------------------------------------------------------------------------------- 1 | 'reverse', 9 | 10 | 'zone_suffix' => '.10.in-addr.arpa.', 11 | 12 | 'ns_domain' => '.ns.yourdomain.', 13 | 14 | 'shema' => '10.in-addr.arpa.schema', 15 | 16 | 'db' => array( 17 | 'server' => "server.example.org", 18 | 'username' => "youruser", 19 | 'password' => "yourpassword", 20 | 'database' => "yourdatabase" 21 | ) 22 | 23 | ); 24 | 25 | ########################### 26 | 27 | 28 | 29 | ?> -------------------------------------------------------------------------------- /tools/dnszones-poller/10.in-addr.arpa.schema: -------------------------------------------------------------------------------- 1 | $ORIGIN . 2 | $TTL 5 ; 5 seconds 3 | 10.in-addr.arpa IN SOA yourns.yourdomain. hostmaster.example.org. ( 4 | ##SERIAL## ; serial 5 | 43200 ; refresh (12 hours) 6 | 900 ; retry (15 minutes) 7 | 604800 ; expire (1 week) 8 | 5 ; minimum (5 seconds) 9 | ) 10 | $TTL 3600 ; 1 hour 11 | 12 | ##NAMESERVERS## 13 | 14 | ##ZONES## 15 | -------------------------------------------------------------------------------- /tools/dnszones-poller/ip6.arpa.conf: -------------------------------------------------------------------------------- 1 | 'reverse_v6', 9 | 10 | 'zone_suffix' => '.9.2.6.f.4.d.d.f.ip6.arpa.', // eg. reverse zone for fdd4.f629::/32 11 | 12 | 'ns_domain' => '.ns.yourdomain.', 13 | 14 | 'shema' => 'ip6.arpa.schema', 15 | 16 | 'db' => array( 17 | 'server' => "server.example.org", 18 | 'username' => "youruser", 19 | 'password' => "yourpassword", 20 | 'database' => "yourdatabase" 21 | ) 22 | 23 | ); 24 | 25 | ########################### 26 | 27 | 28 | 29 | ?> -------------------------------------------------------------------------------- /tools/dnszones-poller/ip6.arpa.schema: -------------------------------------------------------------------------------- 1 | ; 2 | $ORIGIN . 3 | $TTL 5 ; 5 seconds 4 | @ IN SOA yourns.yourdomain. hostmaster.example.org. ( 5 | ##SERIAL## ; serial 6 | 43200 ; refresh (12 hours) 7 | 900 ; retry (15 minutes) 8 | 604800 ; expire (1 week) 9 | 5 ; minimum (5 seconds) 10 | ) 11 | $TTL 3600 ; 1 hour 12 | 13 | ;NAMESERVERS 14 | ##NAMESERVERS## 15 | 16 | ;ZONES 17 | ##ZONES## 18 | -------------------------------------------------------------------------------- /tools/dnszones-poller/yourdomain.conf: -------------------------------------------------------------------------------- 1 | 'forward', 9 | 10 | 'zone_suffix' => '.yourdomain', // IF ZONE TYPE IS reverse LIVE IT EMPTY 11 | 12 | 'ns_domain' => '.ns.yourdomain.', 13 | 14 | 'shema' => 'yourdomain.schema', 15 | 16 | 'db' => array( 17 | 'server' => "server.example.org", 18 | 'username' => "youruser", 19 | 'password' => "yourpassword", 20 | 'database' => "yourdatabase" 21 | ) 22 | 23 | ); 24 | 25 | ########################### 26 | 27 | 28 | 29 | ?> -------------------------------------------------------------------------------- /tools/dnszones-poller/yourdomain.schema: -------------------------------------------------------------------------------- 1 | $ORIGIN . 2 | $TTL 5 ; 5 seconds 3 | yourdomain IN SOA yourns.yourdomain. hostmaster.example.org. ( 4 | ##SERIAL## ; serial 5 | 43200 ; refresh (12 hours) 6 | 900 ; retry (15 minutes) 7 | 604800 ; expire (1 week) 8 | 5 ; minimum (5 seconds) 9 | ) 10 | $TTL 3600 ; 1 hour 11 | 12 | ##NAMESERVERS## 13 | 14 | ##ZONES## 15 | 16 | ##NS-SUBDOMAIN## 17 | 18 | -------------------------------------------------------------------------------- /tools/gmaps/proxy.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /tools/gmaps/server.php: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /tools/update.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | updateTo(new SchemaVersion(1, 1), $updates); 23 | } catch (Exception $e){ 24 | die($e->getMessage() . "\n"); 25 | } -------------------------------------------------------------------------------- /tools/updates/all.inc.php: -------------------------------------------------------------------------------- 1 | . 18 | */ 19 | 20 | return array( 21 | include dirname(__FILE__) . "/schema-v1.1.inc.php", 22 | ); -------------------------------------------------------------------------------- /tools/whoind/debian/changelog: -------------------------------------------------------------------------------- 1 | whoind (0.9-1) unstable; urgency=low 2 | 3 | * Initial Release. 4 | 5 | -- Faidon Liambotis Mon, 12 Dec 2005 07:08:05 +0200 6 | 7 | -------------------------------------------------------------------------------- /tools/whoind/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tools/whoind/debian/control: -------------------------------------------------------------------------------- 1 | Source: whoind 2 | Section: net 3 | Priority: optional 4 | Maintainer: Faidon Liambotis 5 | Build-Depends: debhelper (>= 4.0.0), perl 6 | Standards-Version: 3.6.2.1 7 | 8 | Package: whoind 9 | Architecture: all 10 | Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libdbi-perl, libdbd-mysql-perl 11 | Description: WiND WHOIS server 12 | whoind is a simple WHOIS protocol server intended to serve data from 13 | a WiND (Wireless Nodes Database) database. 14 | . 15 | For more information, please see http://wind.cube.gr/ 16 | -------------------------------------------------------------------------------- /tools/whoind/debian/copyright: -------------------------------------------------------------------------------- 1 | This package was debianized by Faidon Liambotis on 2 | Mon, 12 Dec 2005 07:08:05 +0200. 3 | 4 | It was downloaded from http://wind.cube.gr/ 5 | 6 | Copyright Holder: WiND Contributors (see AUTHORS.txt) 7 | 8 | License: 9 | Copyright (C) 2005-2014 by 10 | This program is free software: you can redistribute it and/or modify 11 | it under the terms of the GNU Affero General Public License as 12 | published by the Free Software Foundation, either version 3 of the 13 | License, or (at your option) any later version. 14 | 15 | This program is distributed in the hope that it will be useful, 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | GNU Affero General Public License for more details. 19 | 20 | You should have received a copy of the GNU Affero General Public License 21 | along with this program. If not, see . 22 | -------------------------------------------------------------------------------- /tools/whoind/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /tools/whoind/debian/examples: -------------------------------------------------------------------------------- 1 | whoind.conf 2 | -------------------------------------------------------------------------------- /tools/whoind/debian/init: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # 3 | # whoind init.d script 4 | # Copyright (c) 2005, Faidon Liambotis 5 | # 6 | # You are allowed to use, copy, modify, distribute this file 7 | # without any restrictions whatsoever. 8 | # It is provided WITHOUT ANY WARRANTY; use it at your own risk. 9 | 10 | if [ -f /etc/default/whoind ] ; then 11 | . /etc/default/whoind 12 | fi 13 | 14 | PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin 15 | DAEMON=/usr/sbin/whoind 16 | DAEMON_OPTS="$DAEMON_OPTS --daemon --config=/etc/whoind.conf" 17 | PIDFILE=/var/run/whoind/whoind.pid 18 | NAME=whoind 19 | DESC="WiND WHOIS Server" 20 | 21 | test -x $DAEMON || exit 0 22 | 23 | set -e 24 | 25 | case "$1" in 26 | start) 27 | echo -n "Starting $DESC: " 28 | echo -n "$NAME"; 29 | if start-stop-daemon --start --quiet --exec $DAEMON --pidfile $PIDFILE \ 30 | -- $DAEMON_OPTS > /dev/null; then 31 | echo "." 32 | exit 0 # EXIT_SUCCESS 33 | else 34 | echo "...failed." 35 | exit 1 # EXIT_FAILURE 36 | fi 37 | ;; 38 | stop) 39 | echo -n "Stopping $DESC: " 40 | echo -n "$NAME" 41 | start-stop-daemon --stop --quiet --pidfile $PIDFILE || true 42 | echo "." 43 | ;; 44 | reload) 45 | echo -n "Reloading $DESC: " 46 | echo -n "$NAME"; 47 | start-stop-daemon --stop --quiet --pidfile $PIDFILE --signal 1 || true 48 | echo "." 49 | ;; 50 | restart|force-reload) 51 | $0 stop 52 | sleep 1 53 | $0 start 54 | ;; 55 | *) 56 | N=/etc/init.d/$NAME 57 | echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 58 | exit 1 59 | ;; 60 | esac 61 | 62 | exit 0 63 | -------------------------------------------------------------------------------- /tools/whoind/debian/install: -------------------------------------------------------------------------------- 1 | whoind /usr/sbin/ 2 | -------------------------------------------------------------------------------- /tools/whoind/debian/manpages: -------------------------------------------------------------------------------- 1 | whoind.8 2 | -------------------------------------------------------------------------------- /tools/whoind/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | # Sample debian/rules that uses debhelper. 4 | # This file was originally written by Joey Hess and Craig Small. 5 | # As a special exception, when this file is copied by dh-make into a 6 | # dh-make output file, you may use that output file without restriction. 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. 8 | 9 | # Uncomment this to turn on verbose mode. 10 | #export DH_VERBOSE=1 11 | 12 | configure: configure-stamp 13 | configure-stamp: 14 | dh_testdir 15 | 16 | touch configure-stamp 17 | 18 | build: build-stamp 19 | 20 | build-stamp: configure-stamp 21 | dh_testdir 22 | 23 | pod2man --section=8 --release="whoind 0.9" whoind > whoind.8 24 | 25 | touch build-stamp 26 | 27 | clean: 28 | dh_testdir 29 | dh_testroot 30 | rm -f build-stamp configure-stamp 31 | 32 | -rm -f whoind.8 33 | 34 | dh_clean 35 | 36 | install: build 37 | dh_testdir 38 | dh_testroot 39 | dh_clean -k 40 | dh_installdirs 41 | 42 | # Build architecture-independent files here. 43 | binary: build install 44 | dh_testdir 45 | dh_testroot 46 | dh_installchangelogs 47 | dh_installdocs 48 | dh_installexamples 49 | dh_install 50 | dh_installinit 51 | dh_installman 52 | dh_link 53 | dh_compress 54 | dh_fixperms 55 | dh_perl 56 | dh_installdeb 57 | dh_shlibdeps 58 | dh_gencontrol 59 | dh_md5sums 60 | dh_builddeb 61 | 62 | .PHONY: build clean binary install configure 63 | -------------------------------------------------------------------------------- /tools/whoind/whoind.conf: -------------------------------------------------------------------------------- 1 | ### WiND - Wireless Nodes Database 2 | ### whoind configuration file 3 | 4 | # Database information 5 | database.host = localhost 6 | database.user = user 7 | database.password = password 8 | database.db = wind 9 | database.charset = greek 10 | 11 | # Forward zone suffix & NS suffix 12 | zone.forward = awmn 13 | zone.ns = ns.awmn 14 | 15 | # Requests' header/footer and website (optional) 16 | #header = Athens Wireless Metropolitan Network WHOIS Server 17 | #footer = For more information visit http://wind.awmn.net/ 18 | #website = http://wind.awmn.net/?page=nodes&node=%s 19 | -------------------------------------------------------------------------------- /update.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | updateTo(new SchemaVersion(1, 1), $updates); 23 | } catch (Exception $e){ 24 | die($e->getMessage() . "\n"); 25 | } --------------------------------------------------------------------------------