2007-01-05 19:11:33 +01:00
|
|
|
|
|
|
|
CREATE TABLE `estado_consola` (
|
|
|
|
`id_usuario` varchar(50) NOT NULL,
|
|
|
|
`idPerfilActivo` int(5) NOT NULL,
|
|
|
|
`idVistaActiva` int(5) NOT NULL,
|
|
|
|
`menuX` int(5) NOT NULL,
|
|
|
|
`menuY` int(5) NOT NULL,
|
|
|
|
PRIMARY KEY (`id_usuario`)
|
|
|
|
) ENGINE=MyISAM ;
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE `objeto_consola` (
|
|
|
|
`id_objeto` int(5) NOT NULL auto_increment,
|
|
|
|
`nom_img` varchar(50) NOT NULL,
|
|
|
|
`tipo` varchar(2) NOT NULL,
|
|
|
|
`left` int(5) NOT NULL,
|
|
|
|
`top` int(5) NOT NULL,
|
|
|
|
`id_tipo` varchar(20) NOT NULL,
|
|
|
|
`idVista` int(5) NOT NULL,
|
|
|
|
PRIMARY KEY (`id_objeto`)
|
2007-05-03 Sancho Lerena <slerena@artica.es>
* include/FreeSans.ttf: Added to repos, should be here to use in graphs.
* include/functions_db.php: Deleted noaccess include from
comprueba_login(). This should return value, not render pages or
exit.
* include/config.inc.php: Modified some typos.
* include/calendar.js: Added generic calendar javascript, to be
used on exportdata and incident management code.
* include/languages/language_en.php: More strings.
* install.php: In my render, box height is too low. PLEASE recheck
before changing this kind of properties because in other browsers
could have a bad render (Sophus!).
* index.php: Added script call (need to be done on header).
* operation/agentes/export_csv.php: Added new file to create a
standalone CSV on download icon / link.
* operation/agentes/exportdata.php: New export data code, used
some code from Leando Doctors, and mixed with old code. Now have
three options to render export data.
* operation/agentes/datos_agente_calendar.php: Deleted old code from Leandro.
* operation/active_console/lib/extra_functions.php: Solved a lot
of warnings, but there are TONS of more warnings that need to be
corrected.
* operation/active_console/lib/db_functions.php:Solved a lot of
warnings, but there are TONS of more warnings that need to be
corrected.
* operation/active_console/index.php: Solved a lot of warnings,
but there are TONS of more warnings that need to be
corrected. This code DONT work if you are showing warning/notice
erros. This code is not ready for production usage, too buggy yet
:(
* pandora_graphical_console_data.sql: Cleanup.
* godmode/agentes/module_manager.php: Added wizard button.
* pandora_graphical_console.sql: Cleanup.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@448 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-05-03 04:08:00 +02:00
|
|
|
) ENGINE=MyISAM;
|
2007-01-05 19:11:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE `perfil` (
|
|
|
|
`idPerfil` int(5) NOT NULL auto_increment,
|
|
|
|
`Nombre` varchar(50) NOT NULL,
|
|
|
|
`Descripcion` varchar(250) NOT NULL,
|
|
|
|
PRIMARY KEY (`idPerfil`)
|
2007-05-03 Sancho Lerena <slerena@artica.es>
* include/FreeSans.ttf: Added to repos, should be here to use in graphs.
* include/functions_db.php: Deleted noaccess include from
comprueba_login(). This should return value, not render pages or
exit.
* include/config.inc.php: Modified some typos.
* include/calendar.js: Added generic calendar javascript, to be
used on exportdata and incident management code.
* include/languages/language_en.php: More strings.
* install.php: In my render, box height is too low. PLEASE recheck
before changing this kind of properties because in other browsers
could have a bad render (Sophus!).
* index.php: Added script call (need to be done on header).
* operation/agentes/export_csv.php: Added new file to create a
standalone CSV on download icon / link.
* operation/agentes/exportdata.php: New export data code, used
some code from Leando Doctors, and mixed with old code. Now have
three options to render export data.
* operation/agentes/datos_agente_calendar.php: Deleted old code from Leandro.
* operation/active_console/lib/extra_functions.php: Solved a lot
of warnings, but there are TONS of more warnings that need to be
corrected.
* operation/active_console/lib/db_functions.php:Solved a lot of
warnings, but there are TONS of more warnings that need to be
corrected.
* operation/active_console/index.php: Solved a lot of warnings,
but there are TONS of more warnings that need to be
corrected. This code DONT work if you are showing warning/notice
erros. This code is not ready for production usage, too buggy yet
:(
* pandora_graphical_console_data.sql: Cleanup.
* godmode/agentes/module_manager.php: Added wizard button.
* pandora_graphical_console.sql: Cleanup.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@448 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-05-03 04:08:00 +02:00
|
|
|
) ENGINE=MyISAM;
|
2007-01-05 19:11:33 +01:00
|
|
|
|
|
|
|
CREATE TABLE `perfil_vista` (
|
|
|
|
`idPerfil` int(5) NOT NULL,
|
|
|
|
`idVista` int(5) NOT NULL,
|
|
|
|
`activa` tinyint(1) NOT NULL default '1',
|
|
|
|
PRIMARY KEY (`idPerfil`,`idVista`)
|
|
|
|
) ENGINE=MyISAM ;
|
|
|
|
|
|
|
|
CREATE TABLE `relacion_estado` (
|
|
|
|
`id_objeto` int(5) NOT NULL,
|
|
|
|
`relacion` varchar(50) NOT NULL,
|
|
|
|
PRIMARY KEY (`id_objeto`)
|
|
|
|
) ENGINE=MyISAM ;
|
|
|
|
|
|
|
|
CREATE TABLE `relacion_objetos` (
|
|
|
|
`idObjeto1` int(5) NOT NULL,
|
|
|
|
`idObjeto2` int(5) NOT NULL,
|
|
|
|
PRIMARY KEY (`idObjeto1`,`idObjeto2`)
|
|
|
|
) ENGINE=MyISAM ;
|
|
|
|
|
|
|
|
CREATE TABLE `vistas_consola` (
|
|
|
|
`idVista` int(5) NOT NULL auto_increment,
|
|
|
|
`nombre` varchar(50) NOT NULL,
|
|
|
|
`descripcion` varchar(250) NOT NULL,
|
|
|
|
PRIMARY KEY (`idVista`)
|
2007-05-03 Sancho Lerena <slerena@artica.es>
* include/FreeSans.ttf: Added to repos, should be here to use in graphs.
* include/functions_db.php: Deleted noaccess include from
comprueba_login(). This should return value, not render pages or
exit.
* include/config.inc.php: Modified some typos.
* include/calendar.js: Added generic calendar javascript, to be
used on exportdata and incident management code.
* include/languages/language_en.php: More strings.
* install.php: In my render, box height is too low. PLEASE recheck
before changing this kind of properties because in other browsers
could have a bad render (Sophus!).
* index.php: Added script call (need to be done on header).
* operation/agentes/export_csv.php: Added new file to create a
standalone CSV on download icon / link.
* operation/agentes/exportdata.php: New export data code, used
some code from Leando Doctors, and mixed with old code. Now have
three options to render export data.
* operation/agentes/datos_agente_calendar.php: Deleted old code from Leandro.
* operation/active_console/lib/extra_functions.php: Solved a lot
of warnings, but there are TONS of more warnings that need to be
corrected.
* operation/active_console/lib/db_functions.php:Solved a lot of
warnings, but there are TONS of more warnings that need to be
corrected.
* operation/active_console/index.php: Solved a lot of warnings,
but there are TONS of more warnings that need to be
corrected. This code DONT work if you are showing warning/notice
erros. This code is not ready for production usage, too buggy yet
:(
* pandora_graphical_console_data.sql: Cleanup.
* godmode/agentes/module_manager.php: Added wizard button.
* pandora_graphical_console.sql: Cleanup.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@448 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-05-03 04:08:00 +02:00
|
|
|
) ENGINE=MyISAM;
|