[Alba-desarrollo] SVN Alba r4969 - in prosistem/alba/trunk/alba/apps/principal/modules: cuenta/templates default/templates docente/templates establecimiento/templates informes/templates usuario/templates

commits en pressenter.com.ar commits en pressenter.com.ar
Mie Ago 15 23:59:34 CEST 2007


Author: josx
Date: 2007-08-15 18:59:27 -0300 (Wed, 15 Aug 2007)
New Revision: 4969

Modified:
   prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_edit_header.php
   prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_nombre.php
   prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_tipo_iva.php
   prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/verCompletaSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/default/templates/error404Success.php
   prosistem/alba/trunk/alba/apps/principal/modules/default/templates/indexSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/docente/templates/actividadesPorDocenteSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_distritoescolar.php
   prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_nivel_tipo.php
   prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_organizacion.php
   prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/editLocacionSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionFormularioSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionListadoSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/boletinFormularioSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosBusquedaFormularioSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosListadoSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaFormularioSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaListadoSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularFormularioSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularListadoSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoBusquedaFormularioSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoListadoSuccess.php
   prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_edit_header.php
   prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_establecimiento.php
   prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/editPermisoSuccess.php
Log:
Sigo pasando de <? a <?php y <?= a <?php echo

Modified: prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_edit_header.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_edit_header.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_edit_header.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1 +1 @@
-<h1><?=($sf_params->get('action') == "create")?"Ingresar Cuenta":"Editar Cuenta";?></h1>
\ No newline at end of file
+<h1><?php echo ($sf_params->get('action') == "create")?"Ingresar Cuenta":"Editar Cuenta";?></h1>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_nombre.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_nombre.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_nombre.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1 +1 @@
-<? echo link_to($cuenta->getNombre(),'cuenta/verCompleta?id='.$cuenta->getId());?>
\ No newline at end of file
+<?php echo link_to($cuenta->getNombre(),'cuenta/verCompleta?id='.$cuenta->getId());?>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_tipo_iva.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_tipo_iva.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/_tipo_iva.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1 +1 @@
-<? echo link_to($cuenta->getTipoIva()->getNombre(),'tipoiva/edit?id='.$cuenta->getFkTipoIvaId());?>
\ No newline at end of file
+<?php echo link_to($cuenta->getTipoIva()->getNombre(),'tipoiva/edit?id='.$cuenta->getFkTipoIvaId());?>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/verCompletaSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/verCompletaSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/cuenta/templates/verCompletaSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -8,27 +8,27 @@
 <table align="center" class="sf_admin_list">
     <tr>
         <td>Nombre:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getNombre();?></td>
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getNombre();?></td>
         <td>Direcci&oacute;n:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getDireccion();?></td>
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getDireccion();?></td>
     </tr>
     <tr>    
         <td>Raz&oacute;n Social:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getRazonSocial();?></td>
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getRazonSocial();?></td>
         <td>Ciudad:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getCiudad();?></td>
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getCiudad();?></td>
     </tr>
     <tr>    
         <td>CUIT:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getCuit();?></td>
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getCuit();?></td>
         <td>CP:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getCodigoPostal();?></td>        
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getCodigoPostal();?></td>        
     </tr>
     <tr>    
         <td>Tipo IVA:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getTipoIva();?></td>
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getTipoIva();?></td>
         <td>Tel&eacute;fono:</td>
-        <td style="font-size: 15px;font-weight: bold"><?echo $cuenta->getTelefono();?></td>
+        <td style="font-size: 15px;font-weight: bold"><?php echo $cuenta->getTelefono();?></td>
     </tr>
 </table>    
 </div>
@@ -52,15 +52,15 @@
   </tr>
   </thead>
   <tbody>
-<?
+<?php
   foreach($aAlumno as $alumno){
 ?>
   <tr class="sf_admin_row_0">
-    <td><?echo $alumno->getApellido();?></td>
-    <td><?echo $alumno->getNombre();?></td>
-    <td><?echo $alumno->getNroDocumento();?></td>
-    <td><?echo $alumno->getSexo();?></td>
-    <td><?echo $alumno->getTelefono();?></td>
+    <td><?php echo $alumno->getApellido();?></td>
+    <td><?php echo $alumno->getNombre();?></td>
+    <td><?php echo $alumno->getNroDocumento();?></td>
+    <td><?php echo $alumno->getSexo();?></td>
+    <td><?php echo $alumno->getTelefono();?></td>
     <td>
       <ul class="sf_admin_td_actions">
         <li>
@@ -84,7 +84,7 @@
       </ul>
     </td>
   </tr>
-  <?}?>
+  <?php } ?>
   </tbody>
 <tfoot>
   <tr>
@@ -125,18 +125,18 @@
   </tr>
   </thead>
   <tbody>
-<?
+<?php
   foreach($aResponsable as $responsable){
 ?>
   <tr class="sf_admin_row_0">
-    <td><?echo $responsable->getApellido();?></td>
-    <td><?echo $responsable->getNombre();?></td>
-    <td><?echo $responsable->getNroDocumento();?></td>
-    <td><?echo $responsable->getDireccion();?></td>
-    <td><?echo $responsable->getCiudad();?></td>
-    <td><?echo $responsable->getRolResponsable();?></td>
-    <td><?echo $responsable->getAutorizacionRetiro() == 1 ? "Si" : "No";?></td>
-    <td><?echo $responsable->getTelefono();?></td>
+    <td><?php echo $responsable->getApellido();?></td>
+    <td><?php echo $responsable->getNombre();?></td>
+    <td><?php echo $responsable->getNroDocumento();?></td>
+    <td><?php echo $responsable->getDireccion();?></td>
+    <td><?php echo $responsable->getCiudad();?></td>
+    <td><?php echo $responsable->getRolResponsable();?></td>
+    <td><?php echo $responsable->getAutorizacionRetiro() == 1 ? "Si" : "No";?></td>
+    <td><?php echo $responsable->getTelefono();?></td>
     <td>
       <ul class="sf_admin_td_actions">
         <li>
@@ -148,7 +148,7 @@
       </ul>
     </td>
   </tr>
-  <?}?>
+  <?php }?>
   </tbody>
 <tfoot>
   <tr>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/default/templates/error404Success.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/default/templates/error404Success.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/default/templates/error404Success.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -5,7 +5,7 @@
         <h1>404 - No Encontrado</h1>
     
         <div class="error">
-            <p>M&oacute;dulo: <?echo $sf_params->get('module')?>, Acci&oacute;n: <? echo $sf_params->get('action')?></p>
+            <p>M&oacute;dulo: <?php echo $sf_params->get('module')?>, Acci&oacute;n: <?php echo $sf_params->get('action')?></p>
         </div>
         <p>
             <i>La direcci&oacute;n URL que ha requerido no se encontr&oacute; en &eacute;ste servidor.</i>
@@ -14,5 +14,5 @@
             <br/>
         </p>
         <p>&nbsp;</p>
-        <p><?echo link_to("Volver al Inicio","/")?></p>
+        <p><?php echo link_to("Volver al Inicio","/")?></p>
     </div>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/default/templates/indexSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/default/templates/indexSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/default/templates/indexSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -12,7 +12,7 @@
 <table align="center">
     <tr>
         <td>
-            <?=image_tag("gnu-head-banner.png");?>
+            <?php echo image_tag("gnu-head-banner.png");?>
         </td>
         <td>
             &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
@@ -35,7 +35,7 @@
 <table align="center">
     <tr>
         <td>
-            <?=image_tag("bug.jpg");?>
+            <?php echo image_tag("bug.jpg");?>
         </td>
         <td>
             &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
@@ -64,21 +64,21 @@
     <ul>
         <li>Informaci&oacute;n del Sistema
             <ul>
-                <li>PHP: <?echo phpversion()?></li>
+                <li>PHP: <?php echo phpversion()?></li>
             </ul>
         </li>
         <li>Permisos:
             <ul>
-            <? foreach ($sf_user->listCredentials() as $permiso):?>
-            <li><?echo $permiso?></li>
-            <?endforeach;?>
+            <?php foreach ($sf_user->listCredentials() as $permiso):?>
+            <li><?php echo $permiso?></li>
+            <?php endforeach;?>
             </ul>
         </li>
         <li>Establecimientos:
             <ul>
                 <?php $establecimientos = $sf_user->getEstablecimientos()?>
                 <?php foreach ($establecimientos as $establecimiento): ?>
-                    <li><?echo $establecimiento?></li>
+                    <li><?php echo $establecimiento?></li>
                 <?php endforeach; ?>
             </ul>
         </li>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/docente/templates/actividadesPorDocenteSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/docente/templates/actividadesPorDocenteSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/docente/templates/actividadesPorDocenteSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -31,10 +31,10 @@
   <tr class="sf_admin_row_0">
     <td>
 
-   <?echo $actividad->getRelAnioActividad()->getActividad()->getNombre()." de  ".$actividad->getRelAnioActividad()->getAnio()->getDescripcion()." ".(($actividad->getRelAnioActividad()->getOrientacion())?" de ".$actividad->getRelAnioActividad()->getOrientacion()->getNombre():"");?>
+   <?php echo $actividad->getRelAnioActividad()->getActividad()->getNombre()." de  ".$actividad->getRelAnioActividad()->getAnio()->getDescripcion()." ".(($actividad->getRelAnioActividad()->getOrientacion())?" de ".$actividad->getRelAnioActividad()->getOrientacion()->getNombre():"");?>
     </td>
   </tr>
-  <?}?>
+  <?php } ?>
   </tbody>
 <tfoot>
   <tr>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_distritoescolar.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_distritoescolar.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_distritoescolar.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1,4 +1,4 @@
-<? 
+<?php
 if($establecimiento->getFkDistritoescolarId()) {
     echo $establecimiento->getDistritoescolar()->getNombre();
 }

Modified: prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_nivel_tipo.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_nivel_tipo.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_nivel_tipo.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1 +1 @@
-<?=$establecimiento->getNivelTipo()->getNombre()?>
\ No newline at end of file
+<?php echo $establecimiento->getNivelTipo()->getNombre()?>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_organizacion.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_organizacion.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/_organizacion.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1 +1 @@
-<? echo link_to($establecimiento->getOrganizacion()->getNombre(),'organizacion/edit?id='.$establecimiento->getFkOrganizacionId());?>
\ No newline at end of file
+<?php echo link_to($establecimiento->getOrganizacion()->getNombre(),'organizacion/edit?id='.$establecimiento->getFkOrganizacionId());?>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/editLocacionSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/editLocacionSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/establecimiento/templates/editLocacionSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -5,7 +5,7 @@
     </div>
 <?php endif;?>
 <div id="sf_admin_container">
-<h1>Locaciones x Establecimiento "<?=$establecimiento->getNombre()?>"</h1>
+<h1>Locaciones x Establecimiento "<?php echo $establecimiento->getNombre()?>"</h1>
 
 <?php echo form_tag('establecimiento/saveLocacion', 'onSubmit="selectItem()"')?>
 <?php 

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionFormularioSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionFormularioSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionFormularioSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -11,7 +11,7 @@
 <?php } ?>
 </ul>
 </div>
-<? } ?> 
+<?php } ?> 
 
 <?php echo form_tag('informes/alumnosPorDivisionListado', 'id=sf_admin_edit_form name=sf_admin_edit_form multipart=true') ?>
 

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionListadoSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionListadoSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/alumnosPorDivisionListadoSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -21,14 +21,14 @@
   foreach($aAlumno as $alumno) {
 ?>
   <tr class="sf_admin_row_0">
-    <td><?=$alumno->getApellido();?></td>
-    <td><?=$alumno->getNombre();?></td>
-    <td><?=($alumno->getTipoDocumento())?$alumno->getTipoDocumento()->getNombre():"";?> <?echo $alumno->getNroDocumento();?></td>
-    <td><?=$alumno->getSexo();?></td>
-    <td><?=$alumno->getDireccion();?></td>
-    <td><?=$alumno->getCiudad();?></td>
-    <td><?=($alumno->getProvincia())?$alumno->getProvincia()->getNombreLargo():"";?></td>
-    <td><?=$alumno->getTelefono();?></td>
+    <td><?php echo $alumno->getApellido();?></td>
+    <td><?php echo $alumno->getNombre();?></td>
+    <td><?php echo ($alumno->getTipoDocumento())?$alumno->getTipoDocumento()->getNombre():"";?> <?php echo $alumno->getNroDocumento();?></td>
+    <td><?php echo $alumno->getSexo();?></td>
+    <td><?php echo $alumno->getDireccion();?></td>
+    <td><?php echo $alumno->getCiudad();?></td>
+    <td><?php echo ($alumno->getProvincia())?$alumno->getProvincia()->getNombreLargo():"";?></td>
+    <td><?php echo $alumno->getTelefono();?></td>
 
   </tr>
   <?php }?>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/boletinFormularioSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/boletinFormularioSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/boletinFormularioSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -23,7 +23,7 @@
 </form>
 <?php if (count($aAlumno) > 0) {
     if ($txt) { ?>
-    Ustde busc&oacute; -<?=$txt?>-
+    Ustde busc&oacute; -<?php echo $txt?>-
     <?php } ?>
 <h1>Alumnos</h1>
 <table cellspacing="0" class="sf_admin_list">
@@ -40,7 +40,7 @@
     foreach($aAlumno as $alumno){
 ?>
   <tr class="sf_admin_row_0">
-    <td><?echo $alumno->alumno_apellido." ".$alumno->alumno_nombre; ?> ( <?=$alumno->anio_descripcion?> - <?=$alumno->division_nombre?> ) </td>
+    <td><?php echo $alumno->alumno_apellido." ".$alumno->alumno_nombre; ?> ( <?php echo $alumno->anio_descripcion?> - <?php echo $alumno->division_nombre?> ) </td>
     <td>
     <ul class="sf_admin_td_actions">
      <li><?php echo link_to(image_tag(sfConfig::get('sf_admin_web_dir').'/images/edit_icon.png', array('alt' => 'editar', 'title' => 'Editar')) , 'informes?action=boletinListado&alumno_id='.$alumno->alumno_id."&division_id=".$alumno->division_id); ?></li>
@@ -52,7 +52,7 @@
 </table>
 <?php } else {
     if ($txt) { ?>
-        Su b&uacute;squeda por -<?=$txt?>- no ha encontrado alumnos.
+        Su b&uacute;squeda por -<?php echo $txt?>- no ha encontrado alumnos.
     <?php } 
 } 
 ?>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosBusquedaFormularioSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosBusquedaFormularioSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosBusquedaFormularioSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -19,8 +19,8 @@
 </form>
 <?php if (count($aAlumno) > 0) {
     if ($txt) { ?>
-    Usted busc&oacute; -<?=$txt?>-
-    <? } ?>
+    Usted busc&oacute; -<?php echo $txt?>-
+    <?php  } ?>
 <h1>Alumnos</h1>
 <table cellspacing="0" class="sf_admin_list">
   <thead>
@@ -48,7 +48,7 @@
 </table>
 <?php } else {
     if ($txt) { ?>
-        Su b&uacute;squeda por -<?=$txt?>- no ha encontrado alumnos.
+        Su b&uacute;squeda por -<?php echo $txt?>- no ha encontrado alumnos.
     <?php } 
 } 
 ?>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosListadoSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosListadoSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoEstudiosListadoSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -2,7 +2,7 @@
     use_helper('Misc');
     $meses = Meses();
 ?>
-<div style="text-align: center;"><?=image_tag('small/escudo_bsas_chico.jpg')?></div>
+<div style="text-align: center;"><?php echo image_tag('small/escudo_bsas_chico.jpg')?></div>
 <div style="text-align: center;" class="titulo">REP&Uacute;BLICA ARGENTINA<br><br>
 <span style="font-weight: bold;" class="titulo">GOBIERNO DE LA CIUDAD DE BUENOS AIRES</span><br style="font-weight: bold;">
 <span style="font-weight: bold;" class="titulo">SECRETAR&iacute;A DE EDUCACION</span><br>
@@ -12,11 +12,11 @@
 <br>
 <br>
 <div class="texto">
-Certifico que <?=$alumno->getApellido()?>, <?=$alumno->getNombre()?>  quien acredita identidad con <?=$alumno->getTipoDocumento()->getDescripcion()?> <br> N&deg; <?=$alumno->getNroDocumento()?> nacido  <?=($alumno->getLugarNacimiento())?" en ".$alumno->getLugarNacimiento():"";?> el <?=date("d",strtotime($alumno->getFechaNacimiento()))?> de <?=$meses[date("n",strtotime($alumno->getFechaNacimiento()))]?> de  <?=date("Y",strtotime($alumno->getFechaNacimiento()))?> aprob&oacute;  <?=$grado?>, como alumno <br> 
-regular en escuela <?=strtoupper($establecimiento->getNombre())?> D.E. <?=$establecimiento->getDistritoescolar()->getNombre()?> en el a&ntilde;o <?=$anio?><br>
+Certifico que <?php echo $alumno->getApellido()?>, <?php echo $alumno->getNombre()?>  quien acredita identidad con <?php echo $alumno->getTipoDocumento()->getDescripcion()?> <br> N&deg; <?php echo $alumno->getNroDocumento()?> nacido  <?php echo ($alumno->getLugarNacimiento())?" en ".$alumno->getLugarNacimiento():"";?> el <?php echo date("d",strtotime($alumno->getFechaNacimiento()))?> de <?php echo $meses[date("n",strtotime($alumno->getFechaNacimiento()))]?> de  <?php echo date("Y",strtotime($alumno->getFechaNacimiento()))?> aprob&oacute;  <?php echo $grado?>, como alumno <br> 
+regular en escuela <?php echo strtoupper($establecimiento->getNombre())?> D.E. <?php echo $establecimiento->getDistritoescolar()->getNombre()?> en el a&ntilde;o <?php echo $anio?><br>
 <br>
 Se extiende el presente <span style="font-weight: bold;">CERTIFICADO DE ESTUDIOS</span>, <br>
-en Buenos Aires, a los <?=date("d")?> d&iacute;as del mes de <?=$meses[date("n")]?> del a&ntilde;o  <?=date("Y")?> <br>
+en Buenos Aires, a los <?php echo date("d")?> d&iacute;as del mes de <?php echo $meses[date("n")]?> del a&ntilde;o  <?php echo date("Y")?> <br>
 </div>
 
 <br>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaFormularioSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaFormularioSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaFormularioSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -17,7 +17,7 @@
 </form>
 <?php if (count($aAlumno) > 0) {
     if ($txt) { ?>
-    Usted busc&oacute; -<?=$txt?>-
+    Usted busc&oacute; -<?php echo $txt?>-
     <?php } ?>
 <h1>Alumnos</h1>
 <table cellspacing="0" class="sf_admin_list">
@@ -40,12 +40,12 @@
     </ul>
     </td>
   </tr>
-  <? } ?>
+  <?php } ?>
   </tbody>
 </table>
 <?php } else {
     if ($txt) { ?>
-        Su b&uacute;squeda por -<?=$txt?>- no ha encontrado alumnos.
+        Su b&uacute;squeda por -<?php echo $txt?>- no ha encontrado alumnos.
     <?php } 
 } 
 ?>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaListadoSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaListadoSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/certificadoPrimariaListadoSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1,4 +1,4 @@
-<div style="text-align: center;"><?=image_tag('small/escudo_bsas_chico.jpg')?></div>
+<div style="text-align: center;"><?php echo image_tag('small/escudo_bsas_chico.jpg')?></div>
 <div style="text-align: center;" class="titulo">REP&Uacute;BLICA ARGENTINA<br><br>
 <span style="font-weight: bold;" class="titulo">GOBIERNO DE LA CIUDAD DE BUENOS AIRES</span><br style="font-weight: bold;">
 <span style="font-weight: bold;" class="titulo">SECRETAR&iacute;A DE EDUCACION</span><br>
@@ -8,11 +8,11 @@
 <br>
 <br>
 <div class="texto">
-Certifico que <?=$alumno->getApellido()?>, <?=$alumno->getNombre()?>  quien acredita identidad con <?=$alumno->getTipoDocumento()->getDescripcion()?> <br> N&deg; <?=$alumno->getNroDocumento()?> nacido  <?=($alumno->getLugarNacimiento())?" en ".$alumno->getLugarNacimiento():""?> el <?=date("d",strtotime($alumno->getFechaNacimiento()))?> de <?=$meses[date("n",strtotime($alumno->getFechaNacimiento()))]?> de  <?=date("Y",strtotime($alumno->getFechaNacimiento()))?> aprob&oacute; el s&eacute;ptimo grado, como alumno <br> 
-regular en Escuela <?=strtoupper($establecimiento->getNombre())?>  D.E. <?=$establecimiento->getDistritoescolar()->getNombre()?> en el a&ntilde;o <?=$anio?><br>
+Certifico que <?=$alumno->getApellido()?>, <?=$alumno->getNombre()?>  quien acredita identidad con <?php echo $alumno->getTipoDocumento()->getDescripcion()?> <br> N&deg; <?php echo $alumno->getNroDocumento()?> nacido  <?php echo ($alumno->getLugarNacimiento())?" en ".$alumno->getLugarNacimiento():""?> el <?php echo date("d",strtotime($alumno->getFechaNacimiento()))?> de <?php echo $meses[date("n",strtotime($alumno->getFechaNacimiento()))]?> de  <?php echo date("Y",strtotime($alumno->getFechaNacimiento()))?> aprob&oacute; el s&eacute;ptimo grado, como alumno <br> 
+regular en Escuela <?php echo strtoupper($establecimiento->getNombre())?>  D.E. <?php echo $establecimiento->getDistritoescolar()->getNombre()?> en el a&ntilde;o <?php echo $anio?><br>
 <br>
 Se extiende el presente <span style="font-weight: bold;">CERTIFICADO DE TERMINACI&Oacute;N DE ESTUDIOS PRIMARIOS</span>, <br>
-en Buenos Aires, a los <?=$dia?> d&iacute;as del mes de <?=$mes?> del a&ntilde;o  <?=$anio?> <br>
+en Buenos Aires, a los <?php echo $dia?> d&iacute;as del mes de <?php echo $mes?> del a&ntilde;o  <?php echo $anio?> <br>
 </div>
 <br>
 <br>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularFormularioSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularFormularioSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularFormularioSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -23,7 +23,7 @@
 </form>
 <?php if (count($aAlumno) > 0) {
     if ($txt) { ?>
-    Usted busc&oacute; -<?=$txt?>-
+    Usted busc&oacute; -<?php echo $txt?>-
     <?php } ?>
 <h1>Alumnos</h1>
 <table cellspacing="0" class="sf_admin_list">
@@ -40,20 +40,20 @@
     foreach($aAlumno as $alumno){
 ?>
   <tr class="sf_admin_row_0">
-    <td><?php echo $alumno->alumno_apellido." ".$alumno->alumno_nombre; ?> ( <?=$alumno->anio_descripcion?> - <?=$alumno->division_nombre?> ) </td>
+    <td><?php echo $alumno->alumno_apellido." ".$alumno->alumno_nombre; ?> ( <?php echo $alumno->anio_descripcion?> - <?php echo $alumno->division_nombre?> ) </td>
     <td>
     <ul class="sf_admin_td_actions">
      <li><?php echo link_to(image_tag(sfConfig::get('sf_admin_web_dir').'/images/edit_icon.png', array('alt' => 'editar', 'title' => 'Editar')) , 'informes?action=constanciaAlumnoRegularListado&alumno_id='.$alumno->alumno_id."&division_id=".$alumno->division_id); ?></li>
     </ul>
     </td>
   </tr>
-  <? } ?>
+  <?php } ?>
   </tbody>
 </table>
 
 <?php } else {
     if ($txt) { ?>
-        Su b&uacute;squeda por -<?=$txt?>- no ha encontrado alumnos.
+        Su b&uacute;squeda por -<?php echo $txt?>- no ha encontrado alumnos.
     <?php } 
 } 
 ?>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularListadoSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularListadoSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/constanciaAlumnoRegularListadoSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -3,15 +3,15 @@
 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tbody>
     <tr>
-      <td><?=image_tag('small/escudo_bsas_chico.jpg')?></td>
+      <td><?php echo image_tag('small/escudo_bsas_chico.jpg')?></td>
       <td>
       <div style="text-align: left;"></div>
       <div style="text-align: center;"><span class="titulo">GOBIERNO DE LA CIUDAD DE BUENOS AIRES</span><br>
       <span class="titulo">SECRETAR&Iacute;A DE EDUCACI&Oacute;N</span><br>
       <br>
       </div>
-      <div style="text-align: center;" class="subtitulo"><?=strtoupper($establecimiento->getNombre())?> <br> 
-        <?php if($locacion) { ?><?=$locacion->getDireccion()?> - T&eacute;lefono: <?=$locacion->getTelefono()?> (<?=$locacion->getCodigoPostal()?>) <?=$locacion->getCiudad()?><br><? } ?>
+      <div style="text-align: center;" class="subtitulo"><?php echo strtoupper($establecimiento->getNombre())?> <br> 
+        <?php if($locacion) { ?><?php echo $locacion->getDireccion()?> - T&eacute;lefono: <?php echo $locacion->getTelefono()?> (<?php echo $locacion->getCodigoPostal()?>) <?php echo $locacion->getCiudad()?><br><?php } ?>
       <br>
       </div>
       <div style="text-align: center;"><span class="titulo">CONSTANCIA DE ALUMNO REGULAR<br>
@@ -21,8 +21,8 @@
       <tr>
       <td colspan="2" rowspan="1">
         <div style="text-align: left;" class="texto">
-        <br><br>Por medio de la presente se deja constancia que <?=$alumno->getApellido()?>, <?=$alumno->getNombre()?> es un alumno regular de:<br>
-        A&ntilde;o: <span style="font-weight: bold;"><?=$division->getAnio()->getDescripcion()?></span>, Divisi&oacute;n: <span style="font-weight: bold;"><?=$division->getDescripcion()?></span> , Turno: <span style="font-weight: bold;"><?=$turnos->getDescripcion();?></span>, en este establecimiento<br> Se emite este certificado para presentar ante quien corresponda.
+        <br><br>Por medio de la presente se deja constancia que <?php echo $alumno->getApellido()?>, <?php echo $alumno->getNombre()?> es un alumno regular de:<br>
+        A&ntilde;o: <span style="font-weight: bold;"><?php echo $division->getAnio()->getDescripcion()?></span>, Divisi&oacute;n: <span style="font-weight: bold;"><?php echo $division->getDescripcion()?></span> , Turno: <span style="font-weight: bold;"><?php echo $turnos->getDescripcion();?></span>, en este establecimiento<br> Se emite este certificado para presentar ante quien corresponda.
       <br>
       <br>
         <span style="font-weight: bold;">Lugar y Fecha:</span> Ciudad Aut&oacute;noma de Buenos Aires, <?php echo date("d/m/Y");?>      

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoBusquedaFormularioSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoBusquedaFormularioSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoBusquedaFormularioSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -26,7 +26,7 @@
 </form>
 <?php if (count($aAlumno) > 0) {
     if ($txt) { ?>
-    Usted busc&oacute; -<?=$txt?>-
+    Usted busc&oacute; -<?php echo $txt?>-
     <?php } ?>
 <h1>Alumnos</h1>
 <table cellspacing="0" class="sf_admin_list">
@@ -43,7 +43,7 @@
     foreach($aAlumno as $alumno){
 ?>
   <tr class="sf_admin_row_0">
-    <td><?php echo $alumno->alumno_apellido." ".$alumno->alumno_nombre; ?> ( <?=$alumno->anio_descripcion?> - <?=$alumno->division_nombre?> ) </td>
+    <td><?php echo $alumno->alumno_apellido." ".$alumno->alumno_nombre; ?> ( <?php echo $alumno->anio_descripcion?> - <?php echo $alumno->division_nombre?> ) </td>
     <td>
     <ul class="sf_admin_td_actions">
      <li><?php echo link_to(image_tag(sfConfig::get('sf_admin_web_dir').'/images/edit_icon.png', array('alt' => 'editar', 'title' => 'Editar')) , 'informes?action=solicitudLegajoFormulario&alumno_id='.$alumno->alumno_id."&division_id=".$alumno->division_id); ?></li>
@@ -56,7 +56,7 @@
 
 <?php } else {
     if ($txt) { ?>
-        Su b&uacute;squeda por -<?=$txt?>- no ha encontrado alumnos.
+        Su b&uacute;squeda por -<?php echo $txt?>- no ha encontrado alumnos.
     <?php } 
 } 
 ?>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoListadoSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoListadoSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/informes/templates/solicitudLegajoListadoSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -2,7 +2,7 @@
     use_helper('Misc');
     $meses = Meses();
 ?>
-<div style="text-align: center;"><?=image_tag('small/escudo_bsas_chico.jpg')?></div>
+<div style="text-align: center;"><?php echo image_tag('small/escudo_bsas_chico.jpg')?></div>
 <div style="text-align: center;" class="titulo">REP&Uacute;BLICA ARGENTINA<br><br>
 <span style="font-weight: bold;" class="titulo">GOBIERNO DE LA CIUDAD DE BUENOS AIRES</span><br style="font-weight: bold;">
 <span style="font-weight: bold;" class="titulo">SECRETAR&iacute;A DE EDUCACION</span><br>
@@ -12,11 +12,11 @@
 <br>
 <br>
 <div class="texto">
-La Direcci&oacute;n de la Escuela <?=strtoupper($establecimiento->getNombre())?> D.E. <?=$establecimiento->getDistritoescolar()->getNombre()?> solicita <br>
-a la Escuela <?=$escuela?> el Legajo Escolar del alumno <?=$alumno->getApellido()?>, <?=$alumno->getNombre()?>  inscripto en  <?=$division->getAnio()->getDescripcion()?> <?=$division->getDescripcion()?>
+La Direcci&oacute;n de la Escuela <?php echo strtoupper($establecimiento->getNombre())?> D.E. <?php echo $establecimiento->getDistritoescolar()->getNombre()?> solicita <br>
+a la Escuela <?php echo $escuela?> el Legajo Escolar del alumno <?php echo $alumno->getApellido()?>, <?php echo $alumno->getNombre()?>  inscripto en  <?php echo $division->getAnio()->getDescripcion()?> <?php echo $division->getDescripcion()?>
 <br>
 Tenga el presente el carácter de recibo.<br><br>
-Buenos Aires, a los <?=date("d")?> d&iacute;as del mes de <?=$meses[date("n")]?> del a&ntilde;o  <?=date("Y")?> <br>
+Buenos Aires, a los <?php echo date("d")?> d&iacute;as del mes de <?php echo $meses[date("n")]?> del a&ntilde;o  <?php echo date("Y")?> <br>
 </div>
 <br>
 <br>

Modified: prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_edit_header.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_edit_header.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_edit_header.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1 +1 @@
-<h1><?=($sf_params->get('action') == "create")?"Ingresar Usuario":"Editar Usuario "?></h1>
\ No newline at end of file
+<h1><?php echo ($sf_params->get('action') == "create")?"Ingresar Usuario":"Editar Usuario "?></h1>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_establecimiento.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_establecimiento.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/_establecimiento.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -1 +1 @@
-<? echo link_to($usuario->getEstablecimiento()->getNombre(),'establecimiento/edit?id='.$usuario->getFkEstablecimientoId());?>
\ No newline at end of file
+<?php echo link_to($usuario->getEstablecimiento()->getNombre(),'establecimiento/edit?id='.$usuario->getFkEstablecimientoId());?>
\ No newline at end of file

Modified: prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/editPermisoSuccess.php
===================================================================
--- prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/editPermisoSuccess.php	2007-08-15 21:38:57 UTC (rev 4968)
+++ prosistem/alba/trunk/alba/apps/principal/modules/usuario/templates/editPermisoSuccess.php	2007-08-15 21:59:27 UTC (rev 4969)
@@ -16,8 +16,8 @@
     echo input_hidden_tag('id', $sf_params->get('id'));
 ?>
 <ul class="sf_admin_actions">
-<li><? echo submit_tag('submit', 'class=sf_admin_action_save value=Grabar');?></li>
-<li><? echo button_to('Listado de usuarios','usuario/list',array('class'=>'sf_admin_action_list'))?></li>
+<li><?php echo submit_tag('submit', 'class=sf_admin_action_save value=Grabar');?></li>
+<li><?php echo button_to('Listado de usuarios','usuario/list',array('class'=>'sf_admin_action_list'))?></li>
 </ul>
 </form>
 <script type="text/javascript">




Más información sobre la lista de distribución Alba-desarrollo