source: companies/serpro/index2.php @ 903

Revision 903, 5.7 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1<html>
2  <head>
3    <title>Analisador de listas: Expresso vs. Notes</title>
4    <script type="text/javascript" src="ajx_listanalyser.js"></script>
5    <style>
6    <!--
7      body{
8        padding: 0;
9        margin: 0;
10        text-align: center;
11      }
12     
13      h1{
14        text-align:left;
15        font-family: sans-serif;
16        color: rgb(150,150,150);
17        background-color: rgb(210,210,210);
18        border: 1px solid rgb(150,150,150);
19        padding: 2px 10px;
20        margin-top: 2px;
21        font-size: 14pt;
22      }
23     
24      div#pagina{
25        margin: 0 auto;
26      }
27     
28      .lista{
29        text-align: left;
30        border: 1px solid rgb(220,220,220);
31        background-color: rgb(240,240,240);
32        font-family: sans-serif;
33        color: rgb(0,100,0);
34        font-size: 9pt;
35        width: 48%;
36        height: 465px;
37        overflow-x: auto;
38        overflow-y: auto;
39        margin-left: 10px;
40      }
41     
42          #analisador {
43        position: absolute;
44        left: 0px;
45        bottom: 0px;
46        width: 100%;
47        height: 180spx;
48        background-color: rgb(200,200,200);
49        z-index: 50;
50      }
51     
52      body > div#pagina > div#analisador {
53        position: fixed;
54        height: 90px;
55        background-color: rgb(200,200,200);       
56      }   
57     
58      .operador{
59        width: 140px;
60        font-family: sans-serif;
61        font-size: 7pt;
62        text-transform: uppercase;
63        color: rgb(0,0,0);
64        padding: 2px 10px;
65      }   
66     
67      div#carregando{
68        display: none;
69        position: absolute;
70        width: 200px;
71        height: 90px;
72        background-color: rgb(240,248,255);
73        border: 1px outset rgb(0,0,0);
74        padding: 10px;
75        z-index: 100;
76      }
77     
78      .cancela{
79        font-size: 7pt;
80        color: rgb(100,100,100);
81      }
82     
83      .analise{
84        text-align: right;
85      }
86    -->
87    </style>
88    <!--[if gte IE 5.5]>
89    <![if lt IE 7]>
90    <style type="text/css">
91      div#analisador {
92        left: auto;
93        bottom: auto;
94        left: expression( ( -20 - analisador.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
95        top: expression( ( -10 - analisador.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
96      }
97    </style>
98    <![endif]>
99    <![endif]-->   
100  </head>
101  <body>
102    <div id="pagina">
103      <div id="carregando">
104        <img src="mozilla_blu.gif" /><br /><br />
105        <span style="font-family: sans-serif;color: black; font-size: 8pt">Aguarde...</span><br /><br />
106        <button class="cancela" name="cancela_req" id="cancela_req" onclick="CancelarOperacao();">Cancelar</button>
107      </div>
108      <h1>Analisador de listas Expresso SERPRO / Lotus Notes</h1>
109      <form name="form_listas" id="form_listas" method="post">
110        <div class="lista" id="l_expresso" style="float:left;">
111          <span>Aguardando atividade</span>
112        </div>
113        <div class="lista" id="l_notes">
114          <span>Aguardando atividade</span>
115        </div>
116        <div class="status" id="analisador">
117          <div id="barra_controle" style="background-color: rgb(110,110,110); height:15px; padding-left: 25px;">
118            <img src="add.png" style="float: right;" onclick="ExibeStatus('exibe');" />
119            <img src="delete.png" style="float: right" onclick="ExibeStatus('oculta');" />
120          </div>
121          <div id="status_painel" style="display: none;">
122          <fieldset style="float: left; text-align: left; padding: 0 20px;">         
123            <legend>Analise</legend>
124            <label for="c_expresso">Integrantes da lista no Expresso:</label>
125            <input class="analise" type="text" name="c_expresso" id="c_expresso" size="5" /><br />
126            <label for="c_notes">Integrantes da lista no Notes:</label>
127            <input class="analise" type="text" name="c_notes" id="c_notes" size="5" /><br />
128            <label for="c_analisador">Itens Expresso em Notes:</label>
129            <input class="analise" type="text" name="c_analisador" id="c_analisador" size="5" />%           
130          </fieldset>
131          <fieldset  style="float: left;">
132                <legend>Listas Notes a criar no RHDS</legend>
133                <textarea class="console" name="proclistas" id="proclistas" rows="3" cols="65" style="float: right; overflow-y: scroll; overflow-x: hidden;"></textarea>
134          </fieldset>
135          <fieldset style="text-align: right; padding: 0 20px;">
136            <legend>Comandos</legend>
137            <input class="operador" type="button" name="bt_carregar" id="bt_carregar" onclick="CarregarListas();" value="Carregar Listas"/><br/>
138            <input class="operador" type="button" name="bt_addlistanotes" id="bt_addlistanotes" onclick="AdicionarListasNotes();" value="Processar Listas Marcadas"/><br/>
139            <input class="operador" type="button" name="bt_exportar" id="bt_exportar" onclick="ExportarAnalise();" value="Exportar Arquivo"/><br/>
140            <input class="operador" type="button" name="bt_redefinir" id="bt_redefinir" onclick="Resetar();" value="Redefinir"/><br/>
141          </fieldset>
142          <fieldset style="float: left;">
143            <legend>Console</legend>
144                        <textarea class="console" name="status" id="status" rows="3" cols="110" style="overflow-y: scroll; overflow-x: hidden;"></textarea>           
145          </fieldset>
146          </div>
147        </div>
148      </div>
149    </form>
150  </body>
151</html>
Note: See TracBrowser for help on using the repository browser.