├── .gitignore ├── Makefile.PL ├── README ├── app.psgi ├── cpanfile ├── cpanfile.snapshot ├── fastnotes.json ├── lib ├── FastNotes.pm └── FastNotes │ ├── Controller │ ├── Auths.pm │ ├── Notes.pm │ └── Users.pm │ ├── Model.pm │ └── Model │ ├── Base.pm │ ├── Note.pm │ └── User.pm ├── public ├── css │ └── fastnotes.css ├── images │ ├── delete_button.gif │ ├── delete_button_hover.gif │ └── help_icon.gif ├── scripts │ ├── fastnotes.js │ ├── jquery-ui.js │ ├── jquery.js │ └── jquery.rest.js └── ui.theme │ ├── images │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png │ ├── ui-bg_flat_30_cccccc_40x100.png │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ ├── ui-icons_3d3d3d_256x240.png │ ├── ui-icons_bd7b00_256x240.png │ ├── ui-icons_d19405_256x240.png │ ├── ui-icons_eb990f_256x240.png │ ├── ui-icons_ed9f26_256x240.png │ ├── ui-icons_fadc7a_256x240.png │ └── ui-icons_ffe180_256x240.png │ └── jquery-ui.css ├── script └── fastnotes.pl ├── storage └── README ├── t └── basic.t └── templates ├── auths └── create_form.html.ep ├── exception.html.ep ├── help.html.ep ├── layouts └── default.html.ep ├── msg.html.ep ├── not_found.html.ep └── users ├── create_form.html.ep └── show.html.ep /.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | storage 3 | -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/README -------------------------------------------------------------------------------- /app.psgi: -------------------------------------------------------------------------------- 1 | script/fastnotes.pl -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/cpanfile -------------------------------------------------------------------------------- /cpanfile.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/cpanfile.snapshot -------------------------------------------------------------------------------- /fastnotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/fastnotes.json -------------------------------------------------------------------------------- /lib/FastNotes.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes.pm -------------------------------------------------------------------------------- /lib/FastNotes/Controller/Auths.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes/Controller/Auths.pm -------------------------------------------------------------------------------- /lib/FastNotes/Controller/Notes.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes/Controller/Notes.pm -------------------------------------------------------------------------------- /lib/FastNotes/Controller/Users.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes/Controller/Users.pm -------------------------------------------------------------------------------- /lib/FastNotes/Model.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes/Model.pm -------------------------------------------------------------------------------- /lib/FastNotes/Model/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes/Model/Base.pm -------------------------------------------------------------------------------- /lib/FastNotes/Model/Note.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes/Model/Note.pm -------------------------------------------------------------------------------- /lib/FastNotes/Model/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/lib/FastNotes/Model/User.pm -------------------------------------------------------------------------------- /public/css/fastnotes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/css/fastnotes.css -------------------------------------------------------------------------------- /public/images/delete_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/images/delete_button.gif -------------------------------------------------------------------------------- /public/images/delete_button_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/images/delete_button_hover.gif -------------------------------------------------------------------------------- /public/images/help_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/images/help_icon.gif -------------------------------------------------------------------------------- /public/scripts/fastnotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/scripts/fastnotes.js -------------------------------------------------------------------------------- /public/scripts/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/scripts/jquery-ui.js -------------------------------------------------------------------------------- /public/scripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/scripts/jquery.js -------------------------------------------------------------------------------- /public/scripts/jquery.rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/scripts/jquery.rest.js -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_diagonals-medium_20_d34d17_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_diagonals-medium_20_d34d17_40x40.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_gloss-wave_45_817865_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_gloss-wave_45_817865_500x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_gloss-wave_60_fece2f_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_gloss-wave_60_fece2f_500x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_gloss-wave_70_ffdd57_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_gloss-wave_70_ffdd57_500x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_gloss-wave_90_fff9e5_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_gloss-wave_90_fff9e5_500x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_highlight-soft_100_feeebd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_highlight-soft_100_feeebd_1x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-bg_inset-soft_30_ffffff_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-bg_inset-soft_30_ffffff_1x100.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-icons_3d3d3d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-icons_3d3d3d_256x240.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-icons_bd7b00_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-icons_bd7b00_256x240.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-icons_d19405_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-icons_d19405_256x240.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-icons_eb990f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-icons_eb990f_256x240.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-icons_ed9f26_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-icons_ed9f26_256x240.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-icons_fadc7a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-icons_fadc7a_256x240.png -------------------------------------------------------------------------------- /public/ui.theme/images/ui-icons_ffe180_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/images/ui-icons_ffe180_256x240.png -------------------------------------------------------------------------------- /public/ui.theme/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/public/ui.theme/jquery-ui.css -------------------------------------------------------------------------------- /script/fastnotes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/script/fastnotes.pl -------------------------------------------------------------------------------- /storage/README: -------------------------------------------------------------------------------- 1 | default storage path 2 | -------------------------------------------------------------------------------- /t/basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/t/basic.t -------------------------------------------------------------------------------- /templates/auths/create_form.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/auths/create_form.html.ep -------------------------------------------------------------------------------- /templates/exception.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/exception.html.ep -------------------------------------------------------------------------------- /templates/help.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/help.html.ep -------------------------------------------------------------------------------- /templates/layouts/default.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/layouts/default.html.ep -------------------------------------------------------------------------------- /templates/msg.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/msg.html.ep -------------------------------------------------------------------------------- /templates/not_found.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/not_found.html.ep -------------------------------------------------------------------------------- /templates/users/create_form.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/users/create_form.html.ep -------------------------------------------------------------------------------- /templates/users/show.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koorchik/FastNotes-Proto/HEAD/templates/users/show.html.ep --------------------------------------------------------------------------------