Commit 8f3a210db69167ae176df122741054d9629d4e73
1 parent
f9f1c88b
Exists in
master
and in
1 other branch
Gerente "trunk" atualizado
- instalador inicio de verificação de dados de envio de email (faltou template) git-svn-id: http://svn.softwarepublico.gov.br/svn/cacic/cacic/trunk/gerente@367 fecfc0c7-e812-0410-ae72-849f08638ee7
Showing
1 changed file
with
96 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,96 @@ |
1 | +<cacicInstall:comment> | |
2 | +/** | |
3 | + * @version $Id: index.php 2007-02-08 22:20 harpiain $ | |
4 | + * @package Cacic-Installer | |
5 | + * @subpackage Instalador | |
6 | + * @author Adriano dos Santos Vieira <harpiain at gmail.com> | |
7 | + * @copyright Copyright (C) 2007 Adriano dos Santos Vieira. All rights reserved. | |
8 | + * @license GNU/GPL, see LICENSE.php | |
9 | + * CACIC-Install is free software and parts of it may contain or be derived from the | |
10 | + * GNU General Public License or other free or open source software licenses. | |
11 | + * See COPYRIGHT.php for copyright notices and details. | |
12 | + * @description Templates para para o Instalador do CACIC | |
13 | + */ | |
14 | +</cacicInstall:comment> | |
15 | + | |
16 | +<cacicInstall:tmpl name="tmplNavBarMailVerify"> | |
17 | + <form method="post" name="installForm"> | |
18 | + <table width="100%"> | |
19 | + <tr class="navbar"> | |
20 | + <td colspan=2> | |
21 | + <div class="navbar-btn"> | |
22 | + <div class="navbar-btn-right"><div class="anterior"><a onclick="submitForm( installForm, 'Configuration' );" title="{KCIQ_PREVIOUS}">{KCIQ_PREVIOUS}</a></div></div> | |
23 | + <div class="navbar-btn-left"><div class="proximo"><a onclick="submitForm( installForm, 'FtpVerify' );" title="{KCIQ_NEXT}">{KCIQ_NEXT}</a></div></div> | |
24 | + </div> | |
25 | + </td> | |
26 | + </tr> | |
27 | + </table> | |
28 | + <fieldset> | |
29 | + <span id="botoes"> | |
30 | + <table> | |
31 | + <tr> | |
32 | + <td colspan=3> | |
33 | + <script language="JavaScript" type="text/javascript"> | |
34 | + asvAjaxInit("ajax.php"); asvAjaxSetCharset('{CACIC_LANG_CHARSET}'); | |
35 | + </script> | |
36 | + <div class="botoes"> | |
37 | + <div class="btnleft"><div class="btnright"> | |
38 | + <a onClick="setDocVar( 'task', 'testConnMail' ); asvAjaxGetFormData('installForm', 'msgStatus'); return false;" title="{KCIQ_TESTCONN_HELP}"> | |
39 | + {KCIQ_TESTCONN}</a> | |
40 | + </div></div> | |
41 | + </div> | |
42 | + </td> | |
43 | + </tr> | |
44 | + </table> | |
45 | + </span> | |
46 | + </fieldset> | |
47 | + <fieldset> | |
48 | + <legend>{KCIQ_CONFIGURATIONS}</legend> | |
49 | + <fieldset class="configinstall"> | |
50 | + <legend>{KCIQ_INST_MAILVERIFY}</legend> | |
51 | + <table> | |
52 | + <tr> | |
53 | + <td class="item"><span class="necessario">*</span>{KCIQ_MSG_SERVER}:</td> | |
54 | + <td> | |
55 | + <input class="input" onFocus="setClass(this, 'inputFocus');" onBlur="setClass(this, 'input');" type="text" name="cacic_cfgmail[mail_host]" value="{MAIL_HOST}" /> | |
56 | + </td> | |
57 | + <td class="help">{KCIQ_INST_MAIL_HOST_HELP}</td> | |
58 | + </tr> | |
59 | + <tr> | |
60 | + <td class="item"><span class="necessario">*</span>{KCIQ_MSG_PORT}:</td> | |
61 | + <td> | |
62 | + <input class="input" onFocus="setClass(this, 'inputFocus');" onBlur="setClass(this, 'input');" type="text" name="cacic_cfgmail[mail_port]" value="{MAIL_PORT}" /> | |
63 | + </td> | |
64 | + <td class="help">{KCIQ_INST_MAIL_PORT_HELP}</td> | |
65 | + </tr> | |
66 | + <tr> | |
67 | + <td class="item"><span class="necessario">*</span>{KCIQ_MSG_USER}:</td> | |
68 | + <td> | |
69 | + <input class="input" onFocus="setClass(this, 'inputFocus');" onBlur="setClass(this, 'input');" type="text" name="cacic_cfgmail[mail_user]" value="{MAIL_USER}" /> | |
70 | + </td> | |
71 | + <td class="help">{KCIQ_INST_MAILUSER_HELP}</td> | |
72 | + </tr> | |
73 | + <tr> | |
74 | + <td class="item">{KCIQ_MSG_PASS}:</td> | |
75 | + <td> <input class="input" onFocus="setClass(this, 'inputFocus');" onBlur="setClass(this, 'input');" type="password" name="cacic_cfgmail[mail_pass]" value="{MAIL_PASS}" /></td> | |
76 | + <td class="help">{KCIQ_INST_MAILPASS_HELP}</td> | |
77 | + </tr> | |
78 | + <tr> | |
79 | + <td class="item"><span class="necessario">*</span>{KCIQ_INST_MAIL_SUBDIR}:</td> | |
80 | + <td> | |
81 | + <input class="input" onFocus="setClass(this, 'inputFocus');" onBlur="setClass(this, 'input');" type="text" name="cacic_cfgmail[mail_subdir]" value="{MAIL_SUBDIR}" /> | |
82 | + </td> | |
83 | + <td class="help">{KCIQ_INST_MAIL_SUBDIR_HELP}</td> | |
84 | + </tr> | |
85 | + </table> | |
86 | + <table width="100%"> | |
87 | + <tr> | |
88 | + <td><div id="configureData"></div></td> | |
89 | + </tr> | |
90 | + </table> | |
91 | + </fieldset> | |
92 | + </fieldset> | |
93 | + <input type="hidden" id="task" name="task" value="{TASK}" /> | |
94 | + <input type="hidden" name="step" value="{STEP}" /> | |
95 | + </form> | |
96 | +</cacicInstall:tmpl> | ... | ... |