Merge branch 'stable'

This commit is contained in:
following
2012-08-16 21:08:32 +02:00
223 changed files with 554 additions and 1105 deletions
+6
View File
@@ -1,5 +1,11 @@
#!/usr/bin/php #!/usr/bin/php
<?php <?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
/* refresh cached files and translations /* refresh cached files and translations
* *
* stop/start apache * stop/start apache
+6
View File
@@ -1,5 +1,11 @@
#!/usr/bin/php #!/usr/bin/php
<?php <?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
/* /*
* update of static data and triggers in developer system * update of static data and triggers in developer system
* *
+8 -7
View File
@@ -1,12 +1,12 @@
Opencaching Network Implementation Version 2.0 Opencaching Network Implementation Version 3
18th July 2007 August 16, 2012
License Information License Information
Copyright (C) 2006, 2007 opencaching.de Copyright (C) 2006-2012 Opencaching Deutschland and Contributors
This program is free software; you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
@@ -29,13 +29,14 @@ You have to name and/or link opencaching.de to your customers as
original author of the used parts in your implementation. original author of the used parts in your implementation.
This license is only valid for the source code and documents stored in the This license is only valid for the source code and documents stored in the
public CVS repository. There is a separate license agreement located on public Git repository. For data transfer to and from opencaching.de, see
opencaching.de for data transfer from and to opencaching.de. the legal information at opencaching.de.
If you are using this source code to establish a geocache listing service If you are using this source code to establish a geocache listing service
or some sort of service which can be compared with it, you agree to or some sort of service which can be compared with it, you agree to
populate your geocaching data via XML the same way and under the same publish your geocaching data via XML Interface the same way and under the same
(or less restrictive) conditions as opencaching.de does. (or less restrictive) conditions as opencaching.de does; see
http://www.opencaching.de/doc/xml .
A different license may apply to third party components being used. A different license may apply to third party components being used.
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+10 -3
View File
@@ -1,4 +1,10 @@
<?php <?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
$opt['rootpath'] = '../../'; $opt['rootpath'] = '../../';
header('Content-type: text/html; charset=utf-8'); header('Content-type: text/html; charset=utf-8');
require($opt['rootpath'] . 'lib2/web.inc.php'); require($opt['rootpath'] . 'lib2/web.inc.php');
@@ -14,7 +20,7 @@
foreach ($r AS $k => $v) foreach ($r AS $k => $v)
{ {
if ($bFirstCol == false) echo ';'; if ($bFirstCol == false) echo ';';
echo str_getcsv($k); echo strGetCsv($k);
$bFirstCol = false; $bFirstCol = false;
} }
echo "\n"; echo "\n";
@@ -26,7 +32,7 @@
foreach ($r AS $k => $v) foreach ($r AS $k => $v)
{ {
if ($bFirstCol == false) echo ';'; if ($bFirstCol == false) echo ';';
echo str_getcsv($v); echo strGetCsv($v);
$bFirstCol = false; $bFirstCol = false;
} }
@@ -34,7 +40,8 @@
} }
sql_free_result($rs); sql_free_result($rs);
function str_getcsv($str) // renamed function from "str_getcsv" to avoid collision with PHP 5.3 str_getcsv()
function strGetCsv($str)
{ {
return '"' . mb_ereg_replace('"', '\"', $str) . '"'; return '"' . mb_ereg_replace('"', '\"', $str) . '"';
} }
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+5
View File
@@ -1,4 +1,9 @@
<?php <?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
require('./lib2/web.inc.php'); require('./lib2/web.inc.php');
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1
View File
@@ -0,0 +1 @@
see ../../doc for license information and other documentation
View File
+3
View File
@@ -0,0 +1,3 @@
<?php
include "xml11.htm";
?>
+106 -119
View File
@@ -1,6 +1,7 @@
<html> <html>
<head> <head>
<title>Dokumentation Opencaching XML-Interface Version 1.1</title> <title>Dokumentation Opencaching XML-Interface Version 1.1</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="vs_showGrid" content="True"> <meta name="vs_showGrid" content="True">
</head> </head>
<body> <body>
@@ -183,24 +184,18 @@
<p>Die Auswahl erfolgt zum einen durch den Paramter modifiedsince, mit dem <p>Die Auswahl erfolgt zum einen durch den Paramter modifiedsince, mit dem
inkrementelle Updates gesteuert werden, zum anderen über eine Gebietsauswahl.</p> inkrementelle Updates gesteuert werden, zum anderen über eine Gebietsauswahl.</p>
<h3>Zu übertragende Daten auswählen</h3> <h3>Zu übertragende Daten auswählen</h3>
<P>Folgende Parameter stehen zur Verfügung um die zu übertragenden Daten <p>Folgende Parameter stehen zur Verfügung um die zu übertragenden Daten
auszuwählen.</P> auszuwählen.</p>
<P>Die Werte dürfen 1 oder 0 sein, Default ist 0.<BR> <p>Die Werte dürfen 1 oder 0 sein, Default ist 0.<br />
0=Datensätze nicht übertragen<BR> 0=Datensätze nicht übertragen<br />
1=Datensätze übertragen</P> 1=Datensätze übertragen</p>
<UL> <ul>
<LI> <li>user</li>
user <li>cache</li>
<LI> <li>cachedesc</li>
cache <li>cachelog</li>
<LI> <li>picture</li>
cachedesc <li>removedobject</li></ul>
<LI>
cachelog
<LI>
picture
<LI>
removedobject</LI></UL>
<h3>modifiedsince</h3> <h3>modifiedsince</h3>
<p>Alle Datensätz übertragen, die nach diesem Datum angelegt oder modifiziert <p>Alle Datensätz übertragen, die nach diesem Datum angelegt oder modifiziert
wurden. Das Datumsformat ist yyyymmddhhnnss</p> wurden. Das Datumsformat ist yyyymmddhhnnss</p>
@@ -212,132 +207,124 @@
übertragen, die mit Caches in Zusammenhang stehen, die in diesem Land versteckt übertragen, die mit Caches in Zusammenhang stehen, die in diesem Land versteckt
wurden. User-Records werden nicht übertragen, removedobjects werden alle wurden. User-Records werden nicht übertragen, removedobjects werden alle
übetragen.</p> übetragen.</p>
<P>Für Bilder muss dabei angegeben werden, ob nur Bilder übertragen werden die <p>Für Bilder muss dabei angegeben werden, ob nur Bilder übertragen werden die
von Caches stammen oder auch von Cachelogs:<BR> von Caches stammen oder auch von Cachelogs:<br/>
Paramter: picturefromcachelog = 0/1, default 0</P> Paramter: picturefromcachelog = 0/1, default 0</p>
<h4>Nach Koordinaten</h4> <h4>Nach Koordinaten</h4>
<P>Parameter&nbsp;lat, lon, distance&nbsp;... werden diese Parameter angegeben, <p>Parameter&nbsp;lat, lon, distance&nbsp;... werden diese Parameter angegeben,
werden nur Datensätz übertragen, die mit Caches in Zusammenhang stehen, die in werden nur Datensätz übertragen, die mit Caches in Zusammenhang stehen, die in
diesem&nbsp;Gebiet versteckt wurden. User-Records werden nicht übertragen, diesem&nbsp;Gebiet versteckt wurden. User-Records werden nicht übertragen,
removedobjects werden alle übetragen.</P> removedobjects werden alle übetragen.</p>
<h4>Nach cacheid</h4> <h4>Nach cacheid</h4>
<P>Parameter&nbsp;cacheid&nbsp;... wird dieser Parameter angegeben, <p>Parameter&nbsp;cacheid&nbsp;... wird dieser Parameter angegeben,
werden nur Datensätz übertragen, die mit Cache in Zusammenhang stehen. werden nur Datensätz übertragen, die mit Cache in Zusammenhang stehen.
User-Records werden nicht übertragen, User-Records werden nicht übertragen,
removedobjects werden alle übetragen.</P> removedobjects werden alle übetragen.</p>
<P>Für Bilder muss dabei angegeben werden, ob nur Bilder übertragen werden die <p>Für Bilder muss dabei angegeben werden, ob nur Bilder übertragen werden die
von Caches stammen oder auch von Cachelogs:<BR> von Caches stammen oder auch von Cachelogs:<br/>
Paramter: picturefromcachelog = 0/1, default 0</P> Paramter: picturefromcachelog = 0/1, default 0</p>
<h4>Nach Wegpunkt</h4> <h4>Nach Wegpunkt</h4>
<p>Paramter wp ... wie cacheid, ausser dass statt der cacheid der Opencaching Wegpunkt verwendet wird.</p> <p>Paramter wp ... wie cacheid, ausser dass statt der cacheid der Opencaching Wegpunkt verwendet wird.</p>
<h4>Nach uuid</h4> <h4>Nach uuid</h4>
<p>Paramter uuid ... wie cacheid, ausser dass statt der cacheid die UUID des Caches verwendet wird.</p> <p>Paramter uuid ... wie cacheid, ausser dass statt der cacheid die UUID des Caches verwendet wird.</p>
<h3>Beispiele</h3> <h3>Beispiele</h3>
<p>1. Alle Daten inkrementell abrufen<BR> <p>1. Alle Daten inkrementell abrufen<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;user=1&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1</A></p> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;user=1&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1</a></p>
<P>2. Alle Daten von Deutschland inkrementell abrufen<BR> <p>2. Alle Daten von Deutschland inkrementell abrufen<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;country=DE&amp;picturefromcachelog=1</A></P> <A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;country=DE&amp;picturefromcachelog=1</a></p>
<P>3. Alle Caches ohne Logs von Deutschland inkrementell abrufen<BR> <p>3. Alle Caches ohne Logs von Deutschland inkrementell abrufen<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;cache=1&amp;cachedesc=1&amp;picture=1&amp;removedobject=1&amp;country=DE</A></P> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;cache=1&amp;cachedesc=1&amp;picture=1&amp;removedobject=1&amp;country=DE</a></p>
<P>4. Alle Daten im Umkreis von 100 km abrufen<BR> <p>4. Alle Daten im Umkreis von 100 km abrufen<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;lat=48&amp;lon=9&amp;distance=100&amp;picturefromcachelog=1</A></P> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;lat=48&amp;lon=9&amp;distance=100&amp;picturefromcachelog=1</a></p>
<P>5. Alle Bilder abrufen<BR> <p>5. Alle Bilder abrufen<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;picture=1</A></P> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;picture=1</a></p>
<P>6. Alle Bilder von Caches abrufen die in Deutschland versteckt sind<BR> <p>6. Alle Bilder von Caches abrufen die in Deutschland versteckt sind<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;picture=1&amp;country=DE</A></P> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;picture=1&amp;country=DE</a></p>
<P>7. Alle Bilder von Caches und deren Logs abrufen die in Deutschland versteckt <p>7. Alle Bilder von Caches und deren Logs abrufen die in Deutschland versteckt
sind<BR> sind<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;picture=1&amp;country=DE</A>&amp;picturefromcachelog=1</P> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;picture=1&amp;country=DE</a>&amp;picturefromcachelog=1</p>
<P>Diese Anfragen werden mit einem kurzen XML-Stream beantwortet, der die <p>Diese Anfragen werden mit einem kurzen XML-Stream beantwortet, der die
XML-Session-Id zurückgibt. Mit dieser Id können dann die Daten abgerufen XML-Session-Id zurückgibt. Mit dieser Id können dann die Daten abgerufen
werden.</P> werden.</p>
<P>&lt;?xml version="1.0"?&gt;<BR> <p>&lt;?xml version="1.0"?&gt;<br/>
&lt;ocxmlsession&gt;<BR> &lt;ocxmlsession&gt;<br/>
&nbsp; &lt;sessionid&gt;12345&lt;/sessionid&gt;<BR> &nbsp; &lt;sessionid&gt;12345&lt;/sessionid&gt;<br/>
&nbsp; &lt;records user="193" cache="211" cachedesc="235" cachelog="439" &nbsp; &lt;records user="193" cache="211" cachedesc="235" cachelog="439"
picture="108" removeobject="19" /&gt;<BR> picture="108" removeobject="19" /&gt;<br/>
&lt;/ocxmlsession&gt;</P> &lt;/ocxmlsession&gt;</p>
<P>Die Sessionid ist 24h gültig, danach muss eine neue sessionid angefordert <p>Die Sessionid ist 24h gültig, danach muss eine neue sessionid angefordert
werden. Die Anzahl der Datensätz muss nicht exakt mit den übertragenen werden. Die Anzahl der Datensätz muss nicht exakt mit den übertragenen
übereinstimmen - mehr Datensätze werden jedoch auf keinen Fall übertragen. Die übereinstimmen - mehr Datensätze werden jedoch auf keinen Fall übertragen. Die
Summe der Datensätze ist in diesem Beispiel 1205 - es werden also 3 Aufrufe Summe der Datensätze ist in diesem Beispiel 1205 - es werden also 3 Aufrufe
benötigt (500, 500, 205 Datensätze).</P> benötigt (500, 500, 205 Datensätze).</p>
<P>Die Daten können dann mit folgender Anfrage abgerufen werden:<BR> <p>Die Daten können dann mit folgender Anfrage abgerufen werden:<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=1</A><BR> <a>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=1</a><br/>
<A>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=2</A><BR> <a>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=2</a><br/>
<A>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=3</A></P> <a>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=3</a></p>
<H3>Alle Ergebnisse mit einem Aufruf abfragen</H3> <h3>Alle Ergebnisse mit einem Aufruf abfragen</h3>
<P>Um alle Ergebnisse in einer Datei abzurufen muss bei dem Aufruf der Paramter <p>Um alle Ergebnisse in einer Datei abzurufen muss bei dem Aufruf der Paramter
session auf 0 gesetzt werden.</P> session auf 0 gesetzt werden.</p>
<P>Beispeil:<BR> <p>Beispeil:<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;user=1&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;session=0</A></P> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;user=1&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;session=0</a></p>
<H3>Dateikomprimierung einstellen</H3> <h3>Dateikomprimierung einstellen</h3>
<P>Dei Dateikomprimierung kann mit dem Paramter zip eingestellt weren. Mögliche <p>Dei Dateikomprimierung kann mit dem Paramter zip eingestellt weren. Mögliche
Werte sind 0, zip, bzip2, gzip. Null bedeutet hier keine Kompression. Wird Werte sind 0, zip, bzip2, gzip. Null bedeutet hier keine Kompression. Wird
keine Kompression angegeben, wird zip verwendet.</P> keine Kompression angegeben, wird zip verwendet.</p>
<P>Beispeil:<BR> <p>Beispeil:<br/>
<A>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;user=1&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;session=0&amp;zip=bzip2</A><BR> <a>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=&lt;date&gt;&amp;user=1&amp;cache=1&amp;cachedesc=1&amp;cachelog=1&amp;picture=1&amp;removedobject=1&amp;session=0&amp;zip=bzip2</a><br/>
<A>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=1&amp;zip=gzip</A></P> <a>http://www.opencaching.de/xml/ocxml11.php?sessionid=12345&amp;file=1&amp;zip=gzip</a></p>
<H3>XML-Optionen</H3> <h3>XML-Optionen</h3>
<P>Die folgenden XML-Optionen müssen bei jedem Aufruf übergeben <p>Die folgenden XML-Optionen müssen bei jedem Aufruf übergeben
werden.</P> werden.</p>
<P>xmldecl ... 0 = keine Xml-Deklaration / (Default) 1=Xml-Deklaration<br> <p>xmldecl ... 0 = keine Xml-Deklaration / (Default) 1=Xml-Deklaration<br>
doctype ... 0 = keine Xml-Document-Type-Definition / doctype ... 0 = keine Xml-Document-Type-Definition /
(Default) 1=Xml-Document-Type-Definition<br> (Default) 1=Xml-Document-Type-Definition<br/>
ocxmltag ... 0 = kein oc11xml-Tag zu Beginn / (Default) 1=oc11xml-Tag ocxmltag ... 0 = kein oc11xml-Tag zu Beginn / (Default) 1=oc11xml-Tag
zu Beginn<br> zu Beginn<br/>
cdata ... 0=XML-Steuerzeichen in Texten maskieren (z.B. &amp; =&gt; cdata ... 0=XML-Steuerzeichen in Texten maskieren (z.B. &amp; =&gt;
&amp;amp;) / (Default) 1=Texte in CDATA-Abschnitte einfassen<br> &amp;amp;) / (Default) 1=Texte in CDATA-Abschnitte einfassen<br/>
charset ... (Default) iso-8859-1 / utf-8<br /> charset ... (Default) iso-8859-1 / utf-8<br />
attrlist ... (Default) 0 = keine Attributliste &uuml;bertragen / 1 = Attributliste &uuml;bertragen</P> attrlist ... (Default) 0 = keine Attributliste &uuml;bertragen / 1 = Attributliste &uuml;bertragen</p>
<h4><a>Beispiele</a></h4> <h4><a>Beispiele</a></h4>
<P>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=20060320000000&amp;user=1&amp;cache=1&amp;cachelog=1&amp;cachedesc=1&amp;picture=1&amp;removedobject=1&amp;session=1&amp;charset=utf-8&amp;cdata=1&amp;xmldecl=0&amp;ocxmltag=0&amp;doctype=0<br> <p>http://www.opencaching.de/xml/ocxml11.php?modifiedsince=20060320000000&amp;user=1&amp;cache=1&amp;cachelog=1&amp;cachedesc=1&amp;picture=1&amp;removedobject=1&amp;session=1&amp;charset=utf-8&amp;cdata=1&amp;xmldecl=0&amp;ocxmltag=0&amp;doctype=0<br/>
http://www.opencaching.de/xml/ocxml11.php?sessionid=4711&amp;file=1&amp;charset=utf-8&amp;cdata=1&amp;xmldecl=0&amp;ocxmltag=0&amp;doctype=0</P> http://www.opencaching.de/xml/ocxml11.php?sessionid=4711&amp;file=1&amp;charset=utf-8&amp;cdata=1&amp;xmldecl=0&amp;ocxmltag=0&amp;doctype=0</p>
<H3>Sonstige Bemerkungen</H3> <h3>Sonstige Bemerkungen</h3>
<UL> <ul>
<LI> <li>
Für den ersten Aufruf des Interface muss als modifiedsince das Datum 1.8.2005 Für den ersten Aufruf des Interface muss als modifiedsince das Datum 1.8.2005
um 00:00:00 Uhr angegeben werden. Es gibt keine Datensätze die vor diesem Datum um 00:00:00 Uhr angegeben werden. Es gibt keine Datensätze die vor diesem Datum
angelegt wurden. angelegt wurden.</li>
<LI> <li>
Um Probleme wegen Differenzen der Uhrzeit zwischen Client und Server zu Um Probleme wegen Differenzen der Uhrzeit zwischen Client und Server zu
umgehen, muss für den nächsten Inkrementellen Abruf der Daten das Datum um Kopf umgehen, muss für den nächsten Inkrementellen Abruf der Daten das Datum um Kopf
der XML-Datei minus 1 Sekunde angeben werden:<BR> der XML-Datei minus 1 Sekunde angeben werden:<br/>
<SPAN class="m"><BR>&lt;?</SPAN><SPAN class="pi">xml version="1.0" encoding="iso-8859-1" <span class="m"><br/>&lt;?</span><span class="pi">xml version="1.0" encoding="iso-8859-1"
standalone="no" </SPAN><SPAN class="m">?&gt;</SPAN> standalone="no" </span><span class="m">?&gt;</span>
<BR> <br/>
<SPAN><SPAN class="d">&lt;!DOCTYPE oc11xml<I>...</I>&gt;</SPAN>&nbsp;<BR></SPAN>&nbsp; <span><span class="d">&lt;!DOCTYPE oc11xml<I>...</I>&gt;</span>&nbsp;<br/></span>&nbsp;
<SPAN class="m">&lt;</SPAN><SPAN class="t">oc11xml</SPAN><SPAN class="t"> <span class="m">&lt;</span><span class="t">oc11xml</span><span class="t">
version</SPAN><SPAN class="m">="</SPAN>1.1<SPAN class="m">"</SPAN><SPAN class="t"> version</span><span class="m">="</span>1.1<span class="m">"</span><span class="t">
date</SPAN><SPAN class="m">="</SPAN><STRONG>2006-03-10 18:37:34</STRONG><SPAN class="m">"</SPAN><SPAN class="t"> since</SPAN><SPAN class="m">="</SPAN>2006-03-08 date</span><span class="m">="</span><strong>2006-03-10 18:37:34</strong><span class="m">"</span><span class="t"> since</span><span class="m">="</span>2006-03-08
22:02:42<SPAN class="m">"</SPAN><SPAN class="m">&gt;</SPAN> 22:02:42<span class="m">"</span><span class="m">&gt;</span><br /><br />
<LI> </li>
Zeitverschiebungen / unterschiedliche Zeitzonen zwischen Client und Server <li>Zeitverschiebungen / unterschiedliche Zeitzonen zwischen Client und Server
werden nicht unterstützt. werden nicht unterstützt.</li>
<LI> <li>Das XML-Dokument enthält folgende DTD (Document Type Definition):
Das XML-Dokument enthält folgende DTD (Document Type Definition): http://www.opencaching.de/xml/ocxml11.dtd</li>
http://www.opencaching.de/xml/ocxml11.dtd <li>Der Quellcode ist hier erhältlich: <a href="https://github.com/OpencachingDeutschland/oc-server3/tree/master/htdocs/xml">
<LI> https://github.com/OpencachingDeutschland/oc-server3/tree/master/htdocs/xml</a></li>
Änderungen werden des XML-Interface werden im Entwicklerforum bekanntgegeben: <li>Eine Referenzimplementierung kann hier downgeloadet werden: <s>
http://develforum.opencaching.de/viewforum.php?f=2 http://devel.opencaching.de/viewcvs/viewcvs.cgi/html/util/ocxml11client/</s> (neue Adresse folgt ...)</li>
<LI> <li>Fragen zum Interface können im Opencaching-Forum gestellt werden: <a href="http://forum.opencaching-network.org/">http://forum.opencaching-network.org/</a></a></li>
Fragen zum Interface können ebenfalls im Entwicklerforum&nbsp;gestellt werden: <A href="http://develforum.opencaching.de/viewforum.php?f=2"> </ul>
http://develforum.opencaching.de/viewforum.php?f=2</A> <p>Lizenz:</p>
<LI> <ul>
Der Quellcode des Interface kann hier downgeloadet werden: <A href="http://devel.opencaching.de/viewcvs/viewcvs.cgi/html/xml/ocxml11.php?rev=1.2&amp;content-type=text/vnd.viewcvs-markup"> <li>Der Quellcode steht unter der GNU Gerneral Public License Version 2 und später.</li>
http://devel.opencaching.de/viewcvs/viewcvs.cgi/html/xml/ocxml11.php?rev=1.2&amp;content-type=text/vnd.viewcvs-markup</A> <li>
<LI> Für Daten die über das XML-Interface abgerufen werden, gelten die
Eine Referenzimplementierung kann hier downgeloadet werden: <A href="http://devel.opencaching.de/viewcvs/viewcvs.cgi/html/util/ocxml11client/"> Nutzungsbedingungen von Opencaching.de: <a href="http://www.opencaching.de/articles.php?page=impressum#tos">
http://devel.opencaching.de/viewcvs/viewcvs.cgi/html/util/ocxml11client/</A></LI></UL> http://www.opencaching.de/articles.php?page=impressum#tos</a></li></ul>
<P>Lizenz:</P> <p>&nbsp;</p>
<UL> </span>
<LI>
der Quellcode steht unter der GNU Gerneral Public Licenses
<LI>
für Daten die über das XML-Interface downgeloadet werden, gelten die
Nutzungsbedingungen von Opencaching.de <A href="http://www.opencaching.de/articles.php?page=impressum#tos">
http://www.opencaching.de/articles.php?page=impressum#tos</A></LI></UL>
<P>&nbsp;</P>
</SPAN>
</body> </body>
</html> </html>
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./editcache.php ./editcache.php
------------------- -------------------
begin : July 5 2004 begin : July 5 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
*****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./editdesc.php ./editdesc.php
------------------- -------------------
begin : July 7 2004 begin : July 7 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
*****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./editlog.php ./editlog.php
------------------- -------------------
begin : July 5 2004 begin : July 5 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
*****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+2 -1
View File
@@ -1,7 +1,8 @@
<?php <?php
/**************************************************************************** /****************************************************************************
Unicode Reminder メモ For license information see doc/license.txt
Unicode Reminder メモ
****************************************************************************/ ****************************************************************************/
require('./lib2/web.inc.php'); require('./lib2/web.inc.php');
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/<speach>/expressions.inc.php ./lang/<speach>/expressions.inc.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/editcache.inc.php ./lang/de/ocstyle/editcache.inc.php
------------------- -------------------
begin : Mon July 6 2004 begin : Mon July 6 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/editcache.tpl.php ./lang/de/ocstyle/editcache.tpl.php
------------------- -------------------
begin : Mon July 6 2004 begin : Mon July 6 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/editdesc.inc.php ./lang/de/ocstyle/editdesc.inc.php
------------------- -------------------
begin : July 7 2004 begin : July 7 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/editdesc.tpl.php ./lang/de/ocstyle/editdesc.tpl.php
------------------- -------------------
begin : July 7 2004 begin : July 7 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/editlog.inc.php ./lang/de/ocstyle/editlog.inc.php
------------------- -------------------
begin : Mon July 5 2004 begin : Mon July 5 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -12
View File
@@ -1,21 +1,12 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/editlog.tpl.php ./lang/de/ocstyle/editlog.tpl.php
------------------- -------------------
begin : Mon July 5 2004 begin : Mon July 5 2004
copyright : (C) 2004 The OpenCaching Group copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/error.tpl.php ./lang/de/ocstyle/error.tpl.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -17
View File
@@ -1,23 +1,9 @@
<?php <?php
/*************************************************************************** /****************************************************************************
$Id: icons.inc.php,v 1.12 2007/10/30 20:23:10 oliver Exp $
$Date: 2007/10/30 20:23:10 $
$Revision: 1.12 $
begin : Fr Sept 9 2005 begin : Fr Sept 9 2005
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/lib/menu.php ./lang/de/ocstyle/lib/menu.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
* *
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/log_cache.inc.php ./lang/de/ocstyle/log_cache.inc.php
------------------- -------------------
begin : July 4 2004 begin : July 4 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/log_cache.tpl.php ./lang/de/ocstyle/log_cache.tpl.php
------------------- -------------------
begin : July 4 2004 begin : July 4 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/newpw.inc.php ./lang/de/ocstyle/newpw.inc.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/login.tpl.php ./lang/de/ocstyle/login.tpl.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/main.tpl.php ./lang/de/ocstyle/main.tpl.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/newcache.inc.php ./lang/de/ocstyle/newcache.inc.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/newcache.tpl.php ./lang/de/ocstyle/newcache.tpl.php
------------------- -------------------
begin : June 24 2004 begin : June 24 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/newdesc.inc.php ./lang/de/ocstyle/newdesc.inc.php
------------------- -------------------
begin : July 7 2004 begin : July 7 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/newdesc.tpl.php ./lang/de/ocstyle/newdesc.tpl.php
------------------- -------------------
begin : July 7 2004 begin : July 7 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/rating.inc.php ./lang/de/ocstyle/rating.inc.php
------------------- -------------------
begin : July 4 2004 begin : July 4 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+5 -1
View File
@@ -1,6 +1,10 @@
<?php <?php
/****************************************************************************
For license information see doc/license.txt
Unicode Reminder メモ
****************************************************************************/
// Unicode Reminder メモ
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/removedesc.inc.php ./lang/de/ocstyle/removedesc.inc.php
------------------- -------------------
begin : July 7 2004 begin : July 7 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/removedesc.tpl.php ./lang/de/ocstyle/removedesc.tpl.php
------------------- -------------------
begin : July 7 2004 begin : July 7 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/removelogs.inc.php ./lang/de/ocstyle/removelogs.inc.php
------------------- -------------------
begin : July 9 2004 begin : July 9 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/removelogs.tpl.php ./lang/de/ocstyle/removelogs.tpl.php
------------------- -------------------
begin : July 9 2004 begin : July 9 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/removelogs.tpl.php ./lang/de/ocstyle/removelogs.tpl.php
------------------- -------------------
begin : July 9 2004 begin : July 9 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/search.inc.php ./lang/de/ocstyle/search.inc.php
------------------- -------------------
begin : July 25 2004 begin : July 25 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lang/de/ocstyle/search.simple.tpl.php ./lang/de/ocstyle/search.simple.tpl.php
------------------- -------------------
begin : July 25 2004 begin : July 25 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lang/de/ocstyle/selectlocid.inc.php ./lang/de/ocstyle/selectlocid.inc.php
------------------- -------------------
begin : October 29 2005 begin : October 29 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+5 -1
View File
@@ -1,5 +1,9 @@
<?php <?php
// Unicode Reminder メモ /****************************************************************************
For license information see doc/license.txt
Unicode Reminder メモ
****************************************************************************/
?> ?>
<div class="content2-pagetitle"><img src="resource2/ocstyle/images/cacheicon/traditional.gif" style="align: left; margin-right: 10px;" width="32" height="32" alt="{t}Search result{/t}" />{t}Selection of city{/t} - {t}Total of {resultscount} cities matched{/t}</div> <div class="content2-pagetitle"><img src="resource2/ocstyle/images/cacheicon/traditional.gif" style="align: left; margin-right: 10px;" width="32" height="32" alt="{t}Search result{/t}" />{t}Selection of city{/t} - {t}Total of {resultscount} cities matched{/t}</div>
+4 -14
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/smilies.inc.php ./lang/de/ocstyle/smilies.inc.php
------------------- -------------------
begin : December 1^2 2005 begin : December 12 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lang/de/ocstyle/varset.inc.php ./lang/de/ocstyle/varset.inc.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/auth.inc.php ./lib/auth.inc.php
-------------------- --------------------
begin : Fri September 16 2005 begin : Fri September 16 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
***************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+7 -1
View File
@@ -1,4 +1,10 @@
<?php <?php
/****************************************************************************
For license information see doc/license.txt
Unicode Reminder メモ
****************************************************************************/
// //
// bench.inc.php // bench.inc.php
// //
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/cache_icon.inc.php ./lib/cache_icon.inc.php
-------------------- --------------------
begin : Sun october 9 2005 begin : Sun october 9 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -12
View File
@@ -1,21 +1,12 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/caches.inc.php ./lib/caches.inc.php
-------------------- --------------------
begin : June 24 2004 begin : June 24 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/calculation.inc.php ./lib/calculation.inc.php
-------------------- --------------------
begin : Wed October 11 2006 begin : Wed October 11 2006
copyright : (C) 2006 The OpenCaching Group
forum contact at : http://develforum.opencaching.de
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -12
View File
@@ -1,21 +1,12 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/captcha.inc.php ./lib/captcha.inc.php
-------------------- --------------------
begin : April 30 2007 begin : April 30 2007
copyright : (C) 2007 The OpenCaching Group
forum contact at : http://develforum.opencaching.de
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+4 -1
View File
@@ -1,6 +1,9 @@
<?php <?php
/****************************************************************************
For license information see doc/license.txt
// Unicode Reminder メモ Unicode Reminder メモ
****************************************************************************/
$allowedtags = mb_split(',', 'a,b,i,p,q,s,u,br,dd,dl,dt,em,h1,h2,h3,h4,h5,h6,hr,li,td,th,tr,tt,ol,ul,big,bdo,col,dfn,del,dir,div,ins,img,kbd,map,pre,sub,sup,var,abbr,area,cite,code,font,menu,samp,span,small,thead,tfoot,tbody,table,strong,center,strike,acronym,address,caption,isindex,colgroup,fieldset'); $allowedtags = mb_split(',', 'a,b,i,p,q,s,u,br,dd,dl,dt,em,h1,h2,h3,h4,h5,h6,hr,li,td,th,tr,tt,ol,ul,big,bdo,col,dfn,del,dir,div,ins,img,kbd,map,pre,sub,sup,var,abbr,area,cite,code,font,menu,samp,span,small,thead,tfoot,tbody,table,strong,center,strike,acronym,address,caption,isindex,colgroup,fieldset');
$allowedattr = mb_split(',', 'id,src,alt,dir,rel,rev,abbr,axis,char,cite,face,href,lang,name,size,span,type,align,class,clear,color,frame,ismap,rules,scope,shape,start,style,title,value,width,border,coords,height,hspace,nowrap,nohref,target,usemap,vspace,valign,bgcolor,charoff,charset,colspan,compact,headers,noshade,rowspan,summary,longdesc,hreflang,datetime,tabindex,accesskey,background,cellspacing,cellpadding'); $allowedattr = mb_split(',', 'id,src,alt,dir,rel,rev,abbr,axis,char,cite,face,href,lang,name,size,span,type,align,class,clear,color,frame,ismap,rules,scope,shape,start,style,title,value,width,border,coords,height,hspace,nowrap,nohref,target,usemap,vspace,valign,bgcolor,charoff,charset,colspan,compact,headers,noshade,rowspan,summary,longdesc,hreflang,datetime,tabindex,accesskey,background,cellspacing,cellpadding');
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/clicompatbase.inc.php ./lib/clicompatbase.inc.php
-------------------- --------------------
begin : Fri September 16 2005 begin : Fri September 16 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/common.inc.php ./lib/common.inc.php
-------------------- --------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/consts.inc.php ./lib/consts.inc.php
------------------- -------------------
begin : Thu December 29 2005 begin : Thu December 29 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+4 -1
View File
@@ -1,6 +1,9 @@
<?php <?php
/****************************************************************************
For license information see doc/license.txt
// Unicode Reminder メモ Unicode Reminder メモ
****************************************************************************/
define("CS2CS", "cs2cs"); define("CS2CS", "cs2cs");
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/eventhandler.inc.php ./lib/eventhandler.inc.php
------------------- -------------------
begin : Mon June 28 2004 begin : Mon June 28 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/ftsearch.inc.php ./lib/ftsearch.inc.php
-------------------- --------------------
begin : January 10 2007 begin : January 10 2007
copyright : (C) 2007 The OpenCaching Group
forum contact at : http://develforum.opencaching.de
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/search.gpx.inc.php ./lib/search.gpx.inc.php
------------------- -------------------
begin : November 1 2005 begin : November 1 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+1
View File
@@ -1,5 +1,6 @@
<?php <?php
/**************************************************************************** /****************************************************************************
For license information see doc/license.txt
Unicode Reminder メモ Unicode Reminder メモ
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.gpx.inc.php ./lib/search.gpx.inc.php
------------------- -------------------
begin : November 1 2005 begin : November 1 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.gpx.inc.php ./lib/search.gpx.inc.php
------------------- -------------------
begin : November 1 2005 begin : November 1 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.html.inc.php ./lib/search.html.inc.php
------------------- -------------------
begin : July 25 2004 begin : July 25 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/search.inc.php ./lib/search.inc.php
-------------------- --------------------
begin : Sun September 25 2005 begin : Sun September 25 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.kml.inc.php ./lib/search.kml.inc.php
------------------- -------------------
begin : November 1 2005 begin : November 1 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.loc.inc.php ./lib/search.loc.inc.php
------------------- -------------------
begin : November 1 2005 begin : November 1 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.ovl.inc.php ./lib/search.ovl.inc.php
------------------- -------------------
begin : November 5 2005 begin : November 5 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.ov2.inc.php ./lib/search.ov2.inc.php
------------------- -------------------
begin : November 2 2005 begin : November 2 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.ovl.inc.php ./lib/search.ovl.inc.php
------------------- -------------------
begin : November 5 2005 begin : November 5 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+2 -12
View File
@@ -3,19 +3,9 @@
./lib/search.gpx.inc.php ./lib/search.gpx.inc.php
------------------- -------------------
begin : November 1 2005 begin : November 1 2005
copyright : (C) 2005 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+1
View File
@@ -1,6 +1,7 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* For license information see doc/license.txt
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/settings.inc.php ./lib/settings.inc.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
* *
+3 -13
View File
@@ -1,21 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/settings.inc.php ./lib/settings.inc.php
------------------- -------------------
begin : Mon June 14 2004 begin : Mon June 14 2004
copyright : (C) 2004 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
***************************************************************************/ For license information see doc/license.txt
****************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/**************************************************************************** /****************************************************************************
+3 -15
View File
@@ -1,23 +1,11 @@
<?php <?php
/*************************************************************************** /****************************************************************************
./lib/sqldebugger.inc.php ./lib/sqldebugger.inc.php
-------------------- --------------------
begin : Mon June 27 2006 begin : Mon June 27 2006
copyright : (C) 2006 The OpenCaching Group
forum contact at : http://www.opencaching.com/phpBB2
Unicode Reminder メモ For license information see doc/license.txt
****************************************************************************/
***************************************************************************/
/***************************************************************************
*
* 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 of the License, or
* (at your option) any later version.
*
***************************************************************************/
require_once($opt['rootpath'] . 'lib/bench.inc.php'); require_once($opt['rootpath'] . 'lib/bench.inc.php');
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
***************************************************************************/ ***************************************************************************/
+1 -1
View File
@@ -1,6 +1,6 @@
<?php <?php
/*************************************************************************** /***************************************************************************
* You can find the license in the docs directory * For license information see doc/license.txt
* *
* Unicode Reminder メモ * Unicode Reminder メモ
* *

Some files were not shown because too many files have changed in this diff Show More