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 # @name Access
# @copyright 2014 by Tobias Reich # @copyright 2015 by Tobias Reich
### ###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!'); if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

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

View File

@ -2,7 +2,7 @@
### ###
# @name Guest Access (Public Mode) # @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!'); if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@
### ###
# @name Update to version 2.1 # @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)); $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 # @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)); $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 # @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)); $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 # @name Update to version 2.5
# @copyright 2014 by Tobias Reich # @copyright 2015 by Tobias Reich
### ###
# Add `plugins` # Add `plugins`

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@
### ###
# @name Misc Module # @name Misc Module
# @copyright 2014 by Tobias Reich # @copyright 2015 by Tobias Reich
### ###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!'); 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. * @description Takes care of every action an album can handle and execute.
* @copyright 2014 by Tobias Reich * @copyright 2015 by Tobias Reich
*/ */
album = { album = {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
/** /**
* @description Used to view single photos with view.php * @description Used to view single photos with view.php
* @copyright 2014 by Tobias Reich * @copyright 2015 by Tobias Reich
*/ */
var header = $('header'), 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. * @description This module is used to check if elements are visible or not.
* @author Tobias Reich * @copyright 2015 by Tobias Reich
* @copyright 2014 by Tobias Reich
*/ */
visible = {} visible = {}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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