├── LICENSE ├── README.rdoc ├── TODO ├── app ├── controllers │ └── pastes_controller.rb ├── helpers │ └── pastes_helper.rb ├── models │ └── paste.rb └── views │ ├── hooks │ └── _redmine_pastebin_all_pastes_link.html.erb │ └── pastes │ ├── _authorship.html.erb │ ├── _sidebar.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb ├── config ├── locales │ ├── bg.yml │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ └── it.yml └── routes.rb ├── db └── migrate │ ├── 001_create_pastes.rb │ ├── 003_rename_paste_timestamps.rb │ ├── 005_add_paste_title.rb │ ├── 006_add_secure_pastes.rb │ └── 007_add_paste_expiration.rb ├── gpl-2.0.txt ├── init.rb ├── lang └── en.yml ├── lib ├── redmine_pastebin │ ├── project_pastes_patch.rb │ ├── user_pastes_patch.rb │ └── view_hooks.rb └── tasks │ └── wipe_expired_pastes.rake └── test ├── fixtures └── pastes.yml ├── functional └── pastes_controller_test.rb ├── test_helper.rb └── unit └── paste_test.rb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/README.rdoc -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/TODO -------------------------------------------------------------------------------- /app/controllers/pastes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/controllers/pastes_controller.rb -------------------------------------------------------------------------------- /app/helpers/pastes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/helpers/pastes_helper.rb -------------------------------------------------------------------------------- /app/models/paste.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/models/paste.rb -------------------------------------------------------------------------------- /app/views/hooks/_redmine_pastebin_all_pastes_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/views/hooks/_redmine_pastebin_all_pastes_link.html.erb -------------------------------------------------------------------------------- /app/views/pastes/_authorship.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/views/pastes/_authorship.html.erb -------------------------------------------------------------------------------- /app/views/pastes/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/views/pastes/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/pastes/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/views/pastes/edit.html.erb -------------------------------------------------------------------------------- /app/views/pastes/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/views/pastes/index.html.erb -------------------------------------------------------------------------------- /app/views/pastes/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/views/pastes/new.html.erb -------------------------------------------------------------------------------- /app/views/pastes/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/app/views/pastes/show.html.erb -------------------------------------------------------------------------------- /config/locales/bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/config/locales/bg.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/001_create_pastes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/db/migrate/001_create_pastes.rb -------------------------------------------------------------------------------- /db/migrate/003_rename_paste_timestamps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/db/migrate/003_rename_paste_timestamps.rb -------------------------------------------------------------------------------- /db/migrate/005_add_paste_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/db/migrate/005_add_paste_title.rb -------------------------------------------------------------------------------- /db/migrate/006_add_secure_pastes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/db/migrate/006_add_secure_pastes.rb -------------------------------------------------------------------------------- /db/migrate/007_add_paste_expiration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/db/migrate/007_add_paste_expiration.rb -------------------------------------------------------------------------------- /gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/gpl-2.0.txt -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/init.rb -------------------------------------------------------------------------------- /lang/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/lang/en.yml -------------------------------------------------------------------------------- /lib/redmine_pastebin/project_pastes_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/lib/redmine_pastebin/project_pastes_patch.rb -------------------------------------------------------------------------------- /lib/redmine_pastebin/user_pastes_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/lib/redmine_pastebin/user_pastes_patch.rb -------------------------------------------------------------------------------- /lib/redmine_pastebin/view_hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/lib/redmine_pastebin/view_hooks.rb -------------------------------------------------------------------------------- /lib/tasks/wipe_expired_pastes.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/lib/tasks/wipe_expired_pastes.rake -------------------------------------------------------------------------------- /test/fixtures/pastes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/test/fixtures/pastes.yml -------------------------------------------------------------------------------- /test/functional/pastes_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/test/functional/pastes_controller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/paste_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/redmine_pastebin/HEAD/test/unit/paste_test.rb --------------------------------------------------------------------------------