source: aportesmurachi/tahel/Murachi-pre/index.jsp

Last change on this file was 12e6ddf, checked in by Antonio Araujo <aaraujo@…>, 7 years ago

Agregados los directorio de aportes de Tahel al control de versiones.

  • Property mode set to 100644
File size: 2.2 KB
Line 
1<!DOCTYPE html>
2<!-- release v4.1.8, copyright 2014 - 2015 Kartik Visweswaran -->
3<html lang="es">
4    <head> <!--Inicio del head  -->
5        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6        <meta http-equiv="Content-Style-Type" content="text/css">
7        <meta http-equiv="Content-Script-Type" content="text/javascript">
8
9        <script type="text/javascript" src="js/jquery.min.js"></script>
10        <script type="text/javascript" src="js/ajaxSetup.js"></script>
11        <script type="text/javascript" charset="utf-8">
12            $(document).ready(function() {
13                $.ajaxSetup({
14                    error:function(x,e){
15                        if(x.status==0){
16                            alert('Está fuera de línea!!\n Por favor chequee su conexión.');
17                        }else if(x.status==404){
18                            alert('La URL solicitada no fue encontrada.');
19                        }else if(x.status==500){
20                            alert('Error interno de servidor.');
21                        }else if(e=='parsererror'){
22                            alert('Error.\nSolicitud de interpretación de cadena JSON inválida.');
23                        }else if(e=='timeout'){
24                            alert('Tiempo de espera alcanzado.');
25                        }else {
26                            alert('Error desconocido.\n'+x.responseText);
27                        }
28                    }
29                });
30            });
31        </script>
32        </head> 
33    <body>
34        <table width="900" border="0" cellspacing="5" cellpadding="5" align="center">
35            <tr>
36                <td colspan="2" style="text-align:center;">PRUEBA DEL SERVICIO MURACHI</td>
37            </tr>
38            <tr>
39                <td style="text-align:center;" width="50%"><a href="firmaPDF.html">Firmado de documentos PDF</a></td>
40                <td style="text-align:center;" width="50%"><a href="verificaPDF.html">Verificación de documentos PDF</a></td>
41            </tr>
42            <tr>
43                <td colspan="2" style="text-align:center;">&nbsp;</td>
44            </tr>
45            <tr>
46                <td colspan="2" style="text-align:center;">&nbsp;</td>
47            </tr>
48        </table>
49        </body>
50</html>
Note: See TracBrowser for help on using the repository browser.