govbr-theme 2.0.772__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (458) hide show
  1. govbr/theme/__init__.py +6 -0
  2. govbr/theme/browser/__init__.py +0 -0
  3. govbr/theme/browser/accessibility.pt +85 -0
  4. govbr/theme/browser/browser-info.pt +49 -0
  5. govbr/theme/browser/configure.zcml +35 -0
  6. govbr/theme/browser/overrides/.gitkeep +0 -0
  7. govbr/theme/browser/overrides/brasil.gov.newfieldcomplement.browser.faceted_tabular_view.pt +103 -0
  8. govbr/theme/browser/overrides/collective.cover.browser.templates.row.pt +57 -0
  9. govbr/theme/browser/overrides/eea.facetednavigation.widgets.boolean.widget.pt +47 -0
  10. govbr/theme/browser/overrides/eea.facetednavigation.widgets.checkbox.widget.pt +69 -0
  11. govbr/theme/browser/overrides/eea.facetednavigation.widgets.date.widget.pt +40 -0
  12. govbr/theme/browser/overrides/eea.facetednavigation.widgets.daterange.widget.pt +55 -0
  13. govbr/theme/browser/overrides/eea.facetednavigation.widgets.radio.widget.pt +60 -0
  14. govbr/theme/browser/overrides/eea.facetednavigation.widgets.select.widget.pt +39 -0
  15. govbr/theme/browser/overrides/eea.facetednavigation.widgets.sorting.widget.pt +60 -0
  16. govbr/theme/browser/overrides/eea.facetednavigation.widgets.text.widget.pt +23 -0
  17. govbr/theme/browser/overrides/lgpd.plugin.browser.viewlets.cookiebarviewlet.pt +27 -0
  18. govbr/theme/browser/overrides/lgpd.plugin.browser.viewlets.redefinirviewlet.pt +9 -0
  19. govbr/theme/browser/overrides/plonetheme.sunburst.skins.sunburst_styles.base.css +1102 -0
  20. govbr/theme/browser/overrides/plonetheme.sunburst.skins.sunburst_styles.dropdown-menu.css +73 -0
  21. govbr/theme/browser/overrides/plonetheme.sunburst.skins.sunburst_styles.public.css +543 -0
  22. govbr/theme/browser/overrides/sc.embedder.content.templates.view.pt +68 -0
  23. govbr/theme/browser/overrides/webcouturier.dropdownmenu.browser.dropdown_recurse.pt +60 -0
  24. govbr/theme/browser/overrides/webcouturier.dropdownmenu.browser.dropdown_sections.pt +46 -0
  25. govbr/theme/browser/static/.gitkeep +0 -0
  26. govbr/theme/browser/static/audio/record-end.mp3 +0 -0
  27. govbr/theme/browser/static/audio/record-start.mp3 +0 -0
  28. govbr/theme/browser/static/tinymce-editor.css +17 -0
  29. govbr/theme/browser/temp/instrucoes.txt +8 -0
  30. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.IEFixes.css +48 -0
  31. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.RTL.css +190 -0
  32. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.authoring.css +232 -0
  33. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.columns.css +86 -0
  34. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.controlpanel.css +153 -0
  35. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.deprecated.css +0 -0
  36. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.dropdown-menu.css +0 -0
  37. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.forms.css +212 -0
  38. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.invisibles.css +0 -0
  39. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.kupuplone.css +30 -0
  40. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.member.css +113 -0
  41. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.mobile.css +63 -0
  42. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.navtree.css +0 -0
  43. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.portlets.css +175 -0
  44. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.print.css +144 -0
  45. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_styles.reset.css +23 -0
  46. govbr/theme/browser/temp/plonetheme.sunburst.skins.sunburst_templates.main_template.pt +172 -0
  47. govbr/theme/configure.zcml +67 -0
  48. govbr/theme/dependencies.zcml +4 -0
  49. govbr/theme/entry_points.py +71 -0
  50. govbr/theme/interfaces.py +8 -0
  51. govbr/theme/locales/README.rst +37 -0
  52. govbr/theme/locales/__init__.py +0 -0
  53. govbr/theme/locales/en/LC_MESSAGES/govbr.theme.mo +0 -0
  54. govbr/theme/locales/en/LC_MESSAGES/govbr.theme.po +152 -0
  55. govbr/theme/locales/es/LC_MESSAGES/govbr.theme.mo +0 -0
  56. govbr/theme/locales/es/LC_MESSAGES/govbr.theme.po +152 -0
  57. govbr/theme/locales/govbr.theme.pot +147 -0
  58. govbr/theme/locales/manual.pot +42 -0
  59. govbr/theme/locales/pt_BR/LC_MESSAGES/eea.mo +0 -0
  60. govbr/theme/locales/pt_BR/LC_MESSAGES/eea.po +22 -0
  61. govbr/theme/locales/pt_BR/LC_MESSAGES/govbr.theme.mo +0 -0
  62. govbr/theme/locales/pt_BR/LC_MESSAGES/govbr.theme.po +152 -0
  63. govbr/theme/locales/update.py +71 -0
  64. govbr/theme/locales/update.sh +12 -0
  65. govbr/theme/overrides.zcml +17 -0
  66. govbr/theme/permissions.zcml +12 -0
  67. govbr/theme/profiles/default/browserlayer.xml +7 -0
  68. govbr/theme/profiles/default/catalog.xml +4 -0
  69. govbr/theme/profiles/default/metadata.xml +11 -0
  70. govbr/theme/profiles/default/registry.xml +32 -0
  71. govbr/theme/profiles/default/rolemap.xml +7 -0
  72. govbr/theme/profiles/default/theme.xml +5 -0
  73. govbr/theme/profiles/initial/metadata.xml +7 -0
  74. govbr/theme/profiles/uninstall/browserlayer.xml +7 -0
  75. govbr/theme/setuphandlers.py +32 -0
  76. govbr/theme/testing.py +68 -0
  77. govbr/theme/tests/__init__.py +0 -0
  78. govbr/theme/tests/robot/test_example.robot +66 -0
  79. govbr/theme/tests/test_robot.py +28 -0
  80. govbr/theme/tests/test_setup.py +72 -0
  81. govbr/theme/themes/padrao_govbr/favicons/apple-touch-icon.png +0 -0
  82. govbr/theme/themes/padrao_govbr/favicons/browserconfig.xml +9 -0
  83. govbr/theme/themes/padrao_govbr/favicons/favicon-16x16.png +0 -0
  84. govbr/theme/themes/padrao_govbr/favicons/favicon-32x32.png +0 -0
  85. govbr/theme/themes/padrao_govbr/favicons/favicon-48x48.png +0 -0
  86. govbr/theme/themes/padrao_govbr/favicons/mstile-150x150.png +0 -0
  87. govbr/theme/themes/padrao_govbr/favicons/safari-pinned-tab.svg +24 -0
  88. govbr/theme/themes/padrao_govbr/fonts/icomoon.eot +0 -0
  89. govbr/theme/themes/padrao_govbr/fonts/icomoon.svg +1 -0
  90. govbr/theme/themes/padrao_govbr/fonts/icomoon.ttf +0 -0
  91. govbr/theme/themes/padrao_govbr/fonts/icomoon.woff +0 -0
  92. govbr/theme/themes/padrao_govbr/fonts/rawline-100.eot +0 -0
  93. govbr/theme/themes/padrao_govbr/fonts/rawline-100.svg +1 -0
  94. govbr/theme/themes/padrao_govbr/fonts/rawline-100.ttf +0 -0
  95. govbr/theme/themes/padrao_govbr/fonts/rawline-100.woff +0 -0
  96. govbr/theme/themes/padrao_govbr/fonts/rawline-100.woff2 +0 -0
  97. govbr/theme/themes/padrao_govbr/fonts/rawline-100i.eot +0 -0
  98. govbr/theme/themes/padrao_govbr/fonts/rawline-100i.svg +1 -0
  99. govbr/theme/themes/padrao_govbr/fonts/rawline-100i.ttf +0 -0
  100. govbr/theme/themes/padrao_govbr/fonts/rawline-100i.woff +0 -0
  101. govbr/theme/themes/padrao_govbr/fonts/rawline-100i.woff2 +0 -0
  102. govbr/theme/themes/padrao_govbr/fonts/rawline-200.eot +0 -0
  103. govbr/theme/themes/padrao_govbr/fonts/rawline-200.svg +1 -0
  104. govbr/theme/themes/padrao_govbr/fonts/rawline-200.ttf +0 -0
  105. govbr/theme/themes/padrao_govbr/fonts/rawline-200.woff +0 -0
  106. govbr/theme/themes/padrao_govbr/fonts/rawline-200.woff2 +0 -0
  107. govbr/theme/themes/padrao_govbr/fonts/rawline-200i.eot +0 -0
  108. govbr/theme/themes/padrao_govbr/fonts/rawline-200i.svg +1 -0
  109. govbr/theme/themes/padrao_govbr/fonts/rawline-200i.ttf +0 -0
  110. govbr/theme/themes/padrao_govbr/fonts/rawline-200i.woff +0 -0
  111. govbr/theme/themes/padrao_govbr/fonts/rawline-200i.woff2 +0 -0
  112. govbr/theme/themes/padrao_govbr/fonts/rawline-300-.eot +0 -0
  113. govbr/theme/themes/padrao_govbr/fonts/rawline-300.svg +1 -0
  114. govbr/theme/themes/padrao_govbr/fonts/rawline-300.ttf +0 -0
  115. govbr/theme/themes/padrao_govbr/fonts/rawline-300.woff +0 -0
  116. govbr/theme/themes/padrao_govbr/fonts/rawline-300.woff2 +0 -0
  117. govbr/theme/themes/padrao_govbr/fonts/rawline-300i.eot +0 -0
  118. govbr/theme/themes/padrao_govbr/fonts/rawline-300i.svg +1 -0
  119. govbr/theme/themes/padrao_govbr/fonts/rawline-300i.ttf +0 -0
  120. govbr/theme/themes/padrao_govbr/fonts/rawline-300i.woff +0 -0
  121. govbr/theme/themes/padrao_govbr/fonts/rawline-300i.woff2 +0 -0
  122. govbr/theme/themes/padrao_govbr/fonts/rawline-400.eot +0 -0
  123. govbr/theme/themes/padrao_govbr/fonts/rawline-400.svg +1 -0
  124. govbr/theme/themes/padrao_govbr/fonts/rawline-400.ttf +0 -0
  125. govbr/theme/themes/padrao_govbr/fonts/rawline-400.woff +0 -0
  126. govbr/theme/themes/padrao_govbr/fonts/rawline-400.woff2 +0 -0
  127. govbr/theme/themes/padrao_govbr/fonts/rawline-400i.eot +0 -0
  128. govbr/theme/themes/padrao_govbr/fonts/rawline-400i.svg +1 -0
  129. govbr/theme/themes/padrao_govbr/fonts/rawline-400i.ttf +0 -0
  130. govbr/theme/themes/padrao_govbr/fonts/rawline-400i.woff +0 -0
  131. govbr/theme/themes/padrao_govbr/fonts/rawline-400i.woff2 +0 -0
  132. govbr/theme/themes/padrao_govbr/fonts/rawline-500.eot +0 -0
  133. govbr/theme/themes/padrao_govbr/fonts/rawline-500.svg +1 -0
  134. govbr/theme/themes/padrao_govbr/fonts/rawline-500.ttf +0 -0
  135. govbr/theme/themes/padrao_govbr/fonts/rawline-500.woff +0 -0
  136. govbr/theme/themes/padrao_govbr/fonts/rawline-500.woff2 +0 -0
  137. govbr/theme/themes/padrao_govbr/fonts/rawline-500i.eot +0 -0
  138. govbr/theme/themes/padrao_govbr/fonts/rawline-500i.svg +1 -0
  139. govbr/theme/themes/padrao_govbr/fonts/rawline-500i.ttf +0 -0
  140. govbr/theme/themes/padrao_govbr/fonts/rawline-500i.woff +0 -0
  141. govbr/theme/themes/padrao_govbr/fonts/rawline-500i.woff2 +0 -0
  142. govbr/theme/themes/padrao_govbr/fonts/rawline-600.eot +0 -0
  143. govbr/theme/themes/padrao_govbr/fonts/rawline-600.svg +1 -0
  144. govbr/theme/themes/padrao_govbr/fonts/rawline-600.ttf +0 -0
  145. govbr/theme/themes/padrao_govbr/fonts/rawline-600.woff +0 -0
  146. govbr/theme/themes/padrao_govbr/fonts/rawline-600.woff2 +0 -0
  147. govbr/theme/themes/padrao_govbr/fonts/rawline-600i.eot +0 -0
  148. govbr/theme/themes/padrao_govbr/fonts/rawline-600i.svg +1 -0
  149. govbr/theme/themes/padrao_govbr/fonts/rawline-600i.ttf +0 -0
  150. govbr/theme/themes/padrao_govbr/fonts/rawline-600i.woff +0 -0
  151. govbr/theme/themes/padrao_govbr/fonts/rawline-600i.woff2 +0 -0
  152. govbr/theme/themes/padrao_govbr/fonts/rawline-700.eot +0 -0
  153. govbr/theme/themes/padrao_govbr/fonts/rawline-700.svg +1 -0
  154. govbr/theme/themes/padrao_govbr/fonts/rawline-700.ttf +0 -0
  155. govbr/theme/themes/padrao_govbr/fonts/rawline-700.woff +0 -0
  156. govbr/theme/themes/padrao_govbr/fonts/rawline-700.woff2 +0 -0
  157. govbr/theme/themes/padrao_govbr/fonts/rawline-700i.eot +0 -0
  158. govbr/theme/themes/padrao_govbr/fonts/rawline-700i.svg +1 -0
  159. govbr/theme/themes/padrao_govbr/fonts/rawline-700i.ttf +0 -0
  160. govbr/theme/themes/padrao_govbr/fonts/rawline-700i.woff +0 -0
  161. govbr/theme/themes/padrao_govbr/fonts/rawline-700i.woff2 +0 -0
  162. govbr/theme/themes/padrao_govbr/fonts/rawline-800.eot +0 -0
  163. govbr/theme/themes/padrao_govbr/fonts/rawline-800.svg +1 -0
  164. govbr/theme/themes/padrao_govbr/fonts/rawline-800.ttf +0 -0
  165. govbr/theme/themes/padrao_govbr/fonts/rawline-800.woff +0 -0
  166. govbr/theme/themes/padrao_govbr/fonts/rawline-800.woff2 +0 -0
  167. govbr/theme/themes/padrao_govbr/fonts/rawline-800i.eot +0 -0
  168. govbr/theme/themes/padrao_govbr/fonts/rawline-800i.svg +1 -0
  169. govbr/theme/themes/padrao_govbr/fonts/rawline-800i.ttf +0 -0
  170. govbr/theme/themes/padrao_govbr/fonts/rawline-800i.woff +0 -0
  171. govbr/theme/themes/padrao_govbr/fonts/rawline-800i.woff2 +0 -0
  172. govbr/theme/themes/padrao_govbr/fonts/rawline-900.eot +0 -0
  173. govbr/theme/themes/padrao_govbr/fonts/rawline-900.svg +1 -0
  174. govbr/theme/themes/padrao_govbr/fonts/rawline-900.ttf +0 -0
  175. govbr/theme/themes/padrao_govbr/fonts/rawline-900.woff +0 -0
  176. govbr/theme/themes/padrao_govbr/fonts/rawline-900.woff2 +0 -0
  177. govbr/theme/themes/padrao_govbr/fonts/rawline-900i.eot +0 -0
  178. govbr/theme/themes/padrao_govbr/fonts/rawline-900i.svg +1 -0
  179. govbr/theme/themes/padrao_govbr/fonts/rawline-900i.ttf +0 -0
  180. govbr/theme/themes/padrao_govbr/fonts/rawline-900i.woff +0 -0
  181. govbr/theme/themes/padrao_govbr/fonts/rawline-900i.woff2 +0 -0
  182. govbr/theme/themes/padrao_govbr/govbrtheme-b4e1b66.css +13803 -0
  183. govbr/theme/themes/padrao_govbr/govbrtheme-b4e1b66.js +332 -0
  184. govbr/theme/themes/padrao_govbr/img/agenda-sprite.png +0 -0
  185. govbr/theme/themes/padrao_govbr/img/angle-down.png +0 -0
  186. govbr/theme/themes/padrao_govbr/img/appstore-en.png +0 -0
  187. govbr/theme/themes/padrao_govbr/img/appstore-es.png +0 -0
  188. govbr/theme/themes/padrao_govbr/img/appstore.png +0 -0
  189. govbr/theme/themes/padrao_govbr/img/arrowDown.png +0 -0
  190. govbr/theme/themes/padrao_govbr/img/arrowRight.png +0 -0
  191. govbr/theme/themes/padrao_govbr/img/banner-gaap-mobile.svg +1361 -0
  192. govbr/theme/themes/padrao_govbr/img/banner-gaap.svg +1397 -0
  193. govbr/theme/themes/padrao_govbr/img/bkg-acoes-mobile.png +0 -0
  194. govbr/theme/themes/padrao_govbr/img/bkg-acoes-web.png +0 -0
  195. govbr/theme/themes/padrao_govbr/img/chrome.png +0 -0
  196. govbr/theme/themes/padrao_govbr/img/contenttypes-sprite.png +0 -0
  197. govbr/theme/themes/padrao_govbr/img/edge.png +0 -0
  198. govbr/theme/themes/padrao_govbr/img/error403.png +0 -0
  199. govbr/theme/themes/padrao_govbr/img/error404.png +0 -0
  200. govbr/theme/themes/padrao_govbr/img/estrelas.png +0 -0
  201. govbr/theme/themes/padrao_govbr/img/explorer.png +0 -0
  202. govbr/theme/themes/padrao_govbr/img/faixa-br.png +0 -0
  203. govbr/theme/themes/padrao_govbr/img/firefox.png +0 -0
  204. govbr/theme/themes/padrao_govbr/img/flag-br.png +0 -0
  205. govbr/theme/themes/padrao_govbr/img/flag-es.png +0 -0
  206. govbr/theme/themes/padrao_govbr/img/flag-us.png +0 -0
  207. govbr/theme/themes/padrao_govbr/img/googleplay-en.png +0 -0
  208. govbr/theme/themes/padrao_govbr/img/googleplay-es.png +0 -0
  209. govbr/theme/themes/padrao_govbr/img/googleplay.png +0 -0
  210. govbr/theme/themes/padrao_govbr/img/govbr-colorido-b.png +0 -0
  211. govbr/theme/themes/padrao_govbr/img/govbr-colorido.png +0 -0
  212. govbr/theme/themes/padrao_govbr/img/govbr-loading.png +0 -0
  213. govbr/theme/themes/padrao_govbr/img/govbr-logo-large.png +0 -0
  214. govbr/theme/themes/padrao_govbr/img/govbr-logo-medium.png +0 -0
  215. govbr/theme/themes/padrao_govbr/img/govbr.png +0 -0
  216. govbr/theme/themes/padrao_govbr/img/govbrGY.png +0 -0
  217. govbr/theme/themes/padrao_govbr/img/icon_maturidadeDigital.svg +5 -0
  218. govbr/theme/themes/padrao_govbr/img/icone-selo-maturidade-selected.png +0 -0
  219. govbr/theme/themes/padrao_govbr/img/icone-selo-maturidade.png +0 -0
  220. govbr/theme/themes/padrao_govbr/img/link_icon.png +0 -0
  221. govbr/theme/themes/padrao_govbr/img/logo-noticas-ebc.png +0 -0
  222. govbr/theme/themes/padrao_govbr/img/logo-notiicas-ebc.png +0 -0
  223. govbr/theme/themes/padrao_govbr/img/logo-pag-tesouro.png +0 -0
  224. govbr/theme/themes/padrao_govbr/img/nivel-maturidade-A.png +0 -0
  225. govbr/theme/themes/padrao_govbr/img/nivel-maturidade-B.png +0 -0
  226. govbr/theme/themes/padrao_govbr/img/nivel-maturidade-C.png +0 -0
  227. govbr/theme/themes/padrao_govbr/img/nivel-maturidade-D.png +0 -0
  228. govbr/theme/themes/padrao_govbr/img/nivel-maturidade-E.png +0 -0
  229. govbr/theme/themes/padrao_govbr/img/noticia.jpg +0 -0
  230. govbr/theme/themes/padrao_govbr/img/noticia2.jpg +0 -0
  231. govbr/theme/themes/padrao_govbr/img/opera.png +0 -0
  232. govbr/theme/themes/padrao_govbr/img/pb_close.png +0 -0
  233. govbr/theme/themes/padrao_govbr/img/plone-logo.png +0 -0
  234. govbr/theme/themes/padrao_govbr/img/polaroid-multi.png +0 -0
  235. govbr/theme/themes/padrao_govbr/img/polaroid-single.png +0 -0
  236. govbr/theme/themes/padrao_govbr/img/questionario.png +0 -0
  237. govbr/theme/themes/padrao_govbr/img/quote.png +0 -0
  238. govbr/theme/themes/padrao_govbr/img/recom-loading.png +0 -0
  239. govbr/theme/themes/padrao_govbr/img/required.png +0 -0
  240. govbr/theme/themes/padrao_govbr/img/safari.png +0 -0
  241. govbr/theme/themes/padrao_govbr/img/selo-lista-detalhada-zero.png +0 -0
  242. govbr/theme/themes/padrao_govbr/img/selo-lista-detalhada.png +0 -0
  243. govbr/theme/themes/padrao_govbr/img/selos/avaliacao-nc-other.png +0 -0
  244. govbr/theme/themes/padrao_govbr/img/selos/avaliacao-nc-selected.png +0 -0
  245. govbr/theme/themes/padrao_govbr/img/selos/avaliacao-nc.png +0 -0
  246. govbr/theme/themes/padrao_govbr/img/selos/avaliacao-other.png +0 -0
  247. govbr/theme/themes/padrao_govbr/img/selos/avaliacao-selected.png +0 -0
  248. govbr/theme/themes/padrao_govbr/img/selos/avaliacao.png +0 -0
  249. govbr/theme/themes/padrao_govbr/img/selos/cidadao-nc-other.png +0 -0
  250. govbr/theme/themes/padrao_govbr/img/selos/cidadao-nc-selected.png +0 -0
  251. govbr/theme/themes/padrao_govbr/img/selos/cidadao-nc.png +0 -0
  252. govbr/theme/themes/padrao_govbr/img/selos/cidadao-other.png +0 -0
  253. govbr/theme/themes/padrao_govbr/img/selos/cidadao-selected.png +0 -0
  254. govbr/theme/themes/padrao_govbr/img/selos/cidadao.png +0 -0
  255. govbr/theme/themes/padrao_govbr/img/selos/login-nc-other.png +0 -0
  256. govbr/theme/themes/padrao_govbr/img/selos/login-nc-selected.png +0 -0
  257. govbr/theme/themes/padrao_govbr/img/selos/login-nc.png +0 -0
  258. govbr/theme/themes/padrao_govbr/img/selos/login-other.png +0 -0
  259. govbr/theme/themes/padrao_govbr/img/selos/login-selected.png +0 -0
  260. govbr/theme/themes/padrao_govbr/img/selos/login.png +0 -0
  261. govbr/theme/themes/padrao_govbr/img/selos/multicanais-nc-other.png +0 -0
  262. govbr/theme/themes/padrao_govbr/img/selos/multicanais-nc-selected.png +0 -0
  263. govbr/theme/themes/padrao_govbr/img/selos/multicanais-nc.png +0 -0
  264. govbr/theme/themes/padrao_govbr/img/selos/multicanais-other.png +0 -0
  265. govbr/theme/themes/padrao_govbr/img/selos/multicanais-selected.png +0 -0
  266. govbr/theme/themes/padrao_govbr/img/selos/multicanais.png +0 -0
  267. govbr/theme/themes/padrao_govbr/img/selos/tudo-digital-nc-other.png +0 -0
  268. govbr/theme/themes/padrao_govbr/img/selos/tudo-digital-nc-selected.png +0 -0
  269. govbr/theme/themes/padrao_govbr/img/selos/tudo-digital-nc.png +0 -0
  270. govbr/theme/themes/padrao_govbr/img/selos/tudo-digital-other.png +0 -0
  271. govbr/theme/themes/padrao_govbr/img/selos/tudo-digital-selected.png +0 -0
  272. govbr/theme/themes/padrao_govbr/img/selos/tudo-digital.png +0 -0
  273. govbr/theme/themes/padrao_govbr/img/selos/utilidade-nc-other.png +0 -0
  274. govbr/theme/themes/padrao_govbr/img/selos/utilidade-nc-selected.png +0 -0
  275. govbr/theme/themes/padrao_govbr/img/selos/utilidade-nc.png +0 -0
  276. govbr/theme/themes/padrao_govbr/img/selos/utilidade-other.png +0 -0
  277. govbr/theme/themes/padrao_govbr/img/selos/utilidade-selected.png +0 -0
  278. govbr/theme/themes/padrao_govbr/img/selos/utilidade.png +0 -0
  279. govbr/theme/themes/padrao_govbr/img/simplifica.svg +1 -0
  280. govbr/theme/themes/padrao_govbr/img/sprite-azul.png +0 -0
  281. govbr/theme/themes/padrao_govbr/img/sprite.png +0 -0
  282. govbr/theme/themes/padrao_govbr/img/tema-gaap-1.svg +226 -0
  283. govbr/theme/themes/padrao_govbr/img/tema-gaap-2.svg +150 -0
  284. govbr/theme/themes/padrao_govbr/img/tema-gaap-3.svg +347 -0
  285. govbr/theme/themes/padrao_govbr/img/tema-gaap-4.svg +778 -0
  286. govbr/theme/themes/padrao_govbr/img/tema-gaap-5.svg +922 -0
  287. govbr/theme/themes/padrao_govbr/img/tema-gaap-mobile.svg +922 -0
  288. govbr/theme/themes/padrao_govbr/img/thumbs.png +0 -0
  289. govbr/theme/themes/padrao_govbr/img/treeCollapsed.png +0 -0
  290. govbr/theme/themes/padrao_govbr/img/treeExpanded.png +0 -0
  291. govbr/theme/themes/padrao_govbr/img/visibility-desktop.png +0 -0
  292. govbr/theme/themes/padrao_govbr/img/visibility-devices.png +0 -0
  293. govbr/theme/themes/padrao_govbr/img/voz-do-brasil.png +0 -0
  294. govbr/theme/themes/padrao_govbr/index-minimalista.html +231 -0
  295. govbr/theme/themes/padrao_govbr/index.html +530 -0
  296. govbr/theme/themes/padrao_govbr/manifest.cfg +10 -0
  297. govbr/theme/themes/padrao_govbr/preview.png +0 -0
  298. govbr/theme/themes/padrao_govbr/rules.xml +840 -0
  299. govbr/theme/themes/padrao_govbr/static/css/2.95528c83.chunk.css +2 -0
  300. govbr/theme/themes/padrao_govbr/static/css/2.95528c83.chunk.css.map +1 -0
  301. govbr/theme/themes/padrao_govbr/static/css/main.c481cd82.chunk.css +2 -0
  302. govbr/theme/themes/padrao_govbr/static/css/main.c481cd82.chunk.css.map +1 -0
  303. govbr/theme/themes/padrao_govbr/static/js/2.be534d53.chunk.js +3 -0
  304. govbr/theme/themes/padrao_govbr/static/js/2.be534d53.chunk.js.LICENSE.txt +56 -0
  305. govbr/theme/themes/padrao_govbr/static/js/2.be534d53.chunk.js.map +1 -0
  306. govbr/theme/themes/padrao_govbr/static/js/main.a028b584.chunk.js +2 -0
  307. govbr/theme/themes/padrao_govbr/static/js/main.a028b584.chunk.js.map +1 -0
  308. govbr/theme/themes/padrao_govbr/static/js/runtime-main.d81643b6.js +2 -0
  309. govbr/theme/themes/padrao_govbr/static/js/runtime-main.d81643b6.js.map +1 -0
  310. govbr/theme/themes/padrao_govbr/static/media/aplicadas-lg.63c2cf69.png +0 -0
  311. govbr/theme/themes/padrao_govbr/static/media/conecte-content.7cbe269b.png +0 -0
  312. govbr/theme/themes/padrao_govbr/static/media/conteudo_carteira-mobile.d8074ff7.png +0 -0
  313. govbr/theme/themes/padrao_govbr/static/media/conteudo_sus-mobile.f71ec446.png +0 -0
  314. govbr/theme/themes/padrao_govbr/static/media/conteudo_sus.c6d510d9.png +0 -0
  315. govbr/theme/themes/padrao_govbr/static/media/distribuidas-background-lg.f0335d40.png +0 -0
  316. govbr/theme/themes/padrao_govbr/static/media/hero-back-lg.2ee80afc.png +0 -0
  317. govbr/theme/themes/padrao_govbr/static/media/hero-back-sm.e19f7701.png +0 -0
  318. govbr/theme/themes/padrao_govbr/static/media/laboratorios-calendario-lg.510f2fb9.png +0 -0
  319. govbr/theme/themes/padrao_govbr/static/media/laboratorios-calendario-sm.eb346cc2.png +0 -0
  320. govbr/theme/themes/padrao_govbr/static/media/mapa-fundo-lg.a952ede3.png +0 -0
  321. govbr/theme/themes/padrao_govbr/static/media/ranking-fundo-sm.d08d5c07.png +0 -0
  322. govbr/theme/themes/padrao_govbr/static/media/rawline-100.0a397876.woff +0 -0
  323. govbr/theme/themes/padrao_govbr/static/media/rawline-100.265ece4b.ttf +0 -0
  324. govbr/theme/themes/padrao_govbr/static/media/rawline-100.37a9e74f.eot +0 -0
  325. govbr/theme/themes/padrao_govbr/static/media/rawline-100.fafa1a83.svg +5313 -0
  326. govbr/theme/themes/padrao_govbr/static/media/rawline-100.ff0236cb.woff2 +0 -0
  327. govbr/theme/themes/padrao_govbr/static/media/rawline-100i.00db1f73.eot +0 -0
  328. govbr/theme/themes/padrao_govbr/static/media/rawline-100i.1dc94a10.woff2 +0 -0
  329. govbr/theme/themes/padrao_govbr/static/media/rawline-100i.62237c41.ttf +0 -0
  330. govbr/theme/themes/padrao_govbr/static/media/rawline-100i.d59ab041.woff +0 -0
  331. govbr/theme/themes/padrao_govbr/static/media/rawline-100i.f87b62d5.svg +4762 -0
  332. govbr/theme/themes/padrao_govbr/static/media/rawline-200.816e0e78.woff2 +0 -0
  333. govbr/theme/themes/padrao_govbr/static/media/rawline-200.8622a09e.svg +6124 -0
  334. govbr/theme/themes/padrao_govbr/static/media/rawline-200.8a630ee8.eot +0 -0
  335. govbr/theme/themes/padrao_govbr/static/media/rawline-200.9188b8f2.woff +0 -0
  336. govbr/theme/themes/padrao_govbr/static/media/rawline-200.ac8d0bd3.ttf +0 -0
  337. govbr/theme/themes/padrao_govbr/static/media/rawline-200i.a7b67648.woff +0 -0
  338. govbr/theme/themes/padrao_govbr/static/media/rawline-200i.b78f71b5.svg +5499 -0
  339. govbr/theme/themes/padrao_govbr/static/media/rawline-200i.b8e14aa4.ttf +0 -0
  340. govbr/theme/themes/padrao_govbr/static/media/rawline-200i.c77ea503.woff2 +0 -0
  341. govbr/theme/themes/padrao_govbr/static/media/rawline-200i.f09731ad.eot +0 -0
  342. govbr/theme/themes/padrao_govbr/static/media/rawline-300-.83e81c43.eot +0 -0
  343. govbr/theme/themes/padrao_govbr/static/media/rawline-300.3a52476b.svg +6125 -0
  344. govbr/theme/themes/padrao_govbr/static/media/rawline-300.69034d74.woff +0 -0
  345. govbr/theme/themes/padrao_govbr/static/media/rawline-300.9d58c322.woff2 +0 -0
  346. govbr/theme/themes/padrao_govbr/static/media/rawline-300.c8a2a699.ttf +0 -0
  347. govbr/theme/themes/padrao_govbr/static/media/rawline-300i.38cd76b2.svg +5498 -0
  348. govbr/theme/themes/padrao_govbr/static/media/rawline-300i.3eea2150.ttf +0 -0
  349. govbr/theme/themes/padrao_govbr/static/media/rawline-300i.5e57ffa3.woff2 +0 -0
  350. govbr/theme/themes/padrao_govbr/static/media/rawline-300i.9a9b603c.woff +0 -0
  351. govbr/theme/themes/padrao_govbr/static/media/rawline-300i.d8bbb5b6.eot +0 -0
  352. govbr/theme/themes/padrao_govbr/static/media/rawline-400.3037b277.woff +0 -0
  353. govbr/theme/themes/padrao_govbr/static/media/rawline-400.a9d6a22e.woff2 +0 -0
  354. govbr/theme/themes/padrao_govbr/static/media/rawline-400.c9837fbc.svg +6123 -0
  355. govbr/theme/themes/padrao_govbr/static/media/rawline-400.da42b344.eot +0 -0
  356. govbr/theme/themes/padrao_govbr/static/media/rawline-400.fedc165b.ttf +0 -0
  357. govbr/theme/themes/padrao_govbr/static/media/rawline-400i.5179007f.woff2 +0 -0
  358. govbr/theme/themes/padrao_govbr/static/media/rawline-400i.a0f2974e.ttf +0 -0
  359. govbr/theme/themes/padrao_govbr/static/media/rawline-400i.df0eba9d.svg +5477 -0
  360. govbr/theme/themes/padrao_govbr/static/media/rawline-400i.f1f629a6.woff +0 -0
  361. govbr/theme/themes/padrao_govbr/static/media/rawline-400i.f2445d98.eot +0 -0
  362. govbr/theme/themes/padrao_govbr/static/media/rawline-500.6e45cad9.eot +0 -0
  363. govbr/theme/themes/padrao_govbr/static/media/rawline-500.8a96f645.svg +5686 -0
  364. govbr/theme/themes/padrao_govbr/static/media/rawline-500.9a32223f.woff2 +0 -0
  365. govbr/theme/themes/padrao_govbr/static/media/rawline-500.ec3e8aae.ttf +0 -0
  366. govbr/theme/themes/padrao_govbr/static/media/rawline-500.f899e352.woff +0 -0
  367. govbr/theme/themes/padrao_govbr/static/media/rawline-500i.20409e20.woff +0 -0
  368. govbr/theme/themes/padrao_govbr/static/media/rawline-500i.510bb39e.svg +5189 -0
  369. govbr/theme/themes/padrao_govbr/static/media/rawline-500i.89589838.ttf +0 -0
  370. govbr/theme/themes/padrao_govbr/static/media/rawline-500i.979a420b.woff2 +0 -0
  371. govbr/theme/themes/padrao_govbr/static/media/rawline-500i.9f319af7.eot +0 -0
  372. govbr/theme/themes/padrao_govbr/static/media/rawline-600.170c48b9.woff +0 -0
  373. govbr/theme/themes/padrao_govbr/static/media/rawline-600.3c0e1546.svg +7168 -0
  374. govbr/theme/themes/padrao_govbr/static/media/rawline-600.9b0e5db4.eot +0 -0
  375. govbr/theme/themes/padrao_govbr/static/media/rawline-600.c318edaf.woff2 +0 -0
  376. govbr/theme/themes/padrao_govbr/static/media/rawline-600.d9e32d01.ttf +0 -0
  377. govbr/theme/themes/padrao_govbr/static/media/rawline-600i.589fb0f7.ttf +0 -0
  378. govbr/theme/themes/padrao_govbr/static/media/rawline-600i.9e338438.eot +0 -0
  379. govbr/theme/themes/padrao_govbr/static/media/rawline-600i.9fb814a7.woff2 +0 -0
  380. govbr/theme/themes/padrao_govbr/static/media/rawline-600i.bbdf3b96.svg +6556 -0
  381. govbr/theme/themes/padrao_govbr/static/media/rawline-600i.be5b19aa.woff +0 -0
  382. govbr/theme/themes/padrao_govbr/static/media/rawline-700.1c2501bd.ttf +0 -0
  383. govbr/theme/themes/padrao_govbr/static/media/rawline-700.5b5be112.woff +0 -0
  384. govbr/theme/themes/padrao_govbr/static/media/rawline-700.71a4b4ad.eot +0 -0
  385. govbr/theme/themes/padrao_govbr/static/media/rawline-700.8b421999.woff2 +0 -0
  386. govbr/theme/themes/padrao_govbr/static/media/rawline-700.a2f0d631.svg +7181 -0
  387. govbr/theme/themes/padrao_govbr/static/media/rawline-700i.587ed98d.eot +0 -0
  388. govbr/theme/themes/padrao_govbr/static/media/rawline-700i.5bd6f934.ttf +0 -0
  389. govbr/theme/themes/padrao_govbr/static/media/rawline-700i.db7e9a8b.woff +0 -0
  390. govbr/theme/themes/padrao_govbr/static/media/rawline-700i.e69da8e9.woff2 +0 -0
  391. govbr/theme/themes/padrao_govbr/static/media/rawline-700i.f4b202ef.svg +6572 -0
  392. govbr/theme/themes/padrao_govbr/static/media/rawline-800.75e057db.ttf +0 -0
  393. govbr/theme/themes/padrao_govbr/static/media/rawline-800.7e1b9938.svg +7257 -0
  394. govbr/theme/themes/padrao_govbr/static/media/rawline-800.90b10d96.eot +0 -0
  395. govbr/theme/themes/padrao_govbr/static/media/rawline-800.b8016dbc.woff2 +0 -0
  396. govbr/theme/themes/padrao_govbr/static/media/rawline-800.e651acab.woff +0 -0
  397. govbr/theme/themes/padrao_govbr/static/media/rawline-800i.27eb8c9a.ttf +0 -0
  398. govbr/theme/themes/padrao_govbr/static/media/rawline-800i.4e2e2d87.eot +0 -0
  399. govbr/theme/themes/padrao_govbr/static/media/rawline-800i.5ab40b12.woff2 +0 -0
  400. govbr/theme/themes/padrao_govbr/static/media/rawline-800i.63f31e79.svg +6607 -0
  401. govbr/theme/themes/padrao_govbr/static/media/rawline-800i.b5e68c10.woff +0 -0
  402. govbr/theme/themes/padrao_govbr/static/media/rawline-900.14130c24.svg +6381 -0
  403. govbr/theme/themes/padrao_govbr/static/media/rawline-900.2edc628d.eot +0 -0
  404. govbr/theme/themes/padrao_govbr/static/media/rawline-900.99f25d3e.ttf +0 -0
  405. govbr/theme/themes/padrao_govbr/static/media/rawline-900.ad959af0.woff2 +0 -0
  406. govbr/theme/themes/padrao_govbr/static/media/rawline-900.d82fe0f4.woff +0 -0
  407. govbr/theme/themes/padrao_govbr/static/media/rawline-900i.8cbd7ed3.svg +5705 -0
  408. govbr/theme/themes/padrao_govbr/static/media/rawline-900i.b300162c.ttf +0 -0
  409. govbr/theme/themes/padrao_govbr/static/media/rawline-900i.bcb23597.eot +0 -0
  410. govbr/theme/themes/padrao_govbr/static/media/rawline-900i.dac78751.woff +0 -0
  411. govbr/theme/themes/padrao_govbr/static/media/rawline-900i.e47f4664.woff2 +0 -0
  412. govbr/theme/themes/padrao_govbr/static/media/slide-1.1919fea1.png +0 -0
  413. govbr/theme/themes/padrao_govbr/static/media/slide-1.b82dc0cd.png +0 -0
  414. govbr/theme/themes/padrao_govbr/static/media/slide-2.275919d5.png +0 -0
  415. govbr/theme/themes/padrao_govbr/static/media/slide-2.449786a2.png +0 -0
  416. govbr/theme/themes/padrao_govbr/static/media/slide-3.4a8e81de.png +0 -0
  417. govbr/theme/themes/padrao_govbr/static/media/slide-3.91c04cc3.png +0 -0
  418. govbr/theme/themes/padrao_govbr/static/media/slide-4.150c1579.png +0 -0
  419. govbr/theme/themes/padrao_govbr/static/media/slide-4.c963c7cc.png +0 -0
  420. govbr/theme/themes/padrao_govbr/static/media/todos-01-sm.c572b1d5.png +0 -0
  421. govbr/theme/themes/padrao_govbr/static/media/todos.lg.b24084a8.png +0 -0
  422. govbr/theme/themes/padrao_govbr/static/media/variantes-cientista.2d90462b.png +0 -0
  423. govbr/theme/themes/padrao_govbr/static/media/variantes-seringa.cb1b8e7a.png +0 -0
  424. govbr/theme/themes/padrao_govbr/vacina.html +1 -0
  425. govbr/theme/upgrades.py +19 -0
  426. govbr/theme/upgrades.zcml +15 -0
  427. govbr/theme/viewlets/__init__.py +0 -0
  428. govbr/theme/viewlets/configure.zcml +47 -0
  429. govbr/theme/viewlets/google-dados-estruturados.pt +8 -0
  430. govbr/theme/viewlets/google-dados-estruturados.py +42 -0
  431. govbr/theme/viewlets/govbr-busca-input.pt +12 -0
  432. govbr/theme/viewlets/govbr-busca-input.py +37 -0
  433. govbr/theme/viewlets/govbr-skip-menu.pt +39 -0
  434. govbr/theme/viewlets/navigation-content-extra.pt +60 -0
  435. govbr/theme/viewlets/site-header-links.pt +41 -0
  436. govbr/theme/viewlets/site-header-links.py +167 -0
  437. govbr/theme/widgets/__init__.py +0 -0
  438. govbr/theme/widgets/buttons/__init__.py +0 -0
  439. govbr/theme/widgets/buttons/configure.zcml +13 -0
  440. govbr/theme/widgets/buttons/view.js +132 -0
  441. govbr/theme/widgets/buttons/widget.pt +23 -0
  442. govbr/theme/widgets/buttons/widget.py +17 -0
  443. govbr/theme/widgets/checkbox/__init__.py +0 -0
  444. govbr/theme/widgets/checkbox/view.js +314 -0
  445. govbr/theme/widgets/configure.zcml +7 -0
  446. govbr/theme/widgets/daterange/__init__.py +0 -0
  447. govbr/theme/widgets/daterange/view.js +293 -0
  448. govbr/theme/widgets/select/__init__.py +0 -0
  449. govbr/theme/widgets/select/view.js +231 -0
  450. govbr_theme-2.0.772-nspkg.pth +1 -0
  451. govbr_theme-2.0.772.dist-info/LICENSE.GPL +339 -0
  452. govbr_theme-2.0.772.dist-info/LICENSE.rst +15 -0
  453. govbr_theme-2.0.772.dist-info/METADATA +142 -0
  454. govbr_theme-2.0.772.dist-info/RECORD +458 -0
  455. govbr_theme-2.0.772.dist-info/WHEEL +5 -0
  456. govbr_theme-2.0.772.dist-info/entry_points.txt +6 -0
  457. govbr_theme-2.0.772.dist-info/namespace_packages.txt +1 -0
  458. govbr_theme-2.0.772.dist-info/top_level.txt +1 -0
@@ -0,0 +1,6 @@
1
+ # -*- coding: utf-8 -*-
2
+ """Init and utils."""
3
+ from zope.i18nmessageid import MessageFactory
4
+
5
+
6
+ _ = MessageFactory('govbr.theme')
File without changes
@@ -0,0 +1,85 @@
1
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
2
+ xmlns:i18n="http://xml.zope.org/namespaces/i18n"
3
+ xmlns:tal="http://xml.zope.org/namespaces/tal"
4
+ xmlns:metal="http://xml.zope.org/namespaces/metal"
5
+ lang="en"
6
+ metal:use-macro="context/main_template/macros/master"
7
+ i18n:domain="plone">
8
+
9
+ <head>
10
+ <metal:noborder fill-slot="top_slot"
11
+ tal:define="dummy python:request.set('disable_border',1)" />
12
+ </head>
13
+
14
+ <body>
15
+ <metal:main fill-slot="main">
16
+
17
+ <h2 i18n:translate="heading_accessibility_info">Accessibility</h2>
18
+
19
+ <p i18n:translate="text_size">Text size:</p> <noscript i18n:translate="">(Requires JavaScript)</noscript>
20
+
21
+ <ul>
22
+ <li>Aumentar o texto: <strong>[Control] +</strong></li>
23
+ <li>Diminuir o texto: <strong>[Control] -</strong></li>
24
+ </ul>
25
+
26
+ <h3 i18n:translate="heading_access_keys">Access keys</h3>
27
+
28
+ <p i18n:translate="description_access_keys">
29
+ Access keys are a navigation device enabling you to get around this web
30
+ site using your keyboard.
31
+ </p>
32
+
33
+ <h3 i18n:translate="heading_available_access_keys">Available access keys</h3>
34
+
35
+ <ul class="ir-para-conteudo">
36
+ <li><strong>i</strong> &mdash; Página Inicial</li>
37
+ <li><strong>c</strong> &mdash; Ir para conteúdo</li>
38
+ <li><strong>b</strong> &mdash; Ir para busca</li>
39
+ <li><strong>n</strong> &mdash; Ir para navegação</li>
40
+ </ul>
41
+
42
+ <table class="plain">
43
+ <tbody>
44
+ <tr>
45
+ <th style="width:19%">Browser</th>
46
+ <th style="width:27%">Windows</th>
47
+ <th style="width:27%">Linux</th>
48
+ <th style="width:27%">Mac</th>
49
+ </tr>
50
+ <tr>
51
+ <td>Internet Explorer</td>
52
+ <td>[Alt] + <em>tecla de acesso</em></td>
53
+ <td>N/A</td>
54
+ <td></td>
55
+ </tr>
56
+ <tr>
57
+ <td>Chrome</td>
58
+ <td>[Alt] + <em>tecla de acesso</em></td>
59
+ <td>[Alt] + <em>tecla de acesso</em></td>
60
+ <td>[Control] [Alt] + <em>tecla de acesso</em></td>
61
+ </tr>
62
+ <tr>
63
+ <td>Firefox</td>
64
+ <td>[Alt] [Shift] + <em>tecla de acesso</em></td>
65
+ <td>[Alt] [Shift] + <em>tecla de acesso</em></td>
66
+ <td>[Control] [Alt] + <em>tecla de acesso</em></td>
67
+ </tr>
68
+ <tr>
69
+ <td>Safari</td>
70
+ <td>[Alt] + <em>tecla de acesso</em></td>
71
+ <td>N/A</td>
72
+ <td>[Control] [Alt] + <em>tecla de acesso</em></td>
73
+ </tr>
74
+ <tr>
75
+ <td>Opera</td>
76
+ <td colspan="3">Opera 15 ou superior: [Alt] + <em>tecla de acesso<br></em>Opera 12.1 ou inferior: [Shift] [Esc] + <em>tecla de acesso</em></td>
77
+ </tr>
78
+ </tbody>
79
+ </table>
80
+
81
+
82
+
83
+ </metal:main>
84
+ </body>
85
+ </html>
@@ -0,0 +1,49 @@
1
+ <html xmlns="http://www.w3.org/1999/xhtml"
2
+ xmlns:metal="http://xml.zope.org/namespaces/metal"
3
+ xmlns:tal="http://xml.zope.org/namespaces/tal"
4
+ metal:use-macro="context/main_template/macros/master"
5
+ i18n_domain="govbr.theme">
6
+
7
+ <metal:block fill-slot="main">
8
+
9
+ <span class="nitfSubtitle" i18n:translate="">SUPORTE</span>
10
+
11
+ <h1 class="documentFirstHeading" i18n:translate="">Atualize seu Navegador</h1>
12
+
13
+ <div class="documentDescription">O portal Gov.br utiliza as mais novas tecnologias para prover a melhor experiência possível.</div>
14
+
15
+ <div id="viewlet-above-content-body">
16
+
17
+ <h2>Porque isso é importante?</h2>
18
+
19
+ <p>Nossa plataforma detectou que seu navegador de internet está desatualizado e, com isso, você não terá uma plena
20
+ experiência com as funcionalidades elaboradas no Portal Gov.br.</p>
21
+
22
+ <p>Além disso, um navegador antigo deixa a experiência do usuário mais limitada, lenta e expõe seus disitivos a
23
+ ataques maliciosos que exploram vulnerabilidades conhecidas.</p>
24
+
25
+ <h2>Versões mínimas suportadas para navegar no Gov.br</h2>
26
+
27
+ <p>Para garantir experiência de navegação segura e funcional, abaixo relacionamos alguns navegadores atualizados,
28
+ modernos e gratuitos (bem como suas versões mínimas suportadas).</p>
29
+
30
+ <div class="browsers">
31
+ <span>Você será redirecionado para os sites das respectivas desenvolvedoras.</span>
32
+ <ul>
33
+ <li class="chrome"><a href="https://www.google.com/intl/pt-BR/chrome/">Chrome</a> (68 ou superior)</li>
34
+ <li class="firefox"><a href="https://www.mozilla.org/pt-BR/firefox/new/">Firefox</a> (52 ou superior)</li>
35
+ <li class="opera"><a href="https://www.opera.com/pt-br/download">Opera</a> (54 ou superior)</li>
36
+ <li class="safari"><a href="https://www.apple.com/br/safari/">Safari</a> (11 ou superior)</li>
37
+ <li class="edge"><a href="https://www.microsoft.com/pt-br/windows/microsoft-edge">Edge</a> (16 ou superior)</li>
38
+ <li class="explorer"><span>Explorer</span> (Não suportado)</li>
39
+ </ul>
40
+ </div>
41
+
42
+ <p>
43
+ Se você decidir utilizar um navegaor diferente dos apresentados acima, as páginas do portal Gov.br poderão
44
+ não ser renderizadas adequadamente e/ou você poderá encontrar dificuldades ou inoperâncias nos serviços oferecidos.
45
+ </p>
46
+ </div>
47
+ </metal:block>
48
+
49
+ </html>
@@ -0,0 +1,35 @@
1
+ <configure
2
+ xmlns="http://namespaces.zope.org/zope"
3
+ xmlns:browser="http://namespaces.zope.org/browser"
4
+ i18n_domain="govbr.theme">
5
+
6
+ <!-- Set overrides folder for Just-a-Bunch-Of-Templates product -->
7
+ <include package="z3c.jbot" file="meta.zcml" />
8
+ <browser:jbot
9
+ directory="overrides"
10
+ layer="govbr.theme.interfaces.IGovbrThemeLayer"
11
+ />
12
+
13
+ <!-- Publish static files -->
14
+ <browser:resourceDirectory
15
+ name="govbr.theme"
16
+ directory="static"
17
+ />
18
+
19
+ <browser:page
20
+ name="browser-info"
21
+ for="*"
22
+ permission="zope2.View"
23
+ template="browser-info.pt"
24
+ layer="govbr.theme.interfaces.IGovbrThemeLayer"
25
+ />
26
+
27
+ <browser:page
28
+ name="accessibility"
29
+ for="*"
30
+ permission="zope2.View"
31
+ template="accessibility.pt"
32
+ layer="govbr.theme.interfaces.IGovbrThemeLayer"
33
+ />
34
+
35
+ </configure>
File without changes
@@ -0,0 +1,103 @@
1
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
2
+ xmlns:tal="http://xml.zope.org/namespaces/tal"
3
+ xmlns:metal="http://xml.zope.org/namespaces/metal"
4
+ xmlns:i18n="http://xml.zope.org/namespaces/i18n" metal:use-macro="context/main_template/macros/master" i18n:domain="eea">
5
+
6
+ <body>
7
+
8
+ <metal:content-core fill-slot="content-core">
9
+
10
+ <metal:block define-macro="content-core">
11
+
12
+ <div tal:define="
13
+ self nocall:context/@@faceted-tabular-view;
14
+ Batch python:modules['Products.CMFPlone'].Batch;
15
+ b_start python:request.get('b_start', 0);
16
+ batch python:isinstance(folderContents, Batch) and folderContents or Batch(folderContents, 100, int(b_start), orphan=2);">
17
+
18
+ <div class="result-area" tal:condition="batch">
19
+
20
+ <table class="table-results" i18n:domain="brasil.gov.newfieldcomplement" summary="Report listing" i18n:attributes="summary summary_report_listing;" tal:define="fields self/get_faceted_tabular_fields;">
21
+ <caption class="active table-bordered">
22
+ <tal:text tal:content="fields/table_caption" tal:condition="fields/table_caption|nothing" />
23
+ <tal:text tal:content="python:'({0})'.format(batch.sequence_length)" />
24
+ </caption>
25
+ <thead>
26
+ <tr class="active">
27
+ <th scope="col" tal:content="fields/column_01_title" tal:condition="fields/column_01_title|nothing" i18n:translate="">
28
+ </th>
29
+ <th scope="col" tal:content="fields/column_02_title" tal:condition="fields/column_02_title|nothing" i18n:translate="">
30
+ </th>
31
+ <th scope="col" tal:content="fields/column_03_title" tal:condition="fields/column_03_title|nothing" i18n:translate="">
32
+ </th>
33
+ <th scope="col" tal:content="fields/column_04_title" tal:condition="fields/column_04_title|nothing" i18n:translate="">
34
+ </th>
35
+ <th scope="col" tal:content="fields/column_05_title" tal:condition="fields/column_05_title|nothing" i18n:translate="">
36
+ </th>
37
+ </tr>
38
+ </thead>
39
+ <tbody>
40
+ <tal:entries tal:repeat="brain batch">
41
+ <tal:block tal:define="url python:self.get_url(brain);">
42
+ <tr metal:define-macro="listitem" tal:define="oddrow repeat/brain/odd;" tal:attributes="class python: oddrow and 'even' or 'odd'">
43
+
44
+ <td tal:condition="fields/column_01">
45
+ <span class="responsive-label" tal:content="fields/column_01_title"></span>
46
+ <a tal:attributes="href url" tal:content="python:self.get_value(fields['column_01'], fields['column_01_vocab'], brain)" tal:condition="fields/column_01_link">
47
+ </a>
48
+ <tal:text content="python:self.get_value(fields['column_01'], fields['column_01_vocab'], brain)" tal:condition="not:fields/column_01_link">
49
+ </tal:text>
50
+ </td>
51
+
52
+ <td tal:condition="fields/column_02">
53
+ <span class="responsive-label" tal:content="fields/column_02_title"></span>
54
+ <a tal:attributes="href url" tal:content="python:self.get_value(fields['column_02'], fields['column_02_vocab'], brain)" tal:condition="fields/column_02_link">
55
+ </a>
56
+ <tal:text content="python:self.get_value(fields['column_02'], fields['column_02_vocab'], brain)" tal:condition="not:fields/column_02_link">
57
+ </tal:text>
58
+ </td>
59
+
60
+ <td tal:condition="fields/column_03">
61
+ <span class="responsive-label" tal:content="fields/column_03_title"></span>
62
+ <a tal:attributes="href url" tal:content="python:self.get_value(fields['column_03'], fields['column_03_vocab'], brain)" tal:condition="fields/column_03_link">
63
+ </a>
64
+ <tal:text content="python:self.get_value(fields['column_03'], fields['column_03_vocab'], brain)" tal:condition="not:fields/column_03_link">
65
+ </tal:text>
66
+ </td>
67
+
68
+ <td tal:condition="fields/column_04">
69
+ <span class="responsive-label" tal:content="fields/column_04_title"></span>
70
+ <a tal:attributes="href url" tal:content="python:self.get_value(fields['column_04'], fields['column_04_vocab'], brain)" tal:condition="fields/column_04_link">
71
+ </a>
72
+ <tal:text content="python:self.get_value(fields['column_04'], fields['column_04_vocab'], brain)" tal:condition="not:fields/column_04_link">
73
+ </tal:text>
74
+ </td>
75
+
76
+ <td tal:condition="fields/column_05">
77
+ <span class="responsive-label" tal:content="fields/column_05_title"></span>
78
+ <a tal:attributes="href url" tal:content="python:self.get_value(fields['column_05'], fields['column_05_vocab'], brain)" tal:condition="fields/column_05_link">
79
+ </a>
80
+ <tal:text content="python:self.get_value(fields['column_05'], fields['column_05_vocab'], brain)" tal:condition="not:fields/column_05_link">
81
+ </tal:text>
82
+ </td>
83
+
84
+ </tr>
85
+ </tal:block>
86
+ </tal:entries>
87
+ </tbody>
88
+ </table>
89
+
90
+ </div>
91
+
92
+ <div metal:use-macro="context/batch_macros/macros/navigation" tal:condition="batch"/>
93
+
94
+ <div tal:condition="not:batch" i18n:domain="brasil.gov.newfieldcomplement">
95
+ <p i18n:translate="">No results were found.</p>
96
+ </div>
97
+
98
+ </div>
99
+
100
+ </metal:block>
101
+ </metal:content-core>
102
+ </body>
103
+ </html>
@@ -0,0 +1,57 @@
1
+ <tal:comment tal:replace="nothing">
2
+ Arquivo customizado para permitir linhas do cover com largura total da tela e colunas centralizadas,
3
+ obedecendo a largura máxima do conteúdo.
4
+
5
+ Funciona similar ao container do bootstrap.
6
+
7
+ O elemento row-content é exibido apenas no modo visão, pois no modo edição o cover salva o elemento
8
+ e duplica as linhas criadas.
9
+ TODO: Alterar o script que salva o layout para que a linha não seja duplicada
10
+
11
+ O arquivo original encontra-se em
12
+ https://github.com/collective/collective.cover/blob/1.8b2/src/collective/cover/browser/templates/row.pt
13
+ </tal:comment>
14
+
15
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
16
+ xmlns:tal="http://xml.zope.org/namespaces/tal"
17
+ xmlns:metal="http://xml.zope.org/namespaces/metal"
18
+ xmlns:i18n="http://xml.zope.org/namespaces/i18n"
19
+ lang="en"
20
+ i18n:domain="collective.cover"
21
+ tal:omit-tag="">
22
+ <body tal:omit-tag="">
23
+
24
+ <tal:mode define="mode options/mode;">
25
+ <tal:layoutedit tal:condition="python:mode == 'layout_edit'">
26
+ <div tal:define="section options/section | nothing;
27
+ data python:section.get('data', '') if section else None"
28
+ tal:condition="section"
29
+ tal:attributes="class python:'%s' % section.get('class', '');
30
+ data-css-class python: section.get('css-class', None)">
31
+ <a href="#" class="config-row-link">
32
+ <i class="config-icon"></i>
33
+ </a>
34
+ <tal:children repeat="child python:section.get('children') or []">
35
+ <div tal:replace="structure python:view.render_section(child, mode)" />
36
+ </tal:children>
37
+ </div>
38
+ </tal:layoutedit>
39
+ <tal:other tal:condition="python:mode != 'layout_edit'">
40
+ <div tal:define="section options/section | nothing;
41
+ data python:section.get('data', '') if section else None"
42
+ tal:condition="section"
43
+ tal:attributes="class python:'%s' % section.get('class', '')">
44
+ <div class="row-content">
45
+
46
+ <tal:children repeat="child python:section.get('children') or []">
47
+ <div tal:replace="structure python:view.render_section(child, mode)" />
48
+ </tal:children>
49
+
50
+ </div>
51
+ </div>
52
+ </tal:other>
53
+ </tal:mode>
54
+
55
+ </body>
56
+ </html>
57
+
@@ -0,0 +1,47 @@
1
+ <div class="faceted-widget faceted-checkboxes-widget faceted-boolean-widget" style="display: none"
2
+ i18n:domain="eea" tal:define="
3
+ error_view nocall:context/@@faceted.widget.error;
4
+ wid python:view.data.getId();
5
+ hidden python:view.hidden;
6
+ hidezerocount python:view.hidezerocount;
7
+ sortcountable python:view.sortcountable;
8
+ css string:faceted-widget ${view/css_class};
9
+ css python:hidden and css + ' faceted-widget-hidden' or css;
10
+ css python:view.countable and css + ' faceted-count' or css;
11
+ title python:view.translate(view.data.get('title', ''));
12
+ "
13
+ tal:attributes="id string:${wid}_widget; class css;">
14
+
15
+ <fieldset class="widget-fieldset filterbar-control">
16
+ <legend tal:content="title" i18n:translate="">HTML Widget</legend>
17
+ <tal:facet on-error="structure python:error_view(error=error, cid=wid)">
18
+
19
+ <form action="." method="get">
20
+
21
+ <ul>
22
+ <li tal:define="
23
+ term_id view/index_id;
24
+ chbox_id string:${wid}_${term_id};
25
+ chbox_id python:view.cleanup(chbox_id);
26
+ option_id string:${wid}_option_${chbox_id};
27
+ "
28
+ tal:attributes="id option_id"
29
+ class="br-checkbox"
30
+ >
31
+ <input type="checkbox" class="faceted-noborder"
32
+ value="1"
33
+ tal:attributes="
34
+ checked view/selected;
35
+ name string:${wid}:int;
36
+ id chbox_id;
37
+ title title;" />
38
+ <label tal:attributes="for chbox_id; title title"
39
+ tal:content="title">term label</label>
40
+ </li>
41
+ </ul>
42
+ </form>
43
+
44
+ </tal:facet>
45
+
46
+ </fieldset>
47
+ </div>
@@ -0,0 +1,69 @@
1
+ <div class="faceted-widget faceted-checkboxes-widget" style="display: none"
2
+ i18n:domain="eea" tal:define="
3
+ error_view nocall:context/@@faceted.widget.error;
4
+ wid python:view.data.getId();
5
+ hidden python:view.hidden;
6
+ hidezerocount python:view.hidezerocount;
7
+ sortcountable python:view.sortcountable;
8
+ css string:faceted-widget ${view/css_class};
9
+ css python:hidden and css + ' faceted-widget-hidden' or css;
10
+ css python:view.countable and css + ' faceted-count' or css;
11
+ css python:hidezerocount and css + ' faceted-zero-count-hidden' or css;
12
+ css python:sortcountable and css + ' faceted-sortcountable' or css;
13
+ maxitems python:view.data.get('maxitems', 0) or 0;
14
+ operator python:view.operator;
15
+ operator_visible python:view.operator_visible;
16
+ operator_lable python: 'any' if operator == 'or' else 'all';
17
+ vocabulary view/vocabulary;"
18
+ tal:condition="vocabulary"
19
+ tal:attributes="id string:${wid}_widget; class css; data-operator python:operator;">
20
+
21
+ <fieldset class="widget-fieldset filterbar-control">
22
+ <legend tal:define="title python:view.data.get('title', '')" tal:content="
23
+ python:view.translate(title)" i18n:translate="">HTML Widget</legend>
24
+
25
+ <tal:facet on-error="structure python:error_view(error=error, cid=wid)">
26
+
27
+ <div class="faceted-operator" tal:condition="operator_visible" title="match any/all filters bellow" i18n:attributes="title">
28
+ <label tal:attributes="for string:$wid-operator" i18n:translate="">match</label>
29
+ <a data-or="any" data-and="all" data-name="operator" i18n:attributes="data-or; data-and" tal:attributes="
30
+ href string:#$wid-operator=$operator;
31
+ data-value string:$operator;
32
+ "
33
+ tal:content="operator_lable" />
34
+ </div>
35
+
36
+ <form action="." method="get">
37
+
38
+ <ul>
39
+ <tal:items repeat="term vocabulary">
40
+ <li tal:define="
41
+ term_id python:term[0];
42
+ term_label python:term[1];
43
+ term_label python:view.translate(term_label);
44
+ wbr_term_label python:view.word_break(term_label);
45
+ chbox_id string:${wid}_${term_id};
46
+ chbox_id python:view.cleanup(chbox_id);
47
+ option_id string:${wid}_option_${chbox_id};"
48
+ tal:attributes="id option_id"
49
+ class="br-checkbox"
50
+ >
51
+ <input type="checkbox" class="faceted-noborder" tal:attributes="
52
+ checked python:view.selected(term_id);
53
+ name string:${wid};
54
+ id chbox_id;
55
+ title term_label;
56
+ value term_id;" />
57
+ <label tal:attributes="for chbox_id; title term_label"
58
+ tal:content="structure wbr_term_label">term label</label>
59
+ </li>
60
+ </tal:items>
61
+ </ul>
62
+ </form>
63
+
64
+ <span style="display:none" tal:content="maxitems" />
65
+
66
+ </tal:facet>
67
+
68
+ </fieldset>
69
+ </div>
@@ -0,0 +1,40 @@
1
+ <div class="faceted-widget faceted-date-widget" style="display: none"
2
+ i18n:domain="eea" tal:define="
3
+ error_view nocall:context/@@faceted.widget.error;
4
+ wid python:view.data.getId();
5
+ hidden python:view.hidden;
6
+ default_value python:view.default;
7
+ default_from python:default_value[0];
8
+ default_to python:default_value[1];
9
+ vocabulary python:view.select_vocabulary;
10
+ css string:faceted-widget ${view/css_class};
11
+ css python:hidden and css + ' faceted-widget-hidden' or css;
12
+ "
13
+ tal:attributes="id string:${wid}_widget; class css">
14
+
15
+ <fieldset class="widget-fieldset filterbar-control">
16
+ <legend tal:define="title python:view.data.get('title', '')" tal:content="
17
+ python:view.translate(title)" i18n:translate="">Date Widget</legend>
18
+
19
+ <form action="." method="get" class="faceted-date-widget-form"
20
+ tal:on-error="structure python:error_view(error=error, cid=wid)">
21
+ <select name="from" tal:attributes="id string:$wid-from" style="display: none">
22
+ <tal:option repeat="item vocabulary">
23
+ <option tal:attributes="
24
+ value python:item[0];
25
+ selected python:item[0] == default_from and 'selected' or None"
26
+ tal:content="python:item[1]" />
27
+ </tal:option>
28
+ </select>
29
+ <select name="to" tal:attributes="id string:$wid-to" style="display: none">
30
+ <tal:option repeat="item vocabulary">
31
+ <option tal:attributes="
32
+ value python:item[0];
33
+ selected python:item[0] == default_to and 'selected' or None"
34
+ tal:content="python:item[1]" />
35
+ </tal:option>
36
+ </select>
37
+ </form>
38
+
39
+ </fieldset>
40
+ </div>
@@ -0,0 +1,55 @@
1
+ <div class="faceted-widget faceted-daterange-widget" style="display: none"
2
+ i18n:domain="eea" tal:define="
3
+ error_view nocall:context/@@faceted.widget.error;
4
+ wid python:view.data.getId();
5
+ yearRange python:view.cal_year_range;
6
+ usePloneFormat python:view.use_plone_date_format;
7
+ dateFormat python:view.js_date_format;
8
+ language python:view.js_language;
9
+ hidden python:view.hidden;
10
+ default_value python:view.default;
11
+ default_start python:default_value[0];
12
+ default_end python:default_value[1];
13
+ css string:faceted-widget ${view/css_class};
14
+ css python:hidden and css + ' faceted-widget-hidden' or css;"
15
+ tal:attributes="id string:${wid}_widget; class css">
16
+
17
+ <fieldset class="widget-fieldset filterbar-control">
18
+ <legend tal:define="title python:view.data.get('title', '')" tal:content="
19
+ python:view.translate(title)" i18n:translate="">Date range widget</legend>
20
+
21
+ <form action="." method="get" class="faceted-daterange-widget-form"
22
+ tal:on-error="structure python:error_view(error=error, cid=wid)">
23
+ <div tal:attributes="id string:${wid}_start;" class="br-input filterbar-control">
24
+ <label tal:attributes="for string:$wid-start-input"
25
+ i18n:translate="">Start date</label>
26
+ <input type="text" name="start" title="Start date" tal:attributes="
27
+ id string:$wid-start-input;
28
+ value default_start"
29
+ i18n:attributes="title" />
30
+ </div>
31
+ <div tal:attributes="id string:${wid}_end;" class="br-input filterbar-control">
32
+ <label tal:attributes="for string:$wid-end-input"
33
+ i18n:translate="">End date</label>
34
+ <input type="text" name="end" title="End date" tal:attributes="
35
+ id string:$wid-end-input;
36
+ value default_end"
37
+ i18n:attributes="title" />
38
+ </div>
39
+ <div tal:attributes="id string:${wid}_errors"></div>
40
+ <input type="hidden" name="calYearRange"
41
+ tal:attributes="id string:${wid}_calYearRange;
42
+ value string:$yearRange"/>
43
+ <input type="hidden" name="usePloneFormat"
44
+ tal:attributes="id string:${wid}_usePloneFormat;
45
+ value string:$usePloneFormat"/>
46
+ <input type="hidden" name="dateFormat"
47
+ tal:attributes="id string:${wid}_dateFormat;
48
+ value string:$dateFormat"/>
49
+ <input type="hidden" name="language"
50
+ tal:attributes="id string:${wid}_language;
51
+ value string:$language"/>
52
+ </form>
53
+
54
+ </fieldset>
55
+ </div>
@@ -0,0 +1,60 @@
1
+ <div class="faceted-widget faceted-radio-widget" style="display: none"
2
+ i18n:domain="eea" tal:define="
3
+ error_view nocall:context/@@faceted.widget.error;
4
+ wid python:view.data.getId();
5
+ hidden python:view.hidden;
6
+ hidezerocount python:view.hidezerocount;
7
+ sortcountable python:view.sortcountable;
8
+ default_value python:view.default or '';
9
+ css string:faceted-widget ${view/css_class};
10
+ css python:hidden and css + ' faceted-widget-hidden' or css;
11
+ css python:view.countable and css + ' faceted-count' or css;
12
+ css python:hidezerocount and css + ' faceted-zero-count-hidden' or css;
13
+ css python:sortcountable and css + ' faceted-sortcountable' or css;
14
+ maxitems python:view.data.get('maxitems', 0) or 0;
15
+ vocabulary view/vocabulary;"
16
+ tal:condition="vocabulary"
17
+ tal:attributes="id string:${wid}_widget; class css">
18
+
19
+ <fieldset class="widget-fieldset filterbar-control">
20
+ <legend tal:define="title python:view.data.get('title', '')" tal:content="
21
+ python:view.translate(title)" i18n:translate="">HTML Widget</legend>
22
+ <form action="." method="get"
23
+ tal:on-error="structure python:error_view(error=error, cid=wid)">
24
+ <ul>
25
+ <li tal:condition="not:view/data/hidealloption|nothing">
26
+ <tal:terms define="
27
+ chbox_id string:${wid}_all;
28
+ chbox_id python:view.cleanup(chbox_id);">
29
+ <input type="radio" class="faceted-noborder" checked="checked" tal:attributes="
30
+ name string:${wid};
31
+ id chbox_id;
32
+ value string:" />
33
+ <label tal:attributes="for chbox_id" title="All"
34
+ i18n:translate="" i18n:attributes="title">All</label>
35
+ </tal:terms>
36
+ </li>
37
+ <tal:items repeat="term vocabulary">
38
+ <li tal:define="
39
+ term_id python:term[0];
40
+ term_label python:term[1];
41
+ term_label python:view.translate(term_label);
42
+ wbr_term_label python:view.word_break(term_label);
43
+ chbox_id string:${wid}_${term_id};
44
+ chbox_id python:view.cleanup(chbox_id);"
45
+ class="br-radio">
46
+ <input type="radio" class="faceted-noborder" tal:attributes="
47
+ checked python:term_id == default_value;
48
+ name string:${wid};
49
+ id chbox_id;
50
+ title term_label;
51
+ value term_id;" />
52
+ <label tal:attributes="for chbox_id; title term_label"
53
+ tal:content="structure wbr_term_label">term label</label>
54
+ </li>
55
+ </tal:items>
56
+ </ul>
57
+ </form>
58
+ <span style="display:none" tal:content="maxitems" />
59
+ </fieldset>
60
+ </div>