Exemplo n.º 1
0
**  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.
**
** This program is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU General Public License for more details.
**
**  You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

**
** O3S
** quadrant.php: QSOS Quadrant generation
**
*/
session_start();
//Weightings are stored in session
$weights = $_SESSION;
//QSOS evaluations to display
$ids = $_REQUEST['id'];
//Criterion to detail
$name = $_REQUEST['c'];
include '../formats/libs/QSOSComparison.php';
$myComp = new QSOSComparison($ids, $name);
$myComp->showQuadrant();
?>
 
Exemplo n.º 2
0
**  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.
**
** This program is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU General Public License for more details.
**
**  You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
**
** O3S
** exportODS.php: ODS generation
**
*/
session_start();
//Weightings are stored in session
$weights = $_SESSION;
//QSOS evaluations to display
$ids = $_REQUEST['id'];
//Criterion to detail
$name = $_REQUEST['c'];
include "../formats/libs/QSOSComparison.php";
$myComp = new QSOSComparison($ids, $name);
$myComp->ODS();
?>
 
Exemplo n.º 3
0
Arquivo: radar.php Projeto: Nyco/QSOS
**  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.
**
** This program is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU General Public License for more details.
**
**  You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
**
** O3S
** radar.php: dynamic SVG graph generation
**
*/
session_start();
//Weightings are stored in session
$weights = $_SESSION;
//QSOS evaluations to display
$ids = $_REQUEST['id'];
//Criterion to detail
$name = $_REQUEST['c'];
include '../formats/libs/QSOSComparison.php';
$myComp = new QSOSComparison($ids, $name);
$myComp->showRadar();
?>
 
Exemplo n.º 4
0
**  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.
**
** This program is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU General Public License for more details.
**
**  You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
**
** O3S
** exportODP.php: ODP generation
**
*/
session_start();
//Weightings are stored in session
$weights = $_SESSION;
//QSOS evaluations to display
$ids = $_REQUEST['id'];
//Criterion to detail
$name = $_REQUEST['c'];
include "../formats/libs/QSOSComparison.php";
$myComp = new QSOSComparison($ids, $name);
$myComp->ODP();
?>
 
Exemplo n.º 5
0
Arquivo: mm.php Projeto: Nyco/QSOS
**
** O3S
** mm.php: MindMap export of en evaluation (Freemind .mm format)
**
*/
session_start();
//Weightings are stored in session
$weights = $_SESSION;
//QSOS evaluations to display
$id = $_REQUEST['id'];
include "config.php";
echo "<html>\n";
echo "<head>\n";
echo "<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />\n";
echo "<LINK REL=StyleSheet HREF='skins/{$skin}/o3s.css' TYPE='text/css'/>\n";
echo "<title>Evaluation Flash Viewer</title>";
echo "</head>\n";
echo "<body>\n";
echo "<center>\n";
echo "<img src='skins/{$skin}/o3s-{$git}.png'/>\n";
echo "<br/><br/>\n";
echo "</center>\n";
include '../formats/libs/QSOSComparison.php';
$myComp = new QSOSComparison(array($id), $name);
$myComp->exportFreeMind($id, $use_flash_mm);
echo "/<body>\n";
echo "</html>\n";
?>
 
Exemplo n.º 6
0
**  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.
**
** This program is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU General Public License for more details.
**
**  You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
**
** O3S
** exportODT.php: ODT generation
**
*/
session_start();
//Weightings are stored in session
$weights = $_SESSION;
//QSOS evaluations to display
$ids = $_REQUEST['id'];
//Criterion to detail
$name = $_REQUEST['c'];
include "../formats/libs/QSOSComparison.php";
$myComp = new QSOSComparison($ids, $name);
$myComp->ODT();
?>