System update

This commit is contained in:
markseu 2017-02-18 16:08:20 +01:00
parent ff2c033f55
commit 3dd68d1008
13 changed files with 21 additions and 37 deletions

View file

@ -1,8 +1,8 @@
<?php <?php
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Commandline plugin, https://github.com/datenstrom/yellow-plugins/tree/master/commandline
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Command line plugin
class YellowCommandline class YellowCommandline
{ {
const VERSION = "0.6.18"; const VERSION = "0.6.18";

View file

@ -1,8 +1,8 @@
<?php <?php
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Core plugin, https://github.com/datenstrom/yellow-plugins/tree/master/core
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Yellow core
class YellowCore class YellowCore
{ {
const VERSION = "0.6.8"; const VERSION = "0.6.8";
@ -384,7 +384,6 @@ class YellowCore
} }
} }
// Yellow page
class YellowPage class YellowPage
{ {
var $yellow; //access to API var $yellow; //access to API
@ -996,7 +995,6 @@ class YellowPage
} }
} }
// Yellow data collection as array
class YellowDataCollection extends ArrayObject class YellowDataCollection extends ArrayObject
{ {
function __construct() function __construct()
@ -1033,7 +1031,6 @@ class YellowDataCollection extends ArrayObject
} }
} }
// Yellow page collection as array
class YellowPageCollection extends ArrayObject class YellowPageCollection extends ArrayObject
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1287,7 +1284,6 @@ class YellowPageCollection extends ArrayObject
} }
} }
// Yellow pages
class YellowPages class YellowPages
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1494,7 +1490,6 @@ class YellowPages
} }
} }
// Yellow files
class YellowFiles class YellowFiles
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1629,7 +1624,6 @@ class YellowFiles
} }
} }
// Yellow plugins
class YellowPlugins class YellowPlugins
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1717,7 +1711,6 @@ class YellowPlugins
} }
} }
// Yellow themes
class YellowThemes class YellowThemes
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1800,7 +1793,6 @@ class YellowThemes
} }
} }
// Yellow configuration
class YellowConfig class YellowConfig
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1924,7 +1916,6 @@ class YellowConfig
} }
} }
// Yellow text strings
class YellowText class YellowText
{ {
var $yellow; //access to API var $yellow; //access to API
@ -2079,7 +2070,6 @@ class YellowText
} }
} }
// Yellow location and file lookup
class YellowLookup class YellowLookup
{ {
var $yellow; //access to API var $yellow; //access to API
@ -2634,7 +2624,6 @@ class YellowLookup
} }
} }
// Yellow toolbox with helpers
class YellowToolbox class YellowToolbox
{ {
// Return server version from current HTTP request // Return server version from current HTTP request

View file

@ -1,8 +1,8 @@
<?php <?php
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Image plugin, https://github.com/datenstrom/yellow-plugins/tree/master/image
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Image plugin
class YellowImage class YellowImage
{ {
const VERSION = "0.6.8"; const VERSION = "0.6.8";

View file

@ -1,8 +1,8 @@
<?php <?php
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Language plugin, https://github.com/datenstrom/yellow-plugins/tree/master/language
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Language plugin
class YellowLanguage class YellowLanguage
{ {
const VERSION = "0.6.14"; const VERSION = "0.6.14";

View file

@ -1,8 +1,8 @@
<?php <?php
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Markdown plugin, https://github.com/datenstrom/yellow-plugins/tree/master/markdown
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Markdown plugin
class YellowMarkdown class YellowMarkdown
{ {
const VERSION = "0.6.5"; const VERSION = "0.6.5";
@ -22,7 +22,6 @@ class YellowMarkdown
} }
} }
// Markdown parser
class YellowMarkdownParser extends MarkdownExtraParser class YellowMarkdownParser extends MarkdownExtraParser
{ {
var $yellow; //access to API var $yellow; //access to API

View file

@ -1,8 +1,8 @@
<?php <?php
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Update plugin, https://github.com/datenstrom/yellow-plugins/tree/master/update
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Update plugin
class YellowUpdate class YellowUpdate
{ {
const VERSION = "0.6.14"; const VERSION = "0.6.14";

View file

@ -1,4 +1,6 @@
/* Yellow web interface 0.6.20 */ /* Webinterface plugin, https://github.com/datenstrom/yellow-plugins/tree/master/webinterface */
/* Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se */
/* This file may be used and distributed under the terms of the public license. */
.yellow-bar { position:relative; overflow:hidden; height:2em; margin-bottom:10px; } .yellow-bar { position:relative; overflow:hidden; height:2em; margin-bottom:10px; }
.yellow-bar-left { display:block; float:left; } .yellow-bar-left { display:block; float:left; }

View file

@ -1,10 +1,9 @@
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Webinterface plugin, https://github.com/datenstrom/yellow-plugins/tree/master/webinterface
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Yellow API
var yellow = var yellow =
{ {
version: "0.6.20",
action: function(action, status, args) { yellow.webinterface.action(action, status, args); }, action: function(action, status, args) { yellow.webinterface.action(action, status, args); },
onLoad: function() { yellow.webinterface.loadInterface(); }, onLoad: function() { yellow.webinterface.loadInterface(); },
onClick: function(e) { yellow.webinterface.hidePanesOnClick(yellow.toolbox.getEventElement(e)); }, onClick: function(e) { yellow.webinterface.hidePanesOnClick(yellow.toolbox.getEventElement(e)); },
@ -13,7 +12,6 @@ var yellow =
onResize: function() { yellow.webinterface.resizePane(yellow.webinterface.paneId, yellow.webinterface.paneAction, yellow.webinterface.paneStatus); } onResize: function() { yellow.webinterface.resizePane(yellow.webinterface.paneId, yellow.webinterface.paneAction, yellow.webinterface.paneStatus); }
}; };
// Yellow web interface
yellow.webinterface = yellow.webinterface =
{ {
paneId: 0, //visible pane ID paneId: 0, //visible pane ID
@ -517,7 +515,6 @@ yellow.webinterface =
} }
}; };
// Yellow toolbox with helpers
yellow.toolbox = yellow.toolbox =
{ {
// Insert element before reference element // Insert element before reference element

View file

@ -1,8 +1,8 @@
<?php <?php
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Webinterface plugin, https://github.com/datenstrom/yellow-plugins/tree/master/webinterface
// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
// Web interface plugin
class YellowWebinterface class YellowWebinterface
{ {
const VERSION = "0.6.20"; const VERSION = "0.6.20";
@ -745,7 +745,6 @@ class YellowWebinterface
} }
} }
// Yellow response
class YellowResponse class YellowResponse
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1071,7 +1070,6 @@ class YellowResponse
} }
} }
// Yellow users
class YellowUsers class YellowUsers
{ {
var $yellow; //access to API var $yellow; //access to API
@ -1324,7 +1322,6 @@ class YellowUsers
} }
} }
// Yellow merge
class YellowMerge class YellowMerge
{ {
var $yellow; //access to API var $yellow; //access to API

View file

@ -1,5 +1,5 @@
/* Flatsite theme, https://github.com/datenstrom/yellow-themes/tree/master/flatsite */ /* Flatsite theme, https://github.com/datenstrom/yellow-themes/tree/master/flatsite */
/* Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se */ /* Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se */
/* This file may be used and distributed under the terms of the public license. */ /* This file may be used and distributed under the terms of the public license. */
html, body, div, form, pre, span, tr, th, td, img { margin:0; padding:0; border:0; vertical-align:baseline; } html, body, div, form, pre, span, tr, th, td, img { margin:0; padding:0; border:0; vertical-align:baseline; }

View file

@ -1,6 +1,6 @@
<?php <?php
// Flatsite theme, https://github.com/datenstrom/yellow-themes/tree/master/flatsite // Flatsite theme, https://github.com/datenstrom/yellow-themes/tree/master/flatsite
// Copyright (c) 2013-2017 Datenstrom, http://datenstrom.se // Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license. // This file may be used and distributed under the terms of the public license.
class YellowThemeFlatsite class YellowThemeFlatsite