Skip to content

Commit

Permalink
Merge branch 'release/0.9.34'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Aug 4, 2015
2 parents 6d5bb6f + aa7a411 commit c6ea5eb
Show file tree
Hide file tree
Showing 39 changed files with 1,291 additions and 438 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# v0.9.34
## 08/04/2015

1. [](#new)
* Added new `cache_all` system setting + media `cache()` method
* Added base languages configuration
* Added property language to page to help plugins identify page language
* New `Utils::arrayFilterRecursive()` method
2. [](#improved)
* Improved Session handling to support site and admin independently
* Allow Twig variables to be modified in other events
* Blueprint updates in preparation for Admin plugin
* Changed `Inflector` from static to object and added multi-language support
* Support for admin override of a page's blueprints
3. [](#bugfix)
* Removed unused `use` in `VideoMedium` that was causing error
* Array fix in `User.authorise()` method
* Fix for typo in `translations_fallback`
* Fixed moving page to the root

# v0.9.33
## 07/21/2015

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"php": ">=5.4.0",
"twig/twig": "~1.16",
"erusev/parsedown-extra": "~0.7",
"symfony/yaml": "2.7.*",
"symfony/console": "2.7.*",
"symfony/event-dispatcher": "2.7.*",
"symfony/yaml": "2.7.3",
"symfony/console": "2.7.3",
"symfony/event-dispatcher": "2.7.3",
"doctrine/cache": "~1.4",
"maximebf/debugbar": "dev-master",
"filp/whoops": "1.2.*@dev",
Expand Down
73 changes: 57 additions & 16 deletions system/blueprints/config/site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,60 +13,101 @@ form:
label: Site Title
size: large
placeholder: "Site wide title"
help: Default title for your site
help: "Default title for your site, often used in themes"

author.name:
type: text
size: large
label: Default Author
help: "A default author name, often used in themes or page content"

author.email:
type: text
size: large
label: Default Email
help: "A default email to reference in themes or pages"
validate:
type: email

taxonomies:
type: text
type: selectize
size: large
label: Taxonomy Types
classes: fancy
help: "Taxonomy types must be defined here if you wish to use them in pages"
validate:
type: commalist

metadata:
type: array
label: Metadata
placeholder_key: Name
placeholder_value: Content

blog:
summary:
type: section
title: Blog
title: Page Summary

fields:
blog.route:
type: text
size: large
label: Blog URL
summary.enabled:
type: toggle
label: Enabled
highlight: 1
help: "Enable page summary (the summary returns the same as the page content)"
options:
1: Yes
0: No
validate:
type: bool

summary.size:
type: text
size: x-small
label: Summary Size
help: "The amount of characters of a page to use as a content summary"
validate:
type: int
min: 0
max: 65536

summary.format:
type: toggle
label: Format
classes: fancy
help: "short = use the first occurrence of delimiter or size; long = summary delimiter will be ignored"
highlight: short
options:
'short': 'Short'
'long': 'Long'

summary.delimiter:
type: text
size: x-small
label: Delimiter
help: "The summary delimiter (default '===')"

metadata:
type: section
title: Metadata

fields:
metadata:
type: array
label: Metadata
help: "Default metadata values that will be displayed on every page unless overridden by the page"
placeholder_key: Name
placeholder_value: Content


routes:
type: section
title: Routes
title: Redirects & Routes

fields:
redirects:
type: array
label: Custom Redirects
help: "routes to redirect to other pages. Standard Regex replacement is valid"
placeholder_key: /your/alias
placeholder_value: /your/redirect

routes:
type: array
label: Custom
label: Custom Routes
help: "routes to alias to other pages. Standard Regex replacement is valid"
placeholder_key: /your/alias
placeholder_value: /your/route
Loading

0 comments on commit c6ea5eb

Please sign in to comment.