Core update (peppermint remix)

This commit is contained in:
markseu 2014-06-01 23:27:05 +02:00
parent 352d232b8f
commit 331d8f1eaf
10 changed files with 11 additions and 20 deletions

View file

@ -1,9 +1,8 @@
Yellow
======
Yellow is for people who make websites.
Yellow 0.3.1
============
Yellow is for people who make websites.
[![Build Status](https://travis-ci.org/markseu/yellowcms.svg)](https://travis-ci.org/markseu/yellowcms)
[![Online demo](https://github.com/markseu/yellowcms-extensions/blob/master/documentation/yellowdemo.png?raw=true)](http://demo.datenstrom.se/)
[![Build Status](https://travis-ci.org/markseu/yellowcms.svg)](https://travis-ci.org/markseu/yellowcms) [![Online demo](https://github.com/markseu/yellowcms-extensions/blob/master/documentation/yellowdemo.png?raw=true)](http://demo.datenstrom.se/)
How do I install this?
----------------------

View file

@ -1,4 +1,4 @@
/* Yellow default style 0.1.5 */
/* Yellow default style 0.3.1 */
html, body, div, form, pre, span, tr, th, td { margin:0; padding:0; border:0; vertical-align:baseline; }
body {

View file

@ -1,5 +1,4 @@
// Yellow site configuration
// All locations and directories have to end with a slash
sitename = Yellow
author = Yellow

View file

@ -1,5 +1,4 @@
// Yellow text strings
// Format: key = text string
language = en
languageDescription = English

View file

@ -5,7 +5,7 @@
// Command line core plugin
class YellowCommandline
{
const Version = "0.2.9";
const Version = "0.3.1";
var $yellow; //access to API
var $content; //number of content pages
var $media; //number of media files

View file

@ -5,7 +5,7 @@
// Markdown extra core plugin
class YellowMarkdownExtra
{
const Version = "0.2.11";
const Version = "0.3.1";
var $yellow; //access to API
// Handle plugin initialisation

View file

@ -1,4 +1,4 @@
/* Yellow web interface 0.2.3 */
/* Yellow web interface 0.3.1 */
.yellow-bar { position:relative; overflow:hidden; line-height:2.0em; }
.yellow-bar-left { display:block; float:left; }

View file

@ -4,7 +4,7 @@
// Yellow main API
var yellow =
{
version: "0.2.5",
version: "0.3.1",
onClick: function(e) { yellow.webinterface.hidePanesOnClick(yellow.toolbox.getEventElement(e)); },
onKeydown: function(e) { yellow.webinterface.hidePanesOnKeydown(yellow.toolbox.getEventKeycode(e)); },
onResize: function() { yellow.webinterface.resizePanes(); },

View file

@ -5,7 +5,7 @@
// Web interface core plugin
class YellowWebinterface
{
const Version = "0.2.11";
const Version = "0.3.1";
var $yellow; //access to API
var $users; //web interface users
var $active; //web interface is active? (boolean)

View file

@ -5,7 +5,7 @@
// Yellow main class
class Yellow
{
const Version = "0.2.22";
const Version = "0.3.1";
var $page; //current page
var $pages; //pages from file system
var $config; //configuration
@ -300,12 +300,6 @@ class Yellow
return $this->pages->snippetArgs;
}
// Return page extra header, OBSOLETE WILL BE REMOVED
function getHeaderExtra()
{
return $this->page->getHeaderExtra();
}
// Execute plugin command
function plugin($name, $args = NULL)
{