aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio <silvio@devlet.com.br>2010-02-22 16:59:56 -0300
committerSilvio <silvio@devlet.com.br>2010-02-22 16:59:56 -0300
commit41da9b143b6e8b65b68c95415cfe302ad0a1ea9d (patch)
tree154402b74be1f5d695f922c7a74366ac59a60587
parent4f43208d1df69832a85d9bd79b7536007e08e07e (diff)
downloadcinisis-41da9b143b6e8b65b68c95415cfe302ad0a1ea9d.tar.gz
cinisis-41da9b143b6e8b65b68c95415cfe302ad0a1ea9d.tar.bz2
Coding style
-rw-r--r--query.php128
1 files changed, 66 insertions, 62 deletions
diff --git a/query.php b/query.php
index 4ac3b25..99e3895 100644
--- a/query.php
+++ b/query.php
@@ -1,84 +1,88 @@
-<?php // vim:syntax=php
-/*
- The Malete project - the Z39.2/Z39.50 database framework of OpenIsis.
- Version 0.9.x (patchlevel see file Version)
- Copyright (C) 2001-2004 by Erik Grziwotz, erik@openisis.org
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library 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
- Lesser General Public License for more details.
+<?php
+/**
+ * Query script.
+ */
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Import Malete Library
+require 'malete/php/Isis.php';
- see README for more information
-EOH */
+?>
-// $Id: demo.php,v 1.3 2004/11/02 13:44:42 kripke Exp $
-// demo for the Isis package
+<html><head><title>Query</title></head><body>
-require 'malete/php/Isis.php'; // use require 'Isis/Rec.php' if you need only this
-?><html><head>
- <title>Demo for package Isis</title>
-</head><body>
<?php
- // get request parameters a and b
- // (as well as any plain numeric and v%d style
- $param = Isis_Http::fromReq( array(
- 'a' => 22, 'b' => 42
- ) );
+ // Get request parameters a and b
+ // (as well as any plain numeric and v%d style
+ $param = Isis_Http::fromReq(array(
+ 'a' => 22,
+ 'b' => 42,
+ ));
- // create a db with field list ("fdt")
- $fdt = array(
- 'periodico' => 1,
- 'data' => 2,
- 'titulo' => 3,
- );
+ // Create a db with field list ("fdt")
+ $fdt = array(
+ 'Periodico' => 1,
+ 'Data' => 2,
+ 'Titulo' => 3,
+ 'Autor' => 4,
+ 'Assuntos primarios' => 5,
+ 'Assuntos secundarios' => 6,
+ 'Ilustrado' => 7,
+ 'Caderno' => 8,
+ 'Pagina' => 9,
+ 'Arquivo digital' => 10,
+ 'Forma documento' => 11,
+ 'Local de publicacao' => 12,
+ 'Observacoes' => 13,
+ 'Descritores imagem' => 14,
+ 'Termo geografico' => 16,
+ 'Coluna' => 17,
+ 'Recorte' => 19,
+ 'Alimentador' => 20,
+ 'Tema Anuario' => 21,
+ );
?>
<h2>server</h2>
-<?php
- $db = new Isis_Db($fdt, 'anu10', new Isis_Server());
- if ( !$db->srv->sock )
- echo "could not contact server\n";
- else {
-?>
- <h3>terms beginning with...</h3>
<?php
- $query = 'a';
- $terms = $db->terms($query);
- echo "got ",count($terms), " terms for '$query'</br>\n";
- foreach ($terms as $t) {
- list($cnt, $term) = explode("\t", $t);
- echo "'$term'($cnt) ";
- }
- echo "</br>\n";
+ $db = new Isis_Db($fdt, 'anu10', new Isis_Server());
+ if (!$db->srv->sock) {
+ echo "could not contact server\n";
+ }
+ else {
?>
- <h3>query reading records</h3>
+<h3>terms beginning with...</h3>
+
<?php
- $query = 'Corumbiara';
- $recs = $db->query($query);
- echo "got ",count($recs), " records for '$query'</br>\n";
- foreach ($recs as $r)
- echo "<pre>---\n", $r->toString(), "---\n</pre>\n";
+ $query = 'a';
+ $terms = $db->terms($query);
+ echo "got ",count($terms), " terms for '$query'</br>\n";
+ foreach ($terms as $t) {
+ list($cnt, $term) = explode("\t", $t);
+ echo "'$term'($cnt) ";
+ }
+ echo "</br>\n";
?>
- <h3>query reading 1</h3>
+<h3>query reading records</h3>
+
<?php
- $r = $db->read(1);
- echo "<pre>---\n", $r->toString(), "---\n</pre>\n";
+ $query = 'Corumbiara';
+ $recs = $db->query($query);
+ echo "got ",count($recs), " records for '$query'</br>\n";
+ foreach ($recs as $r) {
+ echo "<pre>---\n", $r->toString(), "---\n</pre>\n";
+ }
?>
+
+<h3>query reading 1</h3>
+
<?php
- } // end else could contact server
+ $r = $db->read(1);
+ echo "<pre>---\n", $r->toString(), "---\n</pre>\n";
+ } // end else could contact server
?>
+
</body></html>