- Timestamp:
- 15/10/10 19:28:47 (19 months ago)
- Location:
- trunk
- Files:
-
- 2 removed
- 7 modified
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (2 diffs)
-
debian/oak-framework.dirs (modified) (1 diff)
-
debian/oak-framework.install (modified) (1 diff)
-
doc/doxygen.conf (deleted)
-
doc/sample.config.php (modified) (3 diffs)
-
redhat/build (modified) (1 diff)
-
redhat/oak-framework.spec (modified) (3 diffs)
-
redhat/php-fpdf.spec (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/debian/changelog
r6 r42 1 oak-framework (0.2-1) testing; urgency=low 2 3 * Liberada versión 0.2. 4 5 -- Manuel Rubio <bombadil@bosqueviejo.net> Fri, 15 Oct 2010 18:33:00 +0200 6 1 7 oak-framework (0.1-1) testing; urgency=low 2 8 3 9 * Liberada versión 0.1. 4 10 5 -- Manuel Rubio < marubio@xtratelecom.es> Wed, 28 May 2008 13:02:00 +020011 -- Manuel Rubio <bombadil@bosqueviejo.net> Wed, 28 May 2008 13:02:00 +0200 -
trunk/debian/control
r12 r42 9 9 Package: oak-framework 10 10 Architecture: all 11 Depends: php5, php5-xsl, php-xml-serializer 12 Recommends: php5-sybase, php5-mysql, php5-pgsql 13 Suggests: php-fpdf 11 Depends: php5, php5-xsl, php-xml-serializer, smarty 14 12 Description: Marco de Trabajo Web para entorno Oak 15 13 Marco de Trabajo Web para entorno Oak. … … 19 17 o MultiAcceso: mediante el uso de clases de tipo Access. 20 18 o Internacionalización: mediante uso de gettext. 21 o Plantillas: meta-lenguage usando XSLT .19 o Plantillas: meta-lenguage usando XSLT o Smarty. 22 20 y muchas prestaciones más. -
trunk/debian/oak-framework.dirs
r6 r42 1 usr/bin2 1 usr/share/oak-framework 3 2 var/log/apache2/oak-framework -
trunk/debian/oak-framework.install
r6 r42 1 Oak.php usr/share/oak-framework 2 core usr/share/oak-framework 3 lib usr/share/oak-framework 4 modules usr/share/oak-framework 5 tools/oak-genweb usr/bin 6 tools/oak-genpot usr/bin 1 src/Oak.php usr/share/oak-framework 2 src/Oak usr/share/oak-framework -
trunk/doc/sample.config.php
r25 r42 3 3 // directorio de módulos 4 4 $modules_dir = "modules"; 5 6 // directorio de datos7 $data_dir = "data";8 5 9 6 // directorio de temas (o plantillas) … … 27 24 $default_action = "Oak::Login"; 28 25 29 // si se desea comprobar o no el entorno en la base de datos (XMLSocket) 30 $check_env = true; 31 32 // en caso de estar el entorno en esta variable, no se busca en la base de datos. 26 // entorno localhost 33 27 $environment = array ( 34 28 "localhost" => array ( … … 60 54 // Tiempo de expiración de la sesión por inactividad (por defecto, 3 horas = 10800) 61 55 $msession_expire = 10800; 62 63 ?> -
trunk/redhat/build
r12 r42 15 15 } 16 16 17 fpdf() {18 wget -O $DST/fpdf153.tgz "http://www.fpdf.org/es/dl.php?v=153&f=tgz"19 rpmbuild -ba $DIR/php-fpdf.spec20 }21 22 17 case "$1" in 23 "fpdf")24 fpdf25 ;;26 18 "oak") 27 19 oak 28 20 ;; 29 21 *) 30 fpdf31 22 oak 32 23 ;; -
trunk/redhat/oak-framework.spec
r12 r42 9 9 URL: http://project.bosqueviejo.net/oak 10 10 Packager: Manuel Rubio <bombadil@bosqueviejo.net> 11 Requires: httpd >= 2, php >= 5 , php-fpdf >= 1.5311 Requires: httpd >= 2, php >= 5 12 12 BuildArch: noarch 13 13 … … 27 27 %install 28 28 [ -d /usr/share/oak-framework ] || mkdir -p /usr/share/oak-framework 29 cp -r lib /usr/share/oak-framework 30 cp -r modules /usr/share/oak-framework 31 cp -r core /usr/share/oak-framework 29 cp -r Oak /usr/share/oak-framework 32 30 cp Oak.php /usr/share/oak-framework 33 cp tools/oak-genweb /usr/bin34 cp tools/oak-genpot /usr/bin35 31 chown -R root:root /usr/share/oak-framework 36 32 … … 45 41 %clean 46 42 rm -rf /usr/share/oak-framework 47 rm -f /usr/bin/oak-genweb48 rm -f /usr/bin/oak-genpot49 43 50 44 %files 51 45 /usr/share/oak-framework/Oak.php 52 /usr/share/oak-framework/lib 53 /usr/share/oak-framework/modules 54 /usr/share/oak-framework/core 55 /usr/bin/oak-genweb 56 /usr/bin/oak-genpot 46 /usr/share/oak-framework/Oak
