removal of unneeded files, fixes of some SQLite3 bugs, added README/doc
This commit is contained in:
47
data.php
Normal file
47
data.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright 2010 Pieter Iserbyt
|
||||
|
||||
This file is part of Pamela.
|
||||
|
||||
Pamela 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Pamela is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Pamela. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
header("Content-type: application/javascript");
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Cache-Control: no-cache");
|
||||
header("Pragma: no-cache");
|
||||
|
||||
require_once("config.php");
|
||||
require_once("lib/data.php");
|
||||
|
||||
// for debug purposes, increases the numbers of data artificially
|
||||
function multiply() {
|
||||
global $data;
|
||||
$c = count($data);
|
||||
for ($j = 0; $j < $c; $j++) {
|
||||
for ($i = 0; $i <10; $i++) {
|
||||
$data[] = $data[$j].$i;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$data = data_get();
|
||||
if (count($data) > 0) {
|
||||
//multiply();
|
||||
echo('["'.implode('", "', $data).'"]');
|
||||
} else {
|
||||
echo('[]');
|
||||
}
|
||||
data_purge();
|
||||
Reference in New Issue
Block a user