Commit a2e0f14e96a52adb88d4b0028a34ccef6c8f0137
Exists in
master
Merge branch 'master' of https://github.com/lightbase/WSCacicNeo
Showing
52 changed files
with
10 additions
and
3951 deletions
Show diff stats
wscacicneo/__init__.py
... | ... | @@ -40,6 +40,7 @@ def main(global_config, **settings): |
40 | 40 | #Órgão |
41 | 41 | config.add_route('orgao', 'orgao') |
42 | 42 | config.add_route('post_orgao', 'post_orgao') |
43 | + config.add_route('delete_orgao', 'delete_orgao') | |
43 | 44 | # |
44 | 45 | config.add_route('list', 'list') |
45 | 46 | config.add_route('gestao', 'gestao') | ... | ... |
wscacicneo/model/orgao.py
... | ... | @@ -201,7 +201,7 @@ class Orgao(orgao_base.metaclass): |
201 | 201 | Busca registro completo do órgao pelo nome |
202 | 202 | """ |
203 | 203 | search = Search( |
204 | - literal="document->>"+nm_orgao | |
204 | + literal="document->>'nome' = '"+nm_orgao+"'" | |
205 | 205 | ) |
206 | 206 | results = self.documentrest.get_collection(search_obj=search) |
207 | 207 | |
... | ... | @@ -211,6 +211,6 @@ class Orgao(orgao_base.metaclass): |
211 | 211 | """ |
212 | 212 | Deleta o Órgao apartir do ID |
213 | 213 | """ |
214 | - results = self.documentrest.delete(id) | |
214 | + results = orgao_base.documentrest.delete(id) | |
215 | 215 | |
216 | 216 | return results | ... | ... |
wscacicneo/static/admin.js
... | ... | @@ -1,82 +0,0 @@ |
1 | -var painelContent= | |
2 | - Ext.create('Ext.tree.Panel', { | |
3 | - renderTo: Ext.getBody(), | |
4 | - title: '', | |
5 | - root: { | |
6 | - text: 'Administração', | |
7 | - expanded: true, | |
8 | - children: [ | |
9 | - { | |
10 | - text: 'Administração de Órgãos', | |
11 | - expanded: true, | |
12 | - children: [ | |
13 | - { | |
14 | - text: 'Cadastrar Órgão', | |
15 | - leaf: true | |
16 | - }, | |
17 | - { | |
18 | - text: 'Configuração do Bot', | |
19 | - leaf: true | |
20 | - }, | |
21 | - { | |
22 | - text: 'Lista de Órgãos', | |
23 | - leaf: true | |
24 | - }, | |
25 | - ] | |
26 | - }, | |
27 | - { | |
28 | - text: 'Administração de Usuário', | |
29 | - expanded: true, | |
30 | - children: [ | |
31 | - { | |
32 | - text: 'Cadastro de Usuário', | |
33 | - leaf: true | |
34 | - }, | |
35 | - { | |
36 | - text: 'Lista de Usuários', | |
37 | - leaf: true | |
38 | - }, | |
39 | - ] | |
40 | - }, | |
41 | - { | |
42 | - text: 'Configurções do sistema', | |
43 | - expanded: true, | |
44 | - children: [ | |
45 | - { | |
46 | - text: 'Configurações das Bases de dados', | |
47 | - leaf: true | |
48 | - }, | |
49 | - { | |
50 | - text: 'Confirgurações da aplicação', | |
51 | - leaf: true | |
52 | - }, | |
53 | - ] | |
54 | - }, | |
55 | - | |
56 | - ] | |
57 | - } | |
58 | - }); | |
59 | - | |
60 | -admin = Ext.create('Ext.panel.Panel', { | |
61 | - title: 'Painel de Administração', | |
62 | - width: '75%', | |
63 | - frame: true, | |
64 | - layout: 'fit', | |
65 | - collapsible: true, | |
66 | - draggable: true, | |
67 | - border : true, | |
68 | - style: { | |
69 | - margin: '0px auto 15px auto' | |
70 | - }, | |
71 | - items: painelContent | |
72 | - }); | |
73 | - | |
74 | -Ext.onReady(function(){ | |
75 | - | |
76 | - Ext.create('Ext.Container', { | |
77 | - padding: '15px', | |
78 | - items: [admin], | |
79 | - renderTo: 'widgets' | |
80 | - }); | |
81 | - | |
82 | -}); |
wscacicneo/static/ajaxurl.js
... | ... | @@ -1,16 +0,0 @@ |
1 | -function crossDomainPost() { | |
2 | - // Add the iframe with a unique name | |
3 | - var iframe = document.createElement("iframe"); | |
4 | - var uniqueString = "nome"; | |
5 | - document.body.appendChild(iframe); | |
6 | - iframe.style.display = "none"; | |
7 | - iframe.contentWindow.name = uniqueString; | |
8 | - | |
9 | - // construct a form with hidden inputs, targeting the iframe | |
10 | - var form = document.createElement("form"); | |
11 | - form.target = uniqueString; | |
12 | - form.action = "http://http://10.1.0.95/Cacic/so"; | |
13 | - form.method = "POST"; | |
14 | - | |
15 | - form.submit(); | |
16 | -} | |
17 | 0 | \ No newline at end of file |
wscacicneo/static/analisegraficatabela.js
... | ... | @@ -1,97 +0,0 @@ |
1 | -w = document.getElementById('widgets'); | |
2 | -t = w.textContent; | |
3 | -var regex = new RegExp("'", 'g'); | |
4 | -t.replace(regex,'"'); | |
5 | -t = t.replace(regex,'"'); | |
6 | -JSON.parse(t); | |
7 | -t = JSON.parse(t); | |
8 | - | |
9 | -var store1 = Ext.create('Ext.data.Store', { | |
10 | - storeId:'Simpsons', | |
11 | - fields:['wcount', 'ucount', 'dcount', 'a', 'b', 'c'], | |
12 | - data: t, | |
13 | - proxy: { | |
14 | - type: 'memory', | |
15 | - reader: { | |
16 | - type: 'json', | |
17 | - root: 'items' | |
18 | - } | |
19 | - } | |
20 | -}); | |
21 | - | |
22 | -Ext.require('Ext.chart.*'); | |
23 | -Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBox']); | |
24 | - | |
25 | -Ext.onReady(function () { | |
26 | - | |
27 | - var chart = Ext.create('Ext.chart.Chart', { | |
28 | - animate: true, | |
29 | - shadow: true, | |
30 | - store: store1, | |
31 | - axes: [{ | |
32 | - type: 'Numeric', | |
33 | - position: 'left', | |
34 | - fields: ['data1'], | |
35 | - title: 'Quantidade', | |
36 | - grid: true, | |
37 | - minimum: 0, | |
38 | - maximum: 16 | |
39 | - }, { | |
40 | - type: 'Category', | |
41 | - position: 'bottom', | |
42 | - fields: ['a', 'b', 'c'], | |
43 | - title: 'Sistemas Operacionais', | |
44 | - label: { | |
45 | - } | |
46 | - }], | |
47 | - series: [{ | |
48 | - type: 'column', | |
49 | - axis: 'left', | |
50 | - gutter: 80, | |
51 | - xField: '', | |
52 | - yField: ['wcount', 'ucount', 'dcount'], | |
53 | - tips: { | |
54 | - trackMouse: true, | |
55 | - width: 74, | |
56 | - height: 38, | |
57 | - renderer: function(storeItem, item) { | |
58 | - this.setTitle(storeItem.get('name')); | |
59 | - this.update(storeItem.get('data1')); | |
60 | - } | |
61 | - }, | |
62 | - style: { | |
63 | - fill: '#38B8BF' | |
64 | - } | |
65 | - }] | |
66 | - }); | |
67 | - | |
68 | - | |
69 | - var panel1 = Ext.create('widget.panel', { | |
70 | - width: 800, | |
71 | - height: 400, | |
72 | - title: 'Column Chart with Reload - Hits per Month', | |
73 | - renderTo: 'centro', | |
74 | - layout: 'fit', | |
75 | - tbar: [{ | |
76 | - text: 'Save Chart', | |
77 | - handler: function() { | |
78 | - Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?', function(choice){ | |
79 | - if(choice == 'yes'){ | |
80 | - chart.save({ | |
81 | - type: 'image/png' | |
82 | - }); | |
83 | - } | |
84 | - }); | |
85 | - } | |
86 | - }, { | |
87 | - text: 'Reload Data', | |
88 | - handler: function() { | |
89 | - // Add a short delay to prevent fast sequential clicks | |
90 | - window.loadTask.delay(100, function() { | |
91 | - store1.loadData(generateData()); | |
92 | - }); | |
93 | - } | |
94 | - }], | |
95 | - items: chart | |
96 | - }); | |
97 | -}); | |
98 | 0 | \ No newline at end of file |
wscacicneo/static/basico.js
... | ... | @@ -1,63 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Nome', | |
15 | - width: 350, | |
16 | - name: 'matricula' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Data da instalação', | |
20 | - width: 200, | |
21 | - name: 'email' | |
22 | - }, | |
23 | - { | |
24 | - xtype: 'button', | |
25 | - text: 'Enviar', | |
26 | - style : { | |
27 | - margin : " 0px 10px 0px 330px" | |
28 | - } | |
29 | - }, | |
30 | - { | |
31 | - xtype: 'button', | |
32 | - text: 'Limpar', | |
33 | - }, | |
34 | - ] | |
35 | -}); | |
36 | - | |
37 | -painel = Ext.create('Ext.panel.Panel', { | |
38 | - layout: 'fit', | |
39 | - title: 'Software Básico', | |
40 | - width: '75%', | |
41 | - height: 200, | |
42 | - frame: true, | |
43 | - draggable: true, | |
44 | - collapsible: true, | |
45 | - border : true, | |
46 | - style: { | |
47 | - "text-align": 'center', | |
48 | - margin: '0px auto 15px auto' | |
49 | - }, | |
50 | - items: table, | |
51 | -}); | |
52 | - | |
53 | -Ext.onReady(function(){ | |
54 | - | |
55 | - | |
56 | - Ext.create('Ext.Container', { | |
57 | - padding: '15px', | |
58 | - items: [painel], | |
59 | - renderTo: 'widgets' | |
60 | - }); | |
61 | - | |
62 | -}); | |
63 | - |
wscacicneo/static/botaocentro.js
... | ... | @@ -1,43 +0,0 @@ |
1 | -Ext.create('Ext.button.Button', { | |
2 | - text: 'Abrir texto', | |
3 | - renderTo: 'centro', | |
4 | - handler: function () { | |
5 | - | |
6 | - | |
7 | - if (window.XMLHttpRequest){ | |
8 | - | |
9 | - xmlhttp=new XMLHttpRequest(); | |
10 | - | |
11 | - } | |
12 | - | |
13 | - xmlhttp.onreadystatechange=function(){ | |
14 | - | |
15 | - if (xmlhttp.readyState==4 && xmlhttp.status==200) | |
16 | - | |
17 | - { | |
18 | - | |
19 | - document.getElementById("centro").innerHTML=xmlhttp.responseText; | |
20 | - | |
21 | - } | |
22 | - | |
23 | - } | |
24 | - | |
25 | - xmlhttp.open("GET",'static/cartoon.xml',true); | |
26 | - xmlhttp.send(); | |
27 | - | |
28 | - | |
29 | - | |
30 | - | |
31 | - | |
32 | - | |
33 | - | |
34 | - | |
35 | - | |
36 | - } | |
37 | - | |
38 | - | |
39 | - | |
40 | - | |
41 | - | |
42 | - | |
43 | -}); |
wscacicneo/static/cadastro.js
... | ... | @@ -1,101 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Nome', | |
15 | - width:450, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Username', | |
20 | - width: 250, | |
21 | - name: 'matricula' | |
22 | - }, | |
23 | - { | |
24 | - fieldLabel: 'Senha', | |
25 | - width: 300, | |
26 | - name: 'email' | |
27 | - }, | |
28 | - { | |
29 | - fieldLabel: 'Confirmar senha', | |
30 | - width: 300, | |
31 | - name: 'email' | |
32 | - }, | |
33 | - | |
34 | - { | |
35 | - fieldLabel: 'E-mail', | |
36 | - name: 'telefone' | |
37 | - }, | |
38 | - { | |
39 | - xtype: 'combobox', | |
40 | - name: 'checkbox1', | |
41 | - fieldLabel: 'Orgão', | |
42 | - boxLabel: 'Orgão' | |
43 | - }, | |
44 | - { | |
45 | - xtype:'combobox', | |
46 | - fieldLabel: 'Cargo', | |
47 | - width:450, | |
48 | - name: 'cargo' | |
49 | - }, | |
50 | - { | |
51 | - fieldLabel: 'Telefone', | |
52 | - xtype:'combobox', | |
53 | - fieldLabel: 'Setor', | |
54 | - width:450, | |
55 | - name: 'setor' | |
56 | - }, | |
57 | - { | |
58 | - fieldLabel: 'SIAPE', | |
59 | - width:450, | |
60 | - name: 'setor' | |
61 | - }, | |
62 | - { | |
63 | - xtype: 'button', | |
64 | - text: 'Enviar', | |
65 | - style:{ | |
66 | - margin: '0px 10px 0px 300px', | |
67 | - } | |
68 | - }, | |
69 | - { | |
70 | - xtype: 'button', | |
71 | - text: 'Cancelar', | |
72 | - }, | |
73 | - ] | |
74 | -}); | |
75 | - | |
76 | -painel = Ext.create('Ext.panel.Panel', { | |
77 | - layout: 'fit', | |
78 | - title: 'Cadastro Usuário', | |
79 | - width: '75%', | |
80 | - height: 320, | |
81 | - frame: true, | |
82 | - draggable: true, | |
83 | - collapsible: true, | |
84 | - border : true, | |
85 | - style: { | |
86 | - "text-align": 'center', | |
87 | - margin: '0px auto 15px auto' | |
88 | - }, | |
89 | - items: table, | |
90 | -}); | |
91 | - | |
92 | -Ext.onReady(function(){ | |
93 | - | |
94 | - | |
95 | - Ext.create('Ext.Container', { | |
96 | - padding: '15px', | |
97 | - items: [painel], | |
98 | - renderTo: 'widgets' | |
99 | - }); | |
100 | - | |
101 | -}); |
wscacicneo/static/coleta.json
... | ... | @@ -1 +0,0 @@ |
1 | -{"results":[{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BLF46","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2659","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2659","ExtClock":"333","DataWidth":"32","SystemName":"SLTI-122112"},"id_reg":"d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35","Win32_MemoryDevice":{"SystemName":"SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0139168[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112","Parameters":"[[REG]][[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"00000000[[REG]]00000000","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"21[[REG]]21","InterleavePosition":"[[REG]]","Manufacturer":"Unknown[[REG]]Unknown","Speed":"1067[[REG]]1067","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"000000000000000000000000000000000000[[REG]]000000000000000000000000000000000000","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BK80G","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"LGA 775","Name":"Intel(R) Core(TM)2 Quad CPU Q8400 @ 2.66GHz","Family":"190","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 23 Stepping 10","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Architecture":"9","Caption":"Intel64 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"21","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2667","ExtClock":"333","DataWidth":"64","SystemName":"SLTI-120715"},"id_reg":"4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce","Win32_MemoryDevice":{"SystemName":"SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715","Caption":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE4[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE2[[REG]]....CDROM0","Version":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]][[REG]]","SerialNumber":"S21PJ50Z229955[[REG]][[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715","Parameters":"[[REG]][[REG]][[REG]][[REG]]","Name":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","PortName":"XPSPort:[[REG]]10.209.50.70[[REG]]FOXIT_PDF:[[REG]]SHRFAX:[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]300[[REG]]200[[REG]]600","Attributes":"576[[REG]]576[[REG]]64[[REG]]16448[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]hpcPP6de[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]]","DriverName":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer Driver[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]]","Caption":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]][[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]300[[REG]]200[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Base Board","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 1[[REG]]Physical Memory 3","Version":"[[REG]]","InterleaveDataDepth":"2[[REG]]2","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"4294967296[[REG]]4294967296","TotalWidth":"64[[REG]]64","SerialNumber":"073357A4[[REG]]073357B3","BankLabel":"BANK 1[[REG]]BANK 3","MemoryType":"0[[REG]]0","InterleavePosition":"1[[REG]]2","Manufacturer":"0194[[REG]]0194","Speed":"1333[[REG]]1333","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"ChannelA-DIMM1[[REG]]ChannelB-DIMM1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"1[[REG]]1","OtherIdentifyingInfo":"[[REG]]","PartNumber":"SH564128FH8N0QHSCG[[REG]]SH564128FH8N0QHSCG","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"64[[REG]]64"},"Win32_BIOS":{"Version":"DELL - 6222004","Caption":"Default System BIOS","SMBIOSMinorVersion":"6","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"DELL - 6222004","Description":"Default System BIOS","SMBIOSBIOSVersion":"A10","BiosCharacteristics":"7","SerialNumber":"41JV8S1","PrimaryBIOS":"True","ReleaseDate":"20111124000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Dell Inc."},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"CPU 1","Name":"Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz","Family":"206","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 42 Stepping 7","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF000206A7","Architecture":"9","Caption":"Intel64 Family 6 Model 42 Stepping 7","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"4","UpgradeMethod":"1","DeviceID":"CPU0","L2CacheSize":"512","Revision":"10759","MaxClockSpeed":"3300","ExtClock":"100","DataWidth":"64","SystemName":"SLTI-136570"},"id_reg":"4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a","Win32_MemoryDevice":{"SystemName":"SLTI-136570[[REG]]SLTI-136570","Caption":"Memory Device[[REG]]Memory Device","Availability":"[[REG]]","InstallDate":"[[REG]]","SystemLevelAddress":"[[REG]]","NumberOfBlocks":"[[REG]]","Access":"[[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1","Description":"Memory Device[[REG]]Memory Device","EndingAddress":"4194303[[REG]]8388607","Purpose":"[[REG]]","Name":"Memory Device[[REG]]Memory Device","BlockSize":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....CDROM0","Version":"[[REG]][[REG]]","Caption":"[[REG]][[REG]]","Name":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","Model":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SerialNumber":"9VPEAXQ9[[REG]][[REG]]","MediaDescription":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]]","Capacity":"[[REG]][[REG]]","MediaType":"[[REG]][[REG]]","Manufacturer":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]1","SystemName":"SLTI-136570[[REG]]SLTI-136570[[REG]]SLTI-136570[[REG]]SLTI-136570","Parameters":"[[REG]][[REG]][[REG]]","Name":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","PortName":"XPSPort:[[REG]]SHRFAX:[[REG]]nul:[[REG]]CPW2:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]200[[REG]]600[[REG]]600","Attributes":"576[[REG]]16448[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"Microsoft XPS Document Writer[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]6","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]200[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"/41JV8S1/BR108191BJ005L/","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","Version":"A00","Product":"0HY9JP","Description":"Base Board","Manufacturer":"Dell Inc."},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9RX","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SPOA-112240"},"id_reg":"ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d","Win32_MemoryDevice":{"SystemName":"SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7X2FQ"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]1","SystemName":"SPOA-112240[[REG]]SPOA-112240","Parameters":"[[REG]]","Name":"PDFCreator[[REG]]CutePDF Writer","PortName":"PDFCreator:[[REG]]CPW2:","MaxSizeSupported":"[[REG]]","HorizontalResolution":"600[[REG]]600","Attributes":"68[[REG]]576","Network":"False[[REG]]False","Comment":"eDoc Printer[[REG]]","CharSetsSupported":"[[REG]]","Description":"[[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]]","Location":"[[REG]]","DriverName":"PDFCreator[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]]","Default":"True[[REG]]False","Shared":"False[[REG]]False","MimeTypesSupported":"[[REG]]","Caption":"PDFCreator[[REG]]CutePDF Writer","Availability":"[[REG]]","InstallDate":"[[REG]]","CurrentCharSet":"[[REG]]","Local":"True[[REG]]True","Direct":"False[[REG]]False","LanguagesSupported":"[[REG]]","WorkOffline":"False[[REG]]False","SpoolEnabled":"True[[REG]]True","DeviceID":"PDFCreator[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0","ServerName":"[[REG]]","MarkingTechnology":"[[REG]]","KeepPrintedJobs":"False[[REG]]False","ShareName":"PDFCreator[[REG]]","VerticalResolution":"600[[REG]]600","MaxNumberUp":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9RX","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9JZ","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112211"},"id_reg":"e7f6c011776e8db7cd330b54174fd76f7d0216b612387a5ffcfb81e6f0919683","Win32_MemoryDevice":{"SystemName":"SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7X2N7"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7","SystemName":"SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211","Parameters":"[[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576","Network":"False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]]","Location":"[[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9JZ","Tag":"Base Board","Description":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Caption":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BLF3R","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SE-122248"},"id_reg":"7902699be42c8a8e46fbbb4501726517e86b22c56a189f7625a6da49081b2451","Win32_MemoryDevice":{"SystemName":"SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0139148[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248","Parameters":"[[REG]][[REG]][[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"[[REG]]600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9LZ","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2992","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112208"},"id_reg":"2c624232cdd221771294dfbb310aca000a0df6ac8b66b696d90ef06fdefb64a3","Win32_MemoryDevice":{"SystemName":"SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7WZER"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208","Parameters":"[[REG]][[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9LZ","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 1[[REG]]Physical Memory 3","Version":"[[REG]]","InterleaveDataDepth":"2[[REG]]2","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"4294967296[[REG]]4294967296","TotalWidth":"64[[REG]]64","SerialNumber":"07336A67[[REG]]07336A6D","BankLabel":"BANK 1[[REG]]BANK 3","MemoryType":"0[[REG]]0","InterleavePosition":"1[[REG]]2","Manufacturer":"0194[[REG]]0194","Speed":"1333[[REG]]1333","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"ChannelA-DIMM1[[REG]]ChannelB-DIMM1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"1[[REG]]1","OtherIdentifyingInfo":"[[REG]]","PartNumber":"SH564128FH8N0QHSCG[[REG]]SH564128FH8N0QHSCG","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"64[[REG]]64"},"Win32_BIOS":{"Version":"DELL - 6222004","Caption":"Default System BIOS","SMBIOSMinorVersion":"6","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"DELL - 6222004","Description":"Default System BIOS","SMBIOSBIOSVersion":"A10","BiosCharacteristics":"7","SerialNumber":"41QH8S1","PrimaryBIOS":"True","ReleaseDate":"20111124000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Dell Inc."},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"CPU 1","Name":"Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz","Family":"206","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 42 Stepping 7","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF000206A7","Architecture":"9","Caption":"Intel64 Family 6 Model 42 Stepping 7","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"4","UpgradeMethod":"1","DeviceID":"CPU0","L2CacheSize":"512","Revision":"10759","MaxClockSpeed":"3300","ExtClock":"100","DataWidth":"64","SystemName":"SLTI-136537"},"id_reg":"19581e27de7ced00ff1ce50b2047e7a567c76b1cbaebabe5ef03f7c3017bb5b7","Win32_MemoryDevice":{"SystemName":"SLTI-136537[[REG]]SLTI-136537","Caption":"Memory Device[[REG]]Memory Device","Availability":"[[REG]]","InstallDate":"[[REG]]","SystemLevelAddress":"[[REG]]","NumberOfBlocks":"[[REG]]","Access":"[[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1","Description":"Memory Device[[REG]]Memory Device","EndingAddress":"4194303[[REG]]8388607","Purpose":"[[REG]]","Name":"Memory Device[[REG]]Memory Device","BlockSize":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....CDROM0","Version":"[[REG]]","Caption":"[[REG]]","Name":"[[REG]]","InstallDate":"[[REG]]","Model":"[[REG]]","PartNumber":"[[REG]]","SerialNumber":"9VPEEZ7Y[[REG]]","MediaDescription":"[[REG]]","Description":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","Capacity":"[[REG]]","MediaType":"[[REG]]","Manufacturer":"[[REG]]","SKU":"[[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]7[[REG]]7[[REG]]1","SystemName":"SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537","Parameters":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","PortName":"10.209.50.129[[REG]]XPSPort:[[REG]]10.209.50.40[[REG]]SHRFAX:[[REG]]nul:[[REG]]CPW2:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]200[[REG]]600[[REG]]600","Attributes":"584[[REG]]576[[REG]]2624[[REG]]16448[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]][[REG]]","DriverName":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Shared":"True[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Caption":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"50[[REG]][[REG]]49[[REG]][[REG]][[REG]]6","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","JobCountSinceLastReset":"1[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"Ricoh Aficio MP C2500 PCL6[[REG]][[REG]][[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]200[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"/41QH8S1/BR108191BI00MZ/","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","Version":"A00","Product":"0HY9JP","Description":"Base Board","Manufacturer":"Dell Inc."},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BKM50","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SE-120708"},"id_reg":"4a44dc15364204a80fe80e9039455cc1608281820fe2b24f1e5233ade6af1dd5","Win32_MemoryDevice":{"SystemName":"SE-120708[[REG]]SE-120708[[REG]]SE-120708[[REG]]SE-120708","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0035648[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7[[REG]]7","SystemName":"SE-120708[[REG]]SE-120708[[REG]]SE-120708[[REG]]SE-120708","Parameters":"[[REG]][[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint[[REG]]HPZPP052","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]][[REG]]","VerticalResolution":"[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BKZD1","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SLTI-120396"},"id_reg":"4fc82b26aecb47d2868c4efbe3581732a3e7cbcc6c2efb32062c08170a05eeb8","Win32_MemoryDevice":{"SystemName":"SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de interface humana USB","Name":"Dispositivo de interface humana USB","Description":"Dispositivo de interface humana USB","Manufacturer":"(Dispositivos de sistema padro)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"1SUF5JQ0432076[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7","SystemName":"SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396","Parameters":"[[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:","MaxSizeSupported":"[[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68","Network":"False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]]","CharSetsSupported":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]][[REG]]","Location":"[[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","PaperTypesAvailable":"[[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True","Shared":"False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","Availability":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","JobCountSinceLastReset":"0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]]","VerticalResolution":"[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG904F0ZH","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112183"},"id_reg":"6b51d431df5d7f141cbececcf79edf3dd861c3b4069f0b11661a3eefacbba918","Win32_MemoryDevice":{"SystemName":"SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","Version":"[[REG]]","Caption":"[[REG]]","Name":"[[REG]]","InstallDate":"[[REG]]","Model":"[[REG]]","PartNumber":"[[REG]]","SerialNumber":"6RX7VX3V","MediaDescription":"[[REG]]","Description":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","Capacity":"[[REG]]","MediaType":"[[REG]]","Manufacturer":"[[REG]]","SKU":"[[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]1","SystemName":"SLTI-112183[[REG]]SLTI-112183","Parameters":"[[REG]]","Name":"PDFCreator[[REG]]CutePDF Writer","PortName":"PDFCreator:[[REG]]CPW2:","MaxSizeSupported":"[[REG]]","HorizontalResolution":"600[[REG]]600","Attributes":"68[[REG]]576","Network":"False[[REG]]False","Comment":"eDoc Printer[[REG]]","CharSetsSupported":"[[REG]]","Description":"[[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]]","Location":"[[REG]]","DriverName":"PDFCreator[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]]","Default":"True[[REG]]False","Shared":"False[[REG]]False","MimeTypesSupported":"[[REG]]","Caption":"PDFCreator[[REG]]CutePDF Writer","Availability":"[[REG]]","InstallDate":"[[REG]]","CurrentCharSet":"[[REG]]","Local":"True[[REG]]True","Direct":"False[[REG]]False","LanguagesSupported":"[[REG]]","WorkOffline":"False[[REG]]False","SpoolEnabled":"True[[REG]]True","DeviceID":"PDFCreator[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0","ServerName":"[[REG]]","MarkingTechnology":"[[REG]]","KeepPrintedJobs":"False[[REG]]False","ShareName":"PDFCreator[[REG]]","VerticalResolution":"600[[REG]]600","MaxNumberUp":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG904F0ZH","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}}],"result_count":12} | |
2 | 0 | \ No newline at end of file |
wscacicneo/static/computador.js
... | ... | @@ -1,72 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Nº Patrimônio', | |
15 | - width:300, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Fabricante', | |
20 | - xtype:'combobox', | |
21 | - width: 300, | |
22 | - name: 'tipo' | |
23 | - }, | |
24 | - { | |
25 | - fieldLabel: 'Marca', | |
26 | - width:300, | |
27 | - name: 'marca' | |
28 | - }, | |
29 | - { | |
30 | - xtype: 'button', | |
31 | - text: 'Enviar', | |
32 | - style:{ | |
33 | - margin: '0px 10px 0px 270px', | |
34 | - } | |
35 | - }, | |
36 | - { | |
37 | - xtype: 'button', | |
38 | - text: 'Limpar', | |
39 | - style:{ | |
40 | - margin: '0px 10px 0px 0px', | |
41 | - } | |
42 | - }, | |
43 | - ] | |
44 | -}); | |
45 | - | |
46 | -painel = Ext.create('Ext.panel.Panel', { | |
47 | - layout: 'fit', | |
48 | - title: 'Computador', | |
49 | - width: 425, | |
50 | - height: 150, | |
51 | - frame: true, | |
52 | - draggable: true, | |
53 | - collapsible: true, | |
54 | - border : true, | |
55 | - style: { | |
56 | - "text-align": 'center', | |
57 | - margin: '0px auto 15px auto' | |
58 | - }, | |
59 | - items: table, | |
60 | -}); | |
61 | - | |
62 | -Ext.onReady(function(){ | |
63 | - | |
64 | - | |
65 | - Ext.create('Ext.Container', { | |
66 | - padding: '15px', | |
67 | - items: [painel], | |
68 | - renderTo: 'widgets' | |
69 | - }); | |
70 | - | |
71 | -}); | |
72 | - |
wscacicneo/static/config.js
... | ... | @@ -1,128 +0,0 @@ |
1 | -/*GRAFICO DE ORGÃOS*/ | |
2 | - | |
3 | - | |
4 | -Ext.define('User',{ | |
5 | - extend: 'Ext.data.Model', | |
6 | - fields: [ 'codigo', 'orgao', 'date' ] | |
7 | -}); | |
8 | - | |
9 | -var userStore = Ext.create('Ext.data.Store', { | |
10 | - model: 'User', | |
11 | - data: [ | |
12 | - { codigo: 'Gráficos'}, | |
13 | - { codigo: 'Favoritos'}, | |
14 | - { codigo: 'Pesquisa Rápida'}, | |
15 | - { codigo: 'Notificações'}, | |
16 | - { codigo: 'Base de Dados'}, | |
17 | - ] | |
18 | -}); | |
19 | - | |
20 | -table = Ext.create('Ext.grid.Panel', { | |
21 | - store: userStore, | |
22 | - width: 400, | |
23 | - height: 200, | |
24 | - // title: 'Application Users', | |
25 | - columns: [ | |
26 | - { | |
27 | - text: 'Opções', | |
28 | - width: 550, | |
29 | - sortable: true, | |
30 | - hideable: false, | |
31 | - dataIndex: 'codigo' | |
32 | - }, | |
33 | - ] | |
34 | -}); | |
35 | - | |
36 | -tabela = Ext.create('Ext.panel.Panel', { | |
37 | - layout: 'fit', | |
38 | - title: 'Configurações da Aplicação', | |
39 | - width: '75%', | |
40 | - height: 165, | |
41 | - frame: true, | |
42 | - draggable: true, | |
43 | - collapsible: true, | |
44 | - border : true, | |
45 | - style: { | |
46 | - "text-align": 'center', | |
47 | - margin: '0px auto 15px auto' | |
48 | - }, | |
49 | - items: table, | |
50 | -}); | |
51 | - | |
52 | -Ext.onReady(function(){ | |
53 | - | |
54 | - | |
55 | - Ext.create('Ext.Container', { | |
56 | - padding: '15px', | |
57 | - items: [tabela], | |
58 | - renderTo: 'widgets' | |
59 | - }); | |
60 | - | |
61 | -}); | |
62 | - | |
63 | - | |
64 | -// **** FILTRO DE ITENS **** | |
65 | - | |
66 | -Ext.define('User1',{ | |
67 | - extend: 'Ext.data.Model', | |
68 | - fields: ['chbox', 'item' ] | |
69 | -}); | |
70 | - | |
71 | -var userStore1 = Ext.create('Ext.data.Store', { | |
72 | - model: 'User1', | |
73 | - data: [ | |
74 | - { item: 'Relatórios'}, | |
75 | - { item: 'Meu Perfil'}, | |
76 | - ] | |
77 | -}); | |
78 | - | |
79 | -table1 = Ext.create('Ext.grid.Panel', { | |
80 | - store: userStore1, | |
81 | - width: 400, | |
82 | - height: 200, | |
83 | - // title: 'Application Users', | |
84 | - columns: [ | |
85 | - { | |
86 | - text: 'Pesquisar', | |
87 | - width: 500, | |
88 | - sortable: true, | |
89 | - hideable: false, | |
90 | - dataIndex: 'item' | |
91 | - }, | |
92 | - { | |
93 | - text: 'Remover', | |
94 | - width: 100, | |
95 | - sortable: true, | |
96 | - hideable: false, | |
97 | - dataIndex: 'excluir' | |
98 | - }, | |
99 | - | |
100 | - ] | |
101 | -}); | |
102 | - | |
103 | -tabela1 = Ext.create('Ext.panel.Panel', { | |
104 | - layout: 'fit', | |
105 | - title: 'Favoritos', | |
106 | - width: '75%', | |
107 | - frame: true, | |
108 | - draggable: true, | |
109 | - collapsible: true, | |
110 | - border : true, | |
111 | - style: { | |
112 | - "text-align": 'center', | |
113 | - margin: '0px auto 15px auto' | |
114 | - }, | |
115 | - items: table1, | |
116 | -}); | |
117 | - | |
118 | -Ext.onReady(function(){ | |
119 | - | |
120 | - | |
121 | - Ext.create('Ext.Container', { | |
122 | - padding:'15px', | |
123 | - items: [tabela1], | |
124 | - renderTo: 'widgets' | |
125 | - }); | |
126 | - | |
127 | -}); | |
128 | - |
wscacicneo/static/configapi.js
... | ... | @@ -1,66 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - xtype:'combobox', | |
15 | - fieldLabel: 'Fonte', | |
16 | - width:300, | |
17 | - name: 'fonte' | |
18 | - }, | |
19 | - { | |
20 | - xtype:'combobox', | |
21 | - fieldLabel: 'Estilo de cores', | |
22 | - width: 250, | |
23 | - name: 'matricula' | |
24 | - }, | |
25 | - { | |
26 | - xtype: 'button', | |
27 | - text: 'Confirmar', | |
28 | - style:{ | |
29 | - margin: '0px 10px 0px 300px', | |
30 | - } | |
31 | - }, | |
32 | - { | |
33 | - xtype: 'button', | |
34 | - text: 'Cancelar', | |
35 | - }, | |
36 | - | |
37 | - ] | |
38 | -}); | |
39 | - | |
40 | -painel = Ext.create('Ext.panel.Panel', { | |
41 | - layout: 'fit', | |
42 | - title: 'Configuração da Aplicação', | |
43 | - width: '75%', | |
44 | - height: 200, | |
45 | - frame: true, | |
46 | - draggable: true, | |
47 | - collapsible: true, | |
48 | - border : true, | |
49 | - style: { | |
50 | - "text-align": 'center', | |
51 | - margin: '0px auto 15px auto' | |
52 | - }, | |
53 | - items: table, | |
54 | -}); | |
55 | - | |
56 | -Ext.onReady(function(){ | |
57 | - | |
58 | - | |
59 | - Ext.create('Ext.Container', { | |
60 | - padding: '15px', | |
61 | - items: [painel], | |
62 | - renderTo: 'widgets' | |
63 | - }); | |
64 | - | |
65 | -}); | |
66 | - |
wscacicneo/static/configcoleta.js
... | ... | @@ -1,154 +0,0 @@ |
1 | -// **** FILTRO DE ITENS **** | |
2 | - | |
3 | -Ext.define('User1',{ | |
4 | - extend: 'Ext.data.Model', | |
5 | - fields: ['chbox', 'item' ] | |
6 | -}); | |
7 | - | |
8 | -var userStore1 = Ext.create('Ext.data.Store', { | |
9 | - model: 'User1', | |
10 | - data: [ | |
11 | - { item: 'Computador'}, | |
12 | - { item: 'Processador'}, | |
13 | - { item: 'Memórias'}, | |
14 | - { item: 'Hard Disk (HD)'}, | |
15 | - { item: 'Sistemas Operacionais'}, | |
16 | - { item: 'Suítes de Escritórios'}, | |
17 | - { item: 'Ativos de Redes'}, | |
18 | - { item: 'Softwares Básicos'}, | |
19 | - ] | |
20 | -}); | |
21 | - | |
22 | -table1 = Ext.create('Ext.grid.Panel', { | |
23 | - store: userStore1, | |
24 | - width: 400, | |
25 | - height: 200, | |
26 | - // title: 'Application Users', | |
27 | - columns: [ | |
28 | - { | |
29 | - text: 'Item', | |
30 | - width: 500, | |
31 | - sortable: true, | |
32 | - hideable: false, | |
33 | - dataIndex: 'item' | |
34 | - }, | |
35 | - ] | |
36 | -}); | |
37 | - | |
38 | -tabela1 = Ext.create('Ext.panel.Panel', { | |
39 | - layout: 'fit', | |
40 | - title: 'Campos da Coleta', | |
41 | - width: '75%', | |
42 | - frame: true, | |
43 | - draggable: true, | |
44 | - collapsible: true, | |
45 | - border : true, | |
46 | - style: { | |
47 | - "text-align": 'center', | |
48 | - margin: '0px auto 15px auto' | |
49 | - }, | |
50 | - items: table1, | |
51 | -}); | |
52 | - | |
53 | - | |
54 | - Ext.create('Ext.Container', { | |
55 | - padding:'15px', | |
56 | - items: [tabela1], | |
57 | - renderTo: 'widgets' | |
58 | - }); | |
59 | - | |
60 | - | |
61 | - | |
62 | -//------------------------------------ | |
63 | - | |
64 | - | |
65 | -Ext.define('User2',{ | |
66 | - extend: 'Ext.data.Model', | |
67 | - fields: ['chbox', 'item' ] | |
68 | -}); | |
69 | - | |
70 | -var userStore2 = Ext.create('Ext.data.Store', { | |
71 | - model: 'User2', | |
72 | - data: [ | |
73 | - { item: 'Computador'}, | |
74 | - { item: 'Processador'}, | |
75 | - { item: 'memórias'}, | |
76 | - { item: 'memórias'}, | |
77 | - | |
78 | - ] | |
79 | -}); | |
80 | - | |
81 | -table2 = Ext.create('Ext.grid.Panel', { | |
82 | - store: userStore2, | |
83 | - width: 400, | |
84 | - // title: 'Application Users', | |
85 | - columns: [ | |
86 | - { | |
87 | - text: 'Item', | |
88 | - width: 490, | |
89 | - sortable: true, | |
90 | - hideable: false, | |
91 | - dataIndex: 'item' | |
92 | - }, | |
93 | - ], | |
94 | - bbar:[ | |
95 | - { | |
96 | - xtype: 'button', | |
97 | - text: 'Gerar Relatório', | |
98 | - style:{ | |
99 | - margin: '0px 10px 0px 200px', | |
100 | - } | |
101 | - }, | |
102 | - { | |
103 | - xtype: 'button', | |
104 | - text: 'Limpar Campos', | |
105 | - },{ | |
106 | - xtype: 'button', | |
107 | - text: 'Cancelar', | |
108 | - }, | |
109 | - ] | |
110 | -}); | |
111 | - | |
112 | -tabela2 =Ext.create('Ext.panel.Panel', { | |
113 | - layout: 'fit', | |
114 | - title: 'Campos Selecionados', | |
115 | - width: '75%', | |
116 | - frame: true, | |
117 | - draggable: true, | |
118 | - collapsible: true, | |
119 | - border : true, | |
120 | - style: { | |
121 | - "text-align": 'center', | |
122 | - margin: '0px auto 15px auto' | |
123 | - }, | |
124 | - items: [table2, | |
125 | - { | |
126 | - xtype: 'button', | |
127 | - text: 'Gerar Relatório', | |
128 | - style:{ | |
129 | - margin: '0px 10px 0px 0px', | |
130 | - } | |
131 | - }, | |
132 | - { | |
133 | - xtype: 'button', | |
134 | - text: 'Limpar Campos', | |
135 | - },{ | |
136 | - xtype: 'button', | |
137 | - text: 'Cancelar', | |
138 | - }, | |
139 | -] | |
140 | - | |
141 | -}); | |
142 | - | |
143 | -Ext.onReady(function(){ | |
144 | - | |
145 | - | |
146 | - Ext.create('Ext.Container', { | |
147 | - padding:'15px', | |
148 | - items: [tabela2], | |
149 | - renderTo: 'widgets' | |
150 | - }); | |
151 | - | |
152 | -}); | |
153 | - | |
154 | - |
wscacicneo/static/configfav.js
... | ... | @@ -1,130 +0,0 @@ |
1 | -// **** FILTRO DE ITENS **** | |
2 | - | |
3 | -Ext.define('User1',{ | |
4 | - extend: 'Ext.data.Model', | |
5 | - fields: ['chbox', 'item' ] | |
6 | -}); | |
7 | - | |
8 | -var userStore1 = Ext.create('Ext.data.Store', { | |
9 | - model: 'User1', | |
10 | - data: [ | |
11 | - { item: 'Relatórios'}, | |
12 | - { item: 'Gestão de Orgãos'}, | |
13 | - { item: 'Notificações'}, | |
14 | - { item: 'Meu Perfil'}, | |
15 | - { item: 'Configurar API'}, | |
16 | - ] | |
17 | -}); | |
18 | - | |
19 | -table1 = Ext.create('Ext.grid.Panel', { | |
20 | - store: userStore1, | |
21 | - width: 400, | |
22 | - height: 200, | |
23 | - // title: 'Application Users', | |
24 | - columns: [ | |
25 | - { | |
26 | - text: 'Item', | |
27 | - width: 500, | |
28 | - sortable: true, | |
29 | - hideable: false, | |
30 | - dataIndex: 'item' | |
31 | - }, | |
32 | - ] | |
33 | -}); | |
34 | - | |
35 | -tabela1 = Ext.create('Ext.panel.Panel', { | |
36 | - layout: 'fit', | |
37 | - title: 'Lista de Funcionalidade', | |
38 | - width: '75%', | |
39 | - frame: true, | |
40 | - draggable: true, | |
41 | - collapsible: true, | |
42 | - border : true, | |
43 | - style: { | |
44 | - "text-align": 'center', | |
45 | - margin: '0px auto 15px auto' | |
46 | - }, | |
47 | - items: table1, | |
48 | -}); | |
49 | - | |
50 | - | |
51 | - Ext.create('Ext.Container', { | |
52 | - padding:'15px', | |
53 | - items: [tabela1], | |
54 | - renderTo: 'widgets' | |
55 | - }); | |
56 | - | |
57 | - | |
58 | - | |
59 | -//------------------------------------ | |
60 | - | |
61 | - | |
62 | -Ext.define('User2',{ | |
63 | - extend: 'Ext.data.Model', | |
64 | - fields: ['chbox', 'item' ] | |
65 | -}); | |
66 | - | |
67 | -var userStore2 = Ext.create('Ext.data.Store', { | |
68 | - model: 'User2', | |
69 | - data: [ | |
70 | - { item: 'Relatório'}, | |
71 | - { item: 'Meu Perfil'}, | |
72 | - | |
73 | - ] | |
74 | -}); | |
75 | - | |
76 | -table2 = Ext.create('Ext.grid.Panel', { | |
77 | - store: userStore2, | |
78 | - width: 400, | |
79 | - // title: 'Application Users', | |
80 | - columns: [ | |
81 | - { | |
82 | - text: 'Item', | |
83 | - width: 490, | |
84 | - sortable: true, | |
85 | - hideable: false, | |
86 | - dataIndex: 'item' | |
87 | - }, | |
88 | - ], | |
89 | - bbar:[ | |
90 | - { | |
91 | - xtype: 'button', | |
92 | - text: 'Confirmar', | |
93 | - style:{ | |
94 | - margin: '0px 10px 0px 320px', | |
95 | - } | |
96 | - }, | |
97 | - ,{ | |
98 | - xtype: 'button', | |
99 | - text: 'Cancelar', | |
100 | - }, | |
101 | - ] | |
102 | -}); | |
103 | - | |
104 | -tabela2 =Ext.create('Ext.panel.Panel', { | |
105 | - layout: 'fit', | |
106 | - title: 'Favoritos', | |
107 | - width: '75%', | |
108 | - frame: true, | |
109 | - draggable: true, | |
110 | - collapsible: true, | |
111 | - border : true, | |
112 | - style: { | |
113 | - "text-align": 'center', | |
114 | - margin: '0px auto 15px auto' | |
115 | - }, | |
116 | - items: table2, | |
117 | -}); | |
118 | - | |
119 | -Ext.onReady(function(){ | |
120 | - | |
121 | - | |
122 | - Ext.create('Ext.Container', { | |
123 | - padding:'15px', | |
124 | - items: [tabela2], | |
125 | - renderTo: 'widgets' | |
126 | - }); | |
127 | - | |
128 | -}); | |
129 | - | |
130 | - |
wscacicneo/static/confighome.js
... | ... | @@ -1,64 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Numero de atividades visíveis', | |
15 | - width:200, | |
16 | - name: 'ultimas' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Numero da coleta do grafico', | |
20 | - width: 250, | |
21 | - name: 'matricula' | |
22 | - }, | |
23 | - { | |
24 | - xtype: 'button', | |
25 | - text: 'Confirmar', | |
26 | - style:{ | |
27 | - margin: '0px 10px 0px 300px', | |
28 | - } | |
29 | - }, | |
30 | - { | |
31 | - xtype: 'button', | |
32 | - text: 'Cancelar', | |
33 | - }, | |
34 | - | |
35 | - ] | |
36 | -}); | |
37 | - | |
38 | -painel = Ext.create('Ext.panel.Panel', { | |
39 | - layout: 'fit', | |
40 | - title: 'Configurações da Pagina Inicial', | |
41 | - width: '75%', | |
42 | - height: 200, | |
43 | - frame: true, | |
44 | - draggable: true, | |
45 | - collapsible: true, | |
46 | - border : true, | |
47 | - style: { | |
48 | - "text-align": 'center', | |
49 | - margin: '0px auto 15px auto' | |
50 | - }, | |
51 | - items: table, | |
52 | -}); | |
53 | - | |
54 | -Ext.onReady(function(){ | |
55 | - | |
56 | - | |
57 | - Ext.create('Ext.Container', { | |
58 | - padding: '15px', | |
59 | - items: [painel], | |
60 | - renderTo: 'widgets' | |
61 | - }); | |
62 | - | |
63 | -}); | |
64 | - |
wscacicneo/static/dashboard.css
wscacicneo/static/dashboard.js
... | ... | @@ -1,58 +0,0 @@ |
1 | -// **** FILTRO DE ITENS **** | |
2 | - | |
3 | -Ext.define('User1',{ | |
4 | - extend: 'Ext.data.Model', | |
5 | - fields: ['chbox', 'item' ] | |
6 | -}); | |
7 | - | |
8 | -var userStore1 = Ext.create('Ext.data.Store', { | |
9 | - model: 'User1', | |
10 | - data: [ | |
11 | - { item: 'Coletas 1120, 1131, 1149, estão desatualizadas'}, | |
12 | - { item: 'Coleta 1123, Incorreta Número de computadores inconsistente'}, | |
13 | - { item: 'Coleta não efetuada: coleta 1151 está atualizada'}, | |
14 | - ] | |
15 | -}); | |
16 | - | |
17 | -table1 = Ext.create('Ext.grid.Panel', { | |
18 | - store: userStore1, | |
19 | - width: 400, | |
20 | - height: 200, | |
21 | - // title: 'Application Users', | |
22 | - columns: [ | |
23 | - { | |
24 | - text: 'Item', | |
25 | - width: 500, | |
26 | - sortable: true, | |
27 | - hideable: false, | |
28 | - dataIndex: 'item' | |
29 | - }, | |
30 | - ] | |
31 | -}); | |
32 | - | |
33 | -tabela1 = Ext.create('Ext.panel.Panel', { | |
34 | - layout: 'fit', | |
35 | - title: 'Notificações', | |
36 | - width: '75%', | |
37 | - frame: true, | |
38 | - draggable: true, | |
39 | - collapsible: true, | |
40 | - border : true, | |
41 | - style: { | |
42 | - "text-align": 'center', | |
43 | - margin: '0px auto 15px auto' | |
44 | - }, | |
45 | - items: table1, | |
46 | -}); | |
47 | - | |
48 | -Ext.onReady(function(){ | |
49 | - | |
50 | - | |
51 | - Ext.create('Ext.Container', { | |
52 | - padding:'15px', | |
53 | - items: [tabela1], | |
54 | - renderTo: 'widgets' | |
55 | - }); | |
56 | - | |
57 | -}); | |
58 | - |
wscacicneo/static/diagnostic.js
... | ... | @@ -1,48 +0,0 @@ |
1 | -var painelContent= | |
2 | - "Diagnóstico 1" + "<br>" + | |
3 | - "Diagnóstico 2" + "<br>" + | |
4 | - "Diagnóstico 3" + "<br>" + | |
5 | - "Diagnóstico 4" + "<br>" + | |
6 | - "Diagnóstico 5" + "<br>" + | |
7 | - "Diagnóstico 6" + "<br>" + | |
8 | - "Diagnóstico 7" + "<br>" + | |
9 | - "Diagnóstico 8" + "<br>" + | |
10 | - "<hr>" + | |
11 | - "Diagnóstico 1" + "<br>" + | |
12 | - "Diagnóstico 2" + "<br>" + | |
13 | - "Diagnóstico 3" + "<br>" + | |
14 | - "Diagnóstico 4" + "<br>" + | |
15 | - "Diagnóstico 5" + "<br>" + | |
16 | - "Diagnóstico 6" + "<br>" + | |
17 | - "Diagnóstico 7" + "<br>" + | |
18 | - "Diagnóstico 8" + "<br>" + | |
19 | - "<hr>" + | |
20 | - "Diagnóstico 1" + "<br>" + | |
21 | - "Diagnóstico 2" + "<br>" + | |
22 | - "Diagnóstico 3" + "<br>" + | |
23 | - "Diagnóstico 4" + "<br>" + | |
24 | - "Diagnóstico 5" ; | |
25 | - | |
26 | -relatorio = Ext.create('Ext.panel.Panel', { | |
27 | - layout: 'fit', | |
28 | - title: 'Relatórios', | |
29 | - width: '75%', | |
30 | - frame: true, | |
31 | - collapsible: true, | |
32 | - draggable: true, | |
33 | - border : true, | |
34 | - style: { | |
35 | - margin: '0px auto 15px auto' | |
36 | - }, | |
37 | - html: painelContent | |
38 | - }); | |
39 | - | |
40 | -Ext.onReady(function(){ | |
41 | - | |
42 | - Ext.create('Ext.Container', { | |
43 | - padding: '15px', | |
44 | - items: [relatorio], | |
45 | - renderTo: 'widgets' | |
46 | - }); | |
47 | - | |
48 | -}); |
wscacicneo/static/editarorgao.js
... | ... | @@ -1,68 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Nome', | |
15 | - width:450, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Sigla', | |
20 | - width: 300, | |
21 | - name: 'Sigla' | |
22 | - }, | |
23 | - { | |
24 | - fieldLabel: 'E-mail', | |
25 | - name: 'email' | |
26 | - }, | |
27 | - { | |
28 | - fieldLabel: 'Telefone', | |
29 | - name: 'telefone' | |
30 | - }, | |
31 | - | |
32 | - { | |
33 | - xtype: 'button', | |
34 | - text: 'Editar', | |
35 | - style:{ | |
36 | - margin: '50px 10px 0px 350px', | |
37 | - }, | |
38 | - }, | |
39 | - ] | |
40 | -}); | |
41 | - | |
42 | -painel = Ext.create('Ext.panel.Panel', { | |
43 | - layout: 'fit', | |
44 | - title: 'Editar Orgão', | |
45 | - width: '75%', | |
46 | - height: 250, | |
47 | - frame: true, | |
48 | - draggable: true, | |
49 | - collapsible: true, | |
50 | - border : true, | |
51 | - style: { | |
52 | - "text-align": 'center', | |
53 | - margin: '0px auto 15px auto' | |
54 | - }, | |
55 | - items: table, | |
56 | -}); | |
57 | - | |
58 | -Ext.onReady(function(){ | |
59 | - | |
60 | - | |
61 | - Ext.create('Ext.Container', { | |
62 | - padding: '15px', | |
63 | - items: [painel], | |
64 | - renderTo: 'widgets' | |
65 | - }); | |
66 | - | |
67 | -}); | |
68 | - |
wscacicneo/static/escritorio.js
... | ... | @@ -1,70 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Nome', | |
15 | - width:450, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Data da intalação', | |
20 | - width: 250, | |
21 | - name: 'matricula' | |
22 | - }, | |
23 | - { | |
24 | - xtype:'combobox', | |
25 | - fieldLabel: 'Tipo', | |
26 | - width: 300, | |
27 | - name: 'email' | |
28 | - }, | |
29 | - { | |
30 | - xtype: 'button', | |
31 | - text: 'Enviar', | |
32 | - style : { | |
33 | - margin : " 0px 10px 0px 330px" | |
34 | - } | |
35 | - }, | |
36 | - { | |
37 | - xtype: 'button', | |
38 | - text: 'Limpar', | |
39 | - }, | |
40 | - | |
41 | - ] | |
42 | -}); | |
43 | - | |
44 | -painel = Ext.create('Ext.panel.Panel', { | |
45 | - layout: 'fit', | |
46 | - title: 'Swites De Escritórios', | |
47 | - width: '75%', | |
48 | - height: 155, | |
49 | - frame: true, | |
50 | - draggable: true, | |
51 | - collapsible: true, | |
52 | - border : true, | |
53 | - style: { | |
54 | - "text-align": 'center', | |
55 | - margin: '0px auto 15px auto' | |
56 | - }, | |
57 | - items: table, | |
58 | -}); | |
59 | - | |
60 | -Ext.onReady(function(){ | |
61 | - | |
62 | - | |
63 | - Ext.create('Ext.Container', { | |
64 | - padding: '15px', | |
65 | - items: [painel], | |
66 | - renderTo: 'widgets' | |
67 | - }); | |
68 | - | |
69 | -}); | |
70 | - |
wscacicneo/static/gestao.js
... | ... | @@ -1,65 +0,0 @@ |
1 | - | |
2 | -// **** FILTRO DE ITENS **** | |
3 | - | |
4 | -Ext.define('User1',{ | |
5 | - extend: 'Ext.data.Model', | |
6 | - fields: ['chbox', 'item' ] | |
7 | -}); | |
8 | - | |
9 | -var userStore1 = Ext.create('Ext.data.Store', { | |
10 | - model: 'User1', | |
11 | - data: [ | |
12 | - { item: 'Computador'}, | |
13 | - { item: 'Processador'}, | |
14 | - { item: 'Memórias'}, | |
15 | - { item: 'Hard Disk (HD)'}, | |
16 | - { item: 'Sistemas Operacionais'}, | |
17 | - { item: 'Suítes de Escritórios'}, | |
18 | - { item: 'Ativos de Redes'}, | |
19 | - { item: 'Softwares Básicos'}, | |
20 | - ] | |
21 | -}); | |
22 | - | |
23 | -table1 = Ext.create('Ext.grid.Panel', { | |
24 | - store: userStore1, | |
25 | - width: 400, | |
26 | - height: 200, | |
27 | - // title: 'Application Users', | |
28 | - columns: [ | |
29 | - { | |
30 | - text: 'Item', | |
31 | - width: 500, | |
32 | - sortable: true, | |
33 | - hideable: false, | |
34 | - dataIndex: 'item' | |
35 | - }, | |
36 | - ] | |
37 | -}); | |
38 | - | |
39 | -tabela1 = Ext.create('Ext.panel.Panel', { | |
40 | - layout: 'fit', | |
41 | - title: 'Gerar Relatório', | |
42 | - width: '75%', | |
43 | - frame: true, | |
44 | - draggable: true, | |
45 | - collapsible: true, | |
46 | - border : true, | |
47 | - style: { | |
48 | - "text-align": 'center', | |
49 | - margin: '0px auto 15px auto' | |
50 | - }, | |
51 | - items: table1, | |
52 | -}); | |
53 | - | |
54 | -Ext.onReady(function(){ | |
55 | - | |
56 | - | |
57 | - Ext.create('Ext.Container', { | |
58 | - padding:'15px', | |
59 | - items: [tabela1], | |
60 | - renderTo: 'widgets' | |
61 | - }); | |
62 | - | |
63 | -}); | |
64 | - | |
65 | - |
wscacicneo/static/gestor.js
... | ... | @@ -1,47 +0,0 @@ |
1 | -var painelContent= | |
2 | - Ext.create('Ext.tree.Panel', { | |
3 | - renderTo: Ext.getBody(), | |
4 | - title: '', | |
5 | - root: { | |
6 | - text: 'Gestor', | |
7 | - expanded: true, | |
8 | - children: [ | |
9 | - { | |
10 | - text: 'Coleta automática', | |
11 | - leaf: true | |
12 | - }, | |
13 | - { | |
14 | - text: 'Coleta manual', | |
15 | - leaf: true | |
16 | - }, | |
17 | - { | |
18 | - text: 'Questionar coleta', | |
19 | - leaf: true | |
20 | - }, | |
21 | - ] | |
22 | - } | |
23 | - }); | |
24 | - | |
25 | -admin = Ext.create('Ext.panel.Panel', { | |
26 | - title: 'Gestor de Orgãos', | |
27 | - width: '75%', | |
28 | - frame: true, | |
29 | - layout: 'fit', | |
30 | - collapsible: true, | |
31 | - draggable: true, | |
32 | - border : true, | |
33 | - style: { | |
34 | - margin: '0px auto 15px auto' | |
35 | - }, | |
36 | - items: painelContent | |
37 | - }); | |
38 | - | |
39 | -Ext.onReady(function(){ | |
40 | - | |
41 | - Ext.create('Ext.Container', { | |
42 | - padding: '15px', | |
43 | - items: [admin], | |
44 | - renderTo: 'widgets' | |
45 | - }); | |
46 | - | |
47 | -}); |
wscacicneo/static/gridajax.js
... | ... | @@ -1,54 +0,0 @@ |
1 | -Ext.require([ | |
2 | - 'Ext.data.*', | |
3 | - 'Ext.grid.*' | |
4 | -]); | |
5 | - | |
6 | -Ext.onReady(function(){ | |
7 | - Ext.define('Book',{ | |
8 | - extend: 'Ext.data.Model', | |
9 | - proxy: { | |
10 | - type: 'ajax', | |
11 | - reader: 'xml' | |
12 | - }, | |
13 | - fields: [ | |
14 | - | |
15 | - // set up the fields mapping into the xml doc | |
16 | - // The first needs mapping, the others are very basic | |
17 | - {name: 'Author', mapping: '@author.name'}, | |
18 | - 'Title', 'Manufacturer', 'ProductGroup' | |
19 | - ] | |
20 | - }); | |
21 | - | |
22 | - // create the Data Store | |
23 | - var store = Ext.create('Ext.data.Store', { | |
24 | - model: 'Book', | |
25 | - autoLoad: true, | |
26 | - proxy: { | |
27 | - // load using HTTP | |
28 | - type: 'ajax', | |
29 | - url: 'sheldon.xml', | |
30 | - // the return will be XML, so lets set up a reader | |
31 | - reader: { | |
32 | - type: 'xml', | |
33 | - // records will have an "Item" tag | |
34 | - record: 'Item', | |
35 | - idProperty: 'ASIN', | |
36 | - totalRecords: '@total' | |
37 | - } | |
38 | - } | |
39 | - }); | |
40 | - | |
41 | - // create the grid | |
42 | - Ext.create('Ext.grid.Panel', { | |
43 | - store: store, | |
44 | - columns: [ | |
45 | - {text: "Author", flex: 1, dataIndex: 'Author'}, | |
46 | - {text: "Title", width: 180, dataIndex: 'Title'}, | |
47 | - {text: "Manufacturer", width: 115, dataIndex: 'Manufacturer'}, | |
48 | - {text: "Product Group", width: 100, dataIndex: 'ProductGroup'} | |
49 | - ], | |
50 | - renderTo:'centro', | |
51 | - width: 540, | |
52 | - height: 200 | |
53 | - }); | |
54 | -}); |
wscacicneo/static/hd.js
... | ... | @@ -1,78 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Marca', | |
15 | - width: 300, | |
16 | - name: 'matricula' | |
17 | - }, | |
18 | - | |
19 | - { | |
20 | - fieldLabel: 'Tamanho', | |
21 | - width: 200, | |
22 | - name: 'matricula' | |
23 | - }, | |
24 | - | |
25 | - | |
26 | - { | |
27 | - xtype:'combobox', | |
28 | - fieldLabel: 'Tipo', | |
29 | - width: 300, | |
30 | - name: 'email' | |
31 | - }, | |
32 | - { | |
33 | - fieldLabel: 'Idade', | |
34 | - width: 200, | |
35 | - name: 'idade' | |
36 | - }, | |
37 | - { | |
38 | - xtype: 'button', | |
39 | - text: 'Enviar', | |
40 | - style : { | |
41 | - margin : " 0px 10px 0px 300px" | |
42 | - } | |
43 | - }, | |
44 | - { | |
45 | - xtype: 'button', | |
46 | - text: 'Limpar', | |
47 | - }, | |
48 | - | |
49 | - ] | |
50 | -}); | |
51 | - | |
52 | -painel = Ext.create('Ext.panel.Panel', { | |
53 | - layout: 'fit', | |
54 | - title: 'HD', | |
55 | - width: '75%', | |
56 | - height: 200, | |
57 | - frame: true, | |
58 | - draggable: true, | |
59 | - collapsible: true, | |
60 | - border : true, | |
61 | - style: { | |
62 | - "text-align": 'center', | |
63 | - margin: '0px auto 15px auto' | |
64 | - }, | |
65 | - items: table, | |
66 | -}); | |
67 | - | |
68 | -Ext.onReady(function(){ | |
69 | - | |
70 | - | |
71 | - Ext.create('Ext.Container', { | |
72 | - padding: '15px', | |
73 | - items: [painel], | |
74 | - renderTo: 'widgets' | |
75 | - }); | |
76 | - | |
77 | -}); | |
78 | - |
wscacicneo/static/home.js
... | ... | @@ -1,110 +0,0 @@ |
1 | -var painelContent= | |
2 | - "<br>"+ | |
3 | - "Coleta 123658 - 12/12/2012" + "<br>" + "<hr />" + | |
4 | - "Coleta 115613 - 13/12/2012" + "<br>" +"<hr />" + | |
5 | - "Questionamento da coleta 115613 - 14/12/2012" + "<br>" +"<hr />" + | |
6 | - "Notificação da coleta 123658 - 20/12/2012" + "<br>" +"<hr />" + | |
7 | - "Relatório gerado da coleta 115613 - 25/12/2012" + "<br>" +"<hr />" | |
8 | - | |
9 | -admin = Ext.create('Ext.panel.Panel', { | |
10 | - title: 'Ultimas Atividades', | |
11 | - width: '75%', | |
12 | - height : 175, | |
13 | - frame: true, | |
14 | - layout: 'fit', | |
15 | - collapsible: true, | |
16 | - draggable: true, | |
17 | - border : true, | |
18 | - titleAlign:'center', | |
19 | - style: { | |
20 | - margin: '0px auto 15px auto' | |
21 | - }, | |
22 | - html: painelContent | |
23 | - }); | |
24 | - | |
25 | -Ext.onReady(function(){ | |
26 | - | |
27 | - Ext.create('Ext.Container', { | |
28 | - padding: '15px', | |
29 | - items: [admin], | |
30 | - renderTo: 'widgets' | |
31 | - }); | |
32 | - | |
33 | -}); | |
34 | - | |
35 | -// **** GRAFICO DE PIZZA **** | |
36 | - | |
37 | -var store = Ext.create('Ext.data.JsonStore', { | |
38 | - fields: ['name', 'data'], | |
39 | - data: [ | |
40 | - { 'name': 'dado1', 'data': 2 }, | |
41 | - { 'name': 'dado2', 'data': 2 }, | |
42 | - { 'name': 'dado3', 'data': 4 }, | |
43 | - { 'name': 'dado4', 'data': 10 } | |
44 | -]}); | |
45 | - | |
46 | -var chart = Ext.create('Ext.chart.Chart', { | |
47 | - layout: 'fit', | |
48 | - width: 500, | |
49 | - height: 350, | |
50 | - animate: true, | |
51 | - store: store, | |
52 | - theme: 'Base:gradients', | |
53 | - shadow: true, | |
54 | - legend: { | |
55 | - position: 'right' | |
56 | - }, | |
57 | - series: [{ | |
58 | - type: 'pie', | |
59 | - angleField: 'data', | |
60 | - showInLegend: true, | |
61 | - tips: { | |
62 | - trackMouse: true, | |
63 | - width: 140, | |
64 | - height: 28, | |
65 | - renderer: function(storeItem, item) { | |
66 | - // calculate and display percentage on hover | |
67 | - var total = 0; | |
68 | - store.each(function(rec) { | |
69 | - total += rec.get('data'); | |
70 | - }); | |
71 | - this.setTitle(storeItem.get('name') + ': ' + Math.round(storeItem.get('data') / total * 100) + '%'); | |
72 | - } | |
73 | - }, | |
74 | - highlight: { | |
75 | - segment: { | |
76 | - margin: 20 | |
77 | - } | |
78 | - }, | |
79 | - label: { | |
80 | - field: 'name', | |
81 | - display: 'rotate', | |
82 | - contrast: true, | |
83 | - font: '18px Arial' | |
84 | - } | |
85 | - }] | |
86 | -}); | |
87 | - | |
88 | -widget = Ext.create('Ext.panel.Panel', { | |
89 | - layout: 'fit', | |
90 | - title: 'Gráfico', | |
91 | - width: '75%', | |
92 | - frame: true, | |
93 | - draggable: true, | |
94 | - collapsible: true, | |
95 | - border : true, | |
96 | - style: { | |
97 | - "text-align": 'center', | |
98 | - margin: '-35px auto 15px auto' | |
99 | - }, | |
100 | - items: chart | |
101 | -}); | |
102 | - | |
103 | -Ext.onReady(function(){ | |
104 | - Ext.create('Ext.Container', { | |
105 | - padding: '15px', | |
106 | - items: [widget], | |
107 | - renderTo: 'widgets' | |
108 | - }); | |
109 | -}); | |
110 | - |
wscacicneo/static/home2.js
... | ... | @@ -1,38 +0,0 @@ |
1 | -Ext.require([ | |
2 | - 'Ext.data.*', | |
3 | - 'Ext.grid.*' | |
4 | -]); | |
5 | - | |
6 | -Ext.onReady(function(){ | |
7 | - | |
8 | - Ext.create('Ext.data.JsonPStore', { | |
9 | - storeId:'baseboard', | |
10 | - fields:['Win32_BaseBoard.Product', 'Win32_BaseBoard.Manufacturer', 'Win32_BaseBoard.Version', 'Win32_BaseBoard.SerialNumber'], | |
11 | - autoLoad: true, | |
12 | - model: 'User', | |
13 | - proxy: { | |
14 | - type: 'jsonp', | |
15 | - url : 'http://10.209.8.39/wscserver/rest/coleta', | |
16 | - callbackKey: 'callback', | |
17 | - reader: { | |
18 | - type: 'json', | |
19 | - root: 'results', | |
20 | - totalProperty: 'result_count', | |
21 | - } | |
22 | - } | |
23 | - }); | |
24 | - | |
25 | - Ext.create('Ext.grid.Panel', { | |
26 | - title: 'BaseBoard', | |
27 | - store: Ext.data.StoreManager.lookup('baseboard'), | |
28 | - columns: [ | |
29 | - { header: 'Product', dataIndex: 'Win32_BaseBoard.Product', flex: 1 }, | |
30 | - { header: 'Manufacturer', dataIndex: 'Win32_BaseBoard.Manufacturer', flex: 1 }, | |
31 | - { header: 'Version', dataIndex: 'Win32_BaseBoard.Version', flex: 1 }, | |
32 | - { header: 'SerialNumber', dataIndex: 'Win32_BaseBoard.SerialNumber', flex: 1 } | |
33 | - ], | |
34 | - width: "50%", | |
35 | - draggable: true, | |
36 | - renderTo: Ext.getBody() | |
37 | - }); | |
38 | -}); |
wscacicneo/static/ie6.css
... | ... | @@ -1,8 +0,0 @@ |
1 | -* html img, | |
2 | -* html .png{position:relative;behavior:expression((this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none", | |
3 | -this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "',sizingMethod='image')", | |
4 | -this.src = "static/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''), | |
5 | -this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "',sizingMethod='crop')", | |
6 | -this.runtimeStyle.backgroundImage = "none")),this.pngSet=true) | |
7 | -);} | |
8 | -#wrap{display:table;height:100%} |
wscacicneo/static/list.js
... | ... | @@ -1,72 +0,0 @@ |
1 | -/*GRAFICO DE ORGÃOS*/ | |
2 | - | |
3 | - | |
4 | -Ext.define('User',{ | |
5 | - extend: 'Ext.data.Model', | |
6 | - fields: [ 'codigo', 'orgao'] | |
7 | -}); | |
8 | - | |
9 | -var userStore = Ext.create('Ext.data.Store', { | |
10 | - model: 'User', | |
11 | - data: [ | |
12 | - { orgao: 'Ministério da Fazenda', date: 'Editar Excluir' }, | |
13 | - { orgao: 'Ministério da Fazenda', date: 'Editar Excluir' }, | |
14 | - { orgao: 'Ministério da Fazenda', date: 'Editar Excluir' }, | |
15 | - { orgao: 'Ministério da Fazenda', date: 'Editar Excluir' }, | |
16 | - ] | |
17 | -}); | |
18 | - | |
19 | -table = Ext.create('Ext.grid.Panel', { | |
20 | - store: userStore, | |
21 | - width: 400, | |
22 | - height: 200, | |
23 | - // title: 'Application Users', | |
24 | - columns: [ | |
25 | - { | |
26 | - text: 'Órgão', | |
27 | - width: 390, | |
28 | - dataIndex: 'orgao', | |
29 | - hidden: false, | |
30 | - }, | |
31 | - { | |
32 | - xtype: 'actioncolumn', | |
33 | - width: 165, | |
34 | - align: 'center', | |
35 | - items:[{ | |
36 | - icon:'static/icons/edit.png', | |
37 | - tooltip: 'Editar' | |
38 | - }, | |
39 | - { | |
40 | - icon:'static/icons/delete.png', | |
41 | - tooltip: 'Excluir' | |
42 | - }, | |
43 | - ]}, | |
44 | - ] | |
45 | -}); | |
46 | - | |
47 | -tabela = Ext.create('Ext.panel.Panel', { | |
48 | - layout: 'fit', | |
49 | - title: 'Órgãos', | |
50 | - width: '75%', | |
51 | - frame: true, | |
52 | - draggable: true, | |
53 | - collapsible: true, | |
54 | - border : true, | |
55 | - style: { | |
56 | - "text-align": 'center', | |
57 | - margin: '0px auto 15px auto' | |
58 | - }, | |
59 | - items: table, | |
60 | -}); | |
61 | - | |
62 | -Ext.onReady(function(){ | |
63 | - | |
64 | - | |
65 | - Ext.create('Ext.Container', { | |
66 | - padding: '15px', | |
67 | - items: [tabela], | |
68 | - renderTo: 'widgets' | |
69 | - }); | |
70 | - | |
71 | -}); | |
72 | - |
wscacicneo/static/login.css
... | ... | @@ -1,47 +0,0 @@ |
1 | -.x-body, html{ | |
2 | - background: #958F8F; | |
3 | - height: 100%; | |
4 | -} | |
5 | - | |
6 | -header{ | |
7 | - width: 100%; | |
8 | - height: 60px; | |
9 | - background: #032A65; | |
10 | - position: relative; | |
11 | - color: #eeeeee; | |
12 | - text-align: center; | |
13 | - box-shadow: 0px 5px 10px #000000; | |
14 | -} | |
15 | - | |
16 | -header div#logo{ | |
17 | - height: 100%; | |
18 | -} | |
19 | - | |
20 | -#centro{ | |
21 | - min-height: 100%; | |
22 | - margin-left: 100px; | |
23 | - margin-right: 100px; | |
24 | - padding: 10px; | |
25 | - background: #ffffff; | |
26 | -} | |
27 | - | |
28 | -#centro div#login{ | |
29 | - height: 100%; | |
30 | - width: 50%; | |
31 | - margin: 200px auto 0px auto; | |
32 | - backgound: #333333; | |
33 | -} | |
34 | - | |
35 | -footer { | |
36 | - height:100px; | |
37 | - background:#2F2D2E; | |
38 | - clear:both; | |
39 | - color: #ffffff; | |
40 | - | |
41 | -} | |
42 | - | |
43 | -footer div#desenvolvido{ | |
44 | - margin-right: 100px; | |
45 | - float: right; | |
46 | - font-size: 130% | |
47 | -} |
wscacicneo/static/login.js
... | ... | @@ -1,67 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Usuário', | |
15 | - width:300, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Senha', | |
20 | - width: 300, | |
21 | - name: 'matricula' | |
22 | - }, | |
23 | - { | |
24 | - xtype: 'button', | |
25 | - text: 'Login', | |
26 | - style:{ | |
27 | - margin: '10px 10px 0px 0px', | |
28 | - } | |
29 | - }, | |
30 | - { | |
31 | - xtype: 'button', | |
32 | - text: 'Recuperar Senha', | |
33 | - style:{ | |
34 | - margin: '10px 10px 0px 0px', | |
35 | - } | |
36 | - | |
37 | - }, | |
38 | - ] | |
39 | -}); | |
40 | - | |
41 | -painel = Ext.create('Ext.panel.Panel', { | |
42 | - layout: 'fit', | |
43 | - title: 'Meu Perfil', | |
44 | - width: 400, | |
45 | - height: 150, | |
46 | - frame: true, | |
47 | - draggable: true, | |
48 | - collapsible: true, | |
49 | - border : true, | |
50 | - style: { | |
51 | - "text-align": 'center', | |
52 | - margin: '0px auto 50px 100px' | |
53 | - }, | |
54 | - items: table, | |
55 | -}); | |
56 | - | |
57 | -Ext.onReady(function(){ | |
58 | - | |
59 | - | |
60 | - Ext.create('Ext.Container', { | |
61 | - padding: '15px', | |
62 | - items: [painel], | |
63 | - renderTo: 'widgets' | |
64 | - }); | |
65 | - | |
66 | -}); | |
67 | - |
wscacicneo/static/main.css
... | ... | @@ -1,135 +0,0 @@ |
1 | -html{ | |
2 | - height: 100%; | |
3 | -} | |
4 | - | |
5 | -header{ | |
6 | - width: 100%; | |
7 | - height: 60px; | |
8 | - background: #032A65; | |
9 | - position: relative; | |
10 | - color: #eeeeee; | |
11 | - box-shadow: 0px 5px 10px #000000; | |
12 | -} | |
13 | - | |
14 | -header div#logo{ | |
15 | - float: left; | |
16 | - height: 100%; | |
17 | - margin-left:100px; | |
18 | -} | |
19 | - | |
20 | -header div#logoff{ | |
21 | - float: right; | |
22 | - height: 100%; | |
23 | - margin-right: 100px; | |
24 | -} | |
25 | -header div#pesquisa{ | |
26 | - float: right; | |
27 | - margin: 20px; | |
28 | -} | |
29 | - | |
30 | -header div#usuario{ | |
31 | - float: right; | |
32 | - margin: 15px; | |
33 | -} | |
34 | - | |
35 | -#centro{ | |
36 | - min-height: 150%; | |
37 | - margin: 0px 100px 0px 100px; | |
38 | - background: #ffffff; | |
39 | -} | |
40 | - | |
41 | -#centro div#menu-lateral{ | |
42 | - height: 100%; | |
43 | - width: 30%; | |
44 | - padding:20px; | |
45 | - padding-top: 65px; | |
46 | - float: left; | |
47 | -} | |
48 | - | |
49 | -#menu-lateral div#menu-principal{ | |
50 | - clear: both; | |
51 | - width: 100%; | |
52 | - margin: 0px 0px 10px 0px; | |
53 | -} | |
54 | - | |
55 | -#menu-lateral div#menu-favoritos{ | |
56 | - clear: both; | |
57 | - width: 100%; | |
58 | -} | |
59 | - | |
60 | -#menu-favoritos div#favoriteItems{ | |
61 | - width: 100%; | |
62 | - height: 100%; | |
63 | - margin-left: 27px; | |
64 | -} | |
65 | - | |
66 | -#centro div#conteudo{ | |
67 | - height: 100%; | |
68 | - width: 70%; | |
69 | - padding: 10px; | |
70 | - float: left; | |
71 | -} | |
72 | - | |
73 | -#conteudo div#lista-links{ | |
74 | - width: 100%; | |
75 | - padding: 10px; | |
76 | - text-align: right; | |
77 | -} | |
78 | - | |
79 | -#conteudo div#lista-links a{ | |
80 | - text-decoration: none; | |
81 | -} | |
82 | - | |
83 | -#conteudo div#widgets{ | |
84 | - clear: both; | |
85 | - margin: 0px auto 15px auto; | |
86 | -} | |
87 | - | |
88 | -footer { | |
89 | - height:100px; | |
90 | - background:#2F2D2E; | |
91 | - clear:both; | |
92 | - color: #ffffff; | |
93 | - float: top; | |
94 | -} | |
95 | - | |
96 | -footer div#desenvolvido{ | |
97 | - | |
98 | - margin-right:100px; | |
99 | - float: right; | |
100 | - font-size: 130% | |
101 | -} | |
102 | - | |
103 | -footer div#links-footer{ | |
104 | - padding: 10px; | |
105 | - margin-left: 100px; | |
106 | - float: left; | |
107 | -} | |
108 | - | |
109 | -footer div#links-footer a{ | |
110 | - color: #ffffff; | |
111 | -} | |
112 | - | |
113 | -a:hover{ | |
114 | - text-decoration:underline; | |
115 | -} | |
116 | - | |
117 | -a{ | |
118 | - text-decoration: none; | |
119 | - color: #000000; | |
120 | -} | |
121 | - | |
122 | -.fav{ | |
123 | - float: left; | |
124 | - margin: 7px; | |
125 | - text-align: center; | |
126 | - width: 65px; | |
127 | -} | |
128 | - | |
129 | -.link-lista{ | |
130 | - background: #CDCED0; | |
131 | - border-radius: 25px; | |
132 | - padding: 7px; | |
133 | - text-decoration: none; | |
134 | - font-size: 110% | |
135 | -} |
wscacicneo/static/main.js
... | ... | @@ -1,37 +0,0 @@ |
1 | -Ext.onReady(function() { | |
2 | - | |
3 | - var mainMenu = Ext.create('Ext.menu.Menu',{ | |
4 | - renderTo: 'menu-principal', | |
5 | - floating: false, | |
6 | - collapsible: true, | |
7 | - border: true, | |
8 | - frame: true, | |
9 | - title: 'Home', | |
10 | - titleAlign: 'center', | |
11 | - items: [ | |
12 | - {text: 'Meu Perfil' }, | |
13 | - {text: 'Gestor de Órgãos' }, | |
14 | - {text: 'Notificações' }, | |
15 | - {text: 'Relatórios' }, | |
16 | - {text: 'Sobre' }, | |
17 | - ] | |
18 | - }); | |
19 | - | |
20 | - fav_html = '<div id="favoriteItems">'+ | |
21 | - '<div class="fav"><a href="reports"><img src="static/icons/relatorios.png">Relatórios</a></div>'+ | |
22 | - '<div class="fav"><a><img src="static/icons/usuario.png">Meu Perfil</a></div>'+ | |
23 | - '</div>'; | |
24 | - | |
25 | - var favoriteMenu = Ext.create('Ext.panel.Panel', { | |
26 | - layout: 'fit', | |
27 | - renderTo: 'menu-favoritos', | |
28 | - collapsible: true, | |
29 | - border: true, | |
30 | - frame: true, | |
31 | - heigth: "100%", | |
32 | - width: "100%", | |
33 | - title: 'Favoritos', | |
34 | - titleAlign: 'center', | |
35 | - html: fav_html | |
36 | - }); | |
37 | -}); |
wscacicneo/static/memoria.js
... | ... | @@ -1,68 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Interface', | |
15 | - width: 250, | |
16 | - name: 'matricula' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Armazenamento', | |
20 | - width: 300, | |
21 | - name: 'email' | |
22 | - }, | |
23 | - { | |
24 | - fieldLabel: 'Idade', | |
25 | - name: 'telefone' | |
26 | - }, | |
27 | - { | |
28 | - xtype: 'button', | |
29 | - text: 'Enviar', | |
30 | - style : { | |
31 | - margin : " 0px 10px 0px 0px" | |
32 | - } | |
33 | - }, | |
34 | - { | |
35 | - xtype: 'button', | |
36 | - text: 'Limpar', | |
37 | - }, | |
38 | - | |
39 | - ] | |
40 | -}); | |
41 | - | |
42 | -painel = Ext.create('Ext.panel.Panel', { | |
43 | - layout: 'fit', | |
44 | - title: 'Memoria', | |
45 | - width: '75%', | |
46 | - height: 200, | |
47 | - frame: true, | |
48 | - draggable: true, | |
49 | - collapsible: true, | |
50 | - border : true, | |
51 | - style: { | |
52 | - "text-align": 'center', | |
53 | - margin: '0px auto 15px auto' | |
54 | - }, | |
55 | - items: table, | |
56 | -}); | |
57 | - | |
58 | -Ext.onReady(function(){ | |
59 | - | |
60 | - | |
61 | - Ext.create('Ext.Container', { | |
62 | - padding: '15px', | |
63 | - items: [painel], | |
64 | - renderTo: 'widgets' | |
65 | - }); | |
66 | - | |
67 | -}); | |
68 | - |
wscacicneo/static/notify.js
... | ... | @@ -1,75 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - xtype:'displayfield', | |
15 | - fieldLabel: 'Nome do responsavel', | |
16 | - name: 'nome', | |
17 | - value: 'João da Silva' | |
18 | - }, | |
19 | - { | |
20 | - xtype:'displayfield', | |
21 | - fieldLabel: 'Orgão da coleta:', | |
22 | - name: 'orgao', | |
23 | - value: 'Ministerio do Planejamento', | |
24 | - }, | |
25 | - { | |
26 | - xtype:'displayfield', | |
27 | - fieldLabel: 'Data', | |
28 | - name: 'data', | |
29 | - value:'12/12/2012', | |
30 | - }, | |
31 | - { | |
32 | - xtype:'textfield', | |
33 | - fieldLabel: 'Descrição', | |
34 | - name: 'Descrição', | |
35 | - width: 450, | |
36 | - height: 100, | |
37 | - }, | |
38 | - | |
39 | - { | |
40 | - xtype: 'button', | |
41 | - text: 'Enviar', | |
42 | - style:{ | |
43 | - margin: '50px 10px 0px 350px', | |
44 | - }, | |
45 | - }, | |
46 | - ] | |
47 | -}); | |
48 | - | |
49 | -painel = Ext.create('Ext.panel.Panel', { | |
50 | - layout: 'fit', | |
51 | - title: 'Enviar Notificação', | |
52 | - width: '75%', | |
53 | - height: 350, | |
54 | - frame: true, | |
55 | - draggable: true, | |
56 | - collapsible: true, | |
57 | - border : true, | |
58 | - style: { | |
59 | - "text-align": 'center', | |
60 | - margin: '0px auto 15px auto' | |
61 | - }, | |
62 | - items: table, | |
63 | -}); | |
64 | - | |
65 | -Ext.onReady(function(){ | |
66 | - | |
67 | - | |
68 | - Ext.create('Ext.Container', { | |
69 | - padding: '15px', | |
70 | - items: [painel], | |
71 | - renderTo: 'widgets' | |
72 | - }); | |
73 | - | |
74 | -}); | |
75 | - |
wscacicneo/static/orgao.js
... | ... | @@ -1,126 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Nome', | |
15 | - width:450, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Sigla', | |
20 | - width: 200, | |
21 | - name: 'sigla' | |
22 | - }, | |
23 | - { | |
24 | - fieldLabel: 'Cargo / Gestor', | |
25 | - width: 300, | |
26 | - name: 'cargo' | |
27 | - }, | |
28 | - | |
29 | - { | |
30 | - fieldLabel: 'Telefone', | |
31 | - width: 300, | |
32 | - name: 'telefone' | |
33 | - }, | |
34 | - | |
35 | - { | |
36 | - fieldLabel: 'E-mail', | |
37 | - width: 300, | |
38 | - name: 'email' | |
39 | - }, | |
40 | - { | |
41 | - fieldLabel: 'Endereço', | |
42 | - width: 450, | |
43 | - name: 'end' | |
44 | - }, | |
45 | - { | |
46 | - xtype: 'combobox', | |
47 | - name: 'checkbox1', | |
48 | - fieldLabel: 'Coleta', | |
49 | - boxLabel: 'coleta' | |
50 | - }, | |
51 | - { | |
52 | - xtype: 'button', | |
53 | - text: 'Enviar', | |
54 | - style:{ | |
55 | - margin: '0px 10px 0px 320px', | |
56 | - } | |
57 | - }, | |
58 | - { | |
59 | - xtype: 'button', | |
60 | - text: 'Limpar', | |
61 | - }, | |
62 | - { | |
63 | - xtype: 'button', | |
64 | - text: 'Cadastrar', | |
65 | - style:{ | |
66 | - margin: '50px 10px 0px 350px', | |
67 | - }, | |
68 | - }, | |
69 | - ] | |
70 | -}); | |
71 | - | |
72 | -painel = Ext.create('Ext.panel.Panel', { | |
73 | - layout: 'fit', | |
74 | - title: 'Órgão', | |
75 | - width: '75%', | |
76 | - height: 265, | |
77 | - frame: true, | |
78 | - draggable: true, | |
79 | - collapsible: true, | |
80 | - border : true, | |
81 | - style: { | |
82 | - "text-align": 'center', | |
83 | - margin: '0px auto 15px auto' | |
84 | - }, | |
85 | - items: table, | |
86 | -}); | |
87 | - | |
88 | -Ext.onReady(function(){ | |
89 | - Ext.create('Ext.Container', { | |
90 | - padding: '15px', | |
91 | - items: [painel], | |
92 | - renderTo: 'widgets' | |
93 | - }); | |
94 | -}); | |
95 | - | |
96 | - | |
97 | -$('#button-1017-btnIconEl').click(function(){ | |
98 | - var nome = $('#textfield-1010-inputEl').val() | |
99 | - sigla = $('#textfield-1011-inputEl').val() | |
100 | - gestor = $('#textfield-1012-inputEl').val() | |
101 | - telefone = $('#textfield-1013-inputEl').val() | |
102 | - email = $('#textfield-1014-inputEl').val() | |
103 | - end = $('#textfield-1015-inputEl').val() | |
104 | - coleta = $('#combobox-1016-inputEl').val() | |
105 | - var reg = { | |
106 | - 'nome' : nome, | |
107 | - 'sigla': sigla, | |
108 | - 'gestor': gestor, | |
109 | - 'telefone': telefone, | |
110 | - 'email': email, | |
111 | - 'end': end, | |
112 | - 'coleta': '15' | |
113 | - } | |
114 | - $.ajax({ | |
115 | - type: "POST", | |
116 | - url: 'post_orgao', | |
117 | - data : reg, | |
118 | - cache: false, | |
119 | - success: function(jqXHR, textStatus, errorThrown){ | |
120 | - alert('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa') | |
121 | - }, | |
122 | - error: function(jqXHR, textStatus, errorThrown){ | |
123 | - alert('ooooooooooooooooooooooooooooooooooooo') | |
124 | - } | |
125 | - }); | |
126 | -}); |
wscacicneo/static/perfil.js
... | ... | @@ -1,105 +0,0 @@ |
1 | - table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - items: [ | |
12 | - { | |
13 | - xtype: 'displayfield', | |
14 | - name: 'name', | |
15 | - fieldLabel: 'Nome', | |
16 | - value: 'João da Silva' | |
17 | - }, | |
18 | - { | |
19 | - xtype: 'displayfield', | |
20 | - name: 'matricula', | |
21 | - fieldLabel: 'Matricula', | |
22 | - value: '00326' | |
23 | - }, | |
24 | - { | |
25 | - xtype: 'displayfield', | |
26 | - name: 'E-mail', | |
27 | - fieldLabel: 'E-mail', | |
28 | - value: 'joão@email.com' | |
29 | - }, | |
30 | - { | |
31 | - xtype: 'displayfield', | |
32 | - name: 'telefone', | |
33 | - fieldLabel: 'Telefone', | |
34 | - value: '(61)3669-6548' | |
35 | - }, | |
36 | - { | |
37 | - xtype: 'displayfield', | |
38 | - name: 'orgao', | |
39 | - fieldLabel: 'Orgão', | |
40 | - value: 'Ministerio do Desenvolvimento' | |
41 | - }, | |
42 | - { | |
43 | - xtype: 'displayfield', | |
44 | - name: 'cargo', | |
45 | - fieldLabel: 'Cargo', | |
46 | - value: 'Analísta' | |
47 | - }, | |
48 | - { | |
49 | - xtype: 'displayfield', | |
50 | - name: 'setor', | |
51 | - fieldLabel: 'Setor', | |
52 | - value: 'Setor Sul' | |
53 | - }, | |
54 | -{ | |
55 | - xtype: 'displayfield', | |
56 | - name: 'name', | |
57 | - fieldLabel: 'Permissão', | |
58 | - value: 'Usuário' | |
59 | - }, | |
60 | - | |
61 | - | |
62 | - { | |
63 | - xtype: 'button', | |
64 | - text: 'Editar', | |
65 | - style:{ | |
66 | - margin: '0px 10px 0px 320px', | |
67 | - } | |
68 | - }, | |
69 | - { | |
70 | - xtype: 'button', | |
71 | - text: 'Alterar Senha', | |
72 | - style:{ | |
73 | - margin: '0px 10px 0px 0px', | |
74 | - } | |
75 | - }, | |
76 | - ] | |
77 | -}); | |
78 | - | |
79 | -painel = Ext.create('Ext.panel.Panel', { | |
80 | - layout: 'fit', | |
81 | - title: 'Meu Perfil', | |
82 | - width: '75%', | |
83 | - height: 300, | |
84 | - frame: true, | |
85 | - draggable: true, | |
86 | - collapsible: true, | |
87 | - border : true, | |
88 | - style: { | |
89 | - "text-align": 'center', | |
90 | - margin: '0px auto 15px auto' | |
91 | - }, | |
92 | - items: table, | |
93 | -}); | |
94 | - | |
95 | -Ext.onReady(function(){ | |
96 | - | |
97 | - | |
98 | - Ext.create('Ext.Container', { | |
99 | - padding: '15px', | |
100 | - items: [painel], | |
101 | - renderTo: 'widgets' | |
102 | - }); | |
103 | - | |
104 | -}); | |
105 | - |
wscacicneo/static/proc.js
... | ... | @@ -1,73 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Quantidade', | |
15 | - width:450, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Marca', | |
20 | - width: 250, | |
21 | - name: 'matricula' | |
22 | - }, | |
23 | - { | |
24 | - fieldLabel: 'Tipo', | |
25 | - width: 300, | |
26 | - name: 'email' | |
27 | - }, | |
28 | - { | |
29 | - fieldLabel: 'Idade', | |
30 | - name: 'telefone' | |
31 | - }, | |
32 | - { | |
33 | - xtype: 'button', | |
34 | - text: 'Enviar', | |
35 | - style : { | |
36 | - margin : " 0px 10px 0px 0px" | |
37 | - } | |
38 | - }, | |
39 | - { | |
40 | - xtype: 'button', | |
41 | - text: 'Limpar', | |
42 | - }, | |
43 | - | |
44 | - ] | |
45 | -}); | |
46 | - | |
47 | -painel = Ext.create('Ext.panel.Panel', { | |
48 | - layout: 'fit', | |
49 | - title: 'Processador', | |
50 | - width: '75%', | |
51 | - height: 200, | |
52 | - frame: true, | |
53 | - draggable: true, | |
54 | - collapsible: true, | |
55 | - border : true, | |
56 | - style: { | |
57 | - "text-align": 'center', | |
58 | - margin: '0px auto 15px auto' | |
59 | - }, | |
60 | - items: table, | |
61 | -}); | |
62 | - | |
63 | -Ext.onReady(function(){ | |
64 | - | |
65 | - | |
66 | - Ext.create('Ext.Container', { | |
67 | - padding: '15px', | |
68 | - items: [painel], | |
69 | - renderTo: 'widgets' | |
70 | - }); | |
71 | - | |
72 | -}); | |
73 | - |
wscacicneo/static/processador.js
... | ... | @@ -1,69 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Marca', | |
15 | - width: 250, | |
16 | - name: 'matricula' | |
17 | - }, | |
18 | - { | |
19 | - xtype:'combobox', | |
20 | - fieldLabel: 'Tipo', | |
21 | - width: 300, | |
22 | - name: 'email' | |
23 | - }, | |
24 | - { | |
25 | - fieldLabel: 'Idade', | |
26 | - name: 'telefone' | |
27 | - }, | |
28 | - { | |
29 | - xtype: 'button', | |
30 | - text: 'Enviar', | |
31 | - style : { | |
32 | - margin : " 0px 10px 0px 270px" | |
33 | - } | |
34 | - }, | |
35 | - { | |
36 | - xtype: 'button', | |
37 | - text: 'Limpar', | |
38 | - }, | |
39 | - | |
40 | - ] | |
41 | -}); | |
42 | - | |
43 | -painel = Ext.create('Ext.panel.Panel', { | |
44 | - layout: 'fit', | |
45 | - title: 'Processador', | |
46 | - width: '75%', | |
47 | - height: 200, | |
48 | - frame: true, | |
49 | - draggable: true, | |
50 | - collapsible: true, | |
51 | - border : true, | |
52 | - style: { | |
53 | - "text-align": 'center', | |
54 | - margin: '0px auto 15px auto' | |
55 | - }, | |
56 | - items: table, | |
57 | -}); | |
58 | - | |
59 | -Ext.onReady(function(){ | |
60 | - | |
61 | - | |
62 | - Ext.create('Ext.Container', { | |
63 | - padding: '15px', | |
64 | - items: [painel], | |
65 | - renderTo: 'widgets' | |
66 | - }); | |
67 | - | |
68 | -}); | |
69 | - |
wscacicneo/static/pylons.css
... | ... | @@ -1,372 +0,0 @@ |
1 | -html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td | |
2 | -{ | |
3 | - margin: 0; | |
4 | - padding: 0; | |
5 | - border: 0; | |
6 | - outline: 0; | |
7 | - font-size: 100%; /* 16px */ | |
8 | - vertical-align: baseline; | |
9 | - background: transparent; | |
10 | -} | |
11 | - | |
12 | -body | |
13 | -{ | |
14 | - line-height: 1; | |
15 | -} | |
16 | - | |
17 | -ol, ul | |
18 | -{ | |
19 | - list-style: none; | |
20 | -} | |
21 | - | |
22 | -blockquote, q | |
23 | -{ | |
24 | - quotes: none; | |
25 | -} | |
26 | - | |
27 | -blockquote:before, blockquote:after, q:before, q:after | |
28 | -{ | |
29 | - content: ''; | |
30 | - content: none; | |
31 | -} | |
32 | - | |
33 | -:focus | |
34 | -{ | |
35 | - outline: 0; | |
36 | -} | |
37 | - | |
38 | -ins | |
39 | -{ | |
40 | - text-decoration: none; | |
41 | -} | |
42 | - | |
43 | -del | |
44 | -{ | |
45 | - text-decoration: line-through; | |
46 | -} | |
47 | - | |
48 | -table | |
49 | -{ | |
50 | - border-collapse: collapse; | |
51 | - border-spacing: 0; | |
52 | -} | |
53 | - | |
54 | -sub | |
55 | -{ | |
56 | - vertical-align: sub; | |
57 | - font-size: smaller; | |
58 | - line-height: normal; | |
59 | -} | |
60 | - | |
61 | -sup | |
62 | -{ | |
63 | - vertical-align: super; | |
64 | - font-size: smaller; | |
65 | - line-height: normal; | |
66 | -} | |
67 | - | |
68 | -ul, menu, dir | |
69 | -{ | |
70 | - display: block; | |
71 | - list-style-type: disc; | |
72 | - margin: 1em 0; | |
73 | - padding-left: 40px; | |
74 | -} | |
75 | - | |
76 | -ol | |
77 | -{ | |
78 | - display: block; | |
79 | - list-style-type: decimal-leading-zero; | |
80 | - margin: 1em 0; | |
81 | - padding-left: 40px; | |
82 | -} | |
83 | - | |
84 | -li | |
85 | -{ | |
86 | - display: list-item; | |
87 | -} | |
88 | - | |
89 | -ul ul, ul ol, ul dir, ul menu, ul dl, ol ul, ol ol, ol dir, ol menu, ol dl, dir ul, dir ol, dir dir, dir menu, dir dl, menu ul, menu ol, menu dir, menu menu, menu dl, dl ul, dl ol, dl dir, dl menu, dl dl | |
90 | -{ | |
91 | - margin-top: 0; | |
92 | - margin-bottom: 0; | |
93 | -} | |
94 | - | |
95 | -ol ul, ul ul, menu ul, dir ul, ol menu, ul menu, menu menu, dir menu, ol dir, ul dir, menu dir, dir dir | |
96 | -{ | |
97 | - list-style-type: circle; | |
98 | -} | |
99 | - | |
100 | -ol ol ul, ol ul ul, ol menu ul, ol dir ul, ol ol menu, ol ul menu, ol menu menu, ol dir menu, ol ol dir, ol ul dir, ol menu dir, ol dir dir, ul ol ul, ul ul ul, ul menu ul, ul dir ul, ul ol menu, ul ul menu, ul menu menu, ul dir menu, ul ol dir, ul ul dir, ul menu dir, ul dir dir, menu ol ul, menu ul ul, menu menu ul, menu dir ul, menu ol menu, menu ul menu, menu menu menu, menu dir menu, menu ol dir, menu ul dir, menu menu dir, menu dir dir, dir ol ul, dir ul ul, dir menu ul, dir dir ul, dir ol menu, dir ul menu, dir menu menu, dir dir menu, dir ol dir, dir ul dir, dir menu dir, dir dir dir | |
101 | -{ | |
102 | - list-style-type: square; | |
103 | -} | |
104 | - | |
105 | -.hidden | |
106 | -{ | |
107 | - display: none; | |
108 | -} | |
109 | - | |
110 | -p | |
111 | -{ | |
112 | - line-height: 1.5em; | |
113 | -} | |
114 | - | |
115 | -h1 | |
116 | -{ | |
117 | - font-size: 1.75em; | |
118 | - line-height: 1.7em; | |
119 | - font-family: helvetica, verdana; | |
120 | -} | |
121 | - | |
122 | -h2 | |
123 | -{ | |
124 | - font-size: 1.5em; | |
125 | - line-height: 1.7em; | |
126 | - font-family: helvetica, verdana; | |
127 | -} | |
128 | - | |
129 | -h3 | |
130 | -{ | |
131 | - font-size: 1.25em; | |
132 | - line-height: 1.7em; | |
133 | - font-family: helvetica, verdana; | |
134 | -} | |
135 | - | |
136 | -h4 | |
137 | -{ | |
138 | - font-size: 1em; | |
139 | - line-height: 1.7em; | |
140 | - font-family: helvetica, verdana; | |
141 | -} | |
142 | - | |
143 | -html, body | |
144 | -{ | |
145 | - width: 100%; | |
146 | - height: 100%; | |
147 | -} | |
148 | - | |
149 | -body | |
150 | -{ | |
151 | - margin: 0; | |
152 | - padding: 0; | |
153 | - background-color: #fff; | |
154 | - position: relative; | |
155 | - font: 16px/24px NobileRegular, "Lucida Grande", Lucida, Verdana, sans-serif; | |
156 | -} | |
157 | - | |
158 | -a | |
159 | -{ | |
160 | - color: #1b61d6; | |
161 | - text-decoration: none; | |
162 | -} | |
163 | - | |
164 | -a:hover | |
165 | -{ | |
166 | - color: #e88f00; | |
167 | - text-decoration: underline; | |
168 | -} | |
169 | - | |
170 | -body h1, body h2, body h3, body h4, body h5, body h6 | |
171 | -{ | |
172 | - font-family: NeutonRegular, "Lucida Grande", Lucida, Verdana, sans-serif; | |
173 | - font-weight: 400; | |
174 | - color: #373839; | |
175 | - font-style: normal; | |
176 | -} | |
177 | - | |
178 | -#wrap | |
179 | -{ | |
180 | - min-height: 100%; | |
181 | -} | |
182 | - | |
183 | -#header, #footer | |
184 | -{ | |
185 | - width: 100%; | |
186 | - color: #fff; | |
187 | - height: 40px; | |
188 | - position: absolute; | |
189 | - text-align: center; | |
190 | - line-height: 40px; | |
191 | - overflow: hidden; | |
192 | - font-size: 12px; | |
193 | - vertical-align: middle; | |
194 | -} | |
195 | - | |
196 | -#header | |
197 | -{ | |
198 | - background: #000; | |
199 | - top: 0; | |
200 | - font-size: 14px; | |
201 | -} | |
202 | - | |
203 | -#footer | |
204 | -{ | |
205 | - bottom: 0; | |
206 | - background: #000 url(footerbg.png) repeat-x 0 top; | |
207 | - position: relative; | |
208 | - margin-top: -40px; | |
209 | - clear: both; | |
210 | -} | |
211 | - | |
212 | -.header, .footer | |
213 | -{ | |
214 | - width: 750px; | |
215 | - margin-right: auto; | |
216 | - margin-left: auto; | |
217 | -} | |
218 | - | |
219 | -.wrapper | |
220 | -{ | |
221 | - width: 100%; | |
222 | -} | |
223 | - | |
224 | -#top, #top-small, #bottom | |
225 | -{ | |
226 | - width: 100%; | |
227 | -} | |
228 | - | |
229 | -#top | |
230 | -{ | |
231 | - color: #000; | |
232 | - height: 230px; | |
233 | - background: #fff url(headerbg.png) repeat-x 0 top; | |
234 | - position: relative; | |
235 | -} | |
236 | - | |
237 | -#top-small | |
238 | -{ | |
239 | - color: #000; | |
240 | - height: 60px; | |
241 | - background: #fff url(headerbg.png) repeat-x 0 top; | |
242 | - position: relative; | |
243 | -} | |
244 | - | |
245 | -#bottom | |
246 | -{ | |
247 | - color: #222; | |
248 | - background-color: #fff; | |
249 | -} | |
250 | - | |
251 | -.top, .top-small, .middle, .bottom | |
252 | -{ | |
253 | - width: 750px; | |
254 | - margin-right: auto; | |
255 | - margin-left: auto; | |
256 | -} | |
257 | - | |
258 | -.top | |
259 | -{ | |
260 | - padding-top: 40px; | |
261 | -} | |
262 | - | |
263 | -.top-small | |
264 | -{ | |
265 | - padding-top: 10px; | |
266 | -} | |
267 | - | |
268 | -#middle | |
269 | -{ | |
270 | - width: 100%; | |
271 | - height: 100px; | |
272 | - background: url(middlebg.png) repeat-x; | |
273 | - border-top: 2px solid #fff; | |
274 | - border-bottom: 2px solid #b2b2b2; | |
275 | -} | |
276 | - | |
277 | -.app-welcome | |
278 | -{ | |
279 | - margin-top: 25px; | |
280 | -} | |
281 | - | |
282 | -.app-name | |
283 | -{ | |
284 | - color: #000; | |
285 | - font-weight: 700; | |
286 | -} | |
287 | - | |
288 | -.bottom | |
289 | -{ | |
290 | - padding-top: 50px; | |
291 | -} | |
292 | - | |
293 | -#left | |
294 | -{ | |
295 | - width: 350px; | |
296 | - float: left; | |
297 | - padding-right: 25px; | |
298 | -} | |
299 | - | |
300 | -#right | |
301 | -{ | |
302 | - width: 350px; | |
303 | - float: right; | |
304 | - padding-left: 25px; | |
305 | -} | |
306 | - | |
307 | -.align-left | |
308 | -{ | |
309 | - text-align: left; | |
310 | -} | |
311 | - | |
312 | -.align-right | |
313 | -{ | |
314 | - text-align: right; | |
315 | -} | |
316 | - | |
317 | -.align-center | |
318 | -{ | |
319 | - text-align: center; | |
320 | -} | |
321 | - | |
322 | -ul.links | |
323 | -{ | |
324 | - margin: 0; | |
325 | - padding: 0; | |
326 | -} | |
327 | - | |
328 | -ul.links li | |
329 | -{ | |
330 | - list-style-type: none; | |
331 | - font-size: 14px; | |
332 | -} | |
333 | - | |
334 | -form | |
335 | -{ | |
336 | - border-style: none; | |
337 | -} | |
338 | - | |
339 | -fieldset | |
340 | -{ | |
341 | - border-style: none; | |
342 | -} | |
343 | - | |
344 | -input | |
345 | -{ | |
346 | - color: #222; | |
347 | - border: 1px solid #ccc; | |
348 | - font-family: sans-serif; | |
349 | - font-size: 12px; | |
350 | - line-height: 16px; | |
351 | -} | |
352 | - | |
353 | -input[type=text], input[type=password] | |
354 | -{ | |
355 | - width: 205px; | |
356 | -} | |
357 | - | |
358 | -input[type=submit] | |
359 | -{ | |
360 | - background-color: #ddd; | |
361 | - font-weight: 700; | |
362 | -} | |
363 | - | |
364 | -/*Opera Fix*/ | |
365 | -body:before | |
366 | -{ | |
367 | - content: ""; | |
368 | - height: 100%; | |
369 | - float: left; | |
370 | - width: 0; | |
371 | - margin-top: -32767px; | |
372 | -} |
wscacicneo/static/questionarcoleta.js
... | ... | @@ -1,89 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - xtype:'displayfield', | |
15 | - fieldLabel: 'Nome do responsavel', | |
16 | - name: 'nome', | |
17 | - value: 'João da Silva' | |
18 | - }, | |
19 | - { | |
20 | - xtype:'displayfield', | |
21 | - fieldLabel: 'Orgão da coleta:', | |
22 | - name: 'orgao', | |
23 | - value: 'Ministerio do Planejamento', | |
24 | - },{ | |
25 | - xtype:'displayfield', | |
26 | - fieldLabel: 'Codigo da coleta:', | |
27 | - name: 'orgao', | |
28 | - value: '1231654', | |
29 | - }, | |
30 | - | |
31 | - { | |
32 | - xtype:'displayfield', | |
33 | - fieldLabel: 'Data', | |
34 | - name: 'data', | |
35 | - value:'12/12/2012', | |
36 | - }, | |
37 | - { | |
38 | - xtype:'textfield', | |
39 | - fieldLabel: 'Descrição', | |
40 | - name: 'Descrição', | |
41 | - width: 450, | |
42 | - height: 100, | |
43 | - }, | |
44 | - | |
45 | - { | |
46 | - xtype: 'button', | |
47 | - text: 'Enviar', | |
48 | - style:{ | |
49 | - margin: '20px 10px 0px 300px', | |
50 | - }, | |
51 | - }, | |
52 | - { | |
53 | - xtype: 'button', | |
54 | - text: 'Cancelar', | |
55 | - style:{ | |
56 | - margin: '20px 10px 0px 0px', | |
57 | - }, | |
58 | - | |
59 | - }, | |
60 | - ] | |
61 | -}); | |
62 | - | |
63 | -painel = Ext.create('Ext.panel.Panel', { | |
64 | - layout: 'fit', | |
65 | - title: 'Questionar Coleta', | |
66 | - width: '75%', | |
67 | - height: 350, | |
68 | - frame: true, | |
69 | - draggable: true, | |
70 | - collapsible: true, | |
71 | - border : true, | |
72 | - style: { | |
73 | - "text-align": 'center', | |
74 | - margin: '0px auto 15px auto' | |
75 | - }, | |
76 | - items: table, | |
77 | -}); | |
78 | - | |
79 | -Ext.onReady(function(){ | |
80 | - | |
81 | - | |
82 | - Ext.create('Ext.Container', { | |
83 | - padding: '15px', | |
84 | - items: [painel], | |
85 | - renderTo: 'widgets' | |
86 | - }); | |
87 | - | |
88 | -}); | |
89 | - |
wscacicneo/static/rede.js
... | ... | @@ -1,64 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Ativos de rede', | |
15 | - width:450, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'Quantidade', | |
20 | - width: 200, | |
21 | - name: 'matricula' | |
22 | - }, | |
23 | - { | |
24 | - xtype: 'button', | |
25 | - text: 'Enviar', | |
26 | - style : { | |
27 | - margin : " 0px 10px 0px 330px" | |
28 | - } | |
29 | - }, | |
30 | - { | |
31 | - xtype: 'button', | |
32 | - text: 'Limpar', | |
33 | - }, | |
34 | - | |
35 | - ] | |
36 | -}); | |
37 | - | |
38 | -painel = Ext.create('Ext.panel.Panel', { | |
39 | - layout: 'fit', | |
40 | - title: 'Rede', | |
41 | - width: '75%', | |
42 | - height: 200, | |
43 | - frame: true, | |
44 | - draggable: true, | |
45 | - collapsible: true, | |
46 | - border : true, | |
47 | - style: { | |
48 | - "text-align": 'center', | |
49 | - margin: '0px auto 15px auto' | |
50 | - }, | |
51 | - items: table, | |
52 | -}); | |
53 | - | |
54 | -Ext.onReady(function(){ | |
55 | - | |
56 | - | |
57 | - Ext.create('Ext.Container', { | |
58 | - padding: '15px', | |
59 | - items: [painel], | |
60 | - renderTo: 'widgets' | |
61 | - }); | |
62 | - | |
63 | -}); | |
64 | - |
wscacicneo/static/relatorio.js
... | ... | @@ -1,246 +0,0 @@ |
1 | -/*TABELA DE RELATÓRIOS*/ | |
2 | - | |
3 | -Ext.define('User',{ | |
4 | - extend: 'Ext.data.Model', | |
5 | - fields: [ 'marca', 'modelo', 'fabricacao', 'quantidade' ], | |
6 | -}); | |
7 | - | |
8 | -var userStore = Ext.create('Ext.data.Store', { | |
9 | - model: 'User', | |
10 | - data: [ | |
11 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
12 | - { marca: 'AMD', modelo: 'AMD 3.2GHZ', fabricacao: '08/22/2008', quantidade: '26' }, | |
13 | - | |
14 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
15 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
16 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
17 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
18 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
19 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
20 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
21 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
22 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
23 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
24 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
25 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
26 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
27 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
28 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
29 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
30 | - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' }, | |
31 | - { marca: 'AMD', modelo: 'AMD 3.2GHZ', fabricacao: '08/22/2008', quantidade: '26' }, | |
32 | - ], | |
33 | - autoLoad: false, | |
34 | - | |
35 | - id:'simpsonsStore', | |
36 | -}); | |
37 | - | |
38 | -table = Ext.create('Ext.grid.Panel', { | |
39 | - store: userStore, | |
40 | - width: 400, | |
41 | - height: 300, | |
42 | - // title: 'Application Users', | |
43 | - columns: [ | |
44 | - { | |
45 | - text: 'MARCA', | |
46 | - width: 75, | |
47 | - sortable: true, | |
48 | - hideable: false, | |
49 | - dataIndex: 'marca' | |
50 | - }, | |
51 | - { | |
52 | - text: 'MODELO', | |
53 | - width: 200, | |
54 | - dataIndex: 'modelo', | |
55 | - hidden: false, | |
56 | - }, | |
57 | - { | |
58 | - text: 'FABRICAÇÃO', | |
59 | - sortable: false, | |
60 | - width:100, | |
61 | - renderer: Ext.util.Format.dateRenderer('d/m/Y'), | |
62 | - flex: 1, | |
63 | - dataIndex: 'fabricacao' | |
64 | - }, | |
65 | - { | |
66 | - text: 'QUANTIDADE', | |
67 | - sortable: false, | |
68 | - width:120, | |
69 | - dataIndex: 'quantidade' | |
70 | - }, | |
71 | - ], | |
72 | - tbar:[ | |
73 | - | |
74 | - | |
75 | - 'Exportar PDF', | |
76 | - { xtype: 'tbfill'}, | |
77 | - 'Imprimir', | |
78 | - { xtype: 'tbfill'}, | |
79 | - 'Favorito', | |
80 | - { xtype: 'tbfill'}, | |
81 | - 'Questionar Coleta', | |
82 | - { xtype: 'tbfill'}, | |
83 | - 'CSV', | |
84 | - ] | |
85 | -}); | |
86 | - | |
87 | -/*COMEÇANDO PAGINAÇÃO - LEMBRANDO QUE TODA A PAGINAÇÃO NÃO ESTÁ COMPLETAMENTE FUNCIONANDO. | |
88 | -APENAS PARA QUESTÃO DE DOCUMENTAÇÃO.*/ | |
89 | - | |
90 | - | |
91 | -var itemsPerPage = 2; // set the number of items you want per page | |
92 | - | |
93 | -var store = Ext.create('Ext.data.Store', { | |
94 | - id:'simpsonsStore', | |
95 | - autoLoad: false, | |
96 | - fields:['name', 'email', 'phone'], | |
97 | - pageSize: itemsPerPage, // items per page | |
98 | - proxy: { | |
99 | - type: 'ajax', | |
100 | - url: 'pagingstore.js', // url that will load data with respect to start and limit params | |
101 | - reader: { | |
102 | - type: 'json', | |
103 | - root: 'items', | |
104 | - totalProperty: 'total' | |
105 | - } | |
106 | - } | |
107 | -}); | |
108 | - | |
109 | - | |
110 | - | |
111 | - | |
112 | -// specify segment of data you want to load using params | |
113 | -store.load({ | |
114 | - params:{ | |
115 | - start:0, | |
116 | - limit: itemsPerPage | |
117 | - } | |
118 | -}); | |
119 | - | |
120 | -tabela = Ext.create('Ext.panel.Panel', { | |
121 | - layout: 'fit', | |
122 | - title: 'Relatório de coletas por PROCESSADOR', | |
123 | - width: '75%', | |
124 | - frame: true, | |
125 | - draggable: true, | |
126 | - collapsible: true, | |
127 | - border : true, | |
128 | - style: { | |
129 | - "text-align": 'center', | |
130 | - margin: '0px auto 15px auto' | |
131 | - }, | |
132 | - items: table, | |
133 | - | |
134 | - dockedItems: [{ | |
135 | - xtype: 'pagingtoolbar', | |
136 | - store: userStore, // same store GridPanel is using | |
137 | - dock: 'bottom', | |
138 | - displayInfo: true | |
139 | - }], | |
140 | - | |
141 | -}); | |
142 | - | |
143 | -Ext.onReady(function(){ | |
144 | - Ext.create('Ext.Container', { | |
145 | - padding: '15px', | |
146 | - items: [tabela], | |
147 | - renderTo: 'widgets' | |
148 | - }); | |
149 | - | |
150 | -}); | |
151 | - | |
152 | - | |
153 | -//CRIANDO GRAFICO | |
154 | - | |
155 | - | |
156 | -var store = Ext.create('Ext.data.JsonStore', { | |
157 | - fields: ['name', 'data'], | |
158 | - data: [ | |
159 | - { 'name': 'INTEL 55%', 'data': 32 }, | |
160 | - { 'name': 'AMD 45%', 'data': 26 } | |
161 | -]}); | |
162 | - | |
163 | -var chart = Ext.create('Ext.chart.Chart', { | |
164 | - layout: 'fit', | |
165 | - width: 500, | |
166 | - height: 350, | |
167 | - animate: true, | |
168 | - store: store, | |
169 | - theme: 'Base:gradients', | |
170 | - shadow: true, | |
171 | - legend: { | |
172 | - position: 'right' | |
173 | - }, | |
174 | - series: [{ | |
175 | - type: 'pie', | |
176 | - angleField: 'data', | |
177 | - showInLegend: true, | |
178 | - tips: { | |
179 | - trackMouse: true, | |
180 | - width: 140, | |
181 | - height: 28, | |
182 | - renderer: function(storeItem, item) { | |
183 | - // calculate and display percentage on hover | |
184 | - var total = 0; | |
185 | - store.each(function(rec) { | |
186 | - total += rec.get('data'); | |
187 | - }); | |
188 | - this.setTitle(storeItem.get('name') + ': ' + Math.round(storeItem.get('data') / total * 100) + '%'); | |
189 | - } | |
190 | - }, | |
191 | - highlight: { | |
192 | - segment: { | |
193 | - margin: 20 | |
194 | - } | |
195 | - }, | |
196 | - label: { | |
197 | - field: 'name', | |
198 | - display: 'rotate', | |
199 | - contrast: true, | |
200 | - font: '18px Arial' | |
201 | - } | |
202 | - }] | |
203 | -}); | |
204 | - | |
205 | -widget = Ext.create('Ext.panel.Panel', { | |
206 | - layout: 'fit', | |
207 | - title: 'Gráfico', | |
208 | - width: '75%', | |
209 | - frame: true, | |
210 | - draggable: true, | |
211 | - collapsible: true, | |
212 | - border : true, | |
213 | - style: { | |
214 | - "text-align": 'center', | |
215 | - margin: '-35px auto 15px auto' | |
216 | - }, | |
217 | - items: chart, | |
218 | - | |
219 | - tbar:[ | |
220 | - 'Exportar PDF', | |
221 | - { xtype: 'tbfill'}, | |
222 | - 'Imprimir', | |
223 | - { xtype: 'tbfill'}, | |
224 | - 'CSV', | |
225 | - ], | |
226 | - | |
227 | - bbar:[ | |
228 | - 'Quantidade de Orgãos: 12', | |
229 | - { xtype: 'tbfill'}, | |
230 | - 'Período da Coleta: 01/2014 - 06/2014', | |
231 | - ] | |
232 | - | |
233 | -}); | |
234 | - | |
235 | -Ext.onReady(function(){ | |
236 | - | |
237 | - | |
238 | - Ext.create('Ext.Container', { | |
239 | - padding: '15px', | |
240 | - items: [widget], | |
241 | - renderTo: 'widgets' | |
242 | - }); | |
243 | -}); | |
244 | - | |
245 | - | |
246 | - |
wscacicneo/static/reports.js
... | ... | @@ -1,156 +0,0 @@ |
1 | -/*GRAFICO DE ORGÃOS*/ | |
2 | - | |
3 | - | |
4 | -Ext.define('User',{ | |
5 | - extend: 'Ext.data.Model', | |
6 | - fields: [ 'codigo', 'orgao', 'date' ] | |
7 | -}); | |
8 | - | |
9 | -var userStore = Ext.create('Ext.data.Store', { | |
10 | - model: 'User', | |
11 | - data: [ | |
12 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
13 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
14 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
15 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
16 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
17 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
18 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
19 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
20 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
21 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
22 | - { codigo: '27236', orgao: 'Ministério da Fazenda', date: '12/12/2014' }, | |
23 | - ] | |
24 | -}); | |
25 | - | |
26 | -table = Ext.create('Ext.grid.Panel', { | |
27 | - store: userStore, | |
28 | - width: 400, | |
29 | - height: 200, | |
30 | - // title: 'Application Users', | |
31 | - columns: [ | |
32 | - { | |
33 | - xtype: 'checkcolumn', | |
34 | - allowBlank: false, | |
35 | - dataIndex: 'active', | |
36 | - width: 60, | |
37 | - editor:{ | |
38 | - xtype: 'checkbox', | |
39 | - cls: 'item' | |
40 | - }, | |
41 | - }, | |
42 | - { | |
43 | - text: 'Codigo', | |
44 | - width: 75, | |
45 | - sortable: true, | |
46 | - hideable: false, | |
47 | - dataIndex: 'codigo' | |
48 | - }, | |
49 | - { | |
50 | - text: 'Orgao', | |
51 | - width: 300, | |
52 | - dataIndex: 'orgao', | |
53 | - hidden: false, | |
54 | - }, | |
55 | - { | |
56 | - text: 'Data', | |
57 | - sortable: false, | |
58 | - width:80, | |
59 | - renderer: Ext.util.Format.dateRenderer('m/d/Y'), | |
60 | - flex: 1, | |
61 | - dataIndex: 'date' | |
62 | - }, | |
63 | - ] | |
64 | -}); | |
65 | - | |
66 | -tabela = Ext.create('Ext.panel.Panel', { | |
67 | - layout: 'fit', | |
68 | - title: 'Relatórios de Coletas', | |
69 | - width: '75%', | |
70 | - frame: true, | |
71 | - draggable: true, | |
72 | - collapsible: true, | |
73 | - border : true, | |
74 | - style: { | |
75 | - "text-align": 'center', | |
76 | - margin: '0px auto 15px auto' | |
77 | - }, | |
78 | - items: table, | |
79 | -}); | |
80 | - | |
81 | -Ext.onReady(function(){ | |
82 | - | |
83 | - | |
84 | - Ext.create('Ext.Container', { | |
85 | - padding: '15px', | |
86 | - items: [tabela], | |
87 | - renderTo: 'widgets' | |
88 | - }); | |
89 | - | |
90 | -}); | |
91 | - | |
92 | - | |
93 | -// **** FILTRO DE ITENS **** | |
94 | - | |
95 | -Ext.define('User1',{ | |
96 | - extend: 'Ext.data.Model', | |
97 | - fields: ['chbox', 'item' ] | |
98 | -}); | |
99 | - | |
100 | -var userStore1 = Ext.create('Ext.data.Store', { | |
101 | - model: 'User1', | |
102 | - data: [ | |
103 | - { item: 'Computador'}, | |
104 | - { item: 'Processador'}, | |
105 | - { item: 'Memórias'}, | |
106 | - { item: 'Hard Disk (HD)'}, | |
107 | - { item: 'Sistemas Operacionais'}, | |
108 | - { item: 'Suítes de Escritórios'}, | |
109 | - { item: 'Ativos de Redes'}, | |
110 | - { item: 'Softwares Básicos'}, | |
111 | - ] | |
112 | -}); | |
113 | - | |
114 | -table1 = Ext.create('Ext.grid.Panel', { | |
115 | - store: userStore1, | |
116 | - width: 400, | |
117 | - height: 200, | |
118 | - // title: 'Application Users', | |
119 | - columns: [ | |
120 | - { | |
121 | - text: 'Item', | |
122 | - width: 500, | |
123 | - sortable: true, | |
124 | - hideable: false, | |
125 | - dataIndex: 'item' | |
126 | - }, | |
127 | - ] | |
128 | -}); | |
129 | - | |
130 | -tabela1 = Ext.create('Ext.panel.Panel', { | |
131 | - layout: 'fit', | |
132 | - title: 'Gerar Relatório', | |
133 | - width: '75%', | |
134 | - frame: true, | |
135 | - draggable: true, | |
136 | - collapsible: true, | |
137 | - border : true, | |
138 | - style: { | |
139 | - "text-align": 'center', | |
140 | - margin: '0px auto 15px auto' | |
141 | - }, | |
142 | - items: table1, | |
143 | -}); | |
144 | - | |
145 | -Ext.onReady(function(){ | |
146 | - | |
147 | - | |
148 | - Ext.create('Ext.Container', { | |
149 | - padding:'15px', | |
150 | - items: [tabela1], | |
151 | - renderTo: 'widgets' | |
152 | - }); | |
153 | - | |
154 | -}); | |
155 | - | |
156 | - |
wscacicneo/static/reportsgestor.js
... | ... | @@ -1,79 +0,0 @@ |
1 | - | |
2 | -// **** FILTRO DE ITENS **** | |
3 | - | |
4 | -Ext.define('User1',{ | |
5 | - extend: 'Ext.data.Model', | |
6 | - fields: ['chbox', 'item' ] | |
7 | -}); | |
8 | - | |
9 | -var userStore1 = Ext.create('Ext.data.Store', { | |
10 | - model: 'User1', | |
11 | - data: [ | |
12 | - { item: 'Computador'}, | |
13 | - { item: 'Processador'}, | |
14 | - { item: 'Memórias'}, | |
15 | - { item: 'Hard Disk (HD)'}, | |
16 | - { item: 'Sistemas Operacionais'}, | |
17 | - { item: 'Suítes de Escritórios'}, | |
18 | - { item: 'Ativos de Redes'}, | |
19 | - { item: 'Softwares Básicos'}, | |
20 | - ] | |
21 | -}); | |
22 | - | |
23 | -table1 = Ext.create('Ext.grid.Panel', { | |
24 | - store: userStore1, | |
25 | - width: 450, | |
26 | - height: 300, | |
27 | - // title: 'Application Users', | |
28 | - columns: [ | |
29 | - { | |
30 | - text: 'Item', | |
31 | - width:'100%', | |
32 | - sortable: true, | |
33 | - hideable: false, | |
34 | - dataIndex: 'item' | |
35 | - }, | |
36 | - ], | |
37 | - bbar:[ | |
38 | - { | |
39 | - xtype: 'button', | |
40 | - text: 'Gerar Relatório', | |
41 | - style:{ | |
42 | - margin: '0px 10px 0px 300px', | |
43 | - } | |
44 | - }, | |
45 | - { | |
46 | - xtype: 'button', | |
47 | - text: 'Cancelar', | |
48 | - }, | |
49 | - ] | |
50 | - | |
51 | -}); | |
52 | - | |
53 | -tabela1 = Ext.create('Ext.panel.Panel', { | |
54 | - layout: 'fit', | |
55 | - title: 'Gerar Relatório', | |
56 | - width: '75%', | |
57 | - frame: true, | |
58 | - draggable: true, | |
59 | - collapsible: true, | |
60 | - border : true, | |
61 | - style: { | |
62 | - "text-align": 'center', | |
63 | - margin: '0px auto 15px auto' | |
64 | - }, | |
65 | - items: table1, | |
66 | -}); | |
67 | - | |
68 | -Ext.onReady(function(){ | |
69 | - | |
70 | - | |
71 | - Ext.create('Ext.Container', { | |
72 | - padding:'15px', | |
73 | - items: [tabela1], | |
74 | - renderTo: 'widgets' | |
75 | - }); | |
76 | - | |
77 | -}); | |
78 | - | |
79 | - |
wscacicneo/static/sistema.js
... | ... | @@ -1,74 +0,0 @@ |
1 | -var table = Ext.create('Ext.form.Panel', { | |
2 | - renderTo: Ext.getBody(), | |
3 | - title: '', | |
4 | - height: 130, | |
5 | - width: 280, | |
6 | - style: { | |
7 | - "text-align": 'left', | |
8 | - }, | |
9 | - | |
10 | - bodyPadding: 10, | |
11 | - defaultType: 'textfield', | |
12 | - items: [ | |
13 | - { | |
14 | - fieldLabel: 'Quantidade', | |
15 | - width:450, | |
16 | - name: 'nome' | |
17 | - }, | |
18 | - { | |
19 | - fieldLabel: 'instalação', | |
20 | - width: 250, | |
21 | - name: 'data instalação' | |
22 | - }, | |
23 | - { | |
24 | - fieldLabel: 'Nome', | |
25 | - width: 300, | |
26 | - name: 'email' | |
27 | - }, | |
28 | - { | |
29 | - fieldLabel: 'Versão', | |
30 | - width: 250, | |
31 | - name: 'email' | |
32 | - }, | |
33 | - { | |
34 | - xtype: 'button', | |
35 | - text: 'Enviar', | |
36 | - style : { | |
37 | - margin : " 0px 10px 0px 0px" | |
38 | - } | |
39 | - }, | |
40 | - { | |
41 | - xtype: 'button', | |
42 | - text: 'Limpar', | |
43 | - }, | |
44 | - | |
45 | - ] | |
46 | -}); | |
47 | - | |
48 | -painel = Ext.create('Ext.panel.Panel', { | |
49 | - layout: 'fit', | |
50 | - title: 'Sistemas Operacionais', | |
51 | - width: '75%', | |
52 | - height: 200, | |
53 | - title: 'Processador', | |
54 | - frame: true, | |
55 | - draggable: true, | |
56 | - collapsible: true, | |
57 | - border : true, | |
58 | - style: { | |
59 | - "text-align": 'center', | |
60 | - margin: '0px auto 15px auto' | |
61 | - }, | |
62 | - items: table, | |
63 | -}); | |
64 | - | |
65 | -Ext.onReady(function(){ | |
66 | - | |
67 | - | |
68 | - Ext.create('Ext.Container', { | |
69 | - padding: '15px', | |
70 | - items: [painel], | |
71 | - renderTo: 'widgets' | |
72 | - }); | |
73 | -}); | |
74 | - |
wscacicneo/static/so-grafico.js
... | ... | @@ -1,97 +0,0 @@ |
1 | -w = document.getElementById('data2'); | |
2 | -t = w.textContent; | |
3 | -var regex = new RegExp("'", 'g'); | |
4 | -t.replace(regex,'"'); | |
5 | -t = t.replace(regex,'"'); | |
6 | -JSON.parse(t); | |
7 | -t = JSON.parse(t); | |
8 | - | |
9 | -var store1 = Ext.create('Ext.data.Store', { | |
10 | - storeId:'Simpsons', | |
11 | - fields:['wcount', 'ucount', 'dcount', 'a', 'b', 'c'], | |
12 | - data: t, | |
13 | - proxy: { | |
14 | - type: 'memory', | |
15 | - reader: { | |
16 | - type: 'json', | |
17 | - root: 'items' | |
18 | - } | |
19 | - } | |
20 | -}); | |
21 | - | |
22 | -Ext.require('Ext.chart.*'); | |
23 | -Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBox']); | |
24 | - | |
25 | -Ext.onReady(function () { | |
26 | - | |
27 | - var chart = Ext.create('Ext.chart.Chart', { | |
28 | - animate: true, | |
29 | - shadow: true, | |
30 | - store: store1, | |
31 | - axes: [{ | |
32 | - type: 'Numeric', | |
33 | - position: 'left', | |
34 | - fields: ['data1'], | |
35 | - title: 'Quantidade', | |
36 | - grid: true, | |
37 | - minimum: 0, | |
38 | - maximum: 16 | |
39 | - }, { | |
40 | - type: 'Category', | |
41 | - position: 'bottom', | |
42 | - fields: ['a', 'b', 'c'], | |
43 | - title: 'Sistemas Operacionais', | |
44 | - label: { | |
45 | - } | |
46 | - }], | |
47 | - series: [{ | |
48 | - type: 'column', | |
49 | - axis: 'left', | |
50 | - gutter: 80, | |
51 | - xField: '', | |
52 | - yField: ['wcount', 'ucount', 'dcount'], | |
53 | - tips: { | |
54 | - trackMouse: true, | |
55 | - width: 74, | |
56 | - height: 38, | |
57 | - renderer: function(storeItem, item) { | |
58 | - this.setTitle(storeItem.get('name')); | |
59 | - this.update(storeItem.get('data1')); | |
60 | - } | |
61 | - }, | |
62 | - style: { | |
63 | - fill: '#38B8BF' | |
64 | - } | |
65 | - }] | |
66 | - }); | |
67 | - | |
68 | - | |
69 | - var panel1 = Ext.create('widget.panel', { | |
70 | - width: 800, | |
71 | - height: 400, | |
72 | - title: 'Column Chart with Reload - Hits per Month', | |
73 | - renderTo: 'centro', | |
74 | - layout: 'fit', | |
75 | - tbar: [{ | |
76 | - text: 'Save Chart', | |
77 | - handler: function() { | |
78 | - Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?', function(choice){ | |
79 | - if(choice == 'yes'){ | |
80 | - chart.save({ | |
81 | - type: 'image/png' | |
82 | - }); | |
83 | - } | |
84 | - }); | |
85 | - } | |
86 | - }, { | |
87 | - text: 'Reload Data', | |
88 | - handler: function() { | |
89 | - // Add a short delay to prevent fast sequential clicks | |
90 | - window.loadTask.delay(100, function() { | |
91 | - store1.loadData(generateData()); | |
92 | - }); | |
93 | - } | |
94 | - }], | |
95 | - items: chart | |
96 | - }); | |
97 | -}); | |
98 | 0 | \ No newline at end of file |
wscacicneo/static/sobre.js
... | ... | @@ -1,17 +0,0 @@ |
1 | - var html = "<div style='padding: 25px ; font-size: 14px; text-align: justify;'><div style='width: 29%; height: 100px; float: left;'><img src='static/caciclogo.jpg'> </div><div style='width: 70%; float: right'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse turpis eros, accumsan in dignissim nec, rhoncus sed nunc. Integer sit amet venenatis ante, id lacinia velit. Fusce a elit purus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam aliquam lacus accumsan cursus tempus. Suspendisse ante ipsum, mollis eget ultrices eget, cursus sed quam. Fusce eget dui ut felis scelerisque sodales. Maecenas pellentesque dolor ac erat fringilla, ut vehicula mi viverra. In non turpis a massa auctor accumsan.</div></div>"; | |
2 | - | |
3 | - | |
4 | -Ext.onReady(function(){ | |
5 | - | |
6 | - Ext.create('Ext.Panel', { | |
7 | - layout: 'fit', | |
8 | - height: '220px', | |
9 | - style: {margin: '15px'}, | |
10 | - frame: true, | |
11 | - draggable: true, | |
12 | - title: 'SOBRE O SUPER GERENTE', | |
13 | - titleAlign: 'center', | |
14 | - html: html, | |
15 | - renderTo: 'g1' | |
16 | - }); | |
17 | -}); |
wscacicneo/static/tabelaajax.js
... | ... | @@ -1,18 +0,0 @@ |
1 | -function carregamentoTabela() | |
2 | -{ | |
3 | -var xmlhttp; | |
4 | -if (window.XMLHttpRequest) | |
5 | - {// code for IE7+, Firefox, Chrome, Opera, Safari | |
6 | - xmlhttp=new XMLHttpRequest(); | |
7 | - } | |
8 | - | |
9 | -xmlhttp.onreadystatechange=function() | |
10 | - { | |
11 | - if (xmlhttp.readyState==4 && xmlhttp.status==200) | |
12 | - { | |
13 | - document.getElementById("centro").innerHTML=xmlhttp.responseXML; | |
14 | - } | |
15 | - } | |
16 | -xmlhttp.open("GET","cartoon.xml",true); | |
17 | -xmlhttp.send(); | |
18 | -} |
wscacicneo/static/teste-grafico.js
... | ... | @@ -1,97 +0,0 @@ |
1 | -w = document.getElementById('data2'); | |
2 | -t = w.textContent; | |
3 | -var regex = new RegExp("'", 'g'); | |
4 | -t.replace(regex,'"'); | |
5 | -t = t.replace(regex,'"'); | |
6 | -JSON.parse(t); | |
7 | -t = JSON.parse(t); | |
8 | - | |
9 | -var store1 = Ext.create('Ext.data.Store', { | |
10 | - storeId:'Simpsons', | |
11 | - fields:['wcount', 'ucount', 'dcount', 'a', 'b', 'c'], | |
12 | - data: t, | |
13 | - proxy: { | |
14 | - type: 'memory', | |
15 | - reader: { | |
16 | - type: 'json', | |
17 | - root: 'items' | |
18 | - } | |
19 | - } | |
20 | -}); | |
21 | - | |
22 | -Ext.require('Ext.chart.*'); | |
23 | -Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBox']); | |
24 | - | |
25 | -Ext.onReady(function () { | |
26 | - | |
27 | - var chart = Ext.create('Ext.chart.Chart', { | |
28 | - animate: true, | |
29 | - shadow: true, | |
30 | - store: store1, | |
31 | - axes: [{ | |
32 | - type: 'Numeric', | |
33 | - position: 'left', | |
34 | - fields: ['data1'], | |
35 | - title: 'Quantidade', | |
36 | - grid: true, | |
37 | - minimum: 0, | |
38 | - maximum: 16 | |
39 | - }, { | |
40 | - type: 'Category', | |
41 | - position: 'bottom', | |
42 | - fields: ['a', 'b', 'c'], | |
43 | - title: 'Sistemas Operacionais', | |
44 | - label: { | |
45 | - } | |
46 | - }], | |
47 | - series: [{ | |
48 | - type: 'column', | |
49 | - axis: 'left', | |
50 | - gutter: 80, | |
51 | - xField: '', | |
52 | - yField: ['wcount', 'ucount', 'dcount'], | |
53 | - tips: { | |
54 | - trackMouse: true, | |
55 | - width: 74, | |
56 | - height: 38, | |
57 | - renderer: function(storeItem, item) { | |
58 | - this.setTitle(storeItem.get('name')); | |
59 | - this.update(storeItem.get('data1')); | |
60 | - } | |
61 | - }, | |
62 | - style: { | |
63 | - fill: '#38B8BF' | |
64 | - } | |
65 | - }] | |
66 | - }); | |
67 | - | |
68 | - | |
69 | - var panel1 = Ext.create('widget.panel', { | |
70 | - width: 800, | |
71 | - height: 400, | |
72 | - title: 'Column Chart with Reload - Hits per Month', | |
73 | - renderTo: 'centro', | |
74 | - layout: 'fit', | |
75 | - tbar: [{ | |
76 | - text: 'Save Chart', | |
77 | - handler: function() { | |
78 | - Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?', function(choice){ | |
79 | - if(choice == 'yes'){ | |
80 | - chart.save({ | |
81 | - type: 'image/png' | |
82 | - }); | |
83 | - } | |
84 | - }); | |
85 | - } | |
86 | - }, { | |
87 | - text: 'Reload Data', | |
88 | - handler: function() { | |
89 | - // Add a short delay to prevent fast sequential clicks | |
90 | - window.loadTask.delay(100, function() { | |
91 | - store1.loadData(generateData()); | |
92 | - }); | |
93 | - } | |
94 | - }], | |
95 | - items: chart | |
96 | - }); | |
97 | -}); | |
98 | 0 | \ No newline at end of file |
wscacicneo/static/users.js
... | ... | @@ -1,80 +0,0 @@ |
1 | -Ext.define('User',{ | |
2 | - extend: 'Ext.data.Model', | |
3 | - fields: [ 'codigo', 'orgao'] | |
4 | -}); | |
5 | - | |
6 | -var userStore = Ext.create('Ext.data.Store', { | |
7 | - model: 'User', | |
8 | - data: [ | |
9 | - { codigo: 'Pedro', orgao: 'Ministério da Fazenda'}, | |
10 | - { codigo: 'Carlos', orgao: 'Ministério da Fazenda'}, | |
11 | - { codigo: 'Thiago', orgao: 'Ministério da Fazenda'}, | |
12 | - { codigo: 'Helder', orgao: 'Ministério da Fazenda'}, | |
13 | - ] | |
14 | -}); | |
15 | - | |
16 | -table = Ext.create('Ext.grid.Panel', { | |
17 | - store: userStore, | |
18 | - width: 400, | |
19 | - height: 200, | |
20 | - // title: 'Application Users', | |
21 | - columns: [ | |
22 | - { | |
23 | - text: 'Nome', | |
24 | - width: 75, | |
25 | - sortable: true, | |
26 | - hideable: false, | |
27 | - dataIndex: 'codigo' | |
28 | - }, | |
29 | - { | |
30 | - text: 'Orgao', | |
31 | - width: 300, | |
32 | - dataIndex: 'orgao', | |
33 | - hidden: false, | |
34 | - }, | |
35 | - { | |
36 | - xtype: 'actioncolumn', | |
37 | - width: 100, | |
38 | - align: 'center', | |
39 | - items:[{ | |
40 | - icon:'static/icons/edit.png', | |
41 | - tooltip: 'Editar' | |
42 | - }, | |
43 | - { | |
44 | - icon:'' | |
45 | - }, | |
46 | - { | |
47 | - icon:'static/icons/delete.png', | |
48 | - tooltip: 'Excluir' | |
49 | - } | |
50 | - ] | |
51 | - }, | |
52 | - ] | |
53 | -}); | |
54 | - | |
55 | -tabela = Ext.create('Ext.panel.Panel', { | |
56 | - layout: 'fit', | |
57 | - title: 'Usuários', | |
58 | - width: '75%', | |
59 | - frame: true, | |
60 | - draggable: true, | |
61 | - collapsible: true, | |
62 | - border : true, | |
63 | - style: { | |
64 | - "text-align": 'center', | |
65 | - margin: '0px auto 15px auto' | |
66 | - }, | |
67 | - items: table, | |
68 | -}); | |
69 | - | |
70 | -Ext.onReady(function(){ | |
71 | - | |
72 | - | |
73 | - Ext.create('Ext.Container', { | |
74 | - padding: '15px', | |
75 | - items: [tabela], | |
76 | - renderTo: 'widgets' | |
77 | - }); | |
78 | - | |
79 | -}); | |
80 | - |
wscacicneo/test/test_orgao_attributes.py
... | ... | @@ -54,7 +54,7 @@ class TestOrgaoBase(unittest.TestCase): |
54 | 54 | nm_orgao='Ministério do Planejameiaaaaaaaaanto' |
55 | 55 | search = orgao_obj.search_orgao(nm_orgao) |
56 | 56 | print(search.results) |
57 | - id = search.results[0]['_metadata']['id_doc'] | |
57 | + id = search.results[0]._metadata.id_doc | |
58 | 58 | delete = orgao_obj.delete_orgao(id) |
59 | 59 | |
60 | 60 | assert(delete == 'DELETED') | ... | ... |
wscacicneo/views.py