├── .gitattributes ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── commands │ └── .gitkeep ├── common.php ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── mail.php │ ├── production │ │ └── database.php │ ├── queue.php │ ├── remote.php │ ├── session.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── .gitkeep │ ├── HomeController.php │ └── backend │ │ ├── AuthController.php │ │ ├── BaseController.php │ │ ├── CategoryController.php │ │ ├── CommentController.php │ │ ├── HomeController.php │ │ ├── LinkController.php │ │ ├── PostController.php │ │ ├── SystemController.php │ │ └── UserController.php ├── database │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_02_18_142111_create_users.php │ │ ├── 2014_02_18_142133_create_posts.php │ │ ├── 2014_02_18_142142_create_links.php │ │ ├── 2014_02_18_142151_create_comments.php │ │ ├── 2014_02_18_142223_create_options.php │ │ ├── 2014_02_18_142241_create_categories.php │ │ ├── 2014_02_18_142305_create_term_relationships.php │ │ ├── 2014_02_18_142341_create_usermeta.php │ │ ├── 2014_02_18_143404_create_commentmeta.php │ │ ├── 2014_02_18_143404_create_postmeta.php │ │ └── 2014_02_22_084919_create_password_reminders_table.php │ ├── production.sqlite │ └── seeds │ │ ├── .gitkeep │ │ ├── DatabaseSeeder.php │ │ └── UserTableSeeder.php ├── errors.php ├── filters.php ├── lang │ ├── cn │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── library │ └── Tree.php ├── listener.php ├── models │ ├── Category.php │ ├── Comment.php │ ├── Commentmeta.php │ ├── Link.php │ ├── Option.php │ ├── Post.php │ ├── Postmeta.php │ ├── TermRelation.php │ ├── User.php │ └── Usermeta.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── tests │ ├── ExampleTest.php │ └── TestCase.php └── views │ ├── 404.blade.php │ ├── 500.blade.php │ ├── backend │ ├── layout.blade.php │ └── pages │ │ ├── category-all.blade.php │ │ ├── category-edit.blade.php │ │ ├── comment-all.blade.php │ │ ├── home.blade.php │ │ ├── link-all.blade.php │ │ ├── login.blade.php │ │ ├── post-all.blade.php │ │ ├── post-edit.blade.php │ │ ├── post-new.blade.php │ │ ├── remind.blade.php │ │ ├── system-basic.blade.php │ │ ├── user-all.blade.php │ │ └── user-new.blade.php │ ├── emails │ └── auth │ │ └── reminder.blade.php │ └── index.blade.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── phpunit.xml ├── public ├── .htaccess ├── backend │ ├── css │ │ ├── bootstrap.min.css │ │ ├── core.css │ │ ├── custom.css │ │ ├── editor.css │ │ ├── font-icons │ │ │ ├── entypo │ │ │ │ ├── css │ │ │ │ │ └── entypo.css │ │ │ │ └── font │ │ │ │ │ ├── entypo.eot │ │ │ │ │ ├── entypo.svg │ │ │ │ │ ├── entypo.ttf │ │ │ │ │ └── entypo.woff │ │ │ └── font-awesome │ │ │ │ └── css │ │ │ │ └── font-awesome.min.css │ │ ├── forms.css │ │ ├── markdown.css │ │ ├── prettify-github-theme.css │ │ └── prettify.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── icomoon.dev.svg │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── images │ │ ├── colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── loader-1.gif │ │ ├── loader-2.gif │ │ └── notes-lines.png │ └── js │ │ ├── admin-common.js │ │ ├── api.js │ │ ├── bootstrap-datepicker.js │ │ ├── bootstrap-tagsinput.min.js │ │ ├── bootstrap-timepicker.min.js │ │ ├── bootstrap.js │ │ ├── cookies.min.js │ │ ├── daterangepicker │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ └── moment.min.js │ │ ├── editor.js │ │ ├── forgotpassword.js │ │ ├── gsap │ │ └── main-gsap.js │ │ ├── joinable.js │ │ ├── jquery-1.11.0.min.js │ │ ├── jquery-ui │ │ ├── css │ │ │ └── no-theme │ │ │ │ └── jquery-ui-1.10.3.custom.min.css │ │ └── js │ │ │ └── jquery-ui-1.10.3.minimal.min.js │ │ ├── jquery.peity.min.js │ │ ├── jquery.validate.min.js │ │ ├── login.js │ │ ├── mail.js │ │ ├── marked.js │ │ ├── morris.min.js │ │ ├── post.js │ │ ├── prettify.js │ │ ├── register.js │ │ ├── resizeable.js │ │ └── selectboxit │ │ ├── jquery.selectBoxIt.css │ │ └── jquery.selectBoxIt.min.js ├── favicon.ico ├── frontend │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── landing-page.css │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── banner-bg.jpg │ │ ├── doge.png │ │ ├── intro-bg.jpg │ │ ├── ipad.png │ │ ├── laravel.jpg │ │ ├── markdown.jpg │ │ ├── markdown.png │ │ ├── multi-user.jpg │ │ ├── multi-user.png │ │ ├── phones.png │ │ └── wkaliedit.dmg │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery-1.10.2.js ├── index.php ├── packages │ └── .gitkeep └── robots.txt ├── server.php └── test.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/writor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/writor/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/writor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/writor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/writor/HEAD/README.md -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/common.php: -------------------------------------------------------------------------------- 1 |