Updated copyright

This commit is contained in:
Tobias Reich 2015-02-01 22:08:37 +01:00
parent 7a970a55ed
commit 0630554789
56 changed files with 55 additions and 57 deletions

BIN
dist/main.js vendored

Binary file not shown.

View File

@ -2,7 +2,7 @@
###
# @name Access
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Admin Access
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Guest Access (Public Mode)
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Installation Access
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name API
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
@ini_set('max_execution_time', '200');

View File

@ -2,7 +2,7 @@
###
# @name Autoload
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.1
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
$query = Database::prepare($database, "SELECT `tags` FROM `?` LIMIT 1", array(LYCHEE_TABLE_PHOTOS));

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.1.1
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
$query = Database::prepare($database, "ALTER TABLE `?` CHANGE `value` `value` VARCHAR( 200 ) NULL DEFAULT ''", array(LYCHEE_TABLE_SETTINGS));

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.2
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
$query = Database::prepare($database, "SELECT `visible` FROM `?` LIMIT 1", array(LYCHEE_TABLE_ALBUMS));

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.5
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
# Add `plugins`

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.5.5
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
# Add `checksum`

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.6.1
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
# Add `downloadable`

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.6.2
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
# Add a checksum

View File

@ -2,7 +2,7 @@
###
# @name Update to version 2.6.2
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
# Add medium to photos

View File

@ -2,7 +2,7 @@
###
# @name Define
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
# Define root

View File

@ -2,7 +2,7 @@
###
# @name Album Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Database Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Upload Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Log Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Photo Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Plugins Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Session Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Settings Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -2,7 +2,7 @@
###
# @name Misc Module
# @copyright 2014 by Tobias Reich
# @copyright 2015 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -1,6 +1,6 @@
/**
* @description Takes care of every action an album can handle and execute.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
album = {

View File

@ -1,6 +1,6 @@
/**
* @description Takes care of every action albums can handle and execute.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
albums = {

View File

@ -1,6 +1,6 @@
/**
* @description This module is used to generate HTML-Code.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
window.build = {}

View File

@ -1,6 +1,6 @@
/**
* @description This module is used for the context menu.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
contextMenu = {}

View File

@ -1,6 +1,6 @@
/**
* @description This module takes care of the header.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
header = {

View File

@ -1,6 +1,6 @@
/**
* @description This module is used for bindings.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
$(document).ready(function() {

View File

@ -1,6 +1,6 @@
/**
* @description This module is used to show and hide the loading bar.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
loadingBar = {

View File

@ -1,6 +1,6 @@
/**
* @description This module provides the basic functions of Lychee.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
lychee = {

View File

@ -1,6 +1,6 @@
/**
* @description Select multiple albums or photos.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
multiselect = {}

View File

@ -1,6 +1,6 @@
/**
* @description Controls the access to password-protected albums and photos.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
password = {

View File

@ -1,6 +1,6 @@
/**
* @description Takes care of every action a photo can handle and execute.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
photo = {

View File

@ -1,6 +1,6 @@
/**
* @description Searches through your photos and albums.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
search = {

View File

@ -1,6 +1,6 @@
/**
* @description Lets you change settings.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
settings = {}

View File

@ -1,6 +1,6 @@
/**
* @description Swipes and moves an object.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
swipe = {

View File

@ -1,6 +1,6 @@
/**
* @description Takes care of every action an album can handle and execute.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
upload = {}

View File

@ -1,6 +1,6 @@
/**
* @description Responsible to reflect data changes to the UI.
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
view = {}

View File

@ -1,6 +1,6 @@
/**
* @description Used to view single photos with view.php
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
var header = $('header'),

View File

@ -1,8 +1,6 @@
/**
* @name Visible Module
* @description This module is used to check if elements are visible or not.
* @author Tobias Reich
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
visible = {}

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
/* Animation Setter ------------------------------------------------*/

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
#content {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
/* Context ------------------------------------------------*/

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
/* Functions ------------------------------------------------*/

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
header {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
#imageview {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
#infobox_overlay {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
#loading {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
@media only screen and (max-width: 900px) {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
.basicModalContainer {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
#multiselect {

View File

@ -1,5 +1,5 @@
/**
* @copyright 2014 by Tobias Reich
* @copyright 2015 by Tobias Reich
*/
@import 'etc';