├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── nova-funcionalidade.md │ ├── reportar-problema.md │ └── tarefa-de-desenvolvimento.md └── pull_request_template.md ├── .gitignore ├── .landscape.yml ├── .pre-commit-config.yaml ├── .travis.yml ├── Dockerfile ├── Dockerfile-dev ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── VERSION ├── data └── .gitkeep ├── docker-compose-build.yml ├── docker-compose-dev.yml ├── docker-compose.yml ├── gulpfile.js ├── opac ├── __init__.py ├── fixtures │ ├── default_info.json │ └── imgs │ │ ├── bireme.png │ │ ├── bvs.png │ │ ├── cnpq.png │ │ ├── fap.png │ │ ├── fapesp.png │ │ ├── header_logo_en.png │ │ ├── header_logo_es.png │ │ ├── header_logo_pt.png │ │ ├── home_logo_en.png │ │ ├── home_logo_es.png │ │ ├── home_logo_pt.png │ │ ├── logo_drop_menu.png │ │ ├── logo_footer.png │ │ ├── menu_logo_en.png │ │ ├── menu_logo_es.png │ │ └── menu_logo_pt.png ├── manager.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── .gitkeep ├── tests │ ├── __init__.py │ ├── base.py │ ├── check_legacy_urls.py │ ├── fixtures │ │ ├── document.xml │ │ ├── legacy_urls.txt │ │ └── pages │ │ │ ├── img_revistas │ │ │ └── rbep │ │ │ │ ├── CNPq logo.gif │ │ │ │ ├── Logotipo Financiador 1 - FACED.jpg │ │ │ │ ├── Logotipo Financiador 2 - PROPESQ.jpg │ │ │ │ ├── Logotipo Financiador 3 -PAEP.jpg │ │ │ │ ├── Logotipo Instituição Mantenedora.jpg │ │ │ │ └── logo.gif │ │ │ └── revistas │ │ │ ├── aa │ │ │ ├── PASSO A PASSO – SISTEMA DE SUBMISSÃO DE ARTIGOS POR INTERMÉDIO DO SCHOLARONE.pdf │ │ │ └── eedboard.htm │ │ │ ├── abb │ │ │ ├── einstruc.htm │ │ │ └── pinstruc.htm │ │ │ ├── bjgeo │ │ │ ├── einstruct.htm │ │ │ └── pinstruct.htm │ │ │ ├── bjmbr │ │ │ ├── iaboutj.htm │ │ │ ├── iedboard.htm │ │ │ ├── iedboard_completo.htm │ │ │ ├── iinstruc.htm │ │ │ └── paboutj.htm │ │ │ ├── ea │ │ │ ├── iinstruc.htm │ │ │ └── pinstruc.htm │ │ │ ├── eagri │ │ │ └── pedboard.htm │ │ │ ├── eins │ │ │ └── eedboard.htm │ │ │ ├── icse │ │ │ ├── eaboutj.htm │ │ │ └── iinstruc.htm │ │ │ └── rbep │ │ │ ├── eaboutj.htm │ │ │ ├── eedboard.htm │ │ │ ├── einstruc.htm │ │ │ ├── esubscrp.htm │ │ │ ├── paboutj.htm │ │ │ ├── pedboard.htm │ │ │ ├── pinstruc.htm │ │ │ └── psubscrp.htm │ ├── test_admin_custom_filters.py │ ├── test_admin_views.py │ ├── test_controller.py │ ├── test_interface_TOC.py │ ├── test_interface_footer.py │ ├── test_interface_header.py │ ├── test_interface_home.py │ ├── test_interface_journal_home.py │ ├── test_interface_menu.py │ ├── test_lang_names.py │ ├── test_legacy_urls.py │ ├── test_main_errors.py │ ├── test_main_views.py │ ├── test_main_views_abstract.py │ ├── test_models.py │ ├── test_notifications.py │ ├── test_utils.py │ ├── test_utils_journal_static_page.py │ ├── test_utils_page_migration.py │ └── utils.py └── webapp │ ├── __init__.py │ ├── admin │ ├── __init__.py │ ├── ajax.py │ ├── custom_fields.py │ ├── custom_filters.py │ ├── custom_widget.py │ ├── forms.py │ └── views.py │ ├── choices.py │ ├── config │ ├── __init__.py │ ├── babel.cfg │ ├── default.py │ ├── lang_names.py │ ├── logger.ini │ └── templates │ │ ├── development.template │ │ └── testing.template │ ├── controllers.py │ ├── forms.py │ ├── main │ ├── __init__.py │ ├── custom_filters.py │ ├── errors.py │ └── views.py │ ├── media │ ├── csl_styles.json │ ├── files │ │ └── .gitkeep │ └── images │ │ └── .gitkeep │ ├── models.py │ ├── notifications.py │ ├── static │ ├── css │ │ ├── admin │ │ │ └── notification │ │ │ │ └── toastr │ │ │ │ ├── toastr-rtl.css │ │ │ │ ├── toastr.css.map │ │ │ │ └── toastr.min.css │ │ ├── jquery.typeahead.css │ │ ├── rq_dashboard.css │ │ ├── scielo-article-standalone.css │ │ ├── scielo-article-standalone.css.map │ │ ├── scielo-article.css │ │ ├── scielo-article.css.map │ │ ├── scielo-bundle-print-min.css │ │ ├── scielo-bundle-print.css │ │ ├── scielo-bundle-print.css.map │ │ ├── scielo-bundle.css │ │ ├── scielo-bundle.css.map │ │ └── style.css │ ├── fonts-new │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── scielo-glyphs.json │ │ ├── scielo-glyphs.svg │ │ ├── scielo-glyphs.ttf │ │ └── scielo-glyphs.woff │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── articleContent-arrow.png │ │ ├── authorIcon-lattes-matteWhite.png │ │ ├── authorIcon-lattes.png │ │ ├── authorIcon-orcid.png │ │ ├── authorIcon-researcherid.png │ │ ├── authorIcon-scopus.png │ │ ├── button.error.feedback.jpg │ │ ├── button.glyphs.png │ │ ├── dashline.png │ │ ├── dashline.v.png │ │ ├── dropdown-arrow.png │ │ ├── fallback_image.png │ │ ├── favicon.ico │ │ ├── fig-thumb.png │ │ ├── flags.png │ │ ├── full_text_scielo_img.gif │ │ ├── img-post-blog-scielo-exemplo.jpg │ │ ├── input.glyphs.png │ │ ├── list.loading.gif │ │ ├── logo-dimensionsbadge-min.jpg │ │ ├── logo-plumx-min.jpg │ │ ├── logo-scielo-min.jpg │ │ ├── logo-scielo-signature.png │ │ ├── logo-scielo-svg.svg │ │ ├── logo-scielo.svg │ │ ├── menu.glyphs.png │ │ ├── mid.glyphs.png │ │ ├── oa_logo_32.png │ │ ├── placeholder.jpg │ │ ├── readcube.png │ │ ├── scimago.svg │ │ ├── searchForm.selectBox.png │ │ └── table-thumb.png │ ├── js │ │ ├── ZeroClipboard.swf │ │ ├── admin │ │ │ └── common.js │ │ ├── ckeditor │ │ │ ├── .DS_Store │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── colordialog │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── colordialog.css │ │ │ │ │ │ └── colordialog.js │ │ │ │ ├── copyformatting │ │ │ │ │ ├── cursors │ │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ │ └── cursor.svg │ │ │ │ │ └── styles │ │ │ │ │ │ └── copyformatting.css │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── div │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── div.js │ │ │ │ ├── find │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── find.js │ │ │ │ ├── flash │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── flash.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── checkbox.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ │ ├── radio.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── textarea.js │ │ │ │ │ │ └── textfield.js │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── iframe │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── iframe.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── liststyle │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── liststyle.js │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── scayt │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── scayt.css │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ └── block_pre.png │ │ │ │ ├── smiley │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── smiley.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── envelope.png │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── kiss.png │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tableselection │ │ │ │ │ └── styles │ │ │ │ │ │ └── tableselection.css │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── templates │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── templates.css │ │ │ │ │ │ └── templates.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── widget │ │ │ │ │ └── images │ │ │ │ │ │ └── handle.png │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ ├── skins │ │ │ │ └── moono-lisa │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── common.js │ │ ├── copyLink.action.js │ │ ├── journal_lists.js │ │ ├── jquery.popupwindows.js │ │ ├── main.js │ │ ├── modal_forms.js │ │ ├── moment-with-locales.js │ │ ├── moment.js │ │ ├── moment_locale_es.js │ │ ├── moment_locale_pt_br.js │ │ ├── plugins.js │ │ ├── scielo-article-min.js │ │ ├── scielo-article-standalone-min.js │ │ ├── scielo-article.js │ │ ├── scielo-bundle-min.js │ │ ├── scienceopen.js │ │ ├── underscore.js │ │ └── vendor │ │ │ ├── chart.min.js │ │ │ ├── excanvas.min.js │ │ │ ├── html5-3.6-respond-1.1.0.min.js │ │ │ └── html5shiv.js │ ├── less │ │ ├── article.less │ │ ├── bootstrap.less │ │ ├── collection.less │ │ ├── components.less │ │ ├── global.less │ │ ├── journal-menu.less │ │ ├── journal.less │ │ ├── jquery.typeahead.less │ │ ├── oldie.less │ │ ├── portal.less │ │ ├── responsive-tablet.less │ │ ├── scielo-article-standalone.less │ │ ├── scielo-article.less │ │ ├── scielo-bundle-print.less │ │ ├── scielo-bundle.less │ │ ├── scielo-glyphs.less │ │ ├── scielo-portal.less │ │ ├── search-styles.less │ │ ├── search.less │ │ └── style.less │ ├── maps │ │ ├── scielo-article-min.js.map │ │ ├── scielo-article-standalone-min.js.map │ │ └── scielo-bundle-min.js.map │ └── robots.txt │ ├── tasks.py │ ├── templates │ ├── admin │ │ ├── audit_log │ │ │ └── fields_data_table.html │ │ ├── auth │ │ │ ├── login.html │ │ │ ├── reset.html │ │ │ ├── reset_with_token.html │ │ │ └── unconfirm_email.html │ │ ├── email │ │ │ └── audit_log_report.html │ │ ├── includes │ │ │ └── forms.html │ │ ├── index.html │ │ ├── opac_base.html │ │ └── pages │ │ │ ├── add.html │ │ │ └── edit.html │ ├── article │ │ ├── base.html │ │ ├── detail.html │ │ ├── epdf.html │ │ ├── export │ │ │ └── citation │ │ │ │ └── ris │ │ └── includes │ │ │ ├── _dont_display_full_text.html │ │ │ ├── alternative_header.html │ │ │ ├── floating_menu.html │ │ │ ├── header.html │ │ │ ├── levelMenu.html │ │ │ ├── levelMenu_abstracts.html │ │ │ ├── levelMenu_pdf.html │ │ │ ├── levelMenu_texts.html │ │ │ ├── meta.html │ │ │ ├── modal │ │ │ ├── download.html │ │ │ ├── how_cite.html │ │ │ ├── related_article.html │ │ │ └── translate_version.html │ │ │ ├── recent_articles_row.html │ │ │ └── related-article.html │ ├── base.html │ ├── collection │ │ ├── about.html │ │ ├── base.html │ │ ├── includes │ │ │ ├── header.html │ │ │ ├── journal_list_row.html │ │ │ ├── levelMenu.html │ │ │ ├── levelMenu_search.html │ │ │ ├── list_journals_search_input.html │ │ │ ├── list_journals_section_title.html │ │ │ ├── nav.html │ │ │ ├── tmpl_journal_list_empty.html │ │ │ ├── tmpl_journal_list_error.html │ │ │ ├── tmpl_journal_list_grouper_table_container.html │ │ │ ├── tmpl_journal_list_grouper_table_row.html │ │ │ ├── tmpl_journal_list_row.html │ │ │ └── tweet_row.html │ │ ├── index.html │ │ ├── list_feed_content.html │ │ ├── list_journal.html │ │ └── list_thematic.html │ ├── email │ │ ├── activate.html │ │ ├── email_form.html │ │ └── recover.html │ ├── errors │ │ ├── 400.html │ │ ├── 403.html │ │ ├── 404.html │ │ ├── 500.html │ │ └── base.html │ ├── includes │ │ ├── clockss.html │ │ ├── error_form.html │ │ ├── footer.html │ │ ├── language.html │ │ ├── metric_modal.html │ │ └── page_updated_at_info.html │ ├── issue │ │ ├── base.html │ │ ├── feed_content.html │ │ ├── grid.html │ │ ├── includes │ │ │ ├── alternative_header.html │ │ │ └── meta.html │ │ └── toc.html │ ├── journal │ │ ├── about.html │ │ ├── base.html │ │ ├── detail.html │ │ └── includes │ │ │ ├── alternative_header.html │ │ │ ├── contact_footer.html │ │ │ ├── contact_form.html │ │ │ ├── header.html │ │ │ ├── levelMenu.html │ │ │ └── meta.html │ ├── macros │ │ ├── article.html │ │ ├── collection.html │ │ ├── images.html │ │ ├── issue.html │ │ └── menu.html │ ├── news │ │ └── includes │ │ │ ├── collection_news_row.html │ │ │ ├── issue_last_row.html │ │ │ └── journal_news_row.html │ ├── press_release │ │ └── includes │ │ │ └── press_releases_row.html │ ├── rq_dashboard │ │ ├── base.html │ │ └── dashboard.html │ └── rq_scheduler_dashboard │ │ ├── base.html │ │ └── dashboard.html │ ├── translations │ ├── en │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── messages.pot │ └── pt_BR.UTF-8 │ │ └── LC_MESSAGES │ │ └── messages.po │ └── utils │ ├── __init__.py │ ├── caching.py │ ├── journal_static_page.py │ ├── page_migration.py │ └── utils.py ├── package.json ├── requirements.dev.txt ├── requirements.txt ├── setup.py ├── start_scheduler.sh └── start_worker.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/nova-funcionalidade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.github/ISSUE_TEMPLATE/nova-funcionalidade.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/reportar-problema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.github/ISSUE_TEMPLATE/reportar-problema.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tarefa-de-desenvolvimento.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.github/ISSUE_TEMPLATE/tarefa-de-desenvolvimento.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/Dockerfile-dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.12 2 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/docker-compose-build.yml -------------------------------------------------------------------------------- /docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/docker-compose-dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/gulpfile.js -------------------------------------------------------------------------------- /opac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/fixtures/default_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/default_info.json -------------------------------------------------------------------------------- /opac/fixtures/imgs/bireme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/bireme.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/bvs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/bvs.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/cnpq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/cnpq.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/fap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/fap.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/fapesp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/fapesp.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/header_logo_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/header_logo_en.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/header_logo_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/header_logo_es.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/header_logo_pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/header_logo_pt.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/home_logo_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/home_logo_en.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/home_logo_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/home_logo_es.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/home_logo_pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/home_logo_pt.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/logo_drop_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/logo_drop_menu.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/logo_footer.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/menu_logo_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/menu_logo_en.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/menu_logo_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/menu_logo_es.png -------------------------------------------------------------------------------- /opac/fixtures/imgs/menu_logo_pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/fixtures/imgs/menu_logo_pt.png -------------------------------------------------------------------------------- /opac/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/manager.py -------------------------------------------------------------------------------- /opac/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /opac/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/migrations/alembic.ini -------------------------------------------------------------------------------- /opac/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/migrations/env.py -------------------------------------------------------------------------------- /opac/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/migrations/script.py.mako -------------------------------------------------------------------------------- /opac/migrations/versions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/base.py -------------------------------------------------------------------------------- /opac/tests/check_legacy_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/check_legacy_urls.py -------------------------------------------------------------------------------- /opac/tests/fixtures/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/document.xml -------------------------------------------------------------------------------- /opac/tests/fixtures/legacy_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/legacy_urls.txt -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/img_revistas/rbep/CNPq logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/img_revistas/rbep/CNPq logo.gif -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Financiador 1 - FACED.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Financiador 1 - FACED.jpg -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Financiador 2 - PROPESQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Financiador 2 - PROPESQ.jpg -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Financiador 3 -PAEP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Financiador 3 -PAEP.jpg -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Instituição Mantenedora.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/img_revistas/rbep/Logotipo Instituição Mantenedora.jpg -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/img_revistas/rbep/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/img_revistas/rbep/logo.gif -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/aa/PASSO A PASSO – SISTEMA DE SUBMISSÃO DE ARTIGOS POR INTERMÉDIO DO SCHOLARONE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/aa/PASSO A PASSO – SISTEMA DE SUBMISSÃO DE ARTIGOS POR INTERMÉDIO DO SCHOLARONE.pdf -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/aa/eedboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/aa/eedboard.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/abb/einstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/abb/einstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/abb/pinstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/abb/pinstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/bjgeo/einstruct.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/bjgeo/einstruct.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/bjgeo/pinstruct.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/bjgeo/pinstruct.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/bjmbr/iaboutj.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/bjmbr/iaboutj.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/bjmbr/iedboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/bjmbr/iedboard.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/bjmbr/iedboard_completo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/bjmbr/iedboard_completo.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/bjmbr/iinstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/bjmbr/iinstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/bjmbr/paboutj.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/bjmbr/paboutj.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/ea/iinstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/ea/iinstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/ea/pinstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/ea/pinstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/eagri/pedboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/eagri/pedboard.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/eins/eedboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/eins/eedboard.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/icse/eaboutj.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/icse/eaboutj.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/icse/iinstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/icse/iinstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/eaboutj.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/eaboutj.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/eedboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/eedboard.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/einstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/einstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/esubscrp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/esubscrp.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/paboutj.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/paboutj.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/pedboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/pedboard.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/pinstruc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/pinstruc.htm -------------------------------------------------------------------------------- /opac/tests/fixtures/pages/revistas/rbep/psubscrp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/fixtures/pages/revistas/rbep/psubscrp.htm -------------------------------------------------------------------------------- /opac/tests/test_admin_custom_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_admin_custom_filters.py -------------------------------------------------------------------------------- /opac/tests/test_admin_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_admin_views.py -------------------------------------------------------------------------------- /opac/tests/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_controller.py -------------------------------------------------------------------------------- /opac/tests/test_interface_TOC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_interface_TOC.py -------------------------------------------------------------------------------- /opac/tests/test_interface_footer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_interface_footer.py -------------------------------------------------------------------------------- /opac/tests/test_interface_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_interface_header.py -------------------------------------------------------------------------------- /opac/tests/test_interface_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_interface_home.py -------------------------------------------------------------------------------- /opac/tests/test_interface_journal_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_interface_journal_home.py -------------------------------------------------------------------------------- /opac/tests/test_interface_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_interface_menu.py -------------------------------------------------------------------------------- /opac/tests/test_lang_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_lang_names.py -------------------------------------------------------------------------------- /opac/tests/test_legacy_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_legacy_urls.py -------------------------------------------------------------------------------- /opac/tests/test_main_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_main_errors.py -------------------------------------------------------------------------------- /opac/tests/test_main_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_main_views.py -------------------------------------------------------------------------------- /opac/tests/test_main_views_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_main_views_abstract.py -------------------------------------------------------------------------------- /opac/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_models.py -------------------------------------------------------------------------------- /opac/tests/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_notifications.py -------------------------------------------------------------------------------- /opac/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_utils.py -------------------------------------------------------------------------------- /opac/tests/test_utils_journal_static_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_utils_journal_static_page.py -------------------------------------------------------------------------------- /opac/tests/test_utils_page_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/test_utils_page_migration.py -------------------------------------------------------------------------------- /opac/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/tests/utils.py -------------------------------------------------------------------------------- /opac/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/__init__.py -------------------------------------------------------------------------------- /opac/webapp/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/webapp/admin/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/admin/ajax.py -------------------------------------------------------------------------------- /opac/webapp/admin/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/admin/custom_fields.py -------------------------------------------------------------------------------- /opac/webapp/admin/custom_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/admin/custom_filters.py -------------------------------------------------------------------------------- /opac/webapp/admin/custom_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/admin/custom_widget.py -------------------------------------------------------------------------------- /opac/webapp/admin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/admin/forms.py -------------------------------------------------------------------------------- /opac/webapp/admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/admin/views.py -------------------------------------------------------------------------------- /opac/webapp/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/choices.py -------------------------------------------------------------------------------- /opac/webapp/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/webapp/config/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/config/babel.cfg -------------------------------------------------------------------------------- /opac/webapp/config/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/config/default.py -------------------------------------------------------------------------------- /opac/webapp/config/lang_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/config/lang_names.py -------------------------------------------------------------------------------- /opac/webapp/config/logger.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/config/logger.ini -------------------------------------------------------------------------------- /opac/webapp/config/templates/development.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/config/templates/development.template -------------------------------------------------------------------------------- /opac/webapp/config/templates/testing.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/config/templates/testing.template -------------------------------------------------------------------------------- /opac/webapp/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/controllers.py -------------------------------------------------------------------------------- /opac/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/forms.py -------------------------------------------------------------------------------- /opac/webapp/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/main/__init__.py -------------------------------------------------------------------------------- /opac/webapp/main/custom_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/main/custom_filters.py -------------------------------------------------------------------------------- /opac/webapp/main/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/main/errors.py -------------------------------------------------------------------------------- /opac/webapp/main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/main/views.py -------------------------------------------------------------------------------- /opac/webapp/media/csl_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/media/csl_styles.json -------------------------------------------------------------------------------- /opac/webapp/media/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/webapp/media/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/models.py -------------------------------------------------------------------------------- /opac/webapp/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/notifications.py -------------------------------------------------------------------------------- /opac/webapp/static/css/admin/notification/toastr/toastr-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/admin/notification/toastr/toastr-rtl.css -------------------------------------------------------------------------------- /opac/webapp/static/css/admin/notification/toastr/toastr.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/admin/notification/toastr/toastr.css.map -------------------------------------------------------------------------------- /opac/webapp/static/css/admin/notification/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/admin/notification/toastr/toastr.min.css -------------------------------------------------------------------------------- /opac/webapp/static/css/jquery.typeahead.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/jquery.typeahead.css -------------------------------------------------------------------------------- /opac/webapp/static/css/rq_dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/rq_dashboard.css -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-article-standalone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-article-standalone.css -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-article-standalone.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-article-standalone.css.map -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-article.css -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-article.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-article.css.map -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-bundle-print-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-bundle-print-min.css -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-bundle-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-bundle-print.css -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-bundle-print.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-bundle-print.css.map -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-bundle.css -------------------------------------------------------------------------------- /opac/webapp/static/css/scielo-bundle.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/scielo-bundle.css.map -------------------------------------------------------------------------------- /opac/webapp/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/css/style.css -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/scielo-glyphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/scielo-glyphs.json -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/scielo-glyphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/scielo-glyphs.svg -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/scielo-glyphs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/scielo-glyphs.ttf -------------------------------------------------------------------------------- /opac/webapp/static/fonts-new/scielo-glyphs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts-new/scielo-glyphs.woff -------------------------------------------------------------------------------- /opac/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /opac/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /opac/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /opac/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /opac/webapp/static/img/articleContent-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/articleContent-arrow.png -------------------------------------------------------------------------------- /opac/webapp/static/img/authorIcon-lattes-matteWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/authorIcon-lattes-matteWhite.png -------------------------------------------------------------------------------- /opac/webapp/static/img/authorIcon-lattes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/authorIcon-lattes.png -------------------------------------------------------------------------------- /opac/webapp/static/img/authorIcon-orcid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/authorIcon-orcid.png -------------------------------------------------------------------------------- /opac/webapp/static/img/authorIcon-researcherid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/authorIcon-researcherid.png -------------------------------------------------------------------------------- /opac/webapp/static/img/authorIcon-scopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/authorIcon-scopus.png -------------------------------------------------------------------------------- /opac/webapp/static/img/button.error.feedback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/button.error.feedback.jpg -------------------------------------------------------------------------------- /opac/webapp/static/img/button.glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/button.glyphs.png -------------------------------------------------------------------------------- /opac/webapp/static/img/dashline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/dashline.png -------------------------------------------------------------------------------- /opac/webapp/static/img/dashline.v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/dashline.v.png -------------------------------------------------------------------------------- /opac/webapp/static/img/dropdown-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/dropdown-arrow.png -------------------------------------------------------------------------------- /opac/webapp/static/img/fallback_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/fallback_image.png -------------------------------------------------------------------------------- /opac/webapp/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/favicon.ico -------------------------------------------------------------------------------- /opac/webapp/static/img/fig-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/fig-thumb.png -------------------------------------------------------------------------------- /opac/webapp/static/img/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/flags.png -------------------------------------------------------------------------------- /opac/webapp/static/img/full_text_scielo_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/full_text_scielo_img.gif -------------------------------------------------------------------------------- /opac/webapp/static/img/img-post-blog-scielo-exemplo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/img-post-blog-scielo-exemplo.jpg -------------------------------------------------------------------------------- /opac/webapp/static/img/input.glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/input.glyphs.png -------------------------------------------------------------------------------- /opac/webapp/static/img/list.loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/list.loading.gif -------------------------------------------------------------------------------- /opac/webapp/static/img/logo-dimensionsbadge-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/logo-dimensionsbadge-min.jpg -------------------------------------------------------------------------------- /opac/webapp/static/img/logo-plumx-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/logo-plumx-min.jpg -------------------------------------------------------------------------------- /opac/webapp/static/img/logo-scielo-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/logo-scielo-min.jpg -------------------------------------------------------------------------------- /opac/webapp/static/img/logo-scielo-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/logo-scielo-signature.png -------------------------------------------------------------------------------- /opac/webapp/static/img/logo-scielo-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/logo-scielo-svg.svg -------------------------------------------------------------------------------- /opac/webapp/static/img/logo-scielo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/logo-scielo.svg -------------------------------------------------------------------------------- /opac/webapp/static/img/menu.glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/menu.glyphs.png -------------------------------------------------------------------------------- /opac/webapp/static/img/mid.glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/mid.glyphs.png -------------------------------------------------------------------------------- /opac/webapp/static/img/oa_logo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/oa_logo_32.png -------------------------------------------------------------------------------- /opac/webapp/static/img/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/placeholder.jpg -------------------------------------------------------------------------------- /opac/webapp/static/img/readcube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/readcube.png -------------------------------------------------------------------------------- /opac/webapp/static/img/scimago.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/scimago.svg -------------------------------------------------------------------------------- /opac/webapp/static/img/searchForm.selectBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/searchForm.selectBox.png -------------------------------------------------------------------------------- /opac/webapp/static/img/table-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/img/table-thumb.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ZeroClipboard.swf -------------------------------------------------------------------------------- /opac/webapp/static/js/admin/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/admin/common.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/.DS_Store -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/README.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/build-config.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/config.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/contents.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/af.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/az.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/da.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/de.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/el.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/en.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/es-mx.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/es.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/et.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/he.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/id.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/is.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/it.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/km.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/no.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/si.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/th.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/af.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/az.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/en-au.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/es.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/id.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/km.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/si.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/th.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/about/dialogs/about.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/colordialog/dialogs/colordialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/colordialog/dialogs/colordialog.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/colordialog/dialogs/colordialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/colordialog/dialogs/colordialog.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/copyformatting/cursors/cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/copyformatting/cursors/cursor.svg -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/copyformatting/styles/copyformatting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/copyformatting/styles/copyformatting.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/div/dialogs/div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/div/dialogs/div.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/find/dialogs/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/find/dialogs/find.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/flash/dialogs/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/flash/dialogs/flash.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/button.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/checkbox.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/form.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/hiddenfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/hiddenfield.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/radio.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/select.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/textarea.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/dialogs/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/dialogs/textfield.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/iframe/dialogs/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/iframe/dialogs/iframe.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/liststyle/dialogs/liststyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/liststyle/dialogs/liststyle.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/pastefromword/filter/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/pastefromword/filter/default.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/preview/preview.html -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/scayt/CHANGELOG.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/scayt/dialogs/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/scayt/dialogs/dialog.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/scayt/dialogs/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/scayt/dialogs/options.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/scayt/dialogs/toolbar.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/dialogs/smiley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/dialogs/smiley.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/af.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ar.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/az.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/bg.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/da.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/de.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/el.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en-au.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/en.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/es.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/et.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/eu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/gl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/he.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/hu.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/id.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/it.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ja.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/km.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ko.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/lt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/no.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/oc.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/pl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/pt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ro.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ru.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/si.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sl.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sq.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/sv.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/th.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/tt.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/uk.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/vi.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/lang/zh.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/specialchar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/specialchar/dialogs/specialchar.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/tableselection/styles/tableselection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/tableselection/styles/tableselection.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/tabletools/dialogs/tableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/tabletools/dialogs/tableCell.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/templates/dialogs/templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/templates/dialogs/templates.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/templates/dialogs/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/templates/dialogs/templates.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/templates/templates/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/templates/templates/default.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/ciframe.html -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/wsc.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/wsc_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/dialogs/wsc_ie.js -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog_ie.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog_ie8.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/dialog_iequirks.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/editor.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/editor_gecko.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/editor_ie.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/editor_ie8.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/editor_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/editor_iequirks.css -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/skins/moono-lisa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/skins/moono-lisa/readme.md -------------------------------------------------------------------------------- /opac/webapp/static/js/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/ckeditor/styles.js -------------------------------------------------------------------------------- /opac/webapp/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/common.js -------------------------------------------------------------------------------- /opac/webapp/static/js/copyLink.action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/copyLink.action.js -------------------------------------------------------------------------------- /opac/webapp/static/js/journal_lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/journal_lists.js -------------------------------------------------------------------------------- /opac/webapp/static/js/jquery.popupwindows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/jquery.popupwindows.js -------------------------------------------------------------------------------- /opac/webapp/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/main.js -------------------------------------------------------------------------------- /opac/webapp/static/js/modal_forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/modal_forms.js -------------------------------------------------------------------------------- /opac/webapp/static/js/moment-with-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/moment-with-locales.js -------------------------------------------------------------------------------- /opac/webapp/static/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/moment.js -------------------------------------------------------------------------------- /opac/webapp/static/js/moment_locale_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/moment_locale_es.js -------------------------------------------------------------------------------- /opac/webapp/static/js/moment_locale_pt_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/moment_locale_pt_br.js -------------------------------------------------------------------------------- /opac/webapp/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/plugins.js -------------------------------------------------------------------------------- /opac/webapp/static/js/scielo-article-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/scielo-article-min.js -------------------------------------------------------------------------------- /opac/webapp/static/js/scielo-article-standalone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/scielo-article-standalone-min.js -------------------------------------------------------------------------------- /opac/webapp/static/js/scielo-article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/scielo-article.js -------------------------------------------------------------------------------- /opac/webapp/static/js/scielo-bundle-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/scielo-bundle-min.js -------------------------------------------------------------------------------- /opac/webapp/static/js/scienceopen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/scienceopen.js -------------------------------------------------------------------------------- /opac/webapp/static/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/underscore.js -------------------------------------------------------------------------------- /opac/webapp/static/js/vendor/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/vendor/chart.min.js -------------------------------------------------------------------------------- /opac/webapp/static/js/vendor/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/vendor/excanvas.min.js -------------------------------------------------------------------------------- /opac/webapp/static/js/vendor/html5-3.6-respond-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/vendor/html5-3.6-respond-1.1.0.min.js -------------------------------------------------------------------------------- /opac/webapp/static/js/vendor/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/js/vendor/html5shiv.js -------------------------------------------------------------------------------- /opac/webapp/static/less/article.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/article.less -------------------------------------------------------------------------------- /opac/webapp/static/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/bootstrap.less -------------------------------------------------------------------------------- /opac/webapp/static/less/collection.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/collection.less -------------------------------------------------------------------------------- /opac/webapp/static/less/components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/components.less -------------------------------------------------------------------------------- /opac/webapp/static/less/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/global.less -------------------------------------------------------------------------------- /opac/webapp/static/less/journal-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/journal-menu.less -------------------------------------------------------------------------------- /opac/webapp/static/less/journal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/journal.less -------------------------------------------------------------------------------- /opac/webapp/static/less/jquery.typeahead.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/jquery.typeahead.less -------------------------------------------------------------------------------- /opac/webapp/static/less/oldie.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/oldie.less -------------------------------------------------------------------------------- /opac/webapp/static/less/portal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/portal.less -------------------------------------------------------------------------------- /opac/webapp/static/less/responsive-tablet.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/responsive-tablet.less -------------------------------------------------------------------------------- /opac/webapp/static/less/scielo-article-standalone.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/scielo-article-standalone.less -------------------------------------------------------------------------------- /opac/webapp/static/less/scielo-article.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/scielo-article.less -------------------------------------------------------------------------------- /opac/webapp/static/less/scielo-bundle-print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/scielo-bundle-print.less -------------------------------------------------------------------------------- /opac/webapp/static/less/scielo-bundle.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/scielo-bundle.less -------------------------------------------------------------------------------- /opac/webapp/static/less/scielo-glyphs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/scielo-glyphs.less -------------------------------------------------------------------------------- /opac/webapp/static/less/scielo-portal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/scielo-portal.less -------------------------------------------------------------------------------- /opac/webapp/static/less/search-styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/search-styles.less -------------------------------------------------------------------------------- /opac/webapp/static/less/search.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/search.less -------------------------------------------------------------------------------- /opac/webapp/static/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/less/style.less -------------------------------------------------------------------------------- /opac/webapp/static/maps/scielo-article-min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/maps/scielo-article-min.js.map -------------------------------------------------------------------------------- /opac/webapp/static/maps/scielo-article-standalone-min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/maps/scielo-article-standalone-min.js.map -------------------------------------------------------------------------------- /opac/webapp/static/maps/scielo-bundle-min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/maps/scielo-bundle-min.js.map -------------------------------------------------------------------------------- /opac/webapp/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/static/robots.txt -------------------------------------------------------------------------------- /opac/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/tasks.py -------------------------------------------------------------------------------- /opac/webapp/templates/admin/audit_log/fields_data_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/audit_log/fields_data_table.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/auth/login.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/auth/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/auth/reset.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/auth/reset_with_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/auth/reset_with_token.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/auth/unconfirm_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/auth/unconfirm_email.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/email/audit_log_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/email/audit_log_report.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/includes/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/includes/forms.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/index.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/opac_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/opac_base.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/pages/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/pages/add.html -------------------------------------------------------------------------------- /opac/webapp/templates/admin/pages/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/admin/pages/edit.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/detail.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/epdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/epdf.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/export/citation/ris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/export/citation/ris -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/_dont_display_full_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/_dont_display_full_text.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/alternative_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/alternative_header.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/floating_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/floating_menu.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/header.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/levelMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/levelMenu.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/levelMenu_abstracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/levelMenu_abstracts.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/levelMenu_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/levelMenu_pdf.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/levelMenu_texts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/levelMenu_texts.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/meta.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/modal/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/modal/download.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/modal/how_cite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/modal/how_cite.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/modal/related_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/modal/related_article.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/modal/translate_version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/modal/translate_version.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/recent_articles_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/recent_articles_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/article/includes/related-article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/article/includes/related-article.html -------------------------------------------------------------------------------- /opac/webapp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/about.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/header.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/journal_list_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/journal_list_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/levelMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/levelMenu.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/levelMenu_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/levelMenu_search.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/list_journals_search_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/list_journals_search_input.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/list_journals_section_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/list_journals_section_title.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/nav.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/tmpl_journal_list_empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/tmpl_journal_list_empty.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/tmpl_journal_list_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/tmpl_journal_list_error.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/tmpl_journal_list_grouper_table_container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/tmpl_journal_list_grouper_table_container.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/tmpl_journal_list_grouper_table_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/tmpl_journal_list_grouper_table_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/tmpl_journal_list_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/tmpl_journal_list_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/includes/tweet_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/includes/tweet_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/index.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/list_feed_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/list_feed_content.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/list_journal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/list_journal.html -------------------------------------------------------------------------------- /opac/webapp/templates/collection/list_thematic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/collection/list_thematic.html -------------------------------------------------------------------------------- /opac/webapp/templates/email/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/email/activate.html -------------------------------------------------------------------------------- /opac/webapp/templates/email/email_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/email/email_form.html -------------------------------------------------------------------------------- /opac/webapp/templates/email/recover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/email/recover.html -------------------------------------------------------------------------------- /opac/webapp/templates/errors/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/errors/400.html -------------------------------------------------------------------------------- /opac/webapp/templates/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/errors/403.html -------------------------------------------------------------------------------- /opac/webapp/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/errors/404.html -------------------------------------------------------------------------------- /opac/webapp/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/errors/500.html -------------------------------------------------------------------------------- /opac/webapp/templates/errors/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/errors/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/includes/clockss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/includes/clockss.html -------------------------------------------------------------------------------- /opac/webapp/templates/includes/error_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/includes/error_form.html -------------------------------------------------------------------------------- /opac/webapp/templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/includes/footer.html -------------------------------------------------------------------------------- /opac/webapp/templates/includes/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/includes/language.html -------------------------------------------------------------------------------- /opac/webapp/templates/includes/metric_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/includes/metric_modal.html -------------------------------------------------------------------------------- /opac/webapp/templates/includes/page_updated_at_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/includes/page_updated_at_info.html -------------------------------------------------------------------------------- /opac/webapp/templates/issue/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/issue/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/issue/feed_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/issue/feed_content.html -------------------------------------------------------------------------------- /opac/webapp/templates/issue/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/issue/grid.html -------------------------------------------------------------------------------- /opac/webapp/templates/issue/includes/alternative_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/issue/includes/alternative_header.html -------------------------------------------------------------------------------- /opac/webapp/templates/issue/includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/issue/includes/meta.html -------------------------------------------------------------------------------- /opac/webapp/templates/issue/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/issue/toc.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/about.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/detail.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/includes/alternative_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/includes/alternative_header.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/includes/contact_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/includes/contact_footer.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/includes/contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/includes/contact_form.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/includes/header.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/includes/levelMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/includes/levelMenu.html -------------------------------------------------------------------------------- /opac/webapp/templates/journal/includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/journal/includes/meta.html -------------------------------------------------------------------------------- /opac/webapp/templates/macros/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/macros/article.html -------------------------------------------------------------------------------- /opac/webapp/templates/macros/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/macros/collection.html -------------------------------------------------------------------------------- /opac/webapp/templates/macros/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/macros/images.html -------------------------------------------------------------------------------- /opac/webapp/templates/macros/issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/macros/issue.html -------------------------------------------------------------------------------- /opac/webapp/templates/macros/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/macros/menu.html -------------------------------------------------------------------------------- /opac/webapp/templates/news/includes/collection_news_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/news/includes/collection_news_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/news/includes/issue_last_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/news/includes/issue_last_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/news/includes/journal_news_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/news/includes/journal_news_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/press_release/includes/press_releases_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/press_release/includes/press_releases_row.html -------------------------------------------------------------------------------- /opac/webapp/templates/rq_dashboard/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/rq_dashboard/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/rq_dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/rq_dashboard/dashboard.html -------------------------------------------------------------------------------- /opac/webapp/templates/rq_scheduler_dashboard/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/rq_scheduler_dashboard/base.html -------------------------------------------------------------------------------- /opac/webapp/templates/rq_scheduler_dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/templates/rq_scheduler_dashboard/dashboard.html -------------------------------------------------------------------------------- /opac/webapp/translations/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/translations/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /opac/webapp/translations/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/translations/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /opac/webapp/translations/es_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/translations/es_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /opac/webapp/translations/es_MX/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/translations/es_MX/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /opac/webapp/translations/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/translations/messages.pot -------------------------------------------------------------------------------- /opac/webapp/translations/pt_BR.UTF-8/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/translations/pt_BR.UTF-8/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /opac/webapp/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/utils/__init__.py -------------------------------------------------------------------------------- /opac/webapp/utils/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/utils/caching.py -------------------------------------------------------------------------------- /opac/webapp/utils/journal_static_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/utils/journal_static_page.py -------------------------------------------------------------------------------- /opac/webapp/utils/page_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/utils/page_migration.py -------------------------------------------------------------------------------- /opac/webapp/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/opac/webapp/utils/utils.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/package.json -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/setup.py -------------------------------------------------------------------------------- /start_scheduler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/start_scheduler.sh -------------------------------------------------------------------------------- /start_worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scieloorg/opac/HEAD/start_worker.sh --------------------------------------------------------------------------------