Skip to content

Commit 526c6fb

Browse files
committed
Released version 1.0.5
1 parent 65f8532 commit 526c6fb

File tree

545 files changed

+89046
-109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

545 files changed

+89046
-109
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,16 @@ All notable changes to `blogger` will be documented in this file
44

55
## 1.0.0 - 30-12-2019
66

7-
- initial release
7+
- Initial release
88

9-
## 1.0.1 - XX-XX-2020
9+
## 1.0.5 - 19-01-2020
1010

11-
- Updates to comments and tags
12-
- Add facades
11+
- Publishing of views calls silently when setting up
12+
- Publishing of assets - currently dependant on ckeditor
13+
- PostController now have CRUD functionality
14+
15+
### TODO/WIP:
16+
17+
- TagController CRUD
18+
- CategoryController CRUD
19+
- Admin panel

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ allowing both user and public commenting on posts is set here.
178178

179179
You can get setup quickly by using the `blog:setup` Artisan command.
180180
This publishes the routes, controllers and views. Optionally you can seed the
181-
database with `factory()` data by specifying the data `blog:setup --data` option.
181+
database with `factory()` data by specifying the data `--data` option.
182182

183183
```bash
184184
php artisan blog:setup --data

public/ckeditor/CHANGES.md

Lines changed: 1838 additions & 0 deletions
Large diffs are not rendered by default.

public/ckeditor/LICENSE.md

Lines changed: 1421 additions & 0 deletions
Large diffs are not rendered by default.

public/ckeditor/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
CKEditor 4
2+
==========
3+
4+
Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
5+
https://ckeditor.com - See LICENSE.md for license information.
6+
7+
CKEditor 4 is a text editor to be used inside web pages. It's not a replacement
8+
for desktop text editors like Word or OpenOffice, but a component to be used as
9+
part of web applications and websites.
10+
11+
## Documentation
12+
13+
The full editor documentation is available online at the following address:
14+
https://ckeditor.com/docs/
15+
16+
## Installation
17+
18+
Installing CKEditor is an easy task. Just follow these simple steps:
19+
20+
1. **Download** the latest version from the CKEditor website:
21+
https://ckeditor.com. You should have already completed this step, but be
22+
sure you have the very latest version.
23+
2. **Extract** (decompress) the downloaded file into the root of your website.
24+
25+
**Note:** CKEditor is by default installed in the `ckeditor` folder. You can
26+
place the files in whichever you want though.
27+
28+
## Checking Your Installation
29+
30+
The editor comes with a few sample pages that can be used to verify that
31+
installation proceeded properly. Take a look at the `samples` directory.
32+
33+
To test your installation, just call the following page at your website:
34+
35+
http://<your site>/<CKEditor installation path>/samples/index.html
36+
37+
For example:
38+
39+
http://www.example.com/ckeditor/samples/index.html

public/ckeditor/adapters/jquery.js

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/ckeditor/build-config.js

Lines changed: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
/**
2+
* @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
3+
* For licensing, see LICENSE.md or https://ckeditor.com/license
4+
*/
5+
6+
/**
7+
* This file was added automatically by CKEditor builder.
8+
* You may re-use it at any time to build CKEditor again.
9+
*
10+
* If you would like to build CKEditor online again
11+
* (for example to upgrade), visit one the following links:
12+
*
13+
* (1) https://ckeditor.com/cke4/builder
14+
* Visit online builder to build CKEditor from scratch.
15+
*
16+
* (2) https://ckeditor.com/cke4/builder/4e3a4ca28d8cb0c407b480601a63d4b6
17+
* Visit online builder to build CKEditor, starting with the same setup as before.
18+
*
19+
* (3) https://ckeditor.com/cke4/builder/download/4e3a4ca28d8cb0c407b480601a63d4b6
20+
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
21+
*
22+
* NOTE:
23+
* This file is not used by CKEditor, you may remove it.
24+
* Changing this file will not change your CKEditor configuration.
25+
*/
26+
27+
var CKBUILDER_CONFIG = {
28+
skin: 'moono-lisa',
29+
preset: 'full',
30+
ignore: [
31+
'.DS_Store',
32+
'.bender',
33+
'.editorconfig',
34+
'.gitattributes',
35+
'.gitignore',
36+
'.idea',
37+
'.jscsrc',
38+
'.jshintignore',
39+
'.jshintrc',
40+
'.mailmap',
41+
'.npm',
42+
'.travis.yml',
43+
'bender-err.log',
44+
'bender-out.log',
45+
'bender.ci.js',
46+
'bender.js',
47+
'dev',
48+
'gruntfile.js',
49+
'less',
50+
'node_modules',
51+
'package.json',
52+
'tests'
53+
],
54+
plugins : {
55+
'a11yhelp' : 1,
56+
'about' : 1,
57+
'basicstyles' : 1,
58+
'bidi' : 1,
59+
'blockquote' : 1,
60+
'clipboard' : 1,
61+
'colorbutton' : 1,
62+
'colordialog' : 1,
63+
'contextmenu' : 1,
64+
'copyformatting' : 1,
65+
'dialogadvtab' : 1,
66+
'div' : 1,
67+
'elementspath' : 1,
68+
'enterkey' : 1,
69+
'entities' : 1,
70+
'filebrowser' : 1,
71+
'find' : 1,
72+
'flash' : 1,
73+
'floatingspace' : 1,
74+
'font' : 1,
75+
'format' : 1,
76+
'forms' : 1,
77+
'horizontalrule' : 1,
78+
'htmlwriter' : 1,
79+
'iframe' : 1,
80+
'image' : 1,
81+
'indentblock' : 1,
82+
'indentlist' : 1,
83+
'justify' : 1,
84+
'language' : 1,
85+
'link' : 1,
86+
'list' : 1,
87+
'liststyle' : 1,
88+
'magicline' : 1,
89+
'maximize' : 1,
90+
'newpage' : 1,
91+
'pagebreak' : 1,
92+
'pastefromgdocs' : 1,
93+
'pastefromword' : 1,
94+
'pastetext' : 1,
95+
'pastetools' : 1,
96+
'preview' : 1,
97+
'print' : 1,
98+
'removeformat' : 1,
99+
'resize' : 1,
100+
'save' : 1,
101+
'scayt' : 1,
102+
'selectall' : 1,
103+
'showblocks' : 1,
104+
'showborders' : 1,
105+
'smiley' : 1,
106+
'sourcearea' : 1,
107+
'specialchar' : 1,
108+
'stylescombo' : 1,
109+
'tab' : 1,
110+
'table' : 1,
111+
'tableselection' : 1,
112+
'tabletools' : 1,
113+
'templates' : 1,
114+
'toolbar' : 1,
115+
'undo' : 1,
116+
'uploadimage' : 1,
117+
'wsc' : 1,
118+
'wysiwygarea' : 1
119+
},
120+
languages : {
121+
'af' : 1,
122+
'ar' : 1,
123+
'az' : 1,
124+
'bg' : 1,
125+
'bn' : 1,
126+
'bs' : 1,
127+
'ca' : 1,
128+
'cs' : 1,
129+
'cy' : 1,
130+
'da' : 1,
131+
'de' : 1,
132+
'de-ch' : 1,
133+
'el' : 1,
134+
'en' : 1,
135+
'en-au' : 1,
136+
'en-ca' : 1,
137+
'en-gb' : 1,
138+
'eo' : 1,
139+
'es' : 1,
140+
'es-mx' : 1,
141+
'et' : 1,
142+
'eu' : 1,
143+
'fa' : 1,
144+
'fi' : 1,
145+
'fo' : 1,
146+
'fr' : 1,
147+
'fr-ca' : 1,
148+
'gl' : 1,
149+
'gu' : 1,
150+
'he' : 1,
151+
'hi' : 1,
152+
'hr' : 1,
153+
'hu' : 1,
154+
'id' : 1,
155+
'is' : 1,
156+
'it' : 1,
157+
'ja' : 1,
158+
'ka' : 1,
159+
'km' : 1,
160+
'ko' : 1,
161+
'ku' : 1,
162+
'lt' : 1,
163+
'lv' : 1,
164+
'mk' : 1,
165+
'mn' : 1,
166+
'ms' : 1,
167+
'nb' : 1,
168+
'nl' : 1,
169+
'no' : 1,
170+
'oc' : 1,
171+
'pl' : 1,
172+
'pt' : 1,
173+
'pt-br' : 1,
174+
'ro' : 1,
175+
'ru' : 1,
176+
'si' : 1,
177+
'sk' : 1,
178+
'sl' : 1,
179+
'sq' : 1,
180+
'sr' : 1,
181+
'sr-latn' : 1,
182+
'sv' : 1,
183+
'th' : 1,
184+
'tr' : 1,
185+
'tt' : 1,
186+
'ug' : 1,
187+
'uk' : 1,
188+
'vi' : 1,
189+
'zh' : 1,
190+
'zh-cn' : 1
191+
}
192+
};

0 commit comments

Comments
 (0)