├── .gitignore ├── .travis.yml ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── _books ├── 01-tool-reuse-open-contracting.md ├── agriculture.md ├── es │ ├── participatory-budgeting.md │ ├── rainforest-tech-audio-video.md │ ├── rainforest-tech-diy-aerial.md │ ├── rainforest-tech-mobile-phones.md │ ├── rainforest-tech-online-maps.md │ ├── rainforest-tech-participatory-mapping.md │ ├── rainforest-tech-satellite-imagery.md │ └── rainforest-tech.md ├── fr │ ├── rainforest-tech-audio-video.md │ ├── rainforest-tech-diy-aerial.md │ ├── rainforest-tech-mobile-phones.md │ ├── rainforest-tech-online-maps.md │ ├── rainforest-tech-participatory-mapping.md │ ├── rainforest-tech-satellite-imagery.md │ └── rainforest-tech.md ├── humanrights-tech.md ├── id │ ├── rainforest-tech-audio-video.md │ ├── rainforest-tech-diy-aerial.md │ ├── rainforest-tech-mobile-phones.md │ ├── rainforest-tech-online-maps.md │ ├── rainforest-tech-participatory-mapping.md │ ├── rainforest-tech-satellite-imagery.md │ └── rainforest-tech.md ├── investigative-web-research.md ├── legal-empowerment.md ├── messaging-apps.md ├── microtasking.md ├── participatory-budgeting.md ├── pt │ ├── participatory-budgeting.md │ ├── rainforest-tech-audio-video.md │ ├── rainforest-tech-diy-aerial.md │ ├── rainforest-tech-mobile-phones.md │ ├── rainforest-tech-online-mapping.md │ ├── rainforest-tech-participatory-mapping.md │ ├── rainforest-tech-satellite-imagery.md │ └── rainforest-tech.md ├── rainforest-tech-audio-video.md ├── rainforest-tech-diy-aerial.md ├── rainforest-tech-mobile-phones.md ├── rainforest-tech-online-maps.md ├── rainforest-tech-participatory-mapping.md ├── rainforest-tech-satellite-imagery.md ├── rainforest-tech.md ├── satellite-imagery-human-rights.md └── sp │ └── rainforest-tech.md ├── _config.yml ├── _includes ├── analytics.html └── navbar.html ├── _layouts ├── default.html ├── full.html ├── page.html └── rainforest.html ├── deploy-key-library.enc ├── images ├── icons │ ├── about.svg │ ├── challenge.svg │ ├── conclusion.svg │ ├── context.svg │ ├── definition.svg │ ├── examples.svg │ ├── favicon.png │ ├── foreward.svg │ ├── further.svg │ ├── implementation.svg │ ├── introduction.svg │ ├── library.svg │ ├── objectives.svg │ ├── overview.svg │ ├── planning.svg │ ├── procon.svg │ ├── tension.svg │ └── tools.svg ├── license.png └── logos │ ├── amnesty.png │ ├── engineroom-dark.png │ ├── engineroom.png │ ├── godan.svg │ ├── icrc.png │ ├── library-dark.png │ ├── library-light.png │ ├── oak.jpg │ ├── oak.png │ ├── oakfoundation.gif │ ├── osji.jpg │ ├── rfn-dark.svg │ └── rfn.svg ├── index.html ├── media ├── agriculture │ ├── accessibility.png │ ├── agriculture.png │ ├── network.png │ ├── precision.png │ ├── profiling.png │ ├── screenshot.png │ ├── sharing.png │ └── watching.png ├── humanrights-tech │ ├── EngineRoom-Oak-final-pres.pdf │ ├── ToolFunctionalityOverview.pdf │ ├── WorkflowEvaluation.pdf │ ├── listofassets.md │ ├── maria.png │ ├── michael.png │ ├── sarah.png │ ├── tanya.png │ ├── tech-tools-human-rights-final.pdf │ └── valueprioritization.pdf ├── index │ ├── ER_HumanRights.png │ ├── agriculture.png │ ├── audio.svg │ ├── drone.svg │ ├── investigative-web.png │ ├── legal-empowerment.png │ ├── messaging-apps.png │ ├── microtasking.svg │ ├── mobile.svg │ ├── oc-tool-reuse.png │ ├── online.svg │ ├── participatory-budgeting.png │ ├── participatory.svg │ ├── rainforest.svg │ ├── satellite-imagery-human-rights.png │ └── satellite.svg ├── microtasking │ ├── data_formats.png │ ├── gamification.png │ ├── microtasking.png │ └── superusers.png ├── rainforest │ ├── Rainforest-tech-primer.pdf │ ├── audio.svg │ ├── drone.svg │ ├── florestas-tropicais-tecnologia.pdf │ ├── hutan-hujan-teknologi.pdf │ ├── mobile.svg │ ├── online.svg │ ├── participatory.svg │ ├── rainforest.svg │ ├── satellite.svg │ ├── technologie-pour-les-forets-tropicales.pdf │ └── tecnología-para-bosques-tropicales.pdf └── tool-reuse-open-contracting │ └── towerbuilder-2.png ├── script ├── build.sh ├── deploy-gh └── deploy.sh ├── scripts ├── scrollspy.js └── site.js └── styles ├── fonts ├── Baton-Black-Web.eot ├── Baton-Black-Web.woff ├── Baton-BlackItalic-Web.eot ├── Baton-BlackItalic-Web.woff ├── Baton-Bold-Web.eot ├── Baton-Bold-Web.woff ├── Baton-BoldItalic-Web.eot ├── Baton-BoldItalic-Web.woff ├── Baton-Light-Web.eot ├── Baton-Light-Web.woff ├── Baton-LightItalic-Web.eot ├── Baton-LightItalic-Web.woff ├── Baton-Medium-Web.eot ├── Baton-Medium-Web.woff ├── Baton-MediumItalic-Web.eot ├── Baton-MediumItalic-Web.woff ├── Baton-Regular-Web.eot ├── Baton-Regular-Web.woff ├── Baton-RegularItalic-Web.eot └── Baton-RegularItalic-Web.woff ├── layout.scss ├── main.scss ├── page.scss ├── print.scss ├── skeleton ├── base │ ├── _base-styles.scss │ ├── _functions.scss │ ├── _normalize.scss │ ├── _typography.scss │ ├── _utils.scss │ └── _variables.scss ├── modules │ ├── _buttons.scss │ ├── _code.scss │ ├── _forms.scss │ ├── _grid.scss │ ├── _lists.scss │ ├── _media-queries.scss │ ├── _spacing.scss │ └── _tables.scss └── skeleton.scss ├── themes.scss ├── tooltip.scss ├── typography.scss └── variables.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | library.theengineroom.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/README.md -------------------------------------------------------------------------------- /_books/01-tool-reuse-open-contracting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/01-tool-reuse-open-contracting.md -------------------------------------------------------------------------------- /_books/agriculture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/agriculture.md -------------------------------------------------------------------------------- /_books/es/participatory-budgeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/participatory-budgeting.md -------------------------------------------------------------------------------- /_books/es/rainforest-tech-audio-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/rainforest-tech-audio-video.md -------------------------------------------------------------------------------- /_books/es/rainforest-tech-diy-aerial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/rainforest-tech-diy-aerial.md -------------------------------------------------------------------------------- /_books/es/rainforest-tech-mobile-phones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/rainforest-tech-mobile-phones.md -------------------------------------------------------------------------------- /_books/es/rainforest-tech-online-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/rainforest-tech-online-maps.md -------------------------------------------------------------------------------- /_books/es/rainforest-tech-participatory-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/rainforest-tech-participatory-mapping.md -------------------------------------------------------------------------------- /_books/es/rainforest-tech-satellite-imagery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/rainforest-tech-satellite-imagery.md -------------------------------------------------------------------------------- /_books/es/rainforest-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/es/rainforest-tech.md -------------------------------------------------------------------------------- /_books/fr/rainforest-tech-audio-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/fr/rainforest-tech-audio-video.md -------------------------------------------------------------------------------- /_books/fr/rainforest-tech-diy-aerial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/fr/rainforest-tech-diy-aerial.md -------------------------------------------------------------------------------- /_books/fr/rainforest-tech-mobile-phones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/fr/rainforest-tech-mobile-phones.md -------------------------------------------------------------------------------- /_books/fr/rainforest-tech-online-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/fr/rainforest-tech-online-maps.md -------------------------------------------------------------------------------- /_books/fr/rainforest-tech-participatory-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/fr/rainforest-tech-participatory-mapping.md -------------------------------------------------------------------------------- /_books/fr/rainforest-tech-satellite-imagery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/fr/rainforest-tech-satellite-imagery.md -------------------------------------------------------------------------------- /_books/fr/rainforest-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/fr/rainforest-tech.md -------------------------------------------------------------------------------- /_books/humanrights-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/humanrights-tech.md -------------------------------------------------------------------------------- /_books/id/rainforest-tech-audio-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/id/rainforest-tech-audio-video.md -------------------------------------------------------------------------------- /_books/id/rainforest-tech-diy-aerial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/id/rainforest-tech-diy-aerial.md -------------------------------------------------------------------------------- /_books/id/rainforest-tech-mobile-phones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/id/rainforest-tech-mobile-phones.md -------------------------------------------------------------------------------- /_books/id/rainforest-tech-online-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/id/rainforest-tech-online-maps.md -------------------------------------------------------------------------------- /_books/id/rainforest-tech-participatory-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/id/rainforest-tech-participatory-mapping.md -------------------------------------------------------------------------------- /_books/id/rainforest-tech-satellite-imagery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/id/rainforest-tech-satellite-imagery.md -------------------------------------------------------------------------------- /_books/id/rainforest-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/id/rainforest-tech.md -------------------------------------------------------------------------------- /_books/investigative-web-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/investigative-web-research.md -------------------------------------------------------------------------------- /_books/legal-empowerment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/legal-empowerment.md -------------------------------------------------------------------------------- /_books/messaging-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/messaging-apps.md -------------------------------------------------------------------------------- /_books/microtasking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/microtasking.md -------------------------------------------------------------------------------- /_books/participatory-budgeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/participatory-budgeting.md -------------------------------------------------------------------------------- /_books/pt/participatory-budgeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/participatory-budgeting.md -------------------------------------------------------------------------------- /_books/pt/rainforest-tech-audio-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/rainforest-tech-audio-video.md -------------------------------------------------------------------------------- /_books/pt/rainforest-tech-diy-aerial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/rainforest-tech-diy-aerial.md -------------------------------------------------------------------------------- /_books/pt/rainforest-tech-mobile-phones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/rainforest-tech-mobile-phones.md -------------------------------------------------------------------------------- /_books/pt/rainforest-tech-online-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/rainforest-tech-online-mapping.md -------------------------------------------------------------------------------- /_books/pt/rainforest-tech-participatory-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/rainforest-tech-participatory-mapping.md -------------------------------------------------------------------------------- /_books/pt/rainforest-tech-satellite-imagery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/rainforest-tech-satellite-imagery.md -------------------------------------------------------------------------------- /_books/pt/rainforest-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/pt/rainforest-tech.md -------------------------------------------------------------------------------- /_books/rainforest-tech-audio-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/rainforest-tech-audio-video.md -------------------------------------------------------------------------------- /_books/rainforest-tech-diy-aerial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/rainforest-tech-diy-aerial.md -------------------------------------------------------------------------------- /_books/rainforest-tech-mobile-phones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/rainforest-tech-mobile-phones.md -------------------------------------------------------------------------------- /_books/rainforest-tech-online-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/rainforest-tech-online-maps.md -------------------------------------------------------------------------------- /_books/rainforest-tech-participatory-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/rainforest-tech-participatory-mapping.md -------------------------------------------------------------------------------- /_books/rainforest-tech-satellite-imagery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/rainforest-tech-satellite-imagery.md -------------------------------------------------------------------------------- /_books/rainforest-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/rainforest-tech.md -------------------------------------------------------------------------------- /_books/satellite-imagery-human-rights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/satellite-imagery-human-rights.md -------------------------------------------------------------------------------- /_books/sp/rainforest-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_books/sp/rainforest-tech.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_includes/analytics.html -------------------------------------------------------------------------------- /_includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_includes/navbar.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_layouts/full.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/rainforest.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | theme: rainforest 4 | --- 5 | 6 | {{ content }} -------------------------------------------------------------------------------- /deploy-key-library.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/deploy-key-library.enc -------------------------------------------------------------------------------- /images/icons/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/about.svg -------------------------------------------------------------------------------- /images/icons/challenge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/challenge.svg -------------------------------------------------------------------------------- /images/icons/conclusion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/conclusion.svg -------------------------------------------------------------------------------- /images/icons/context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/context.svg -------------------------------------------------------------------------------- /images/icons/definition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/definition.svg -------------------------------------------------------------------------------- /images/icons/examples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/examples.svg -------------------------------------------------------------------------------- /images/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/favicon.png -------------------------------------------------------------------------------- /images/icons/foreward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/foreward.svg -------------------------------------------------------------------------------- /images/icons/further.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/further.svg -------------------------------------------------------------------------------- /images/icons/implementation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/implementation.svg -------------------------------------------------------------------------------- /images/icons/introduction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/introduction.svg -------------------------------------------------------------------------------- /images/icons/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/library.svg -------------------------------------------------------------------------------- /images/icons/objectives.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/objectives.svg -------------------------------------------------------------------------------- /images/icons/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/overview.svg -------------------------------------------------------------------------------- /images/icons/planning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/planning.svg -------------------------------------------------------------------------------- /images/icons/procon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/procon.svg -------------------------------------------------------------------------------- /images/icons/tension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/tension.svg -------------------------------------------------------------------------------- /images/icons/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/icons/tools.svg -------------------------------------------------------------------------------- /images/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/license.png -------------------------------------------------------------------------------- /images/logos/amnesty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/amnesty.png -------------------------------------------------------------------------------- /images/logos/engineroom-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/engineroom-dark.png -------------------------------------------------------------------------------- /images/logos/engineroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/engineroom.png -------------------------------------------------------------------------------- /images/logos/godan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/godan.svg -------------------------------------------------------------------------------- /images/logos/icrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/icrc.png -------------------------------------------------------------------------------- /images/logos/library-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/library-dark.png -------------------------------------------------------------------------------- /images/logos/library-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/library-light.png -------------------------------------------------------------------------------- /images/logos/oak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/oak.jpg -------------------------------------------------------------------------------- /images/logos/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/oak.png -------------------------------------------------------------------------------- /images/logos/oakfoundation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/oakfoundation.gif -------------------------------------------------------------------------------- /images/logos/osji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/osji.jpg -------------------------------------------------------------------------------- /images/logos/rfn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/rfn-dark.svg -------------------------------------------------------------------------------- /images/logos/rfn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/images/logos/rfn.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/index.html -------------------------------------------------------------------------------- /media/agriculture/accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/accessibility.png -------------------------------------------------------------------------------- /media/agriculture/agriculture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/agriculture.png -------------------------------------------------------------------------------- /media/agriculture/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/network.png -------------------------------------------------------------------------------- /media/agriculture/precision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/precision.png -------------------------------------------------------------------------------- /media/agriculture/profiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/profiling.png -------------------------------------------------------------------------------- /media/agriculture/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/screenshot.png -------------------------------------------------------------------------------- /media/agriculture/sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/sharing.png -------------------------------------------------------------------------------- /media/agriculture/watching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/agriculture/watching.png -------------------------------------------------------------------------------- /media/humanrights-tech/EngineRoom-Oak-final-pres.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/EngineRoom-Oak-final-pres.pdf -------------------------------------------------------------------------------- /media/humanrights-tech/ToolFunctionalityOverview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/ToolFunctionalityOverview.pdf -------------------------------------------------------------------------------- /media/humanrights-tech/WorkflowEvaluation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/WorkflowEvaluation.pdf -------------------------------------------------------------------------------- /media/humanrights-tech/listofassets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/listofassets.md -------------------------------------------------------------------------------- /media/humanrights-tech/maria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/maria.png -------------------------------------------------------------------------------- /media/humanrights-tech/michael.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/michael.png -------------------------------------------------------------------------------- /media/humanrights-tech/sarah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/sarah.png -------------------------------------------------------------------------------- /media/humanrights-tech/tanya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/tanya.png -------------------------------------------------------------------------------- /media/humanrights-tech/tech-tools-human-rights-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/tech-tools-human-rights-final.pdf -------------------------------------------------------------------------------- /media/humanrights-tech/valueprioritization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/humanrights-tech/valueprioritization.pdf -------------------------------------------------------------------------------- /media/index/ER_HumanRights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/ER_HumanRights.png -------------------------------------------------------------------------------- /media/index/agriculture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/agriculture.png -------------------------------------------------------------------------------- /media/index/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/audio.svg -------------------------------------------------------------------------------- /media/index/drone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/drone.svg -------------------------------------------------------------------------------- /media/index/investigative-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/investigative-web.png -------------------------------------------------------------------------------- /media/index/legal-empowerment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/legal-empowerment.png -------------------------------------------------------------------------------- /media/index/messaging-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/messaging-apps.png -------------------------------------------------------------------------------- /media/index/microtasking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/microtasking.svg -------------------------------------------------------------------------------- /media/index/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/mobile.svg -------------------------------------------------------------------------------- /media/index/oc-tool-reuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/oc-tool-reuse.png -------------------------------------------------------------------------------- /media/index/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/online.svg -------------------------------------------------------------------------------- /media/index/participatory-budgeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/participatory-budgeting.png -------------------------------------------------------------------------------- /media/index/participatory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/participatory.svg -------------------------------------------------------------------------------- /media/index/rainforest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/rainforest.svg -------------------------------------------------------------------------------- /media/index/satellite-imagery-human-rights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/satellite-imagery-human-rights.png -------------------------------------------------------------------------------- /media/index/satellite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/index/satellite.svg -------------------------------------------------------------------------------- /media/microtasking/data_formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/microtasking/data_formats.png -------------------------------------------------------------------------------- /media/microtasking/gamification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/microtasking/gamification.png -------------------------------------------------------------------------------- /media/microtasking/microtasking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/microtasking/microtasking.png -------------------------------------------------------------------------------- /media/microtasking/superusers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/microtasking/superusers.png -------------------------------------------------------------------------------- /media/rainforest/Rainforest-tech-primer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/Rainforest-tech-primer.pdf -------------------------------------------------------------------------------- /media/rainforest/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/audio.svg -------------------------------------------------------------------------------- /media/rainforest/drone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/drone.svg -------------------------------------------------------------------------------- /media/rainforest/florestas-tropicais-tecnologia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/florestas-tropicais-tecnologia.pdf -------------------------------------------------------------------------------- /media/rainforest/hutan-hujan-teknologi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/hutan-hujan-teknologi.pdf -------------------------------------------------------------------------------- /media/rainforest/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/mobile.svg -------------------------------------------------------------------------------- /media/rainforest/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/online.svg -------------------------------------------------------------------------------- /media/rainforest/participatory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/participatory.svg -------------------------------------------------------------------------------- /media/rainforest/rainforest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/rainforest.svg -------------------------------------------------------------------------------- /media/rainforest/satellite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/satellite.svg -------------------------------------------------------------------------------- /media/rainforest/technologie-pour-les-forets-tropicales.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/technologie-pour-les-forets-tropicales.pdf -------------------------------------------------------------------------------- /media/rainforest/tecnología-para-bosques-tropicales.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/rainforest/tecnología-para-bosques-tropicales.pdf -------------------------------------------------------------------------------- /media/tool-reuse-open-contracting/towerbuilder-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/media/tool-reuse-open-contracting/towerbuilder-2.png -------------------------------------------------------------------------------- /script/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/script/build.sh -------------------------------------------------------------------------------- /script/deploy-gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/script/deploy-gh -------------------------------------------------------------------------------- /script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/script/deploy.sh -------------------------------------------------------------------------------- /scripts/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/scripts/scrollspy.js -------------------------------------------------------------------------------- /scripts/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/scripts/site.js -------------------------------------------------------------------------------- /styles/fonts/Baton-Black-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Black-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-Black-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Black-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-BlackItalic-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-BlackItalic-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-BlackItalic-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-BlackItalic-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-Bold-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Bold-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-Bold-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Bold-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-BoldItalic-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-BoldItalic-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-BoldItalic-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-BoldItalic-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-Light-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Light-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-Light-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Light-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-LightItalic-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-LightItalic-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-LightItalic-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-LightItalic-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-Medium-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Medium-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-Medium-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Medium-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-MediumItalic-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-MediumItalic-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-MediumItalic-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-MediumItalic-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-Regular-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Regular-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-Regular-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-Regular-Web.woff -------------------------------------------------------------------------------- /styles/fonts/Baton-RegularItalic-Web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-RegularItalic-Web.eot -------------------------------------------------------------------------------- /styles/fonts/Baton-RegularItalic-Web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/fonts/Baton-RegularItalic-Web.woff -------------------------------------------------------------------------------- /styles/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/layout.scss -------------------------------------------------------------------------------- /styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/main.scss -------------------------------------------------------------------------------- /styles/page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/page.scss -------------------------------------------------------------------------------- /styles/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/print.scss -------------------------------------------------------------------------------- /styles/skeleton/base/_base-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/base/_base-styles.scss -------------------------------------------------------------------------------- /styles/skeleton/base/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/base/_functions.scss -------------------------------------------------------------------------------- /styles/skeleton/base/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/base/_normalize.scss -------------------------------------------------------------------------------- /styles/skeleton/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/base/_typography.scss -------------------------------------------------------------------------------- /styles/skeleton/base/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/base/_utils.scss -------------------------------------------------------------------------------- /styles/skeleton/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/base/_variables.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_buttons.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_code.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_forms.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_grid.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_lists.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_media-queries.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_spacing.scss -------------------------------------------------------------------------------- /styles/skeleton/modules/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/modules/_tables.scss -------------------------------------------------------------------------------- /styles/skeleton/skeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/skeleton/skeleton.scss -------------------------------------------------------------------------------- /styles/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/themes.scss -------------------------------------------------------------------------------- /styles/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/tooltip.scss -------------------------------------------------------------------------------- /styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/typography.scss -------------------------------------------------------------------------------- /styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-engine-room/library/HEAD/styles/variables.scss --------------------------------------------------------------------------------