+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Directorio raíz del sistema en desarrollo.
-.
-|-- doc: Documentación del sistema y sus librerías.
-|
-|-- lib: Librerías generales del sistema que sirven para que otros sistemas
-| interactúen con éste.
-|
-|-- test: Directorio para archivos de prueba.
-|
-`-- sistema: Archivos del sistema en sí. Se compone de estos (posibles)
- | subdirectorios.
- |
- |-- conf: Archivos de configuración del sistema.
- |
- |-- local_lib: Librerías locales del sistema (sólo para uso interno).
- |
- `-- www: Directorio público. Aquí se encuentra todo lo que deba ser
- | visible desde el servidor web (incluyendo scripts PHP, imágenes,
- | scripts JavaScript y hojas de estilo).
- |
- |-- css: Hojas de estilo específicas del sistema.
- |
- |-- images: Imágenes específicas del sistema.
- |
- `-- js: JavaScript específico del sistema.
-
-NOTAS:
- * Para generar archivos de configuración de xmi2code y otras inicializaciones
- puede ejecutar 'make init'.
- * Para borrar este README y todos los de los demas directorios ejecute
- 'make clean-readme'.
-
# vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
#------------------------------------------------------------------------------
# Ministerio de Economía
-# <SISTEMA>
+# YATTA!
#------------------------------------------------------------------------------
-# This file is part of <SISTEMA>.
+# This file is part of YATTA!.
#
-# <SISTEMA> is free software; you can redistribute it and/or modify it under
+# YATTA! 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.
#
-# <SISTEMA> is distributed in the hope that it will be useful, but WITHOUT
+# YATTA! is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA 02111-1307 USA
#------------------------------------------------------------------------------
-# Creado: <FECHA>
-# Autor: <AUTOR>
+# Creado: mié nov 26 15:54:19 ART 2003
+# Autor: Martin Marrese <mmarre@mecon.gov.ar> - Gonzalo Merayo <gmeray@mecon.gov.ar>
#------------------------------------------------------------------------------
# $Id$
#------------------------------------------------------------------------------
#---------------------------------------------------------------------------
# General configuration options
#---------------------------------------------------------------------------
-PROJECT_NAME = <SISTEMA>
+PROJECT_NAME = YATTA!
PROJECT_NUMBER = $Rev$
OUTPUT_DIRECTORY = api
OUTPUT_LANGUAGE = Spanish
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Documentación del sistema y sus librerías.
-
<!-- vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 fdm=syntax:
===============================================================================
Ministerio de Economía
- <SISTEMA>
+ YATTA!
===============================================================================
-This file is part of <SISTEMA>.
+This file is part of YATTA!.
-<SISTEMA> is free software; you can redistribute it and/or modify it under
+YATTA! 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.
-<SISTEMA> is distributed in the hope that it will be useful, but WITHOUT
+YATTA! is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
===============================================================================
-Creado: <FECHA>
-Autor: <AUTOR>
+Creado: mié nov 26 15:54:19 ART 2003
+Autor: Martin Marrese <mmarre@mecon.gov.ar> - Gonzalo Merayo <gmeray@mecon.gov.ar>
===============================================================================
$Id$
=========================================================================== -->
<option key="php.pear.use-package-in-classnames" value="false"/>
<option key="php.pear.underscore-in-nonpublic" value="true"/>
<!-- Nombre del autor -->
- <option key="author" value="<AUTOR>"/>
+ <option key="author" value="Martin Marrese <mmarre@mecon.gov.ar> - Gonzalo Merayo <gmeray@mecon.gov.ar>"/>
</xmi2code>
<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
-------------------------------------------------------------------------------
Ministerio de Economía
- <SISTEMA>
+ YATTA!
-------------------------------------------------------------------------------
-This file is part of <SISTEMA>.
+This file is part of YATTA!.
-<SISTEMA> is free software; you can redistribute it and/or modify it under
+YATTA! 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.
-<SISTEMA> is distributed in the hope that it will be useful, but WITHOUT
+YATTA! is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Autor: @@author
-------------------------------------------------------------------------------
$Id$
------------------------------------------------------------------------------*/
\ No newline at end of file
+-----------------------------------------------------------------------------*/
+++ /dev/null
-#!/bin/sh
-#
-# Inicialización del repositorio
-#
-# $Id$
-#
-
-read -p 'Nombre del sistema: ' SISTEMA
-read -p 'Nombre y e-mail del autor (ej: Martín Caradagián <mcara@mecon.gov.ar>): ' AUTOR
-cat doc/xmi2code.config | awk "{ gsub(\"<FECHA>\", \"`date`\"); gsub(\"<SISTEMA>\", \"$SISTEMA\"); gsub(\"<AUTOR>\", \"$AUTOR\"); print }" > tmp
-cat tmp > doc/xmi2code.config
-cat doc/xmi2code.tpl.php | awk "{ gsub(\"<SISTEMA>\", \"$SISTEMA\"); gsub(\"<AUTOR>\", \"$AUTOR\"); print }" > tmp
-cat tmp > doc/xmi2code.tpl.php
-cat doc/Doxyfile | awk "{ gsub(\"<FECHA>\", \"`date`\"); gsub(\"<SISTEMA>\", \"$SISTEMA\"); gsub(\"<AUTOR>\", \"$AUTOR\"); print }" > tmp
-cat tmp > doc/Doxyfile
-rm -f tmp
-echo "Por favor edite los archivos doc/xmi2code.config, doc/xmi2code.tpl.php y doc/Doxyfile para ver que este todo bien..."
-vim -o doc/xmi2code.config doc/xmi2code.tpl.php doc/Doxyfile
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Librerías generales del sistema que sirven para que otros sistemas
-interactúen con éste.
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Archivos del sistema en sí. Se compone de estos (posibles)
-subdirectorios.
-
-.
-|-- conf: Archivos de configuración del sistema.
-|
-|-- local_lib: Librerías locales del sistema (sólo para uso interno).
-|
-`-- www: Directorio público. Aquí se encuentra todo lo que deba ser
- | visible desde el servidor web (incluyendo scripts PHP, imágenes,
- | scripts JavaScript y hojas de estilo).
- |
- |-- css: Hojas de estilo específicas del sistema.
- |
- |-- images: Imágenes específicas del sistema.
- |
- `-- js: JavaScript específico del sistema.
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Archivos de configuración del sistema.
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Librerías locales del sistema (sólo para uso interno).
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Directorio público. Aquí se encuentra todo lo que deba ser visible desde
-el servidor web (incluyendo scripts PHP, imágenes, scripts JavaScript y
-hojas de estilo).
-
-.
-|-- css: Hojas de estilo específicas del sistema.
-|
-|-- images: Imágenes específicas del sistema.
-|
-`-- js: JavaScript específico del sistema.
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Hojas de estilo específicas del sistema.
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Imágenes específicas del sistema.
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-JavaScript específico del sistema.
-
+++ /dev/null
-Descripción de los directorios:
-===============================
-
-$Id$
-
-Directorio para archivos de prueba.
-