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
// 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.
// Command line plugin
class YellowCommandline
{
const VERSION = "0.6.18";

View file

@ -1,8 +1,8 @@
<?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.
// Yellow core
class YellowCore
{
const VERSION = "0.6.8";
@ -384,7 +384,6 @@ class YellowCore
}
}
// Yellow page
class YellowPage
{
var $yellow; //access to API
@ -996,7 +995,6 @@ class YellowPage
}
}
// Yellow data collection as array
class YellowDataCollection extends ArrayObject
{
function __construct()
@ -1033,7 +1031,6 @@ class YellowDataCollection extends ArrayObject
}
}
// Yellow page collection as array
class YellowPageCollection extends ArrayObject
{
var $yellow; //access to API
@ -1287,7 +1284,6 @@ class YellowPageCollection extends ArrayObject
}
}
// Yellow pages
class YellowPages
{
var $yellow; //access to API
@ -1494,7 +1490,6 @@ class YellowPages
}
}
// Yellow files
class YellowFiles
{
var $yellow; //access to API
@ -1629,7 +1624,6 @@ class YellowFiles
}
}
// Yellow plugins
class YellowPlugins
{
var $yellow; //access to API
@ -1717,7 +1711,6 @@ class YellowPlugins
}
}
// Yellow themes
class YellowThemes
{
var $yellow; //access to API
@ -1800,7 +1793,6 @@ class YellowThemes
}
}
// Yellow configuration
class YellowConfig
{
var $yellow; //access to API
@ -1924,7 +1916,6 @@ class YellowConfig
}
}
// Yellow text strings
class YellowText
{
var $yellow; //access to API
@ -2079,7 +2070,6 @@ class YellowText
}
}
// Yellow location and file lookup
class YellowLookup
{
var $yellow; //access to API
@ -2634,7 +2624,6 @@ class YellowLookup
}
}
// Yellow toolbox with helpers
class YellowToolbox
{
// Return server version from current HTTP request

View file

@ -1,8 +1,8 @@
<?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.
// Image plugin
class YellowImage
{
const VERSION = "0.6.8";

View file

@ -1,8 +1,8 @@
<?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.
// Language plugin
class YellowLanguage
{
const VERSION = "0.6.14";

View file

@ -1,8 +1,8 @@
<?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.
// Markdown plugin
class YellowMarkdown
{
const VERSION = "0.6.5";
@ -22,7 +22,6 @@ class YellowMarkdown
}
}
// Markdown parser
class YellowMarkdownParser extends MarkdownExtraParser
{
var $yellow; //access to API

View file

@ -1,8 +1,8 @@
<?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.
// Update plugin
class YellowUpdate
{
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-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.
// Yellow API
var yellow =
{
version: "0.6.20",
action: function(action, status, args) { yellow.webinterface.action(action, status, args); },
onLoad: function() { yellow.webinterface.loadInterface(); },
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); }
};
// Yellow web interface
yellow.webinterface =
{
paneId: 0, //visible pane ID
@ -517,7 +515,6 @@ yellow.webinterface =
}
};
// Yellow toolbox with helpers
yellow.toolbox =
{
// Insert element before reference element

View file

@ -1,8 +1,8 @@
<?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.
// Web interface plugin
class YellowWebinterface
{
const VERSION = "0.6.20";
@ -745,7 +745,6 @@ class YellowWebinterface
}
}
// Yellow response
class YellowResponse
{
var $yellow; //access to API
@ -1071,7 +1070,6 @@ class YellowResponse
}
}
// Yellow users
class YellowUsers
{
var $yellow; //access to API
@ -1324,7 +1322,6 @@ class YellowUsers
}
}
// Yellow merge
class YellowMerge
{
var $yellow; //access to API

View file

@ -1,5 +1,5 @@
/* 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. */
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
// 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.
class YellowThemeFlatsite