├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── Install_MongoDB.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── addition │ ├── Cargo.toml │ ├── README.md │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ └── src │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs ├── basic │ ├── Cargo.toml │ ├── README.md │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ └── src │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs ├── dates │ ├── Cargo.toml │ ├── README.md │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ └── src │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs ├── dynamic_fields │ ├── Cargo.toml │ ├── README.md │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ └── src │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs ├── files │ ├── Cargo.toml │ ├── README.md │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ ├── resources │ │ ├── .gitkeep │ │ └── media │ │ │ ├── .gitkeep │ │ │ ├── default │ │ │ ├── .gitkeep │ │ │ ├── no_file.odt │ │ │ └── no_image.png │ │ │ ├── readme.txt │ │ │ └── tmp │ │ │ └── .gitkeep │ ├── some_files │ │ ├── .gitkeep │ │ ├── avatar.png │ │ ├── avatar_2.jpg │ │ ├── resume.pdf │ │ └── resume_2.odt │ └── src │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs ├── fixtures │ ├── Cargo.toml │ ├── README.md │ ├── fixtures │ │ ├── .gitkeep │ │ └── cities.json │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ └── src │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs ├── hooks │ ├── Cargo.toml │ ├── README.md │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ └── src │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs ├── indexes │ ├── Cargo.toml │ ├── README.md │ ├── locales │ │ ├── de.yml │ │ ├── en.yml │ │ ├── eo.yml │ │ ├── es.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── ga.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── sl.yml │ │ ├── sv.yml │ │ ├── tr.yml │ │ ├── zh.yml │ │ └── zu.yml │ └── src │ │ ├── indexes.rs │ │ ├── main.rs │ │ ├── migration.rs │ │ ├── models.rs │ │ └── settings.rs └── static_select │ ├── Cargo.toml │ ├── README.md │ ├── locales │ ├── de.yml │ ├── en.yml │ ├── eo.yml │ ├── es.yml │ ├── fi.yml │ ├── fr.yml │ ├── ga.yml │ ├── is.yml │ ├── it.yml │ ├── ja.yml │ ├── pt.yml │ ├── ru.yml │ ├── sl.yml │ ├── sv.yml │ ├── tr.yml │ ├── zh.yml │ └── zu.yml │ └── src │ ├── main.rs │ ├── migration.rs │ ├── models.rs │ └── settings.rs ├── green-barrel ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── locales │ ├── de.yml │ ├── en.yml │ ├── eo.yml │ ├── es.yml │ ├── fi.yml │ ├── fr.yml │ ├── ga.yml │ ├── is.yml │ ├── it.yml │ ├── ja.yml │ ├── pt.yml │ ├── ru.yml │ ├── sl.yml │ ├── sv.yml │ ├── tr.yml │ ├── zh.yml │ └── zu.yml ├── src │ ├── fields.rs │ ├── fields │ │ ├── bool.rs │ │ ├── choice_f64.rs │ │ ├── choice_f64_dyn.rs │ │ ├── choice_f64_mult.rs │ │ ├── choice_f64_mult_dyn.rs │ │ ├── choice_i32.rs │ │ ├── choice_i32_dyn.rs │ │ ├── choice_i32_mult.rs │ │ ├── choice_i32_mult_dyn.rs │ │ ├── choice_i64.rs │ │ ├── choice_i64_dyn.rs │ │ ├── choice_i64_mult.rs │ │ ├── choice_i64_mult_dyn.rs │ │ ├── choice_text.rs │ │ ├── choice_text_dyn.rs │ │ ├── choice_text_mult.rs │ │ ├── choice_text_mult_dyn.rs │ │ ├── choice_u32.rs │ │ ├── choice_u32_dyn.rs │ │ ├── choice_u32_mult.rs │ │ ├── choice_u32_mult_dyn.rs │ │ ├── color.rs │ │ ├── date.rs │ │ ├── date_time.rs │ │ ├── email.rs │ │ ├── file.rs │ │ ├── hash.rs │ │ ├── hidden_date_time.rs │ │ ├── image.rs │ │ ├── ip.rs │ │ ├── number_f64.rs │ │ ├── number_i32.rs │ │ ├── number_i64.rs │ │ ├── number_u32.rs │ │ ├── password.rs │ │ ├── phone.rs │ │ ├── slug.rs │ │ ├── text.rs │ │ └── url.rs │ ├── lib.rs │ ├── migration.rs │ ├── models.rs │ ├── models │ │ ├── addition.rs │ │ ├── caching.rs │ │ ├── control.rs │ │ ├── converters.rs │ │ ├── db_query_api.rs │ │ ├── db_query_api │ │ │ ├── commons.rs │ │ │ └── paladins.rs │ │ ├── fixtures.rs │ │ ├── helpers.rs │ │ ├── hooks.rs │ │ ├── output_data.rs │ │ └── validation.rs │ ├── store.rs │ └── test_tool.rs └── tests │ ├── regex_validate.rs │ └── test_client.rs ├── logo ├── .gitkeep └── logo.svg ├── metamorphose ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── logo │ ├── .gitkeep │ └── logo.svg ├── src │ └── lib.rs └── tests │ └── regex_clear_field_type.rs └── test-drive ├── Cargo.toml ├── fixtures ├── .gitkeep └── test.json ├── locales ├── de.yml ├── en.yml ├── eo.yml ├── es.yml ├── fi.yml ├── fr.yml ├── ga.yml ├── is.yml ├── it.yml ├── ja.yml ├── pt.yml ├── ru.yml ├── sl.yml ├── sv.yml ├── tr.yml ├── zh.yml └── zu.yml ├── resources ├── .gitkeep └── media │ ├── .gitkeep │ ├── default │ ├── .gitkeep │ ├── no_file.odt │ └── no_image.png │ ├── readme.txt │ └── tmp │ └── .gitkeep ├── some_files ├── .gitkeep ├── avatar.png └── resume.pdf ├── src ├── main.rs ├── models.rs └── settings.rs └── tests ├── test_check_full_default.rs ├── test_check_param_required.rs ├── test_client.rs ├── test_error_check_options.rs ├── test_error_save_options.rs ├── test_fixtures.rs ├── test_model_dyn_fields.rs ├── test_model_full_default.rs ├── test_save_and_commons.rs ├── test_save_and_delete.rs ├── test_save_full_default.rs └── test_save_param_required.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Install_MongoDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/Install_MongoDB.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/README.md -------------------------------------------------------------------------------- /examples/addition/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/Cargo.toml -------------------------------------------------------------------------------- /examples/addition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/README.md -------------------------------------------------------------------------------- /examples/addition/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/de.yml -------------------------------------------------------------------------------- /examples/addition/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/en.yml -------------------------------------------------------------------------------- /examples/addition/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/eo.yml -------------------------------------------------------------------------------- /examples/addition/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/es.yml -------------------------------------------------------------------------------- /examples/addition/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/fi.yml -------------------------------------------------------------------------------- /examples/addition/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/fr.yml -------------------------------------------------------------------------------- /examples/addition/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/ga.yml -------------------------------------------------------------------------------- /examples/addition/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/is.yml -------------------------------------------------------------------------------- /examples/addition/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/it.yml -------------------------------------------------------------------------------- /examples/addition/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/ja.yml -------------------------------------------------------------------------------- /examples/addition/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/pt.yml -------------------------------------------------------------------------------- /examples/addition/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/ru.yml -------------------------------------------------------------------------------- /examples/addition/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/sl.yml -------------------------------------------------------------------------------- /examples/addition/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/sv.yml -------------------------------------------------------------------------------- /examples/addition/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/tr.yml -------------------------------------------------------------------------------- /examples/addition/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/zh.yml -------------------------------------------------------------------------------- /examples/addition/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/locales/zu.yml -------------------------------------------------------------------------------- /examples/addition/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/src/main.rs -------------------------------------------------------------------------------- /examples/addition/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/src/migration.rs -------------------------------------------------------------------------------- /examples/addition/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/src/models.rs -------------------------------------------------------------------------------- /examples/addition/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/addition/src/settings.rs -------------------------------------------------------------------------------- /examples/basic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/Cargo.toml -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/de.yml -------------------------------------------------------------------------------- /examples/basic/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/en.yml -------------------------------------------------------------------------------- /examples/basic/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/eo.yml -------------------------------------------------------------------------------- /examples/basic/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/es.yml -------------------------------------------------------------------------------- /examples/basic/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/fi.yml -------------------------------------------------------------------------------- /examples/basic/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/fr.yml -------------------------------------------------------------------------------- /examples/basic/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/ga.yml -------------------------------------------------------------------------------- /examples/basic/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/is.yml -------------------------------------------------------------------------------- /examples/basic/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/it.yml -------------------------------------------------------------------------------- /examples/basic/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/ja.yml -------------------------------------------------------------------------------- /examples/basic/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/pt.yml -------------------------------------------------------------------------------- /examples/basic/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/ru.yml -------------------------------------------------------------------------------- /examples/basic/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/sl.yml -------------------------------------------------------------------------------- /examples/basic/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/sv.yml -------------------------------------------------------------------------------- /examples/basic/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/tr.yml -------------------------------------------------------------------------------- /examples/basic/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/zh.yml -------------------------------------------------------------------------------- /examples/basic/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/locales/zu.yml -------------------------------------------------------------------------------- /examples/basic/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/src/main.rs -------------------------------------------------------------------------------- /examples/basic/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/src/migration.rs -------------------------------------------------------------------------------- /examples/basic/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/src/models.rs -------------------------------------------------------------------------------- /examples/basic/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/basic/src/settings.rs -------------------------------------------------------------------------------- /examples/dates/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/Cargo.toml -------------------------------------------------------------------------------- /examples/dates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/README.md -------------------------------------------------------------------------------- /examples/dates/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/de.yml -------------------------------------------------------------------------------- /examples/dates/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/en.yml -------------------------------------------------------------------------------- /examples/dates/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/eo.yml -------------------------------------------------------------------------------- /examples/dates/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/es.yml -------------------------------------------------------------------------------- /examples/dates/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/fi.yml -------------------------------------------------------------------------------- /examples/dates/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/fr.yml -------------------------------------------------------------------------------- /examples/dates/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/ga.yml -------------------------------------------------------------------------------- /examples/dates/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/is.yml -------------------------------------------------------------------------------- /examples/dates/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/it.yml -------------------------------------------------------------------------------- /examples/dates/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/ja.yml -------------------------------------------------------------------------------- /examples/dates/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/pt.yml -------------------------------------------------------------------------------- /examples/dates/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/ru.yml -------------------------------------------------------------------------------- /examples/dates/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/sl.yml -------------------------------------------------------------------------------- /examples/dates/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/sv.yml -------------------------------------------------------------------------------- /examples/dates/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/tr.yml -------------------------------------------------------------------------------- /examples/dates/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/zh.yml -------------------------------------------------------------------------------- /examples/dates/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/locales/zu.yml -------------------------------------------------------------------------------- /examples/dates/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/src/main.rs -------------------------------------------------------------------------------- /examples/dates/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/src/migration.rs -------------------------------------------------------------------------------- /examples/dates/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/src/models.rs -------------------------------------------------------------------------------- /examples/dates/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dates/src/settings.rs -------------------------------------------------------------------------------- /examples/dynamic_fields/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/Cargo.toml -------------------------------------------------------------------------------- /examples/dynamic_fields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/README.md -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/de.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/en.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/eo.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/es.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/fi.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/fr.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/ga.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/is.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/it.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/ja.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/pt.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/ru.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/sl.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/sv.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/tr.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/zh.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/locales/zu.yml -------------------------------------------------------------------------------- /examples/dynamic_fields/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/src/main.rs -------------------------------------------------------------------------------- /examples/dynamic_fields/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/src/migration.rs -------------------------------------------------------------------------------- /examples/dynamic_fields/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/src/models.rs -------------------------------------------------------------------------------- /examples/dynamic_fields/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/dynamic_fields/src/settings.rs -------------------------------------------------------------------------------- /examples/files/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/Cargo.toml -------------------------------------------------------------------------------- /examples/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/README.md -------------------------------------------------------------------------------- /examples/files/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/de.yml -------------------------------------------------------------------------------- /examples/files/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/en.yml -------------------------------------------------------------------------------- /examples/files/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/eo.yml -------------------------------------------------------------------------------- /examples/files/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/es.yml -------------------------------------------------------------------------------- /examples/files/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/fi.yml -------------------------------------------------------------------------------- /examples/files/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/fr.yml -------------------------------------------------------------------------------- /examples/files/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/ga.yml -------------------------------------------------------------------------------- /examples/files/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/is.yml -------------------------------------------------------------------------------- /examples/files/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/it.yml -------------------------------------------------------------------------------- /examples/files/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/ja.yml -------------------------------------------------------------------------------- /examples/files/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/pt.yml -------------------------------------------------------------------------------- /examples/files/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/ru.yml -------------------------------------------------------------------------------- /examples/files/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/sl.yml -------------------------------------------------------------------------------- /examples/files/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/sv.yml -------------------------------------------------------------------------------- /examples/files/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/tr.yml -------------------------------------------------------------------------------- /examples/files/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/zh.yml -------------------------------------------------------------------------------- /examples/files/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/locales/zu.yml -------------------------------------------------------------------------------- /examples/files/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/files/resources/media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/files/resources/media/default/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/files/resources/media/default/no_file.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/resources/media/default/no_file.odt -------------------------------------------------------------------------------- /examples/files/resources/media/default/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/resources/media/default/no_image.png -------------------------------------------------------------------------------- /examples/files/resources/media/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/resources/media/readme.txt -------------------------------------------------------------------------------- /examples/files/resources/media/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/files/some_files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/files/some_files/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/some_files/avatar.png -------------------------------------------------------------------------------- /examples/files/some_files/avatar_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/some_files/avatar_2.jpg -------------------------------------------------------------------------------- /examples/files/some_files/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/some_files/resume.pdf -------------------------------------------------------------------------------- /examples/files/some_files/resume_2.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/some_files/resume_2.odt -------------------------------------------------------------------------------- /examples/files/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/src/main.rs -------------------------------------------------------------------------------- /examples/files/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/src/migration.rs -------------------------------------------------------------------------------- /examples/files/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/src/models.rs -------------------------------------------------------------------------------- /examples/files/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/files/src/settings.rs -------------------------------------------------------------------------------- /examples/fixtures/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/Cargo.toml -------------------------------------------------------------------------------- /examples/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/README.md -------------------------------------------------------------------------------- /examples/fixtures/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/fixtures/fixtures/cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/fixtures/cities.json -------------------------------------------------------------------------------- /examples/fixtures/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/de.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/en.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/eo.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/es.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/fi.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/fr.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/ga.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/is.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/it.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/ja.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/pt.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/ru.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/sl.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/sv.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/tr.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/zh.yml -------------------------------------------------------------------------------- /examples/fixtures/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/locales/zu.yml -------------------------------------------------------------------------------- /examples/fixtures/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/src/main.rs -------------------------------------------------------------------------------- /examples/fixtures/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/src/migration.rs -------------------------------------------------------------------------------- /examples/fixtures/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/src/models.rs -------------------------------------------------------------------------------- /examples/fixtures/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/fixtures/src/settings.rs -------------------------------------------------------------------------------- /examples/hooks/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/Cargo.toml -------------------------------------------------------------------------------- /examples/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/README.md -------------------------------------------------------------------------------- /examples/hooks/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/de.yml -------------------------------------------------------------------------------- /examples/hooks/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/en.yml -------------------------------------------------------------------------------- /examples/hooks/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/eo.yml -------------------------------------------------------------------------------- /examples/hooks/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/es.yml -------------------------------------------------------------------------------- /examples/hooks/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/fi.yml -------------------------------------------------------------------------------- /examples/hooks/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/fr.yml -------------------------------------------------------------------------------- /examples/hooks/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/ga.yml -------------------------------------------------------------------------------- /examples/hooks/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/is.yml -------------------------------------------------------------------------------- /examples/hooks/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/it.yml -------------------------------------------------------------------------------- /examples/hooks/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/ja.yml -------------------------------------------------------------------------------- /examples/hooks/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/pt.yml -------------------------------------------------------------------------------- /examples/hooks/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/ru.yml -------------------------------------------------------------------------------- /examples/hooks/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/sl.yml -------------------------------------------------------------------------------- /examples/hooks/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/sv.yml -------------------------------------------------------------------------------- /examples/hooks/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/tr.yml -------------------------------------------------------------------------------- /examples/hooks/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/zh.yml -------------------------------------------------------------------------------- /examples/hooks/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/locales/zu.yml -------------------------------------------------------------------------------- /examples/hooks/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/src/main.rs -------------------------------------------------------------------------------- /examples/hooks/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/src/migration.rs -------------------------------------------------------------------------------- /examples/hooks/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/src/models.rs -------------------------------------------------------------------------------- /examples/hooks/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/hooks/src/settings.rs -------------------------------------------------------------------------------- /examples/indexes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/Cargo.toml -------------------------------------------------------------------------------- /examples/indexes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/README.md -------------------------------------------------------------------------------- /examples/indexes/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/de.yml -------------------------------------------------------------------------------- /examples/indexes/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/en.yml -------------------------------------------------------------------------------- /examples/indexes/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/eo.yml -------------------------------------------------------------------------------- /examples/indexes/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/es.yml -------------------------------------------------------------------------------- /examples/indexes/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/fi.yml -------------------------------------------------------------------------------- /examples/indexes/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/fr.yml -------------------------------------------------------------------------------- /examples/indexes/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/ga.yml -------------------------------------------------------------------------------- /examples/indexes/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/is.yml -------------------------------------------------------------------------------- /examples/indexes/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/it.yml -------------------------------------------------------------------------------- /examples/indexes/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/ja.yml -------------------------------------------------------------------------------- /examples/indexes/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/pt.yml -------------------------------------------------------------------------------- /examples/indexes/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/ru.yml -------------------------------------------------------------------------------- /examples/indexes/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/sl.yml -------------------------------------------------------------------------------- /examples/indexes/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/sv.yml -------------------------------------------------------------------------------- /examples/indexes/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/tr.yml -------------------------------------------------------------------------------- /examples/indexes/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/zh.yml -------------------------------------------------------------------------------- /examples/indexes/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/locales/zu.yml -------------------------------------------------------------------------------- /examples/indexes/src/indexes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/src/indexes.rs -------------------------------------------------------------------------------- /examples/indexes/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/src/main.rs -------------------------------------------------------------------------------- /examples/indexes/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/src/migration.rs -------------------------------------------------------------------------------- /examples/indexes/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/src/models.rs -------------------------------------------------------------------------------- /examples/indexes/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/indexes/src/settings.rs -------------------------------------------------------------------------------- /examples/static_select/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/Cargo.toml -------------------------------------------------------------------------------- /examples/static_select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/README.md -------------------------------------------------------------------------------- /examples/static_select/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/de.yml -------------------------------------------------------------------------------- /examples/static_select/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/en.yml -------------------------------------------------------------------------------- /examples/static_select/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/eo.yml -------------------------------------------------------------------------------- /examples/static_select/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/es.yml -------------------------------------------------------------------------------- /examples/static_select/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/fi.yml -------------------------------------------------------------------------------- /examples/static_select/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/fr.yml -------------------------------------------------------------------------------- /examples/static_select/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/ga.yml -------------------------------------------------------------------------------- /examples/static_select/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/is.yml -------------------------------------------------------------------------------- /examples/static_select/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/it.yml -------------------------------------------------------------------------------- /examples/static_select/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/ja.yml -------------------------------------------------------------------------------- /examples/static_select/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/pt.yml -------------------------------------------------------------------------------- /examples/static_select/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/ru.yml -------------------------------------------------------------------------------- /examples/static_select/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/sl.yml -------------------------------------------------------------------------------- /examples/static_select/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/sv.yml -------------------------------------------------------------------------------- /examples/static_select/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/tr.yml -------------------------------------------------------------------------------- /examples/static_select/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/zh.yml -------------------------------------------------------------------------------- /examples/static_select/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/locales/zu.yml -------------------------------------------------------------------------------- /examples/static_select/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/src/main.rs -------------------------------------------------------------------------------- /examples/static_select/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/src/migration.rs -------------------------------------------------------------------------------- /examples/static_select/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/src/models.rs -------------------------------------------------------------------------------- /examples/static_select/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/examples/static_select/src/settings.rs -------------------------------------------------------------------------------- /green-barrel/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/Cargo.toml -------------------------------------------------------------------------------- /green-barrel/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/LICENSE-APACHE -------------------------------------------------------------------------------- /green-barrel/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/LICENSE-MIT -------------------------------------------------------------------------------- /green-barrel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/README.md -------------------------------------------------------------------------------- /green-barrel/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/de.yml -------------------------------------------------------------------------------- /green-barrel/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/en.yml -------------------------------------------------------------------------------- /green-barrel/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/eo.yml -------------------------------------------------------------------------------- /green-barrel/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/es.yml -------------------------------------------------------------------------------- /green-barrel/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/fi.yml -------------------------------------------------------------------------------- /green-barrel/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/fr.yml -------------------------------------------------------------------------------- /green-barrel/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/ga.yml -------------------------------------------------------------------------------- /green-barrel/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/is.yml -------------------------------------------------------------------------------- /green-barrel/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/it.yml -------------------------------------------------------------------------------- /green-barrel/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/ja.yml -------------------------------------------------------------------------------- /green-barrel/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/pt.yml -------------------------------------------------------------------------------- /green-barrel/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/ru.yml -------------------------------------------------------------------------------- /green-barrel/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/sl.yml -------------------------------------------------------------------------------- /green-barrel/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/sv.yml -------------------------------------------------------------------------------- /green-barrel/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/tr.yml -------------------------------------------------------------------------------- /green-barrel/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/zh.yml -------------------------------------------------------------------------------- /green-barrel/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/locales/zu.yml -------------------------------------------------------------------------------- /green-barrel/src/fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/bool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/bool.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_f64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_f64.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_f64_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_f64_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_f64_mult.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_f64_mult.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_f64_mult_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_f64_mult_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i32.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i32_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i32_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i32_mult.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i32_mult.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i32_mult_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i32_mult_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i64.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i64_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i64_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i64_mult.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i64_mult.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_i64_mult_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_i64_mult_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_text.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_text_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_text_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_text_mult.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_text_mult.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_text_mult_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_text_mult_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_u32.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_u32_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_u32_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_u32_mult.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_u32_mult.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/choice_u32_mult_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/choice_u32_mult_dyn.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/color.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/date.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/date_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/date_time.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/email.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/email.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/file.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/hash.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/hidden_date_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/hidden_date_time.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/image.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/ip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/ip.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/number_f64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/number_f64.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/number_i32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/number_i32.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/number_i64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/number_i64.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/number_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/number_u32.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/password.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/password.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/phone.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/phone.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/slug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/slug.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/text.rs -------------------------------------------------------------------------------- /green-barrel/src/fields/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/fields/url.rs -------------------------------------------------------------------------------- /green-barrel/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/lib.rs -------------------------------------------------------------------------------- /green-barrel/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/migration.rs -------------------------------------------------------------------------------- /green-barrel/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models.rs -------------------------------------------------------------------------------- /green-barrel/src/models/addition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/addition.rs -------------------------------------------------------------------------------- /green-barrel/src/models/caching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/caching.rs -------------------------------------------------------------------------------- /green-barrel/src/models/control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/control.rs -------------------------------------------------------------------------------- /green-barrel/src/models/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/converters.rs -------------------------------------------------------------------------------- /green-barrel/src/models/db_query_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/db_query_api.rs -------------------------------------------------------------------------------- /green-barrel/src/models/db_query_api/commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/db_query_api/commons.rs -------------------------------------------------------------------------------- /green-barrel/src/models/db_query_api/paladins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/db_query_api/paladins.rs -------------------------------------------------------------------------------- /green-barrel/src/models/fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/fixtures.rs -------------------------------------------------------------------------------- /green-barrel/src/models/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/helpers.rs -------------------------------------------------------------------------------- /green-barrel/src/models/hooks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/hooks.rs -------------------------------------------------------------------------------- /green-barrel/src/models/output_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/output_data.rs -------------------------------------------------------------------------------- /green-barrel/src/models/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/models/validation.rs -------------------------------------------------------------------------------- /green-barrel/src/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/store.rs -------------------------------------------------------------------------------- /green-barrel/src/test_tool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/src/test_tool.rs -------------------------------------------------------------------------------- /green-barrel/tests/regex_validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/tests/regex_validate.rs -------------------------------------------------------------------------------- /green-barrel/tests/test_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/green-barrel/tests/test_client.rs -------------------------------------------------------------------------------- /logo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/logo/logo.svg -------------------------------------------------------------------------------- /metamorphose/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/metamorphose/Cargo.toml -------------------------------------------------------------------------------- /metamorphose/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/metamorphose/LICENSE-APACHE -------------------------------------------------------------------------------- /metamorphose/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/metamorphose/LICENSE-MIT -------------------------------------------------------------------------------- /metamorphose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/metamorphose/README.md -------------------------------------------------------------------------------- /metamorphose/logo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metamorphose/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/metamorphose/logo/logo.svg -------------------------------------------------------------------------------- /metamorphose/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/metamorphose/src/lib.rs -------------------------------------------------------------------------------- /metamorphose/tests/regex_clear_field_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/metamorphose/tests/regex_clear_field_type.rs -------------------------------------------------------------------------------- /test-drive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/Cargo.toml -------------------------------------------------------------------------------- /test-drive/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-drive/fixtures/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/fixtures/test.json -------------------------------------------------------------------------------- /test-drive/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/de.yml -------------------------------------------------------------------------------- /test-drive/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/en.yml -------------------------------------------------------------------------------- /test-drive/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/eo.yml -------------------------------------------------------------------------------- /test-drive/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/es.yml -------------------------------------------------------------------------------- /test-drive/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/fi.yml -------------------------------------------------------------------------------- /test-drive/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/fr.yml -------------------------------------------------------------------------------- /test-drive/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/ga.yml -------------------------------------------------------------------------------- /test-drive/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/is.yml -------------------------------------------------------------------------------- /test-drive/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/it.yml -------------------------------------------------------------------------------- /test-drive/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/ja.yml -------------------------------------------------------------------------------- /test-drive/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/pt.yml -------------------------------------------------------------------------------- /test-drive/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/ru.yml -------------------------------------------------------------------------------- /test-drive/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/sl.yml -------------------------------------------------------------------------------- /test-drive/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/sv.yml -------------------------------------------------------------------------------- /test-drive/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/tr.yml -------------------------------------------------------------------------------- /test-drive/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/zh.yml -------------------------------------------------------------------------------- /test-drive/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/locales/zu.yml -------------------------------------------------------------------------------- /test-drive/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-drive/resources/media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-drive/resources/media/default/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-drive/resources/media/default/no_file.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/resources/media/default/no_file.odt -------------------------------------------------------------------------------- /test-drive/resources/media/default/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/resources/media/default/no_image.png -------------------------------------------------------------------------------- /test-drive/resources/media/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/resources/media/readme.txt -------------------------------------------------------------------------------- /test-drive/resources/media/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-drive/some_files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-drive/some_files/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/some_files/avatar.png -------------------------------------------------------------------------------- /test-drive/some_files/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/some_files/resume.pdf -------------------------------------------------------------------------------- /test-drive/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/src/main.rs -------------------------------------------------------------------------------- /test-drive/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/src/models.rs -------------------------------------------------------------------------------- /test-drive/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/src/settings.rs -------------------------------------------------------------------------------- /test-drive/tests/test_check_full_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_check_full_default.rs -------------------------------------------------------------------------------- /test-drive/tests/test_check_param_required.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_check_param_required.rs -------------------------------------------------------------------------------- /test-drive/tests/test_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_client.rs -------------------------------------------------------------------------------- /test-drive/tests/test_error_check_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_error_check_options.rs -------------------------------------------------------------------------------- /test-drive/tests/test_error_save_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_error_save_options.rs -------------------------------------------------------------------------------- /test-drive/tests/test_fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_fixtures.rs -------------------------------------------------------------------------------- /test-drive/tests/test_model_dyn_fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_model_dyn_fields.rs -------------------------------------------------------------------------------- /test-drive/tests/test_model_full_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_model_full_default.rs -------------------------------------------------------------------------------- /test-drive/tests/test_save_and_commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_save_and_commons.rs -------------------------------------------------------------------------------- /test-drive/tests/test_save_and_delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_save_and_delete.rs -------------------------------------------------------------------------------- /test-drive/tests/test_save_full_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_save_full_default.rs -------------------------------------------------------------------------------- /test-drive/tests/test_save_param_required.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kebasyaty/green-barrel/HEAD/test-drive/tests/test_save_param_required.rs --------------------------------------------------------------------------------