]> git.llucax.com Git - z.facultad/75.43/tp1.git/commitdiff
- Se agrega una pantalla de login dummy (solo chequea que los campos no sean
authorLeandro Lucarella <llucax@gmail.com>
Sat, 30 Apr 2005 23:51:21 +0000 (23:51 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 30 Apr 2005 23:51:21 +0000 (23:51 +0000)
  vacíos por javascript).
- Se agrega una lib común de javascript.
- Se agrega una lib común para dibujar la cabecera y pié de página.
- Se agregan cabeceras a los archivos con número de grupo, integrantes y autor.
- Se agrega una lib propia de módulo de admin con los formularios de este
  módulo.

12 files changed:
src/index.php [new file with mode: 0644]
src/lib.js [new file with mode: 0644]
src/lib/Asesor.php
src/lib/Comentario.php
src/lib/Item.php
src/lib/Link.php
src/lib/Pregunta.php
src/lib/Respuesta.php
src/lib/Socio.php
src/lib/Usuario.php
src/lib/admin.forms.php [new file with mode: 0644]
src/lib/pagina.php [new file with mode: 0644]

diff --git a/src/index.php b/src/index.php
new file mode 100644 (file)
index 0000000..f030497
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
+
+require_once 'lib/pagina.php';
+require_once 'lib/admin.forms.php';
+
+pagina_cabecera('Ingreso');
+admin_form_login();
+pagina_pie('Leandro Lucarella', 'llucare@fi.uba.ar');
+
+?>
\ No newline at end of file
diff --git a/src/lib.js b/src/lib.js
new file mode 100644 (file)
index 0000000..6879d47
--- /dev/null
@@ -0,0 +1,25 @@
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
+
+function vacio(f)
+{
+    if (!f.value.replace(/\s/g, '').length) return true;
+    return false;
+}
+
+function check_vacio(f, n)
+{
+    if (vacio(f))
+    {
+        alert('Falta ingresar el campo ' + n + '!');
+        f.focus();
+        return false;
+    }
+    return true;
+}
\ No newline at end of file
index 26fe515bf3315c34cec70e848dccd8b33197bf25..cc3b23ff6121e109de646ab99f89acf96c037abf 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Usuario.php';
 
 
 require_once 'Usuario.php';
 
index d0406a92aa9f3263a3b13b015451818b269b0934..b91d4e51708beaf41b97f1487e0118fd3a3a1d66 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Item.php';
 
 
 require_once 'Item.php';
 
index d4b59c72ea2f74a4eb67dabe41e9b158ed241314..99a3e6fc748d7774d7b3e7f74516208c86adc71e 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 /**
  * XXX detailed description
 
 /**
  * XXX detailed description
index 0aed72d3f581b677018bb51c1a47b4ba680e59ec..5abef6c2c6140fbe8a0cf2487ac55dadad6a90bc 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Item.php';
 
 
 require_once 'Item.php';
 
index 35e2c0b9ec51ccd945f312209daef853b65b7970..ba8134d1ced286dd86f4577c475c64e2c79b4fbd 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Item.php';
 
 
 require_once 'Item.php';
 
index f7c01f8003526c568ff5d52584cc29ff7df84d62..d142518483e13c94a21dccc77bb28722bc477fbc 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Item.php';
 
 
 require_once 'Item.php';
 
index f0b76cc2ba160fc63902fb8c605b13f6fce26ae2..7d89eef438aa1fcd1dad8a2ad529b1ea139d219c 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Usuario.php';
 
 
 require_once 'Usuario.php';
 
index 1f2b23310f9c6724d7ad1da92984b16a6a6df3fd..d3092856caf82cfa49bf75b257b27431fdb47386 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 /**
  * XXX detailed description
 
 /**
  * XXX detailed description
diff --git a/src/lib/admin.forms.php b/src/lib/admin.forms.php
new file mode 100644 (file)
index 0000000..fede9d6
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
+
+function admin_form_login()
+{
+?>
+        <form name="admin_login" action="<?php echo $_SERVER['PHP_SELF'] ?>"
+                method="post" onSubmit="return validar(this);">
+            <script type="text/javascript" language="JavaScript">
+                <!--
+                function validar(f)
+                {
+                    if (!check_vacio(f.user, 'Usuario')) return false;
+                    if (!check_vacio(f.pass, 'Contraseña')) return false;
+                    return true;
+                }
+                -->
+            </script>
+            <p>
+                Por favor identifíquese para ingresar en el sistema:<br />
+                Usuario: <input type="text" name="user" /><br />
+                Contraseña: <input type="password" name="pass" /><br />
+                <input type="submit" value="Ingresar" />
+            </p>
+        </form>
+<?php
+}
+
+?>
\ No newline at end of file
diff --git a/src/lib/pagina.php b/src/lib/pagina.php
new file mode 100644 (file)
index 0000000..946ca87
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
+
+function pagina_cabecera($titulo = '')
+{
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+
+<html lang="es">
+    <head>
+        <title>Grupos<?php echo $titulo ? " - $titulo" : '' ?></title>
+        <script src="lib.js" type="text/javascript" language="JavaScript">
+        </script>
+    </head>
+    <body>
+        <h1>Grupos</h1>
+        <?php if ($titulo) echo "<h2>$titulo</h2>\n" ?>
+<?php
+}
+
+function pagina_pie($autor, $mail)
+{
+?>
+        <address>
+            <span lang="en">Copyleft</span> 2005 - Grupo 10 (autor
+            <a href="mailto:<?php echo $autor ?>"><?php echo $autor ?></a>)
+        </address>
+    </body>
+</html>
+<?php
+}
+
+?>
\ No newline at end of file