zzoss-cvs Mailing List for ZZ/OSS
Status: Alpha
Brought to you by:
czonsius
You can subscribe to this list here.
| 2003 |
Jan
(72) |
Feb
(30) |
Mar
(554) |
Apr
(5) |
May
(186) |
Jun
(8) |
Jul
(413) |
Aug
|
Sep
|
Oct
|
Nov
(13) |
Dec
(27) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(38) |
Feb
(6) |
Mar
(18) |
Apr
(66) |
May
(45) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Christian Z. <czo...@us...> - 2004-05-18 00:50:20
|
Update of /cvsroot/zzoss/packages/com.zzoss.framework.build/com.zzoss.config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15365 Added Files: build.xml Log Message: initial release --- NEW FILE: build.xml --- <?xml version="1.0" encoding="ISO-8859-1" ?> <build version="1.0"> <filelist> <file baseinstalldir="./" name=".htaccess"> <![CDATA[ # include paths of libraries php_value "include_path" "{zi_application_root}lib{zi_path_separator}{zi_application_root}{zi_path_separator}." # set super global $_SERVER['ZZOSS_PATH_TRANSLATED'] # with root of application assigned setenv ZZOSS_PATH_TRANSLATED "{zi_application_root}{zi_directory_separator} # set super global $_SERVER['ZZOSS_PATH_DATA'] # with root of data dir assigned setenv ZZOSS_PATH_DATA "{zi_application_data_dir}{zi_directory_separator} # startup routines of framework php_value "auto_prepend_file" "{zi_application_root}mod{zi_directory_separator}zzoss_framework{zi_directory_separator}startup.php" # shutdown routines of framework php_value "auto_append_file" "{zi_application_root}mod{zi_directory_separator}zzoss_framework{zi_directory_separator}shutdown.php" # some values needs to run properly, do not change! php_flag "register_globals" "off" php_value "magic_quotes_gpc" "0" ]]> </file> </filelist> </build> |
|
From: Christian Z. <czo...@us...> - 2004-05-17 23:42:48
|
Update of /cvsroot/zzoss/packages/com.zzoss.installer.plugin.repository In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2364 Removed Files: exec_install.inc.php exec_install.php Log Message: removed files --- exec_install.php DELETED --- --- exec_install.inc.php DELETED --- |
|
From: Christian Z. <czo...@us...> - 2004-05-17 23:40:37
|
Update of /cvsroot/zzoss/packages/com.zzoss.installer.plugin.repository In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1803 Modified Files: package.xml Added Files: InstallerDb.php install.php remove.php Log Message: initial version of repository plugin --- NEW FILE: remove.php --- <?php // TODO ?> --- NEW FILE: InstallerDb.php --- <?php /* Copyright (C) 2001-2003 ZZOSS GbR, http://www.zzoss.com ---------------------------------------------------------------------- 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. ---------------------------------------------------------------------- $Id: InstallerDb.php,v 1.1 2004/05/17 23:40:20 czonsius Exp $ */ require_once 'DB.php'; class ZZOSS_InstallerDb { function db( &$db ) { $this->db = $db; $this->db_name = $this->db->dsn['database']; // define tables for DOM if(isset($this->db->tables)&&count($this->db->tables)){ $this->tbl_name = $this->db->tables; } //print_r($this->tbl_name); } function setReplacements($replacements) { $this->replacements = $replacements; } function sqlDumpFromString( $sql_query ) { $sql_query = trim($sql_query); // check if we should replace characters of the query if(isset($this->replacements)&&is_array($this->replacements) && count($this->replacements)){ // extract the key as the needle that we replace in the haystack $search = array(); $replace = array(); foreach($this->replacements as $key => $value){ array_push($search, "'{".$key."}'si"); array_push($replace, $value); } $sql_query = preg_replace ($search, $replace, $sql_query); } $pieces = array(); $this->_split_sql_file($pieces, $sql_query); $pieces_count = count($pieces); for ($i = 0; $i < $pieces_count; $i++) { //echo $a_sql_query.'<br>'; $this->query($pieces[$i]); } // end for unset($pieces); return true; } function sqlDump( $sql_file ) { // Gets the query from a file if (file_exists($sql_file)) { $sql_query = fread(fopen($sql_file, 'r'), filesize($sql_file)); if (get_magic_quotes_runtime() == 1) { $sql_query = stripslashes($sql_query); } } else { return false; } return $this->sqlDumpFromString($sql_query); } function &query( $query ) { //$query = $this->_replaceTableNames( $query ); //echo "---\n"; //echo $query."\n"; return $this->db->query( $query ); } /* function _replaceTableNames( $query ) { // replace hard coded table names with table aliases if(count($this->tbl_name)){ foreach($this->tbl_name as $tbl_name => $tbl_alias){ // TODO: use regular expressions // replace table names $query = str_replace(' '.$tbl_name.' ',' '.$this->db_name.'.'.$tbl_alias.' ', $query); // replace table names with backticks $query = str_replace(' `'.$tbl_name.'` ',' `'.$this->db_name.'`.`'.$tbl_alias.'` ', $query); // replace table names at end of query string $query = str_replace(' '.$tbl_name,' '.$this->db_name.'.'.$tbl_alias, $query); // replace table names in column definition $query = str_replace(' '.$tbl_name.'.', ' '.$tbl_alias.'.', $query); // replace sequence tables $query = str_replace(' '.$tbl_name.'_seq ',' '.$this->db_name.'.'.$tbl_alias.'_seq ', $query); // replace sequence tables at end of query string $query = str_replace(' '.$tbl_name.'_seq',' '.$this->db_name.'.'.$tbl_alias.'_seq', $query); } } else { return false; } return $query; } */ /** * Taken from phpMyAdmin ./read_dump.php * * Removes comment lines and splits up large sql files into individual queries * * Last revision: September 23, 2001 - gandon * * @param array the splitted sql commands * @param string the sql commands * @param integer the MySQL release number (because certains php3 versions * can't get the value of a constant from within a function) * * @return boolean always true * * @access public */ function _split_sql_file(&$ret, $sql, $release = 32300) { $sql = trim($sql); $sql_len = strlen($sql); $char = ''; $string_start = ''; $in_string = FALSE; for ($i = 0; $i < $sql_len; ++$i) { $char = $sql[$i]; // We are in a string, check for not escaped end of strings except for // backquotes that can't be escaped if ($in_string) { for (;;) { $i = strpos($sql, $string_start, $i); // No end of string found -> add the current substring to the // returned array if (!$i) { $ret[] = $sql; return TRUE; } // Backquotes or no backslashes before quotes: it's indeed the // end of the string -> exit the loop else if ($string_start == '`' || $sql[$i-1] != '\\') { $string_start = ''; $in_string = FALSE; break; } // one or more Backslashes before the presumed end of string... else { // ... first checks for escaped backslashes $j = 2; $escaped_backslash = FALSE; while ($i-$j > 0 && $sql[$i-$j] == '\\') { $escaped_backslash = !$escaped_backslash; $j++; } // ... if escaped backslashes: it's really the end of the // string -> exit the loop if ($escaped_backslash) { $string_start = ''; $in_string = FALSE; break; } // ... else loop else { $i++; } } // end if...elseif...else } // end for } // end if (in string) // We are not in a string, first check for delimiter... else if ($char == ';') { // if delimiter found, add the parsed part to the returned array $ret[] = substr($sql, 0, $i); $sql = ltrim(substr($sql, min($i + 1, $sql_len))); $sql_len = strlen($sql); if ($sql_len) { $i = -1; } else { // The submited statement(s) end(s) here return TRUE; } } // end else if (is delimiter) // ... then check for start of a string,... else if (($char == '"') || ($char == '\'') || ($char == '`')) { $in_string = TRUE; $string_start = $char; } // end else if (is start of string) // ... for start of a comment (and remove this comment if found)... else if ($char == '#' || ($char == ' ' && $i > 1 && $sql[$i-2] . $sql[$i-1] == '--')) { // starting position of the comment depends on the comment type $start_of_comment = (($sql[$i] == '#') ? $i : $i-2); // if no "\n" exits in the remaining string, checks for "\r" // (Mac eol style) $end_of_comment = (strpos(' ' . $sql, "\012", $i+2)) ? strpos(' ' . $sql, "\012", $i+2) : strpos(' ' . $sql, "\015", $i+2); if (!$end_of_comment) { // no eol found after '#', add the parsed part to the returned // array and exit $ret[] = trim(substr($sql, 0, $i-1)); return TRUE; } else { $sql = substr($sql, 0, $start_of_comment) . ltrim(substr($sql, $end_of_comment)); $sql_len = strlen($sql); $i--; } // end if...else } // end else if (is comment) // ... and finally disactivate the "/*!...*/" syntax if MySQL < 3.22.07 else if ($release < 32270 && ($char == '!' && $i > 1 && $sql[$i-2] . $sql[$i-1] == '/*')) { $sql[$i] = ' '; } // end else if } // end for // add any rest to the returned array if (!empty($sql) && ereg('[^[:space:]]+', $sql)) { $ret[] = $sql; } return TRUE; } // end of the 'split_sql_file()' function } ?> --- NEW FILE: install.php --- <?php /* Copyright (C) 2001-2003 ZZOSS GbR, http://www.zzoss.com ---------------------------------------------------------------------- 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. ---------------------------------------------------------------------- $Id: install.php,v 1.1 2004/05/17 23:40:20 czonsius Exp $ */ // set include path $old_include_path = ini_get("include_path"); ini_set( "include_path", ZZOSS_InstallerUtils::fixPath($GLOBALS['ZI']['application_data_dir'].'plugins_re/lib'). DIRECTORY_SEPARATOR. $old_include_path ); if($GLOBALS['ZI']['plugin_mode'] == 'post'){ $GLOBALS['ZI']['plugin_log'] .= "Processing input.\n"; $xsd_file = ZZOSS_InstallerUtils::fixPath( $GLOBALS['ZI']['build_dir'].'new/structure.xsd' ); $xsd2mysql_file = ZZOSS_InstallerUtils::fixPath( $GLOBALS['ZI']['application_data_dir'].'plugins_re/lib/xsd2db/xsd2mysql.xsl' ); $repository2xsd_file = ZZOSS_InstallerUtils::fixPath( $GLOBALS['ZI']['application_data_dir'].'plugins_re/com.zzoss.zic.plugin.repository/repository2xsd.xsl' ); // parse config.xml file of com.zzoss.repository.build package $config_file = $GLOBALS['ZI']['application_data_dir'].'data'.DIRECTORY_SEPARATOR.'package'.DIRECTORY_SEPARATOR.'com.zzoss.repository.build'.DIRECTORY_SEPARATOR.'config.xml'; if(file_exists($config_file)) { require_once 'ZZOSS_Config/Config.php'; $config = new ZZOSS_Config; $config->setFile($config_file); $GLOBALS['ZI']['plugin_log'] .= "Reading config.xml from '$config_file'"."\n"; $config_repository = $config->query('/zzoss_config'); } // parse config.xml file of current package $config_file_package = $GLOBALS['ZI']['application_data_dir'].'data'.DIRECTORY_SEPARATOR.'package'.DIRECTORY_SEPARATOR.$GLOBALS['ZI']['package_name'].DIRECTORY_SEPARATOR.'config.xml'; if(file_exists($config_file_package)) { require_once 'ZZOSS_Config/Config.php'; $config = new ZZOSS_Config; $config->setFile($config_file_package); $GLOBALS['ZI']['plugin_log'] .= "Reading config.xml from '$config_file_package'"."\n"; $config_package = $config->query('/zzoss_config'); } // set xsl params $xslparams = array("tbl.prefix" => $config_package['component']['repository']['@']['name'].'_'); // read XML file $fd = fopen( $xsd_file, "r" ); $xml = fread( $fd, filesize( $xsd_file ) ); fclose( $fd ); // read XSD2MYSQL XSLT file $fd = fopen( $xsd2mysql_file, "r" ); $xsl_xsd2mysql = fread( $fd, filesize( $xsd2mysql_file ) ); fclose( $fd ); // read REPOSITORY2XSD XSLT file $fd = fopen( $repository2xsd_file, "r" ); $xsl_repository2xsd = fread( $fd, filesize( $repository2xsd_file ) ); fclose( $fd ); // convert repository to xsd $xslproc = xslt_create(); xslt_set_encoding($xslproc, "iso-8859-1"); $xslargs = array("_xml" => $xml, "_xsl" => $xsl_repository2xsd); $xsd = xslt_process($xslproc, "arg:/_xml", "arg:/_xsl", NULL, $xslargs); // convert xsd to mysql $xslproc = xslt_create(); xslt_set_encoding($xslproc, "iso-8859-1"); $xslargs = array("_xml" => $xsd, "_xsl" => $xsl_xsd2mysql); $sql = xslt_process($xslproc, "arg:/_xml", "arg:/_xsl", NULL, $xslargs, $xslparams); // parse config params if(is_array($config_repository['component']['params']['param'])) { foreach($config_repository['component']['params']['param'] as $param) { if($param['@']['name']!='') { $config_params[$param['@']['name']] = $param['#']; } } } // get installer connector if(is_array($config_package['component']['connector'])) { foreach($config_package['component']['connector'] as $connector) { if($connector['@']['name']=='installer') { $connector_install = $connector; } } } // create db object require_once 'InstallerDb.php'; $db = DB::connect($connector_install['dsn'], true); if (DB::isError($db)) { die ($db->getMessage()); } $db->setFetchMode(DB_FETCHMODE_ASSOC); $installer = new ZZOSS_InstallerDb; $installer->db( $db ); // execute table sql $installer->sqlDumpFromString($sql); // create new repository entry $repositories_table = $config_repository['component']['repository']['@']['name'].'_item'; $_id = $db->nextID( $repositories_table ); $_ddo = 'ddo:'. $config_params['network']. '.'. $config_params['community']. '.'. '1'. // repository (1 = repository table itself) // better way is to retrieve this with db '/'. $_id; $sql_2 = 'INSERT INTO '.$repositories_table.' (_id, _ddo, _network, _community, _repository, _created, name, label, description, created) VALUES (' .'"'.$_id.'", ' .'"'.$_ddo.'", ' .'"'.$config_params['network'].'", ' .'"'.$config_params['community'].'", ' .'"1", ' // see above .'"'.gmdate('Y-m-d H:i:s').'", ' .'"'.$config_package['component']['repository']['@']['name'].'", ' .'"'.$config_package['component']['repository']['label'].'", ' .'"'.$config_package['component']['repository']['description'].'", ' .'"'.gmdate('Y-m-d H:i:s').'"' .')'; $installer->sqlDumpFromString($sql_2); } // restore include path ini_set( "include_path", $old_include_path ); /* // we have to set this global, otherwise ZZOSS_Framework::conf() // would not work $_SERVER['ZZOSS_PATH_TRANSLATED'] = $GLOBALS['ZI']['root']; require_once 'ZZOSS_Framework/Framework.php'; require_once 'ZZOSS_Framework/Parser.php'; require_once "lib/ZZOSS_Installer/Utils.php"; require_once "lib/ZZOSS_Installer/Db.php"; if($GLOBALS['ZI']['plugin_mode'] == 'post'){ $GLOBALS['ZI']['plugin_log'] .= "Processing input.\n"; // include class file require_once 'install_inc.php'; $debug = true; $plugin = new ZZOSS_RepositoriesPluginInstall($debug); $plugin->setName($GLOBALS['ZI']['plugin_params']['schema']); $plugin->setRepository(ZZOSS_InstallerUtils::fixPath($GLOBALS['ZI']['package_build_dir'].'new/structure.xsd')); $plugin->setXslt('repository2xsd', $GLOBALS['ZI']['plugin_root'].'repository2xsd.xsl'); $plugin->setXslt('xsd2db', $GLOBALS['ZI']['root'].'utils/xsd2db/xsd2mysql.xsl'); $plugin->setXslt('xsd2template', $GLOBALS['ZI']['root'].'utils/xsd2template/xsd2itx_template.xsl'); $plugin->setXslt('xsd2xforms', $GLOBALS['ZI']['root'].'utils/xsd2xforms/xsd2xforms.xsl'); $plugin->setXslt('xsd2xml2mysql', $GLOBALS['ZI']['root'].'utils/xsd2db/xsd2xml2mysql.xsl'); $plugin->exec(); if($GLOBALS['ZI']['demo']){ $GLOBALS['ZI']['plugin_log'] .= 'com.zzoss.installer.plugin.repository: Trying to find '.ZZOSS_InstallerUtils::fixPath($GLOBALS['ZI']['package_build_dir'].'new/demo.xml')."\n"; if(file_exists(ZZOSS_InstallerUtils::fixPath($GLOBALS['ZI']['package_build_dir'].'new/demo.xml'))){ $plugin->demo(ZZOSS_InstallerUtils::fixPath($GLOBALS['ZI']['package_build_dir'].'new/demo.xml')); } } }*/ ?> Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.installer.plugin.repository/package.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** package.xml 6 Jul 2003 14:06:55 -0000 1.4 --- package.xml 17 May 2004 23:40:20 -0000 1.5 *************** *** 2,6 **** <package version="1.0" xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.installer.plugin.repository</name> <summary>ZZ/OSS Installer Repository Plugin</summary> <description>Plugin to install build files.</description> --- 2,6 ---- <package version="1.0" xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.zic.plugin.repository</name> <summary>ZZ/OSS Installer Repository Plugin</summary> <description>Plugin to install build files.</description> *************** *** 20,42 **** </maintainers> <release> ! <version>0.5</version> ! <date>2003-03-17</date> <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> <state>beta</state> <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> <deps> ! <dep type="pkg" rel="ge" version="1.0">com.zzoss.framework.lib</dep> </deps> - <plugin> - <filelist> - <file baseinstalldir="com.zzoss.installer.plugin.repository/" name="exec_install.inc.php"/> - <file baseinstalldir="com.zzoss.installer.plugin.repository/" name="exec_install.php"/> - <file baseinstalldir="com.zzoss.installer.plugin.repository/" name="repository2xsd.xsl"/> - <file baseinstalldir="com.zzoss.installer.plugin.repository/tests/" name="tests/exec_install.php"/> - </filelist> - </plugin> </release> </package> --- 20,47 ---- </maintainers> <release> ! <version>0.1.0</version> ! <date>2004-03-19</date> <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> <state>beta</state> <notes>Initial release.</notes> ! <copyright> ! <holder year="2004" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <filelist> ! <file baseinstalldir="com.zzoss.zic.plugin.repository" name="install.php"/> ! <file baseinstalldir="com.zzoss.zic.plugin.repository" name="remove.php"/> ! <file baseinstalldir="com.zzoss.zic.plugin.repository" name="repository2xsd.xsl"/> ! <file baseinstalldir="lib" name="InstallerDb.php"/> ! </filelist> ! <plugin> ! <filelist> ! <file role="install" name="install.php"/> ! <file role="remove" name="remove.php"/> ! </filelist> ! </plugin> <deps> ! <dep type="pkg" rel="ge" version="1.4.0">DB</dep> </deps> </release> </package> + |
|
From: Christian Z. <czo...@us...> - 2004-05-17 23:35:02
|
Update of /cvsroot/zzoss/packages/com.zzoss.application_repository.build/com.zzoss.repository/new In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv623/com.zzoss.repository/new Modified Files: structure.xsd Log Message: added plugin relation to repository Index: structure.xsd =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.application_repository.build/com.zzoss.repository/new/structure.xsd,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** structure.xsd 8 Jul 2003 16:08:19 -0000 1.3 --- structure.xsd 17 May 2004 23:34:52 -0000 1.4 *************** *** 6,13 **** <xsd:attribute name="name" type="xsd:NMTOKEN" fixed="zzoss_application_repository"/> ! <xsd:complexType name="item"> <xsd:sequence> ! <xsd:element name="name" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> --- 6,13 ---- <xsd:attribute name="name" type="xsd:NMTOKEN" fixed="zzoss_application_repository"/> ! <xsd:complexType name="item"> <xsd:sequence> ! <xsd:element name="name" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> *************** *** 89,93 **** <xsd:complexType name="license"> <xsd:sequence> ! <xsd:element name="name" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> --- 89,93 ---- <xsd:complexType name="license"> <xsd:sequence> ! <xsd:element name="name" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> *************** *** 108,118 **** </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> ! <xsd:complexType name="copyright"> <xsd:sequence> ! <xsd:element name="holder" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> --- 108,118 ---- </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> ! <xsd:complexType name="copyright"> <xsd:sequence> ! <xsd:element name="holder" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> *************** *** 133,137 **** </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> --- 133,137 ---- </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> *************** *** 139,143 **** <xsd:complexType name="download"> <xsd:sequence> ! <xsd:element name="url" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> --- 139,143 ---- <xsd:complexType name="download"> <xsd:sequence> ! <xsd:element name="url" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> *************** *** 146,150 **** </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> --- 146,150 ---- </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> *************** *** 152,156 **** <xsd:complexType name="package"> <xsd:sequence> ! <xsd:element name="id" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> --- 152,156 ---- <xsd:complexType name="package"> <xsd:sequence> ! <xsd:element name="id" minOccurs="1" maxOccurs="1" default="" nillable="false"> <xsd:restriction base='xsd:string'> *************** *** 170,177 **** </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> </xsd:sequence> </xsd:complexType> --- 170,202 ---- </xsd:restriction> </xsd:element> ! </xsd:sequence> </xsd:complexType> + <xsd:complexType name="plugin"> + <xsd:sequence> + + <xsd:element name="id" minOccurs="1" maxOccurs="1" default="" nillable="false"> + <xsd:restriction base='xsd:string'> + <xsd:maxLength value='255'/> + <xsd:minLength value='1'/> + </xsd:restriction> + </xsd:element> + <xsd:element name="baseinstalldir" minOccurs="1" maxOccurs="1" default="" nillable="false"> + <xsd:restriction base='xsd:string'> + <xsd:maxLength value='255'/> + <xsd:minLength value='7'/> + </xsd:restriction> + </xsd:element> + <xsd:element name="required" minOccurs="1" maxOccurs="1" default="" nillable="false"> + <xsd:restriction base='xsd:positiveInteger'> + <xsd:totalDigits value='1'/> + </xsd:restriction> + </xsd:element> + + </xsd:sequence> + </xsd:complexType> + + </xsd:sequence> </xsd:complexType> |
|
From: Christian Z. <czo...@us...> - 2004-05-17 22:51:38
|
Update of /cvsroot/zzoss/descriptors/applications/zic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23300 Modified Files: application-1.1.0dev2.xml Log Message: use com.zzoss.plugin.lib 1.0.1 instead of 1.0 Index: application-1.1.0dev2.xml =================================================================== RCS file: /cvsroot/zzoss/descriptors/applications/zic/application-1.1.0dev2.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** application-1.1.0dev2.xml 17 May 2004 15:58:32 -0000 1.7 --- application-1.1.0dev2.xml 17 May 2004 22:51:29 -0000 1.8 *************** *** 252,256 **** <package name="com.zzoss.package.descriptor.lib" version="1.0.0" use="required" baseinstalldir="lib/" /> <package name="com.zzoss.package.instant.lib" version="1.0.0" use="required" baseinstalldir="lib/" /> ! <package name="com.zzoss.plugin.lib" version="1.0" use="required" baseinstalldir="lib/" /> <package name="com.zzoss.portlet.package.lib" version="0.1" use="required" baseinstalldir="lib/" /> <!--<package name="com.zzoss.transition.lib" version="0.1.0" use="required" baseinstalldir="lib/" />--> --- 252,256 ---- <package name="com.zzoss.package.descriptor.lib" version="1.0.0" use="required" baseinstalldir="lib/" /> <package name="com.zzoss.package.instant.lib" version="1.0.0" use="required" baseinstalldir="lib/" /> ! <package name="com.zzoss.plugin.lib" version="1.0.1" use="required" baseinstalldir="lib/" /> <package name="com.zzoss.portlet.package.lib" version="0.1" use="required" baseinstalldir="lib/" /> <!--<package name="com.zzoss.transition.lib" version="0.1.0" use="required" baseinstalldir="lib/" />--> |
|
From: Sandro Z. <or...@us...> - 2004-05-17 15:58:51
|
Update of /cvsroot/zzoss/descriptors/applications/zic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25338 Modified Files: application-1.1.0dev2.xml Log Message: - perform update in a sandbox within the installer data directory: - copy the old app to the sandbox - install the new app to the sandbox - copy back the new app to the application root <- important when installer installs itself <- makes sure that update is only finalized if no errors occured Index: application-1.1.0dev2.xml =================================================================== RCS file: /cvsroot/zzoss/descriptors/applications/zic/application-1.1.0dev2.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** application-1.1.0dev2.xml 17 May 2004 10:25:50 -0000 1.6 --- application-1.1.0dev2.xml 17 May 2004 15:58:32 -0000 1.7 *************** *** 48,56 **** - show dependency relation (ge, le, eq, ...) of unresolved packages - verbose error message in dependency check if a package defined in application XML is not available ! - config option to turn on/off debugging of Win filesystem (problem of same file and dir name) - provide plugin variable of version and name of distribution and application from XML descriptor - return to config options after changing configs - config plugin allows for "win" mode in input XML widgets to decide if an input form element is only displayed on Windows - sophisticated delete options in development mode: keep installed files and keep application XML descriptor in registry BUGS FIXED: --- 48,62 ---- - show dependency relation (ge, le, eq, ...) of unresolved packages - verbose error message in dependency check if a package defined in application XML is not available ! - config option to turn on/off debugging of a case-insensitive filesystem (problem of same file and dir name) - provide plugin variable of version and name of distribution and application from XML descriptor - return to config options after changing configs - config plugin allows for "win" mode in input XML widgets to decide if an input form element is only displayed on Windows - sophisticated delete options in development mode: keep installed files and keep application XML descriptor in registry + - perform update in a sandbox within the installer data directory: + - copy the old app to the sandbox + - install the new app to the sandbox + - copy back the new app to the application root + <- important when installer installs itself + <- makes sure that update is only finalized if no errors occured BUGS FIXED: *************** *** 172,181 **** - upon update of app, use old config data for new app configuration in config-plugin - check if distri name of updated app is different and show notice - - perform update in a sandbox within the installer data directory: - - copy the old app to the sandbox - - install the new app to the sandbox - - copy back the new app to the application root - <- important when installer installs itself - <- makes sure that update is only finalized if no errors occured - second distri is not correctly inserted in input.xml - integrate PEAR_FileManager --- 178,181 ---- |
|
From: Sandro Z. <or...@us...> - 2004-05-17 15:55:17
|
Update of /cvsroot/zzoss/packages/com.zzoss.dir.lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24425/com.zzoss.dir.lib Modified Files: Dir.php Log Message: - perform update in a sandbox within the installer data directory: - copy the old app to the sandbox - install the new app to the sandbox - copy back the new app to the application root <- important when installer installs itself <- makes sure that update is only finalized if no errors occured Index: Dir.php =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.dir.lib/Dir.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Dir.php 6 Apr 2004 14:45:37 -0000 1.3 --- Dir.php 17 May 2004 15:55:08 -0000 1.4 *************** *** 51,54 **** --- 51,55 ---- function copy($src, $dest, $ignore_list = array(), $recursive = true, $overwrite = true) { + include_once 'ZZOSS_File/File.php'; $src = ZZOSS_File::fixPath($src.DIRECTORY_SEPARATOR); $dest = ZZOSS_File::fixPath($dest.DIRECTORY_SEPARATOR); |
|
From: Sandro Z. <or...@us...> - 2004-05-17 10:25:59
|
Update of /cvsroot/zzoss/descriptors/applications/zic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14983 Modified Files: application-1.1.0dev2.xml Log Message: - if a package is created from sources in packages_reset.php and a file mentioned in package.xml is not there, then - show the package name and missing file in error message (from Archive_Tar) - take care that a reload of the script still shows the error (currently, it simply builds the package) Index: application-1.1.0dev2.xml =================================================================== RCS file: /cvsroot/zzoss/descriptors/applications/zic/application-1.1.0dev2.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** application-1.1.0dev2.xml 17 May 2004 10:01:42 -0000 1.5 --- application-1.1.0dev2.xml 17 May 2004 10:25:50 -0000 1.6 *************** *** 59,62 **** --- 59,65 ---- - upon update of installer itself, use new app version - make sure that update of app, esp. installer, works also if distribution version has changed + - if a package is created from sources in packages_reset.php and a file mentioned in package.xml is not there, then + - show the package name and missing file in error message (from Archive_Tar) + - take care that a reload of the script still shows the error (currently, it simply builds the package) CLEAN UPS: *************** *** 144,150 **** - don't use popup for logfile - build relation (e.g. 'ge') does not work when checking versions - - if a package is created from sources in packages_reset.php and a file mentioned in package.xml is not there, then - - show the package name and missing file in error message (from Archive_Tar) - - take care that a reload of the script still shows the error (currently, it simply builds the package) - delete com.zzoss.zic.build/config/config.xml-dist - plugin debug should be configurable by separate com.zzoss.plugin.build, also distinguish between several debug options (e.g. all, excluding win filesystem, etc.) --- 147,150 ---- *************** *** 163,166 **** --- 163,167 ---- - show available version only if updateable - upon app update, compare existing and new packages + - manage procedures in session of Transition class - make sure that 8MB memory limit is not exceeded *************** *** 179,183 **** - second distri is not correctly inserted in input.xml - integrate PEAR_FileManager - - manage procedures in session of Transition class - why is there a update/ directory in app data dir? --- 180,183 ---- |
|
From: Sandro Z. <or...@us...> - 2004-05-17 10:01:53
|
Update of /cvsroot/zzoss/descriptors/applications/zic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9761 Modified Files: application-1.1.0dev2.xml Log Message: make sure that update of app, esp. installer, works also if distribution version has changed Index: application-1.1.0dev2.xml =================================================================== RCS file: /cvsroot/zzoss/descriptors/applications/zic/application-1.1.0dev2.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** application-1.1.0dev2.xml 6 May 2004 16:45:09 -0000 1.4 --- application-1.1.0dev2.xml 17 May 2004 10:01:42 -0000 1.5 *************** *** 36,40 **** </maintainers> <release> ! <version>1.1.0dev3</version> <date>{zi_release_date}</date> <license url="http://www.gnu.org/licenses/lgpl.txt" version="2.1">LGPL</license> --- 36,40 ---- </maintainers> <release> ! <version>1.1.0dev2</version> <date>{zi_release_date}</date> <license url="http://www.gnu.org/licenses/lgpl.txt" version="2.1">LGPL</license> *************** *** 48,55 **** --- 48,62 ---- - show dependency relation (ge, le, eq, ...) of unresolved packages - verbose error message in dependency check if a package defined in application XML is not available + - config option to turn on/off debugging of Win filesystem (problem of same file and dir name) + - provide plugin variable of version and name of distribution and application from XML descriptor + - return to config options after changing configs + - config plugin allows for "win" mode in input XML widgets to decide if an input form element is only displayed on Windows + - sophisticated delete options in development mode: keep installed files and keep application XML descriptor in registry BUGS FIXED: - avoid duplicate entries of 'needed by' packages - create package tgz with dir in filelist + - upon update of installer itself, use new app version + - make sure that update of app, esp. installer, works also if distribution version has changed CLEAN UPS: *************** *** 137,140 **** --- 144,166 ---- - don't use popup for logfile - build relation (e.g. 'ge') does not work when checking versions + - if a package is created from sources in packages_reset.php and a file mentioned in package.xml is not there, then + - show the package name and missing file in error message (from Archive_Tar) + - take care that a reload of the script still shows the error (currently, it simply builds the package) + - delete com.zzoss.zic.build/config/config.xml-dist + - plugin debug should be configurable by separate com.zzoss.plugin.build, also distinguish between several debug options (e.g. all, excluding win filesystem, etc.) + - check in dev-mode, if a built-placeholder in config plugin has no value and throw an error + - upgrade to PEAR::Archive_Tar 1.2 + - clean-up app in dev mode without deleting XML descriptors + - info_changelog works with packages, but not with plugins + - make sure that dev-scripts can only be accessed if dev-mode is enabled + - use absolute URL for http redirects (HTTP 1.1 compliant) + - second distri: shows wrong pop-up info in distri and app in dev-mode <- check prod mode + - show distribution in application_update_confirm.php + - in app-info link to distribution info + - don't need the cache/ directory anymore in app data dir + - package manager: + - don't show available version if installed + - show available version only if updateable + - upon app update, compare existing and new packages - make sure that 8MB memory limit is not exceeded *************** *** 142,146 **** - check with PHP5 - solve redirection problem ! - info_changelog works with packages, but not with plugins - upload com.zzoss.config.lib-1.1.0 --- 168,186 ---- - check with PHP5 - solve redirection problem ! ! - upon update of app, use old config data for new app configuration in config-plugin ! - check if distri name of updated app is different and show notice ! - perform update in a sandbox within the installer data directory: ! - copy the old app to the sandbox ! - install the new app to the sandbox ! - copy back the new app to the application root ! <- important when installer installs itself ! <- makes sure that update is only finalized if no errors occured ! - second distri is not correctly inserted in input.xml ! - integrate PEAR_FileManager ! - manage procedures in session of Transition class ! ! - why is there a update/ directory in app data dir? ! - describe in DOCS! - upload com.zzoss.config.lib-1.1.0 *************** *** 214,217 **** --- 254,258 ---- <package name="com.zzoss.plugin.lib" version="1.0" use="required" baseinstalldir="lib/" /> <package name="com.zzoss.portlet.package.lib" version="0.1" use="required" baseinstalldir="lib/" /> + <!--<package name="com.zzoss.transition.lib" version="0.1.0" use="required" baseinstalldir="lib/" />--> <!-- base --> <package name="com.zzoss.zic" version="1.1.0" use="required" baseinstalldir="" /> |
|
From: Sandro Z. <or...@us...> - 2004-05-17 10:00:17
|
Update of /cvsroot/zzoss/packages/com.zzoss.file.download.lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9202/com.zzoss.file.download.lib Modified Files: Download.php Log Message: make sure that update of app, esp. installer, works also if distribution version has changed Index: Download.php =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.file.download.lib/Download.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Download.php 28 Jan 2004 11:39:51 -0000 1.1 --- Download.php 17 May 2004 10:00:00 -0000 1.2 *************** *** 70,73 **** --- 70,78 ---- } + // if destination directory does not exist, we create it + if(!is_dir($this->dest_dir)){ + System::mkdir(array('-p', $this->dest_dir)); + } + $result = $this->downloadHttp($this->src, $this->dest_dir, $this->callback); // WORKAROUND, did not understand how to define |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:57:58
|
Update of /cvsroot/zzoss/packages/com.zzoss.theme.build/com.zzoss.config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28166/com.zzoss.config Modified Files: config.xml-dist Log Message: adapted files to new installer architecture Index: config.xml-dist =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.theme.build/com.zzoss.config/config.xml-dist,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** config.xml-dist 4 Jul 2003 18:05:58 -0000 1.4 --- config.xml-dist 10 May 2004 13:57:47 -0000 1.5 *************** *** 12,19 **** <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="zzoss_themes"> <paths> ! <param name="root">{ZI_url_rel}mod/zzoss_theme/</param> ! <param name="xsl" context="_absolute">{ZI_root}mod/zzoss_theme/xsl/</param> </paths> </component> --- 12,19 ---- <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="com.zzoss.theme.build"> <paths> ! <param name="root">{zi_application_url_rel}mod/zzoss_theme/</param> ! <param name="xsl" context="_absolute">{zi_application_root}mod/zzoss_theme/xsl/</param> </paths> </component> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:57:58
|
Update of /cvsroot/zzoss/packages/com.zzoss.theme.build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28166 Modified Files: package.xml Log Message: adapted files to new installer architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.theme.build/package.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** package.xml 6 Jul 2003 14:06:55 -0000 1.4 --- package.xml 10 May 2004 13:57:46 -0000 1.5 *************** *** 1,35 **** ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.theme.build</name> ! <summary>ZZ/OSS Themes Module Build Files</summary> ! <description>Build files only</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>lead</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.5</version> ! <date>2003-03-17</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! </deps> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.installer.plugin.config" rel="ge" version="0.5"> ! <params> ! <name>zzoss_themes</name> ! </params> ! </build> ! </builds> ! </release> ! </package> --- 1,31 ---- ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.theme.build</name> ! <summary>ZZ/OSS Themes Module Build Files</summary> ! <description>Build files only</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>lead</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.6</version> ! <date>2004-04-01</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <filelist> ! <file role="build" name="com.zzoss.config/config.xml-dist"/> ! </filelist> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.zic.plugin.config" rel="ge" version="2.0.0"/> ! </builds> ! </release> ! </package> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:57:37
|
Update of /cvsroot/zzoss/packages/com.zzoss.repository.build/com.zzoss.config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28091/com.zzoss.config Modified Files: config.xml-dist input.xml Log Message: adapted files to new installer architecture Index: input.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.repository.build/com.zzoss.config/input.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** input.xml 7 May 2003 16:15:27 -0000 1.1.1.1 --- input.xml 10 May 2004 13:57:27 -0000 1.2 *************** *** 1,38 **** ! <?xml version="1.0" encoding="utf-8"?> ! <!-- ! Copyright (C) 2001-2003 ZZOSS GbR, http://www.zzoss.com ! ! 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. ! ! $Id$ ! --> ! ! <input xmlns="http://www.zzoss.com"> ! <widget name="id" label="Network ID" ! variable="zzoss_repositories_network" ! validation="not empty" default="1" /> ! <widget name="id" label="Community ID" ! variable="zzoss_repositories_community" ! validation="not empty" default="1" /> ! <widget name="dsn" label="Installer DSN" ! variable="zzoss_repositories_installer_dsn" ! validation="not empty" default="mysql://root:@localhost/zzoss" /> ! <widget name="api" label="Installer API" ! variable="zzoss_repositories_installer_api" ! validation="not empty" default="PHP::PEAR::DB"/> ! <widget name="dsn" label="Manipulation DSN" ! variable="zzoss_repositories_manipulation_dsn" ! validation="not empty" default="mysql://root:@localhost/zzoss" /> ! <widget name="api" label="Manipulation API" ! variable="zzoss_repositories_manipulation_api" default="ZZOSS::Repository::PHP::PEAR::DB" ! validation="not empty" /> ! <widget name="dsn" label="Retrieval DSN" ! variable="zzoss_repositories_retrieval_dsn" ! validation="not empty" default="mysql://root:@localhost/zzoss" /> ! <widget name="api" label="Retrieval API" ! variable="zzoss_repositories_retrieval_api" default="ZZOSS::Repository::PHP::PEAR::DB" ! validation="not empty"/> </input> \ No newline at end of file --- 1,38 ---- ! <?xml version="1.0" encoding="utf-8"?> ! <!-- ! Copyright (C) 2001-2003 ZZOSS GbR, http://www.zzoss.com ! ! 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. ! ! $Id$ ! --> ! ! <input xmlns="http://www.zzoss.com"> ! <widget name="id" label="Network ID" ! variable="zi_repositories_network" ! validation="not empty" default="1" /> ! <widget name="id" label="Community ID" ! variable="zi_repositories_community" ! validation="not empty" default="1" /> ! <widget name="dsn" label="Installer DSN" ! variable="zi_repositories_installer_dsn" ! validation="not empty" default="mysql://root:@localhost/zzoss" /> ! <widget name="api" label="Installer API" ! variable="zi_repositories_installer_api" ! validation="not empty" default="PHP::PEAR::DB"/> ! <widget name="dsn" label="Manipulation DSN" ! variable="zi_repositories_manipulation_dsn" ! validation="not empty" default="mysql://root:@localhost/zzoss" /> ! <widget name="api" label="Manipulation API" ! variable="zi_repositories_manipulation_api" default="ZZOSS::Repository::PHP::PEAR::DB" ! validation="not empty" /> ! <widget name="dsn" label="Retrieval DSN" ! variable="zi_repositories_retrieval_dsn" ! validation="not empty" default="mysql://root:@localhost/zzoss" /> ! <widget name="api" label="Retrieval API" ! variable="zi_repositories_retrieval_api" default="ZZOSS::Repository::PHP::PEAR::DB" ! validation="not empty"/> </input> \ No newline at end of file Index: config.xml-dist =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.repository.build/com.zzoss.config/config.xml-dist,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** config.xml-dist 7 Jul 2003 11:26:38 -0000 1.4 --- config.xml-dist 10 May 2004 13:57:27 -0000 1.5 *************** *** 12,47 **** <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="zzoss_repositories"> <paths> ! <param name="root">{ZI_url_rel}mod/zzoss_repositories/</param> ! <param name="templates" context="_absolute">{ZI_root}data/zzoss_repositories/templates/</param> ! <param name="schemas" context="_absolute">{ZI_root}data/zzoss_repositories/schemas/</param> ! <param name="xforms" context="_absolute">{ZI_root}data/zzoss_repositories/xforms/</param> ! <param name="import" context="_absolute">{ZI_root}data/zzoss_repositories/import/</param> </paths> <params> ! <param name="network">{ZI_zzoss_repositories_network}</param> ! <param name="community">{ZI_zzoss_repositories_community}</param> </params> <connector name="installer"> ! <dsn>{ZI_zzoss_repositories_installer_dsn}</dsn> <properties> ! <api>{ZI_zzoss_repositories_installer_api}</api> <schema>zzoss_repositories</schema> </properties> </connector> <connector name="retrieval"> ! <dsn>{ZI_zzoss_repositories_retrieval_dsn}</dsn> <properties> ! <api>{ZI_zzoss_repositories_retrieval_api}</api> <schema>zzoss_repositories</schema> </properties> </connector> <connector name="manipulation"> ! <dsn>{ZI_zzoss_repositories_manipulation_dsn}</dsn> <properties> ! <api>{ZI_zzoss_repositories_manipulation_api}</api> <schema>zzoss_repositories</schema> </properties> --- 12,47 ---- <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="com.zzoss.repository.build"> <paths> ! <param name="root">{zi_application_url_rel}mod/zzoss_repositories/</param> ! <param name="templates" context="_absolute">{zi_application_root}data/zzoss_repositories/templates/</param> ! <param name="schemas" context="_absolute">{zi_application_root}data/zzoss_repositories/schemas/</param> ! <param name="xforms" context="_absolute">{zi_application_root}data/zzoss_repositories/xforms/</param> ! <param name="import" context="_absolute">{zi_application_root}data/zzoss_repositories/import/</param> </paths> <params> ! <param name="network">{zi_repositories_network}</param> ! <param name="community">{zi_repositories_community}</param> </params> <connector name="installer"> ! <dsn>{zi_repositories_installer_dsn}</dsn> <properties> ! <api>{zi_repositories_installer_api}</api> <schema>zzoss_repositories</schema> </properties> </connector> <connector name="retrieval"> ! <dsn>{zi_repositories_retrieval_dsn}</dsn> <properties> ! <api>{zi_repositories_retrieval_api}</api> <schema>zzoss_repositories</schema> </properties> </connector> <connector name="manipulation"> ! <dsn>{zi_repositories_manipulation_dsn}</dsn> <properties> ! <api>{zi_repositories_manipulation_api}</api> <schema>zzoss_repositories</schema> </properties> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:57:36
|
Update of /cvsroot/zzoss/packages/com.zzoss.repository.build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28091 Modified Files: package.xml Log Message: adapted files to new installer architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.repository.build/package.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.xml 6 Jul 2003 14:06:55 -0000 1.5 --- package.xml 10 May 2004 13:57:27 -0000 1.6 *************** *** 1,43 **** ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.repository.build</name> ! <summary>ZZ/OSS Repository Build Files</summary> ! <description>Build files only.</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>lead</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.5</version> ! <date>2003-03-17</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.repository</dep> ! <!--<dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.connector</dep>--> ! </deps> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.installer.plugin.config" rel="ge" version="0.5"> ! <params> ! <name>zzoss_repositories</name> ! </params> ! </build> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.installer.plugin.repository" rel="ge" version="0.5"> ! <params> ! <schema>zzoss_repositories</schema> ! </params> ! </build> ! <!--<build dir="com.zzoss.connector/" plugin="com.zzoss.installer.plugin.connector" rel="ge" version="0.5" />--> ! </builds> ! </release> ! </package> --- 1,36 ---- ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.repository.build</name> ! <summary>ZZ/OSS Repository Build Files</summary> ! <description>Build files only.</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>lead</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.6</version> ! <date>2004-04-01</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <filelist> ! <file role="build" name="com.zzoss.repository/new/structure.xsd"/> ! <file role="build" name="com.zzoss.config/config.xml-dist"/> ! <file role="build" name="com.zzoss.config/input.xml"/> ! <file role="build" name="com.zzoss.connector/api.xml"/> ! </filelist> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.zic.plugin.config" rel="ge" version="2.0.0"/> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.zic.plugin.repository" rel="ge" version="0.1.0"/> ! <!--<build dir="com.zzoss.connector/" plugin="com.zzoss.installer.plugin.connector" rel="ge" version="0.5" />--> ! </builds> ! </release> ! </package> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:57:18
|
Update of /cvsroot/zzoss/packages/com.zzoss.phportlet.build/com.zzoss.config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28033/com.zzoss.config Modified Files: config.xml-dist Log Message: adapted files to new installer architecture Index: config.xml-dist =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.phportlet.build/com.zzoss.config/config.xml-dist,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** config.xml-dist 4 Jul 2003 15:34:59 -0000 1.3 --- config.xml-dist 10 May 2004 13:57:09 -0000 1.4 *************** *** 12,19 **** <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="dserv_phportlets"> <paths> ! <param name="root">{ZI_url_rel}mod/dserv_phportlets/</param> ! <param name="packages" context="_absolute">{ZI_root}mod/dserv_phportlets/packages/</param> </paths> </component> --- 12,19 ---- <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="com.zzoss.phportlet.build"> <paths> ! <param name="root">{zi_application_url_rel}mod/dserv_phportlets/</param> ! <param name="packages" context="_absolute">{zi_application_root}mod/dserv_phportlets/packages/</param> </paths> </component> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:57:18
|
Update of /cvsroot/zzoss/packages/com.zzoss.phportlet.build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28033 Modified Files: package.xml Log Message: adapted files to new installer architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.phportlet.build/package.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** package.xml 6 Jul 2003 14:06:55 -0000 1.4 --- package.xml 10 May 2004 13:57:09 -0000 1.5 *************** *** 14,34 **** </maintainers> <release> ! <version>0.5</version> ! <date>2003-03-17</date> <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> <state>beta</state> <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! </deps> <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.installer.plugin.config" rel="ge" version="0.5"> ! <params> ! <name>dserv_phportlets</name> ! </params> ! </build> </builds> </release> --- 14,30 ---- </maintainers> <release> ! <version>0.6</version> ! <date>2004-04-01</date> <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> <state>beta</state> <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <filelist> ! <file role="build" name="com.zzoss.config/config.xml-dist"/> ! </filelist> <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.zic.plugin.config" rel="ge" version="2.0.0"/> </builds> </release> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:56:57
|
Update of /cvsroot/zzoss/packages/com.zzoss.package_repository.build/com.zzoss.config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27898/com.zzoss.config Modified Files: config.xml-dist Log Message: adapted files to new installer architecture Index: config.xml-dist =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.package_repository.build/com.zzoss.config/config.xml-dist,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config.xml-dist 6 Jul 2003 17:30:33 -0000 1.2 --- config.xml-dist 10 May 2004 13:56:48 -0000 1.3 *************** *** 12,38 **** <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="zzoss_package_repository"> <paths> ! <param name="root">{ZI_url_rel}mod/zzoss_package_repository/</param> </paths> <connector name="installer"> ! <dsn>{ZI_zzoss_package_repository_installer_dsn}</dsn> <properties> ! <api>{ZI_zzoss_package_repository_installer_api}</api> <schema>zzoss_package_repository</schema> </properties> </connector> <connector name="retrieval"> ! <dsn>{ZI_zzoss_package_repository_retrieval_dsn}</dsn> <properties> ! <api>{ZI_zzoss_package_repository_retrieval_api}</api> <schema>zzoss_package_repository</schema> </properties> </connector> <connector name="manipulation"> ! <dsn>{ZI_zzoss_package_repository_manipulation_dsn}</dsn> <properties> ! <api>{ZI_zzoss_package_repository_manipulation_api}</api> <schema>zzoss_package_repository</schema> </properties> --- 12,38 ---- <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="com.zzoss.package_repository.build"> <paths> ! <param name="root">{zi_application_url_rel}mod/zzoss_package_repository/</param> </paths> <connector name="installer"> ! <dsn>{zzoss_package_repository_installer_dsn}</dsn> <properties> ! <api>{zzoss_package_repository_installer_api}</api> <schema>zzoss_package_repository</schema> </properties> </connector> <connector name="retrieval"> ! <dsn>{zzoss_package_repository_retrieval_dsn}</dsn> <properties> ! <api>{zzoss_package_repository_retrieval_api}</api> <schema>zzoss_package_repository</schema> </properties> </connector> <connector name="manipulation"> ! <dsn>{zzoss_package_repository_manipulation_dsn}</dsn> <properties> ! <api>{zzoss_package_repository_manipulation_api}</api> <schema>zzoss_package_repository</schema> </properties> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:56:57
|
Update of /cvsroot/zzoss/packages/com.zzoss.package_repository.build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27898 Modified Files: package.xml Log Message: adapted files to new installer architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.package_repository.build/package.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** package.xml 6 Jul 2003 16:45:57 -0000 1.2 --- package.xml 10 May 2004 13:56:48 -0000 1.3 *************** *** 1,44 **** ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.package_repository.build</name> ! <summary>ZZ/OSS Package Repository Build files</summary> ! <description>This repository stores metadata about software packages.</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>developer</role> ! </maintainer> ! </maintainers> ! <release> ! <version>1.0</version> ! <date>2003-07-09</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.repository</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.repository.build</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.community_repository.build</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.network_repository.build</dep> ! </deps> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.installer.plugin.config" rel="ge" version="0.5"> ! <params> ! <name>zzoss_package_repository</name> ! </params> ! </build> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.installer.plugin.repository" rel="ge" version="0.5"> ! <params> ! <schema>zzoss_package_repository</schema> ! </params> ! </build> ! </builds> ! </release> ! </package> --- 1,40 ---- ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.package_repository.build</name> ! <summary>ZZ/OSS Package Repository Build files</summary> ! <description>This repository stores metadata about software packages.</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>developer</role> ! </maintainer> ! </maintainers> ! <release> ! <version>1.0</version> ! <date>2004-04-01</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.6">com.zzoss.repository.build</dep> ! <dep type="pkg" rel="ge" version="0.6">com.zzoss.community_repository.build</dep> ! <dep type="pkg" rel="ge" version="0.6">com.zzoss.network_repository.build</dep> ! </deps> ! <filelist> ! <file role="build" name="com.zzoss.repository/new/structure.xsd"/> ! <file role="build" name="com.zzoss.repository/new/demo.xml"/> ! <file role="build" name="com.zzoss.config/config.xml-dist"/> ! <file role="build" name="com.zzoss.config/input.xml"/> ! </filelist> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.zic.plugin.config" rel="ge" version="2.0.0"/> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.zic.plugin.repository" rel="ge" version="0.1.0"/> ! </builds> ! </release> ! </package> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:56:24
|
Update of /cvsroot/zzoss/packages/com.zzoss.network_repository.build/com.zzoss.config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27793/com.zzoss.config Modified Files: config.xml-dist Log Message: adapted files to new installer architecture Index: config.xml-dist =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.network_repository.build/com.zzoss.config/config.xml-dist,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** config.xml-dist 4 Jul 2003 15:34:59 -0000 1.3 --- config.xml-dist 10 May 2004 13:56:14 -0000 1.4 *************** *** 12,38 **** <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="zzoss_networks_repository"> <paths> ! <param name="root">{ZI_url_rel}mod/zzoss_networks_repository/</param> </paths> <connector name="installer"> ! <dsn>{ZI_zzoss_networks_repository_installer_dsn}</dsn> <properties> ! <api>{ZI_zzoss_networks_repository_installer_api}</api> <schema>zzoss_networks_repository</schema> </properties> </connector> <connector name="retrieval"> ! <dsn>{ZI_zzoss_networks_repository_retrieval_dsn}</dsn> <properties> ! <api>{ZI_zzoss_networks_repository_retrieval_api}</api> <schema>zzoss_networks_repository</schema> </properties> </connector> <connector name="manipulation"> ! <dsn>{ZI_zzoss_networks_repository_manipulation_dsn}</dsn> <properties> ! <api>{ZI_zzoss_networks_repository_manipulation_api}</api> <schema>zzoss_networks_repository</schema> </properties> --- 12,38 ---- <zzoss_config xmlns="http://www.zzoss.com/software/namespaces/config"> ! <component name="com.zzoss.networks_repository.build"> <paths> ! <param name="root">{zi_application_url_rel}mod/zzoss_networks_repository/</param> </paths> <connector name="installer"> ! <dsn>{zzoss_networks_repository_installer_dsn}</dsn> <properties> ! <api>{zzoss_networks_repository_installer_api}</api> <schema>zzoss_networks_repository</schema> </properties> </connector> <connector name="retrieval"> ! <dsn>{zzoss_networks_repository_retrieval_dsn}</dsn> <properties> ! <api>{zzoss_networks_repository_retrieval_api}</api> <schema>zzoss_networks_repository</schema> </properties> </connector> <connector name="manipulation"> ! <dsn>{zzoss_networks_repository_manipulation_dsn}</dsn> <properties> ! <api>{zzoss_networks_repository_manipulation_api}</api> <schema>zzoss_networks_repository</schema> </properties> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:56:23
|
Update of /cvsroot/zzoss/packages/com.zzoss.network_repository.build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27793 Modified Files: package.xml Log Message: adapted files to new installer architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.network_repository.build/package.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package.xml 6 Jul 2003 14:06:55 -0000 1.5 --- package.xml 10 May 2004 13:56:14 -0000 1.6 *************** *** 1,42 **** ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.network_repository.build</name> ! <summary>ZZ/OSS Networks Repository Build files</summary> ! <description>This repository stores metadata about content networks. It is an integral part of the Content Network System.</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>developer</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.5</version> ! <date>2003-03-17</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.repository</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.repository.build</dep> ! </deps> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.installer.plugin.config" rel="ge" version="0.5"> ! <params> ! <name>zzoss_networks_repository</name> ! </params> ! </build> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.installer.plugin.repository" rel="ge" version="0.5"> ! <params> ! <schema>zzoss_networks_repository</schema> ! </params> ! </build> ! </builds> ! </release> ! </package> --- 1,44 ---- ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.network_repository.build</name> ! <summary>ZZ/OSS Networks Repository Build files</summary> ! <description>This repository stores metadata about content networks. It is an integral part of the Content Network System.</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>developer</role> ! </maintainer> ! <maintainer> ! <user>czonsius</user> ! <name>Christian Zonsius</name> ! <email>chr...@zz...</email> ! <role>developer</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.6</version> ! <date>2004-04-01</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.6">com.zzoss.repository.build</dep> ! </deps> ! <filelist> ! <file role="build" name="com.zzoss.repository/new/structure.xsd"/> ! <file role="build" name="com.zzoss.config/config.xml-dist"/> ! <file role="build" name="com.zzoss.config/input.xml"/> ! <file role="build" name="com.zzoss.repositories/new/structure.xsd"/> ! </filelist> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.zic.plugin.config" rel="ge" version="2.0.0"/> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.zic.plugin.repository" rel="ge" version="0.1.0"/> ! </builds> ! </release> ! </package> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:55:51
|
Update of /cvsroot/zzoss/packages/com.zzoss.harvester.build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27690 Modified Files: package.xml Log Message: adapted package.xml to new installer architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.harvester.build/package.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** package.xml 6 Jul 2003 14:06:55 -0000 1.4 --- package.xml 10 May 2004 13:55:40 -0000 1.5 *************** *** 1,42 **** ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.harvester.build</name> ! <summary>ZZ/OSS Harvester Module Build Files</summary> ! <description>Build files only</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>lead</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.5</version> ! <date>2003-03-17</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.repository</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.repository.build</dep> ! </deps> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.installer.plugin.config" rel="ge" version="0.5"> ! <params> ! <name>zzoss_harvester</name> ! </params> ! </build> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.installer.plugin.repository" rel="ge" version="0.5"> ! <params> ! <schema>zzoss_harvester</schema> ! </params> ! </build> ! </builds> ! </release> ! </package> --- 1,34 ---- ! <?xml version="1.0" encoding="ISO-8859-1" ?> ! <package version="1.0" ! xmlns="http://www.zzoss.com/NS/installer/package/"> ! <name>com.zzoss.harvester.build</name> ! <summary>ZZ/OSS Harvester Module Build Files</summary> ! <description>Build files only</description> ! <maintainers> ! <maintainer> ! <user>ordnas</user> ! <name>Sandro Zic</name> ! <email>san...@zz...</email> ! <role>lead</role> ! </maintainer> ! </maintainers> ! <release> ! <version>0.6</version> ! <date>2004-04-01</date> ! <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> ! <state>beta</state> ! <notes>Initial release.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.repository</dep> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.repository.build</dep> ! </deps> ! <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.zic.plugin.config" rel="ge" version="2.0.0"/> ! <build dir="com.zzoss.repository/" plugin="com.zzoss.zic.plugin.repository" rel="ge" version="0.1.0"/> ! </builds> ! </release> ! </package> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:54:35
|
Update of /cvsroot/zzoss/packages/com.zzoss.framework.lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27466 Modified Files: Framework.php Log Message: fixed eval bug Index: Framework.php =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.framework.lib/Framework.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Framework.php 2 Apr 2004 18:50:50 -0000 1.4 --- Framework.php 10 May 2004 13:54:25 -0000 1.5 *************** *** 158,164 **** $connector->setDSN( $dsn ); // the root path where all connectors are located ! $connector->setRoot( ZZOSS_Framework::conf('zzoss_connectors/paths/root_apis') ); // the connector configuration ! $connector->setConfig( ZZOSS_Framework::conf('zzoss_connectors/api/'.$api) ); // pass connection return $connector->getConnection(); --- 158,164 ---- $connector->setDSN( $dsn ); // the root path where all connectors are located ! $connector->setRoot( ZZOSS_Framework::conf('com.zzoss.connector.build/paths/root_apis') ); // the connector configuration ! $connector->setConfig( ZZOSS_Framework::conf('com.zzoss.connector.build/api/'.$api) ); // pass connection return $connector->getConnection(); *************** *** 435,439 **** if(!isset($data)){ // compose the path relatvie to root of the current script ! $page_url = substr($_SERVER['PHP_SELF'], strlen(ZZOSS_Framework::conf('framework/paths/url_rel'))); // get the page URI $retrieval = ZZOSS_Framework::connect('pages_repository/connector/retrieval'); --- 435,439 ---- if(!isset($data)){ // compose the path relatvie to root of the current script ! $page_url = substr($_SERVER['PHP_SELF'], strlen(ZZOSS_Framework::conf('com.zzoss.framework.build/paths/url_rel'))); // get the page URI $retrieval = ZZOSS_Framework::connect('pages_repository/connector/retrieval'); *************** *** 458,471 **** switch($field){ case 'css_default': ! $data[$field] = ZZOSS_Framework::conf('themes/paths/files/display').'admin/1/css/default.css'; break; case 'css_print': ! $data[$field] = ZZOSS_Framework::conf('themes/paths/files/display').'admin/1/css/print.css'; break; case 'path_images': ! $data[$field] = ZZOSS_Framework::conf('themes/paths/files/display').'admin/1/img/'; break; case 'path_icons': ! $data[$field] = ZZOSS_Framework::conf('themes/paths/files/display').'admin/1/icons/'; break; case 'link_print': --- 458,471 ---- switch($field){ case 'css_default': ! $data[$field] = ZZOSS_Framework::conf('com.zzoss.theme.build/paths/files/display').'admin/1/css/default.css'; break; case 'css_print': ! $data[$field] = ZZOSS_Framework::conf('com.zzoss.theme.build/paths/files/display').'admin/1/css/print.css'; break; case 'path_images': ! $data[$field] = ZZOSS_Framework::conf('com.zzoss.theme.build/paths/files/display').'admin/1/img/'; break; case 'path_icons': ! $data[$field] = ZZOSS_Framework::conf('com.zzoss.theme.build/paths/files/display').'admin/1/icons/'; break; case 'link_print': *************** *** 502,506 **** } //echo ZZOSS_Framework::conf('themes/paths/files/storage').'admin/'.$theme.'/header.php'; ! include_once ZZOSS_Framework::conf('themes/paths/files/storage').'admin/'.$theme.'/header/'.$style.'.php'; } --- 502,506 ---- } //echo ZZOSS_Framework::conf('themes/paths/files/storage').'admin/'.$theme.'/header.php'; ! include_once ZZOSS_Framework::conf('com.zzoss.theme.build/paths/files/storage').'admin/'.$theme.'/header/'.$style.'.php'; } *************** *** 513,517 **** $style = 'default'; } ! include_once ZZOSS_Framework::conf('themes/paths/files/storage').'admin/'.$theme.'/footer/'.$style.'.php'; } } --- 513,517 ---- $style = 'default'; } ! include_once ZZOSS_Framework::conf('com.zzoss.theme.build/paths/files/storage').'admin/'.$theme.'/footer/'.$style.'.php'; } } |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:52:56
|
Update of /cvsroot/zzoss/packages/com.zzoss.framework.build/com.zzoss.config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27056/com.zzoss.config Modified Files: config.xml-dist config_files.xml Log Message: adapted files to new installer plugin architecture Index: config.xml-dist =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.framework.build/com.zzoss.config/config.xml-dist,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** config.xml-dist 9 Jul 2003 15:30:21 -0000 1.6 --- config.xml-dist 10 May 2004 13:52:47 -0000 1.7 *************** *** 12,27 **** <zzoss_config xmlns="http://www.zzoss.com"> ! <component name="zzoss_framework"> <dependency name="php"> <param name="version">4.2.0</param> </dependency> <paths> ! <param name="root">{ZI_url_rel}mod/zzoss_framework/</param> ! <param name="wwwhome" context="_absolute">{ZI_root}</param> ! <param name="url" context="_absolute">{ZI_url}</param> ! <param name="url_rel" context="_absolute">{ZI_url_rel}</param> ! <param name="config" context="_absolute">{ZI_data}zzoss_config/</param> ! <param name="data" context="_absolute">{ZI_data}</param> ! <param name="data_rel" context="_absolute">{ZI_data_rel}</param> </paths> </component> --- 12,27 ---- <zzoss_config xmlns="http://www.zzoss.com"> ! <component name="com.zzoss.framework.build"> <dependency name="php"> <param name="version">4.2.0</param> </dependency> <paths> ! <param name="root">{zi_application_url_rel}mod/zzoss_framework/</param> ! <param name="wwwhome" context="_absolute">{zi_application_root}</param> ! <param name="url" context="_absolute">{zi_application_url}</param> ! <param name="url_rel" context="_absolute">{zi_application_url_rel}</param> ! <param name="config" context="_absolute">{zi_application_data_dir}zzoss_config/</param> ! <param name="data" context="_absolute">{zi_application_data_dir}</param> ! <param name="data_rel" context="_absolute">{zi_application_data_dir_rel}</param> </paths> </component> Index: config_files.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.framework.build/com.zzoss.config/config_files.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** config_files.xml 5 Jul 2003 13:22:44 -0000 1.1 --- config_files.xml 10 May 2004 13:52:47 -0000 1.2 *************** *** 13,28 **** <zzoss_config_files> <filelist> ! <file role="htaccess" save-as="{ZI_root}.htaccess"> # include paths of libraries\r\n ! php_value "include_path" "{ZI_include_path}"\r\n \r\n # set super global $_SERVER['ZZOSS_PATH_TRANSLATED']\r\n # with root of application assigned\r\n ! setenv ZZOSS_PATH_TRANSLATED "{ZI_root}"\r\n \r\n # startup routines of framework\r\n ! php_value "auto_prepend_file" "{ZI_root}mod/zzoss_framework/startup.php"\r\n # shutdown routines of framework\r\n ! php_value "auto_append_file" "{ZI_root}mod/zzoss_framework/shutdown.php"\r\n \r\n \r\n --- 13,28 ---- <zzoss_config_files> <filelist> ! <file role="htaccess" save-as="{zi_application_root}.htaccess"> # include paths of libraries\r\n ! php_value "include_path" "{zi_application_include_path}"\r\n \r\n # set super global $_SERVER['ZZOSS_PATH_TRANSLATED']\r\n # with root of application assigned\r\n ! setenv ZZOSS_PATH_TRANSLATED "{zi_application_root}"\r\n \r\n # startup routines of framework\r\n ! php_value "auto_prepend_file" "{zi_application_root}mod/zzoss_framework/startup.php"\r\n # shutdown routines of framework\r\n ! php_value "auto_append_file" "{zi_application_root}mod/zzoss_framework/shutdown.php"\r\n \r\n \r\n |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:52:56
|
Update of /cvsroot/zzoss/packages/com.zzoss.framework.build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27056 Modified Files: package.xml Log Message: adapted files to new installer plugin architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.framework.build/package.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** package.xml 6 Jul 2003 14:06:54 -0000 1.4 --- package.xml 10 May 2004 13:52:47 -0000 1.5 *************** *** 20,25 **** </maintainers> <release> ! <version>1.0</version> ! <date>2003-01-12</date> <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> <state>stable</state> --- 20,25 ---- </maintainers> <release> ! <version>1.1</version> ! <date>2004-04-01</date> <license url="http://www.gnu.org/licenses/gpl.txt" version="2">GPL</license> <state>stable</state> *************** *** 28,40 **** <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> </copyright> ! <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.installer.plugin.config</dep> ! </deps> <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.installer.plugin.config" rel="ge" version="0.5"> ! <params> ! <name>zzoss_framework</name> ! </params> ! </build> </builds> </release> --- 28,37 ---- <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> </copyright> ! <filelist> ! <file role="build" name="com.zzoss.config/config.xml-dist"/> ! <file role="build" name="com.zzoss.config/build.xml"/> ! </filelist> <builds> ! <build dir="com.zzoss.config/" plugin="com.zzoss.zic.plugin.config" rel="ge" version="2.0.0"/> </builds> </release> |
|
From: Christian Z. <czo...@us...> - 2004-05-10 13:52:28
|
Update of /cvsroot/zzoss/packages/com.zzoss.framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27002 Modified Files: package.xml Log Message: adapted package.xml to new installer architecture Index: package.xml =================================================================== RCS file: /cvsroot/zzoss/packages/com.zzoss.framework/package.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** package.xml 6 Jul 2003 14:06:54 -0000 1.4 --- package.xml 10 May 2004 13:52:19 -0000 1.5 *************** *** 25,38 **** <state>stable</state> <notes>Initial framework package.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> <filelist> ! <file baseinstalldir="zzoss_framework" name="shutdown.php"/> ! <file baseinstalldir="zzoss_framework" name="startup.php"/> </filelist> <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.config.lib</dep> ! <dep type="pkg" rel="ge" version="1.0">com.zzoss.framework.lib</dep> </deps> </release> --- 25,38 ---- <state>stable</state> <notes>Initial framework package.</notes> ! <copyright> ! <holder year="2003" url="http://www.zzoss.com">ZZ/OSS Information Networking GbR</holder> ! </copyright> <filelist> ! <file baseinstalldir="zzoss_framework" name="shutdown.php"/> ! <file baseinstalldir="zzoss_framework" name="startup.php"/> </filelist> <deps> ! <dep type="pkg" rel="ge" version="0.5">com.zzoss.config.lib</dep> ! <dep type="pkg" rel="ge" version="1.0.1">com.zzoss.framework.lib</dep> </deps> </release> |