Module: nagvis
Branch: master
Commit: c8558e63f96e462cbab09b1a6ce72ecd758dde54
URL:    
http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=c8558e63f96e462cbab09b1a6ce72ecd758dde54

Author: r...@op5 <[email protected]>
Date:   Mon Jul 13 13:36:39 2009 +0300

Added copyright and license header to netmap PHP sources

Signed-off-by: r...@op5 <[email protected]>

---

 share/netmap/Database.php   |   21 +++++++++++++++++++++
 share/netmap/Geocode.php    |   21 +++++++++++++++++++++
 share/netmap/Host.php       |   21 +++++++++++++++++++++
 share/netmap/Link.php       |   21 +++++++++++++++++++++
 share/netmap/Location.php   |   21 +++++++++++++++++++++
 share/netmap/Service.php    |   21 +++++++++++++++++++++
 share/netmap/Viewpoint.php  |   21 +++++++++++++++++++++
 share/netmap/amf-server.php |   21 +++++++++++++++++++++
 8 files changed, 168 insertions(+), 0 deletions(-)

diff --git a/share/netmap/Database.php b/share/netmap/Database.php
index 78ba937..cf1e9a7 100644
--- a/share/netmap/Database.php
+++ b/share/netmap/Database.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 class Database
 {
        /**
diff --git a/share/netmap/Geocode.php b/share/netmap/Geocode.php
index 83ef1b8..7e422d6 100644
--- a/share/netmap/Geocode.php
+++ b/share/netmap/Geocode.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 define('KEY', 
'ABQIAAAAbL-l0p12tju9OYnJPNXPYBT3DJAw-5FLyP9xbJAH2x0dPCeSTRSPyzBWS-uRnuZRdDF49cYyKSpsdQ');
 
 class Geocode
diff --git a/share/netmap/Host.php b/share/netmap/Host.php
index f4e5c79..5cf29b3 100644
--- a/share/netmap/Host.php
+++ b/share/netmap/Host.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 class Host
 {
        public $id;
diff --git a/share/netmap/Link.php b/share/netmap/Link.php
index b8d22b2..c2060d3 100644
--- a/share/netmap/Link.php
+++ b/share/netmap/Link.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 class Link
 {
        public $id1;
diff --git a/share/netmap/Location.php b/share/netmap/Location.php
index 2e787e2..a74d97f 100644
--- a/share/netmap/Location.php
+++ b/share/netmap/Location.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 class Location
 {
        public $id;
diff --git a/share/netmap/Service.php b/share/netmap/Service.php
index 88e4a40..5444d5c 100644
--- a/share/netmap/Service.php
+++ b/share/netmap/Service.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 class Service
 {
        public $id;
diff --git a/share/netmap/Viewpoint.php b/share/netmap/Viewpoint.php
index 181767f..3ddaa41 100644
--- a/share/netmap/Viewpoint.php
+++ b/share/netmap/Viewpoint.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 class Viewpoint
 {
        public $label;
diff --git a/share/netmap/amf-server.php b/share/netmap/amf-server.php
index ca94383..2d06566 100644
--- a/share/netmap/amf-server.php
+++ b/share/netmap/amf-server.php
@@ -1,5 +1,26 @@
 <?php
 
+/*****************************************************************************
+ *
+ * Copyright (C) 2009 NagVis Project
+ *
+ * License:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *****************************************************************************/
+
 set_include_path(get_include_path() . PATH_SEPARATOR . 
realpath(dirname(__FILE__)) . '/library/');
 
 require_once('Zend/Loader.php');


------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Nagvis-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/nagvis-checkins

Reply via email to