svn commit: r210 - trunk/mapbender/http/javascripts/mod_log.js

vera_schulze at osgeo.org vera_schulze at osgeo.org
Tue May 9 09:34:44 EDT 2006


Author: vera_schulze
Date: 2006-05-09 13:34:43+0000
New Revision: 210

Modified:
   trunk/mapbender/http/javascripts/mod_log.js   (contents, props changed)

Log:
Code cleaning ready

Modified: trunk/mapbender/http/javascripts/mod_log.js
Url: https://mapbender.osgeo.org/source/browse/mapbender/trunk/mapbender/http/javascripts/mod_log.js?view=diff&rev=210&p1=trunk/mapbender/http/javascripts/mod_log.js&p2=trunk/mapbender/http/javascripts/mod_log.js&r1=209&r2=210
==============================================================================
--- trunk/mapbender/http/javascripts/mod_log.js	(original)
+++ trunk/mapbender/http/javascripts/mod_log.js	2006-05-09 13:34:43+0000
@@ -1,5 +1,21 @@
-//$Id: mod_log.js,v 1.3 2005/09/13 14:38:11 bjoern_heuser Exp $
-//$Header: /cvsroot/mapbender/mapbender/http/javascripts/mod_log.js,v 1.3 2005/09/13 14:38:11 bjoern_heuser Exp $
+// $Id$
+// http://www.mapbender.org/index.php/mod_log.js
+// Copyright (C) 2002 CCGIS 
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+//
+// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
 mb_registerInitFunctions("mb_log_init()");
 function mb_log_init(){
 	mb_log = "mb_log_set";
@@ -10,9 +26,9 @@
 function mb_log_set(req, time_client){
 	var my = "../php/mod_log.php" + "?<?php echo SID; ?>&req=" + escape(req);
 	my += "&time_client=" + time_client;		
-	
+
 	var newdiv = document.createElement("div");
-  	newdiv.innerHTML = "<img src='"+my+"'>";
+	newdiv.innerHTML = "<img src='"+my+"'>";
 	document.getElementById("log").appendChild(newdiv);
 	var cnt = parseInt(document.getElementById("log").childNodes.length) - 2;
 	writeTag("","logdisplay", cnt);




More information about the Mapbender_commits mailing list