Commit 18d3ab8fcb4ba94ca74bc334605c4617dd0e01e9
1 parent
22aceaa4
Exists in
master
Adicionado páginas manutenção e acesso suspenso
Showing
2 changed files
with
143 additions
and
0 deletions
Show diff stats
| @@ -0,0 +1,56 @@ | @@ -0,0 +1,56 @@ | ||
| 1 | +<?php | ||
| 2 | + | ||
| 3 | +/* | ||
| 4 | + * i-Educar - Sistema de gestão escolar | ||
| 5 | + * | ||
| 6 | + * Copyright (C) 2006 Prefeitura Municipal de Itajaí | ||
| 7 | + * <ctima@itajai.sc.gov.br> | ||
| 8 | + * | ||
| 9 | + * Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo | ||
| 10 | + * sob os termos da Licença Pública Geral GNU conforme publicada pela Free | ||
| 11 | + * Software Foundation; tanto a versão 2 da Licença, como (a seu critério) | ||
| 12 | + * qualquer versão posterior. | ||
| 13 | + * | ||
| 14 | + * Este programa é distribuído na expectativa de que seja útil, porém, SEM | ||
| 15 | + * NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU | ||
| 16 | + * ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral | ||
| 17 | + * do GNU para mais detalhes. | ||
| 18 | + * | ||
| 19 | + * Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto | ||
| 20 | + * com este programa; se não, escreva para a Free Software Foundation, Inc., no | ||
| 21 | + * endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | ||
| 22 | + */ | ||
| 23 | + | ||
| 24 | +/** | ||
| 25 | + * Mostra mensagem de erro de conexão com o banco de dados. | ||
| 26 | + * | ||
| 27 | + * @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br> | ||
| 28 | + * @license http://creativecommons.org/licenses/GPL/2.0/legalcode.pt CC GNU GPL | ||
| 29 | + * @package Core | ||
| 30 | + * @since Arquivo disponível desde a versão 1.0.1 | ||
| 31 | + * @version $Id$ | ||
| 32 | + */ | ||
| 33 | + | ||
| 34 | +header("HTTP/1.1 503 Service Unavailable"); | ||
| 35 | + | ||
| 36 | +?> | ||
| 37 | + | ||
| 38 | + | ||
| 39 | +<!DOCTYPE html> | ||
| 40 | +<html xmlns="http://www.w3.org/1999/xhtml" lang="pt-br" xml:lang="pt-br"> | ||
| 41 | + <head> | ||
| 42 | + <link rel='stylesheet' type='text/css' href='styles/reset.css'> | ||
| 43 | + <link rel='stylesheet' type='text/css' href='styles/portabilis.css'> | ||
| 44 | + <link rel='stylesheet' type='text/css' href='styles/min-portabilis.css'></head> | ||
| 45 | + | ||
| 46 | + </head> | ||
| 47 | + | ||
| 48 | + <body> | ||
| 49 | + <div id="error" style="border: 0px solid #666;"> | ||
| 50 | + <div class="content"> | ||
| 51 | + <h1>Em manutenção</h1> | ||
| 52 | + <p class="explanation">Desculpe-nos, estamos passando por uma manutenção<strong>, por favor, tente novamente mais tarde.</strong></p> | ||
| 53 | + </div> | ||
| 54 | + </div> | ||
| 55 | + </body> | ||
| 56 | +</html> |
| @@ -0,0 +1,87 @@ | @@ -0,0 +1,87 @@ | ||
| 1 | +<?php | ||
| 2 | + | ||
| 3 | +/* | ||
| 4 | + * i-Educar - Sistema de gestão escolar | ||
| 5 | + * | ||
| 6 | + * Copyright (C) 2006 Prefeitura Municipal de Itajaí | ||
| 7 | + * <ctima@itajai.sc.gov.br> | ||
| 8 | + * | ||
| 9 | + * Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo | ||
| 10 | + * sob os termos da Licença Pública Geral GNU conforme publicada pela Free | ||
| 11 | + * Software Foundation; tanto a versão 2 da Licença, como (a seu critério) | ||
| 12 | + * qualquer versão posterior. | ||
| 13 | + * | ||
| 14 | + * Este programa é distribuído na expectativa de que seja útil, porém, SEM | ||
| 15 | + * NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU | ||
| 16 | + * ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral | ||
| 17 | + * do GNU para mais detalhes. | ||
| 18 | + * | ||
| 19 | + * Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto | ||
| 20 | + * com este programa; se não, escreva para a Free Software Foundation, Inc., no | ||
| 21 | + * endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | ||
| 22 | + */ | ||
| 23 | + | ||
| 24 | +/** | ||
| 25 | + * Mostra mensagem de erro de conexão com o banco de dados. | ||
| 26 | + * | ||
| 27 | + * @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br> | ||
| 28 | + * @license http://creativecommons.org/licenses/GPL/2.0/legalcode.pt CC GNU GPL | ||
| 29 | + * @package Core | ||
| 30 | + * @since Arquivo disponível desde a versão 1.0.1 | ||
| 31 | + * @version $Id$ | ||
| 32 | + */ | ||
| 33 | +?> | ||
| 34 | +<!DOCTYPE html> | ||
| 35 | +<html xmlns="http://www.w3.org/1999/xhtml" lang="pt-br" xml:lang="pt-br"> | ||
| 36 | + <head> | ||
| 37 | + <!--style type="text/css"> | ||
| 38 | + * { | ||
| 39 | + margin: 0; | ||
| 40 | + padding: 0 | ||
| 41 | + } | ||
| 42 | + | ||
| 43 | + body { | ||
| 44 | + align: center; | ||
| 45 | + font-size: 85%; | ||
| 46 | + font-family: verdana, arial, sans-serif; | ||
| 47 | + line-height: 160% | ||
| 48 | + } | ||
| 49 | + | ||
| 50 | + div#error { | ||
| 51 | + width: 500px; | ||
| 52 | + position: absolute; | ||
| 53 | + left: 250px; | ||
| 54 | + top: 35px; | ||
| 55 | + /*border: 1px solid #666*/ | ||
| 56 | + } | ||
| 57 | + | ||
| 58 | + div.content { | ||
| 59 | + padding: 25px | ||
| 60 | + } | ||
| 61 | + | ||
| 62 | + h1 { | ||
| 63 | + padding-bottom: 15px | ||
| 64 | + } | ||
| 65 | + | ||
| 66 | + ul { | ||
| 67 | + margin-top: 20px; | ||
| 68 | + list-style-position: inside | ||
| 69 | + } | ||
| 70 | + </style--> | ||
| 71 | + | ||
| 72 | + <link rel='stylesheet' type='text/css' href='styles/reset.css'> | ||
| 73 | + <link rel='stylesheet' type='text/css' href='styles/portabilis.css'> | ||
| 74 | + <link rel='stylesheet' type='text/css' href='styles/min-portabilis.css'></head> | ||
| 75 | + | ||
| 76 | + </head> | ||
| 77 | + | ||
| 78 | + <body> | ||
| 79 | + <div id="error"> | ||
| 80 | + <div class="content"> | ||
| 81 | + <h1>Acesso suspenso</h1> | ||
| 82 | + <p class="explanation">Desculpe-nos, o acesso ao sistema foi suspenso, por favor, entre em contato com o responsável pelo sistema em sua entidade, e tente novamente.</strong> | ||
| 83 | + </p> | ||
| 84 | + </div> | ||
| 85 | + </div> | ||
| 86 | + </body> | ||
| 87 | +</html> |