├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── adm └── .gitkeep ├── command.php ├── config.php ├── ctxmenu.php ├── doc ├── history.txt ├── install.txt └── troubleshooting.txt ├── favicon.php ├── feed.php ├── go.php ├── google.php ├── iframe.php ├── inc ├── .htaccess ├── command │ ├── base.inc.php │ ├── getswitch.sh │ ├── switch.inc.php │ ├── worker_auth.inc.php │ ├── worker_bookmark.inc.php │ ├── worker_folder.inc.php │ ├── worker_messenger.inc.php │ └── worker_other.inc.php ├── converter.inc.php ├── database.inc.php ├── errorhandler.inc.php ├── faviconcache.inc.php ├── loader.inc.php ├── loaders │ ├── atom.inc.php │ ├── netscape.inc.php │ ├── opera.inc.php │ ├── opml_link.inc.php │ ├── opml_rss.inc.php │ ├── rdf.inc.php │ ├── rss.inc.php │ └── xbel.inc.php ├── localizer.inc.php ├── message.inc.php.template ├── page.inc.php ├── pageparser.inc.php ├── sponsor.inc.php.template ├── token.inc.php ├── tree.inc.php ├── usermanager.inc.php ├── validator.inc.php ├── writer.inc.php └── writers │ ├── atom.inc.php │ ├── blogroll.inc.php │ ├── dir.inc.php │ ├── firefox.inc.php │ ├── mobile.inc.php │ ├── msie.inc.php │ ├── netscape.inc.php │ ├── news.inc.php │ ├── opera.inc.php │ ├── opml_link.inc.php │ ├── opml_rss.inc.php │ ├── phplm.inc.php │ ├── rdf.inc.php │ ├── rss.inc.php │ ├── search.inc.php │ ├── sitebar.inc.php │ ├── sitebar_ajax.inc.php │ ├── sitebar_emb.inc.php │ ├── sitebar_plain.inc.php │ ├── weblinks.inc.php │ ├── xbel.inc.php │ ├── xbel_mozilla.inc.php │ └── xbel_std.inc.php ├── index.php ├── integrator.php ├── js └── sitebar.js ├── lib ├── composer.json ├── composer.lock ├── vendor │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ └── tracy │ │ └── tracy │ │ ├── appveyor.yml │ │ ├── composer.json │ │ ├── contributing.md │ │ ├── examples │ │ ├── ajax.php │ │ ├── assets │ │ │ ├── arrow.png │ │ │ └── style.css │ │ ├── barDump.php │ │ ├── dump.php │ │ ├── exception.php │ │ ├── fatal-error.php │ │ ├── firelogger.php │ │ ├── notice.php │ │ ├── output-debugger.php │ │ ├── redirect.php │ │ └── warning.php │ │ ├── license.md │ │ ├── readme.md │ │ ├── src │ │ ├── Bridges │ │ │ └── Nette │ │ │ │ └── TracyExtension.php │ │ ├── Tracy │ │ │ ├── Bar.php │ │ │ ├── BlueScreen.php │ │ │ ├── Debugger.php │ │ │ ├── DefaultBarPanel.php │ │ │ ├── Dumper.php │ │ │ ├── FireLogger.php │ │ │ ├── Helpers.php │ │ │ ├── IBarPanel.php │ │ │ ├── ILogger.php │ │ │ ├── Logger.php │ │ │ ├── OutputDebugger.php │ │ │ └── assets │ │ │ │ ├── Bar │ │ │ │ ├── bar.css │ │ │ │ ├── bar.js │ │ │ │ ├── bar.phtml │ │ │ │ ├── dumps.panel.phtml │ │ │ │ ├── dumps.tab.phtml │ │ │ │ ├── errors.panel.phtml │ │ │ │ ├── errors.tab.phtml │ │ │ │ ├── info.panel.phtml │ │ │ │ ├── info.tab.phtml │ │ │ │ ├── loader.phtml │ │ │ │ └── panels.phtml │ │ │ │ ├── BlueScreen │ │ │ │ ├── bluescreen.css │ │ │ │ ├── bluescreen.js │ │ │ │ ├── content.phtml │ │ │ │ └── page.phtml │ │ │ │ ├── Debugger │ │ │ │ └── error.500.phtml │ │ │ │ ├── Dumper │ │ │ │ ├── dumper.css │ │ │ │ └── dumper.js │ │ │ │ └── Toggle │ │ │ │ ├── toggle.css │ │ │ │ └── toggle.js │ │ ├── shortcuts.php │ │ └── tracy.php │ │ └── tools │ │ ├── create-phar │ │ └── create-phar.php │ │ └── open-in-editor │ │ ├── install.cmd │ │ └── open-editor.js └── zip.lib.php ├── locale ├── bg_BG │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── ca_ES │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── cs_CZ │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── da_DK │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── de_DE │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── el_GR │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── en_US │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── es_ES │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── fi_FI │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── fr_FR │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── gl_PT │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── hi_HI │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── hr_HR │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── hu_HU │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── index.php ├── it_IT │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── ja_JA │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── ko_KR │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── lt_LT │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── markparachanges.php ├── nb_NO │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── nl_NL │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── pl_PL │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── pt_BR │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── pt_PT │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── ru_RU │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── sl_SI │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── sr_RS │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── sv_SE │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── tr_TR │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── vi_VI │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── zh_CN │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php └── zh_TW │ ├── help.inc.php │ ├── info.inc.php │ ├── para.inc.php │ ├── text.inc.php │ └── topic.inc.php ├── messenger.php ├── news.php ├── phpcs.xml ├── phplayersmenu.php ├── plugin.php ├── plugins └── readme.txt ├── sanity.php ├── search.php ├── sitebar.php ├── skins ├── .htaccess ├── Classic │ ├── collapse.png │ ├── common.css │ ├── connect.png │ ├── directory.css │ ├── empty.png │ ├── feed.png │ ├── filter.png │ ├── hook.inc.php │ ├── icon.png │ ├── join.png │ ├── join_last.png │ ├── link.png │ ├── link_private.png │ ├── link_wrong_favicon.png │ ├── logo.png │ ├── menu.png │ ├── messenger.css │ ├── minus.png │ ├── minus_last.png │ ├── more.png │ ├── news.css │ ├── node.png │ ├── node_open.png │ ├── plus.png │ ├── plus_last.png │ ├── reload.png │ ├── reload_all.png │ ├── root.png │ ├── root_deleted.png │ ├── root_plus.png │ ├── root_transparent.png │ ├── search.css │ ├── search.png │ └── sitebar.css ├── Cornflower │ ├── collapse.png │ ├── common.css │ ├── connect.png │ ├── directory.css │ ├── empty.png │ ├── feed.png │ ├── filter.png │ ├── hook.inc.php │ ├── icon.png │ ├── join.png │ ├── join_last.png │ ├── link.png │ ├── link_private.png │ ├── link_wrong_favicon.png │ ├── logo.png │ ├── menu.png │ ├── messenger.css │ ├── minus.png │ ├── minus_last.png │ ├── more.png │ ├── news.css │ ├── node.png │ ├── node_open.png │ ├── plus.png │ ├── plus_last.png │ ├── reload.png │ ├── reload_all.png │ ├── root.png │ ├── root_deleted.png │ ├── root_plus.png │ ├── root_transparent.png │ ├── search.css │ ├── search.png │ └── sitebar.css ├── Modern │ ├── collapse.png │ ├── common.css │ ├── connect.png │ ├── directory.css │ ├── empty.png │ ├── feed.png │ ├── filter.png │ ├── hook.inc.php │ ├── icon.png │ ├── join.png │ ├── join_last.png │ ├── link.png │ ├── link_private.png │ ├── link_wrong_favicon.png │ ├── logo.png │ ├── menu.png │ ├── messenger.css │ ├── minus.png │ ├── minus_last.png │ ├── more.png │ ├── news.css │ ├── node.png │ ├── node_open.png │ ├── plus.png │ ├── plus_last.png │ ├── reload.png │ ├── reload_all.png │ ├── root.png │ ├── root_deleted.png │ ├── root_plus.png │ ├── root_transparent.png │ ├── search.css │ ├── search.png │ └── sitebar.css ├── Mozilla Modern │ ├── collapse.png │ ├── common.css │ ├── connect.png │ ├── directory.css │ ├── empty.png │ ├── feed.png │ ├── filter.png │ ├── hook.inc.php │ ├── icon.png │ ├── join.png │ ├── join_last.png │ ├── link.png │ ├── link_private.png │ ├── link_wrong_favicon.png │ ├── logo.png │ ├── menu.png │ ├── messenger.css │ ├── minus.png │ ├── minus_last.png │ ├── more.png │ ├── news.css │ ├── node.png │ ├── node_open.png │ ├── plus.png │ ├── plus_last.png │ ├── reload.png │ ├── reload_all.png │ ├── root.png │ ├── root_deleted.png │ ├── root_plus.png │ ├── root_transparent.png │ ├── search.css │ ├── search.png │ └── sitebar.css ├── Olive │ ├── collapse.png │ ├── common.css │ ├── connect.png │ ├── directory.css │ ├── empty.png │ ├── feed.png │ ├── filter.png │ ├── hook.inc.php │ ├── icon.png │ ├── join.png │ ├── join_last.png │ ├── link.png │ ├── link_private.png │ ├── link_wrong_favicon.png │ ├── logo.png │ ├── menu.png │ ├── messenger.css │ ├── minus.png │ ├── minus_last.png │ ├── more.png │ ├── news.css │ ├── node.png │ ├── node_open.png │ ├── plus.png │ ├── plus_last.png │ ├── reload.png │ ├── reload_all.png │ ├── root.png │ ├── root_deleted.png │ ├── root_plus.png │ ├── root_transparent.png │ ├── search.css │ ├── search.png │ └── sitebar.css ├── SiteBarXP │ ├── button_bg.png │ ├── button_bg_down.png │ ├── collapse.png │ ├── common.css │ ├── connect.png │ ├── directory.css │ ├── empty.png │ ├── feed.png │ ├── filter.png │ ├── head.png │ ├── head_error.png │ ├── head_warn.png │ ├── hook.inc.php │ ├── icon.png │ ├── join.png │ ├── join_last.png │ ├── link.png │ ├── link_private.png │ ├── link_wrong_favicon.png │ ├── logo.png │ ├── menu.png │ ├── messenger.css │ ├── minus.png │ ├── minus_last.png │ ├── more.png │ ├── news.css │ ├── node.png │ ├── node_open.png │ ├── plus.png │ ├── plus_last.png │ ├── reload.png │ ├── reload_all.png │ ├── root.png │ ├── root_deleted.png │ ├── root_plus.png │ ├── root_transparent.png │ ├── search.css │ ├── search.png │ ├── sitebar.css │ └── toolbarbg.png ├── System │ ├── collapse.png │ ├── common.css │ ├── connect.png │ ├── directory.css │ ├── empty.png │ ├── feed.png │ ├── filter.png │ ├── hook.inc.php │ ├── icon.png │ ├── join.png │ ├── join_last.png │ ├── link.png │ ├── link_private.png │ ├── link_wrong_favicon.png │ ├── logo.png │ ├── menu.png │ ├── messenger.css │ ├── minus.png │ ├── minus_last.png │ ├── more.png │ ├── news.css │ ├── node.png │ ├── node_open.png │ ├── plus.png │ ├── plus_last.png │ ├── reload.png │ ├── reload_all.png │ ├── root.png │ ├── root_deleted.png │ ├── root_plus.png │ ├── root_transparent.png │ ├── search.css │ ├── search.png │ └── sitebar.css ├── command_edit_members.png ├── command_edit_members_inactive.png ├── command_invite_members.png ├── command_invite_members_inactive.png ├── command_leave_group.png ├── command_leave_group_inactive.png ├── command_message.png ├── command_message_inactive.png ├── common.css ├── directory.css ├── member_contributor.png ├── member_keep.png ├── member_moderator.png ├── member_remove.png ├── messenger.css ├── more_arrow.png ├── msg_new.gif ├── msg_read.gif ├── news.css ├── punct_brace_left.png ├── punct_brace_right.png ├── punct_colon.png ├── punct_dot.png ├── punct_hash.png ├── punct_semicolon.png ├── search.css ├── sitebar.css ├── xbel2dir.xsl.php ├── xbel2news.xsl.php └── xbel2search.xsl.php ├── sql ├── bookmarks_sitebar.xbel ├── bookmarks_websearch.xbel ├── downgrade_3.1.1.sql ├── downgrade_3.1.2.sql ├── downgrade_3.2.5.sql ├── downgrade_3.2.5b.sql ├── downgrade_3.2.6.sql ├── downgrade_3.2.sql ├── downgrade_3.2cvs.sql ├── downgrade_3.2cvs2.sql ├── downgrade_3.2cvs3.sql ├── downgrade_3.2rc1.sql ├── downgrade_3.2rc2.sql ├── downgrade_3.2rc3.sql ├── downgrade_3.3.1.sql ├── downgrade_3.3.10.sql ├── downgrade_3.3.11.sql ├── downgrade_3.3.12.sql ├── downgrade_3.3.13.sql ├── downgrade_3.3.2.sql ├── downgrade_3.3.3.sql ├── downgrade_3.3.4.sql ├── downgrade_3.3.5.sql ├── downgrade_3.3.6.sql ├── downgrade_3.3.6a.sql ├── downgrade_3.3.6b.sql ├── downgrade_3.3.6c.sql ├── downgrade_3.3.7.sql ├── downgrade_3.3.8.sql ├── downgrade_3.3.9.sql ├── downgrade_3.3.sql ├── downgrade_3.3cvs4.sql ├── downgrade_3.3cvs5.sql ├── downgrade_3.3cvs6.sql ├── downgrade_3.3rc1.sql ├── downgrade_3.4.sql ├── downgrade_3.5.sql ├── downgrade_3.6.1.sql ├── downgrade_3.6.2.sql ├── downgrade_3.6.sql ├── install.sql ├── uninstall.sql ├── upgrade_3.0.1.sql ├── upgrade_3.0.2.sql ├── upgrade_3.0.sql ├── upgrade_3.0pre1.sql ├── upgrade_3.0rc1.sql ├── upgrade_3.1.1.sql ├── upgrade_3.1.2.sql ├── upgrade_3.1.sql ├── upgrade_3.1cvs.sql ├── upgrade_3.1cvs2.sql ├── upgrade_3.2.5.sql ├── upgrade_3.2.5b.sql ├── upgrade_3.2.6.sql ├── upgrade_3.2.sql ├── upgrade_3.2cvs.sql ├── upgrade_3.2cvs2.sql ├── upgrade_3.2cvs3.sql ├── upgrade_3.2rc1.sql ├── upgrade_3.2rc2.sql ├── upgrade_3.2rc3.sql ├── upgrade_3.3.1.sql ├── upgrade_3.3.10.sql ├── upgrade_3.3.11.sql ├── upgrade_3.3.12.sql ├── upgrade_3.3.13.sql ├── upgrade_3.3.2.sql ├── upgrade_3.3.3.sql ├── upgrade_3.3.4.sql ├── upgrade_3.3.5.sql ├── upgrade_3.3.6.sql ├── upgrade_3.3.6a.sql ├── upgrade_3.3.6b.sql ├── upgrade_3.3.6c.sql ├── upgrade_3.3.7.sql ├── upgrade_3.3.8.sql ├── upgrade_3.3.9.sql ├── upgrade_3.3.sql ├── upgrade_3.3cvs4.sql ├── upgrade_3.3cvs5.sql ├── upgrade_3.3cvs6.sql ├── upgrade_3.3rc1.sql ├── upgrade_3.4.sql ├── upgrade_3.5.sql ├── upgrade_3.6.1.sql └── upgrade_3.6.sql ├── token.php ├── translator.php ├── validate.php ├── weblinks.php └── xsl.php /.gitignore: -------------------------------------------------------------------------------- 1 | adm 2 | .git 3 | .htaccess 4 | .php-cs-fixer.cache 5 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteRule ^user/(\w+)/(\w+)/(\w+) index.php?user=$1&w=$2&root=$3 [L,QSA] 4 | RewriteRule ^user/(\w+)/(\w+) index.php?user=$1&w=$2 [L,QSA] 5 | RewriteRule ^user/(\w+) index.php?user=$1 [L,QSA] 6 | RewriteRule ^dir/(\w+)/flat index.php?w=dir&flat=1&root=$1 [L,QSA] 7 | RewriteRule ^dir/(\w+) index.php?w=dir&root=$1 [L,QSA] 8 | RewriteRule ^dir/ index.php?w=dir [L,QSA] 9 | RewriteRule ^root/(\w+) index.php?root=$1 [L,QSA] 10 | RewriteRule ^news/(\w+)/(\w+)/(\w+) index.php?w=$1&flat=1&sort=$2&root=$3 [L,QSA] 11 | RewriteRule ^news/(\w+) news.php?root=$1 [L,QSA] 12 | RewriteRule ^root/(\w+) index.php?root=$1 [L,QSA] 13 | 14 | -------------------------------------------------------------------------------- /adm/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/adm/.gitkeep -------------------------------------------------------------------------------- /favicon.php: -------------------------------------------------------------------------------- 1 | * 6 | * Copyright (C) 2004 Gunnar Wrobel * 7 | * * 8 | * This program is free software: you can redistribute it and/or modify * 9 | * it under the terms of the GNU Affero General Public License as published * 10 | * by the Free Software Foundation, either version 3 of the License, or * 11 | * (at your option) any later version. * 12 | * * 13 | * This program is distributed in the hope that it will be useful, * 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 16 | * GNU Affero General Public License for more details. * 17 | * * 18 | * You should have received a copy of the GNU Affero General Public License * 19 | * along with this program. If not, see . * 20 | ******************************************************************************/ 21 | 22 | require_once('./inc/faviconcache.inc.php'); 23 | 24 | $fc = & SB_FaviconCache::staticInstance(); 25 | 26 | $favicon_md5 = key($_GET); 27 | 28 | $lid = $_GET[$favicon_md5]; 29 | 30 | if ('.' . $lid != '.' . intval($lid)) { 31 | // We may have encoded favicon URL there 32 | $lid = base64_decode($lid); 33 | } 34 | 35 | $fc->faviconReturn($favicon_md5, $lid, isset($_GET['refresh'])); 36 | -------------------------------------------------------------------------------- /feed.php: -------------------------------------------------------------------------------- 1 | 2 | Header set Cache-Control "public, max-age=604800" 3 | 4 | -------------------------------------------------------------------------------- /inc/command/getswitch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -z "$1" ] 4 | then 5 | $0 DO >switch.inc.php 6 | exit 7 | fi 8 | 9 | echo ' * 5 | * * 6 | * This program is free software; you can redistribute it and/or modify * 7 | * it under the terms of the GNU General Public License as published by * 8 | * the Free Software Foundation; either version 2 of the License, or * 9 | * (at your option) any later version. * 10 | * * 11 | * This program is distributed in the hope that it will be useful, * 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 14 | * GNU General Public License for more details. * 15 | * * 16 | * You should have received a copy of the GNU General Public License * 17 | * along with this program; if not, write to the Free Software * 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * 19 | ******************************************************************************/ 20 | 21 | /** 22 | * Rename this file to message.inc.php and customize its content to inform 23 | * all users about important things. 24 | */ 25 | ?> 26 |
27 | This is a message to all users. 28 | um->verified): ?> 29 |

30 | This is message to users, which have not verified their email yet. 31 |

32 | 33 |
34 | -------------------------------------------------------------------------------- /inc/writers/msie.inc.php: -------------------------------------------------------------------------------- 1 | * 6 | * * 7 | * This program is free software: you can redistribute it and/or modify * 8 | * it under the terms of the GNU Affero General Public License as published * 9 | * by the Free Software Foundation, either version 3 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU Affero General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU Affero General Public License * 18 | * along with this program. If not, see . * 19 | ******************************************************************************/ 20 | 21 | $SB_writer_title['msie'] = 'MS Internet Explorer'; 22 | 23 | require_once('./inc/writers/netscape.inc.php'); 24 | 25 | class SB_Writer_msie extends SB_Writer_netscape 26 | { 27 | public function __construct() 28 | { 29 | parent::__construct(); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /lib/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "tracy/tracy": "^2.4" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /lib/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/tracy/tracy/src/Tracy/Bar.php', 10 | 'Tracy\\BlueScreen' => $vendorDir . '/tracy/tracy/src/Tracy/BlueScreen.php', 11 | 'Tracy\\Bridges\\Nette\\TracyExtension' => $vendorDir . '/tracy/tracy/src/Bridges/Nette/TracyExtension.php', 12 | 'Tracy\\Debugger' => $vendorDir . '/tracy/tracy/src/Tracy/Debugger.php', 13 | 'Tracy\\DefaultBarPanel' => $vendorDir . '/tracy/tracy/src/Tracy/DefaultBarPanel.php', 14 | 'Tracy\\Dumper' => $vendorDir . '/tracy/tracy/src/Tracy/Dumper.php', 15 | 'Tracy\\FireLogger' => $vendorDir . '/tracy/tracy/src/Tracy/FireLogger.php', 16 | 'Tracy\\Helpers' => $vendorDir . '/tracy/tracy/src/Tracy/Helpers.php', 17 | 'Tracy\\IBarPanel' => $vendorDir . '/tracy/tracy/src/Tracy/IBarPanel.php', 18 | 'Tracy\\ILogger' => $vendorDir . '/tracy/tracy/src/Tracy/ILogger.php', 19 | 'Tracy\\Logger' => $vendorDir . '/tracy/tracy/src/Tracy/Logger.php', 20 | 'Tracy\\OutputDebugger' => $vendorDir . '/tracy/tracy/src/Tracy/OutputDebugger.php', 21 | ); 22 | -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/tracy/tracy/src/shortcuts.php', 10 | ); 11 | -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | __DIR__ . '/..' . '/tracy/tracy/src/shortcuts.php', 11 | ); 12 | 13 | public static $classMap = array ( 14 | 'Tracy\\Bar' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/Bar.php', 15 | 'Tracy\\BlueScreen' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/BlueScreen.php', 16 | 'Tracy\\Bridges\\Nette\\TracyExtension' => __DIR__ . '/..' . '/tracy/tracy/src/Bridges/Nette/TracyExtension.php', 17 | 'Tracy\\Debugger' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/Debugger.php', 18 | 'Tracy\\DefaultBarPanel' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/DefaultBarPanel.php', 19 | 'Tracy\\Dumper' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/Dumper.php', 20 | 'Tracy\\FireLogger' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/FireLogger.php', 21 | 'Tracy\\Helpers' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/Helpers.php', 22 | 'Tracy\\IBarPanel' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/IBarPanel.php', 23 | 'Tracy\\ILogger' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/ILogger.php', 24 | 'Tracy\\Logger' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/Logger.php', 25 | 'Tracy\\OutputDebugger' => __DIR__ . '/..' . '/tracy/tracy/src/Tracy/OutputDebugger.php', 26 | ); 27 | 28 | public static function getInitializer(ClassLoader $loader) 29 | { 30 | return \Closure::bind(function () use ($loader) { 31 | $loader->classMap = ComposerStaticInitc470c66e1a7bff85427df2d8cdb31633::$classMap; 32 | 33 | }, null, ClassLoader::class); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/appveyor.yml: -------------------------------------------------------------------------------- 1 | build: off 2 | cache: 3 | - c:\php -> appveyor.yml 4 | - '%LOCALAPPDATA%\Composer\files -> appveyor.yml' 5 | 6 | clone_folder: c:\projects\tracy 7 | 8 | init: 9 | - SET PATH=c:\php;%PATH% 10 | - SET PHP=1 11 | - SET ANSICON=121x90 (121x90) 12 | 13 | install: 14 | # Install PHP 15 | - IF EXIST c:\php (SET PHP=0) ELSE (mkdir c:\php) 16 | - IF %PHP%==1 cd c:\php 17 | - IF %PHP%==1 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-5.6.14-Win32-VC11-x86.zip 18 | - IF %PHP%==1 7z x php-5.6.14-Win32-VC11-x86.zip >nul 19 | - IF %PHP%==1 echo extension_dir=ext >> php.ini 20 | - IF %PHP%==1 echo extension=php_openssl.dll >> php.ini 21 | - IF %PHP%==1 del /Q *.zip 22 | - cd c:\projects\tracy 23 | 24 | # Install Nette Tester 25 | - appveyor DownloadFile https://getcomposer.org/composer.phar 26 | - php composer.phar install --prefer-dist --no-interaction --no-progress 27 | 28 | test_script: 29 | - vendor\bin\tester tests -s 30 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tracy/tracy", 3 | "description": "Tracy: useful PHP debugger", 4 | "keywords": ["debug", "debugger", "nette"], 5 | "homepage": "https://tracy.nette.org", 6 | "license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"], 7 | "authors": [ 8 | { 9 | "name": "David Grudl", 10 | "homepage": "https://davidgrudl.com" 11 | }, 12 | { 13 | "name": "Nette Community", 14 | "homepage": "https://nette.org/contributors" 15 | } 16 | ], 17 | "require": { 18 | "php": ">=5.4.4", 19 | "ext-session": "*", 20 | "ext-json": "*" 21 | }, 22 | "require-dev": { 23 | "nette/di": "~2.3", 24 | "nette/tester": "~2.0" 25 | }, 26 | "autoload": { 27 | "classmap": ["src"], 28 | "files": ["src/shortcuts.php"] 29 | }, 30 | "minimum-stability": "dev", 31 | "extra": { 32 | "branch-alias": { 33 | "dev-master": "2.4-dev" 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/contributing.md: -------------------------------------------------------------------------------- 1 | How to contribute & use the issue tracker 2 | ========================================= 3 | 4 | The issue tracker is the preferred channel for bug reports, features requests 5 | and submitting pull requests, but please respect the following restrictions: 6 | 7 | * Please **do not** use the issue tracker for personal support requests (use 8 | [Nette forum](https://forum.nette.org) or [Stack Overflow](http://stackoverflow.com)). 9 | 10 | * Please **do not** derail or troll issues. Keep the discussion on topic and 11 | respect the opinions of others. 12 | 13 | * Use the GitHub **issue search** — check if the issue has already been 14 | reported. 15 | 16 | A good **bug report** shouldn't leave others needing to chase you up for more 17 | information. Please try to be as detailed as possible in your report. 18 | 19 | **Feature requests** are welcome. But take a moment to find out whether your idea 20 | fits with the scope and aims of the project. It's up to *you* to make a strong 21 | case to convince the project's developers of the merits of this feature. 22 | 23 | Nette welcomes **pull requests**. If you'd like to contribute, please take a moment 24 | to [read the guidelines](https://nette.org/en/contributing) in order to make 25 | the contribution process easy and effective for everyone involved. 26 | 27 | Thanks! 28 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/ajax.php: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 |

Tracy: AJAX demo

29 | 30 |

31 | see Debug Bar in the bottom right corner 32 |

33 | 34 |

35 | use ESC to toggle BlueScreen 36 |

37 | 38 | 39 | 40 | 65 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/lib/vendor/tracy/tracy/examples/assets/arrow.png -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/assets/style.css: -------------------------------------------------------------------------------- 1 | html { 2 | font: 15px/1.5 Tahoma, sans-serif; 3 | color: #333; 4 | background: #fff; 5 | margin: 0 1.6em; 6 | padding: 0; 7 | } 8 | 9 | html.arrow { 10 | background: #fff url(arrow.png) no-repeat bottom right; 11 | height: 100%; 12 | } 13 | 14 | h1 { 15 | font-size: 210%; 16 | font-weight: normal; 17 | color: #036; 18 | } 19 | 20 | pre.tracy-dump { 21 | border: 1px solid silver; 22 | padding: 1em; 23 | margin: 1em 0; 24 | } 25 | 26 | a { 27 | color: #000080; 28 | } 29 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/barDump.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |

Tracy: bar dump demo

13 | 14 |

You can dump variables to bar in rightmost bottom egde.

15 | 16 | test', 'String'); 24 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/dump.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |

Tracy: Dumper demo

13 | 14 | test'); 31 | 32 | dump($arr); 33 | 34 | dump($obj); 35 | 36 | 37 | echo "

With location

\n"; 38 | 39 | Debugger::$showLocation = TRUE; 40 | 41 | dump($arr); 42 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/exception.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |

Tracy: exception demo

13 | 14 | 10 | 11 | 12 |

Tracy: fatal error demo

13 | 14 | 'val1', 'key2' => TRUE]]; 8 | 9 | // will show in FireLogger 10 | Debugger::fireLog('Hello World'); 11 | Debugger::fireLog($arr); 12 | 13 | 14 | function first($arg1, $arg2) 15 | { 16 | second(TRUE, FALSE); 17 | } 18 | 19 | function second($arg1, $arg2) 20 | { 21 | third([1, 2, 3]); 22 | } 23 | 24 | function third($arg1) 25 | { 26 | throw new Exception('The my exception', 123); 27 | } 28 | 29 | try { 30 | first(10, 'any string'); 31 | } catch (Exception $e) { 32 | Debugger::fireLog($e); 33 | } 34 | 35 | ?> 36 | 37 | 38 |

Tracy: FireLogger demo

39 | 40 |

How to enable FireLogger?

41 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/notice.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |

Tracy Notice and StrictMode demo

14 | 15 | '; 11 | } 12 | 13 | 14 | head(); 15 | echo '

Output Debugger demo

'; 16 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/redirect.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 |

Tracy: redirect demo

23 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/examples/warning.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |

Tracy Warning and StrictMode demo

14 | 15 | id = $id; 25 | } 26 | 27 | 28 | /** 29 | * Renders HTML code for custom tab. 30 | * @return string 31 | */ 32 | public function getTab() 33 | { 34 | ob_start(function () {}); 35 | $data = $this->data; 36 | require __DIR__ . "/assets/Bar/{$this->id}.tab.phtml"; 37 | return ob_get_clean(); 38 | } 39 | 40 | 41 | /** 42 | * Renders HTML code for custom panel. 43 | * @return string 44 | */ 45 | public function getPanel() 46 | { 47 | ob_start(function () {}); 48 | if (is_file(__DIR__ . "/assets/Bar/{$this->id}.panel.phtml")) { 49 | $data = $this->data; 50 | require __DIR__ . "/assets/Bar/{$this->id}.panel.phtml"; 51 | } 52 | return ob_get_clean(); 53 | } 54 | 55 | } 56 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/IBarPanel.php: -------------------------------------------------------------------------------- 1 | 15 | 24 | 25 |

Dumps

26 | 27 |
28 | 29 | 30 |

31 | 32 | 33 | 34 | 35 |
36 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Bar/dumps.tab.phtml: -------------------------------------------------------------------------------- 1 | 18 | 19 | dumps 20 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Bar/errors.panel.phtml: -------------------------------------------------------------------------------- 1 | 14 |

Errors

15 | 16 |
17 | 18 | $count): list($file, $line, $message) = explode('|', $item, 3) ?> 19 | 20 | 21 | 22 | 23 | 24 |
25 |
26 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Bar/errors.tab.phtml: -------------------------------------------------------------------------------- 1 | 18 | 26 | 27 | 1 ? ' errors' : ' error' ?> 28 | 29 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Bar/info.tab.phtml: -------------------------------------------------------------------------------- 1 | time = microtime(TRUE) - Debugger::$time; 15 | 16 | ?> 17 | 18 | 19 | time * 1000, 1, '.', ' ') ?> ms 20 | 21 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Bar/loader.phtml: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 52 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Bar/panels.phtml: -------------------------------------------------------------------------------- 1 | 19 | ¤ 20 | × 21 | 22 | '; 23 | 24 | foreach ($rows as $row) { 25 | foreach ($row->panels as $panel) { 26 | $content = $panel->panel ? ($panel->panel . "\n" . $icons) : ''; 27 | $class = 'tracy-panel ' . ($row->type === 'ajax' ? 'tracy-ajax' : ''); ?> 28 |
11 | 12 | 13 | 14 | 15 | Server Error 16 | 17 | 23 | 24 |
25 |

Server Error

26 | 27 |

We're sorry! The server encountered an internal error and 28 | was unable to complete your request. Please try again later.

29 | 30 |

error 500
Tracy is unable to log error.

31 |
32 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Dumper/dumper.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file is part of the Tracy (https://tracy.nette.org) 3 | */ 4 | 5 | pre.tracy-dump { 6 | text-align: left; 7 | color: #444; 8 | background: white; 9 | } 10 | 11 | pre.tracy-dump div { 12 | padding-left: 3ex; 13 | } 14 | 15 | pre.tracy-dump div div { 16 | border-left: 1px solid rgba(0, 0, 0, .1); 17 | margin-left: .5ex; 18 | } 19 | 20 | .tracy-dump-array, 21 | .tracy-dump-object { 22 | color: #C22; 23 | } 24 | 25 | .tracy-dump-string { 26 | color: #35D; 27 | } 28 | 29 | .tracy-dump-number { 30 | color: #090; 31 | } 32 | 33 | .tracy-dump-null, 34 | .tracy-dump-bool { 35 | color: #850; 36 | } 37 | 38 | .tracy-dump-visibility, 39 | .tracy-dump-hash { 40 | font-size: 85%; color: #999; 41 | } 42 | 43 | .tracy-dump-indent { 44 | display: none; 45 | } 46 | 47 | span[data-tracy-href] { 48 | border-bottom: 1px dotted rgba(0, 0, 0, .2); 49 | } 50 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/Tracy/assets/Toggle/toggle.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file is part of the Tracy (https://tracy.nette.org) 3 | */ 4 | 5 | .tracy-collapsed { 6 | display: none; 7 | } 8 | 9 | .tracy-toggle.tracy-collapsed { 10 | display: inline; 11 | } 12 | 13 | .tracy-toggle { 14 | cursor: pointer; 15 | } 16 | 17 | .tracy-toggle:after { 18 | content: " ▼"; 19 | opacity: .4; 20 | } 21 | 22 | .tracy-toggle.tracy-collapsed:after { 23 | content: " ►"; 24 | } 25 | -------------------------------------------------------------------------------- /lib/vendor/tracy/tracy/src/shortcuts.php: -------------------------------------------------------------------------------- 1 | 'Български', 5 | 'authors' => array( 6 | 'Yul Yordanov' => null, 7 | ), 8 | ); 9 | -------------------------------------------------------------------------------- /locale/bg_BG/para.inc.php: -------------------------------------------------------------------------------- 1 | Menú d'usuari i des dels Menús contextuals de carpeta i enllaç. El menú d'usuari es mostra a baix de SiteBar, i els menús contextuals son accesibles clicant amb el botó dret a les carpetes o enllaços. Usuaris d'Opera i Apple poden fer un Ctrl-clic. En el cas que fins i tot un Ctrl-clic no sigui reconegut és posible activar un switch "Mostrar icona de menú" des de la comanda "Preferències d'usuari". Quan aquesta opció sigui activa es mostrarà una petita icona de menu sota la icona de carpeta o enllaç. Clicant en aquesta icona obrirà el menú contextual.

Tant els menus contextuals com els d'usuari poden mostrar diferents subconjunts de comandes per diferents usuaris segons els seus drets al sistema. Algunes opcions poden estar desactivades al menú contextual basat en els drets d'usuari als nodes i l'estat actual del programa. Les comandes son executades via la finestra de comandes. 7 | _P; 8 | 9 | $help['101'] = <<<_P 10 | Clica en una carpeta o un enllaç i mou el cursor damunt una altra carpeta mantenint el botó apretat. Arrastrar és senyalat iluminant la carpeta de destí. Solta el botó per deixar caure l'enllaç o carpeta arrastrat a la carpeta iluminada. 11 |

12 | Drag & Drop no està implementat per l'equip de SiteBar per als navegadors Opera. Copy and Paste ha de ser usat en aquest cas. 13 | _P; 14 | 15 | $help['102'] = <<<_P 16 | La forma més convenient d'afegir enllaços es usar l'anomenat bookmarklet. Pots crear bookmarklets des de la pàgina de la teva instalació de SiteBar, que hauria de ser disponible per defecte clicant al logotip de SiteBar. L'Internet Explorer pot usar el menú contextual si han usat l'instalador descrit a la mateixa pàgina que el bookmarklet. 17 | _P; 18 | 19 | $help['200'] = <<<_P 20 | Les comandes estan agrupades en diversos grups lògics. Sisplau, selecciona un dels grups per veure l'ajuda de la comanda. 21 | _P; 22 | -------------------------------------------------------------------------------- /locale/ca_ES/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Català', 5 | 'author' => 'Andreu Escudero', 6 | 'url' => null, 7 | ); 8 | -------------------------------------------------------------------------------- /locale/ca_ES/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Consells d'ús', 5 | '101' => 'Drag & Drop', 6 | '103' => 'Funcions de la barra d'eines', 7 | '200' => 'Comandes', 8 | '210' => 'Administració de sessió', 9 | '220' => 'Instalació i manteniment', 10 | '230' => 'Administració de comptes', 11 | '240' => 'Administració d'usuaris', 12 | '250' => 'Administració de grups', 13 | '260' => 'Operacions de carpeta', 14 | '270' => 'Operacions d'enllaç', 15 | '300' => 'Informació tècnica', 16 | '302' => 'Mecanismes de seguretat', 17 | '303' => 'Skins', 18 | '304' => 'Escriptors', 19 | '305' => 'Migració', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/cs_CZ/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Česky', 5 | 'authors' => array( 6 | 'Ondřej Brablc' => 'http://brablc.com/', 7 | 'Patrik Zima' => null, 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/cs_CZ/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Dansk', 5 | 'author' => 'Bent Jensen', 6 | 'url' => null, 7 | ); 8 | -------------------------------------------------------------------------------- /locale/da_DK/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Tips', 5 | '101' => 'Træk & slip', 6 | '103' => 'Værktøjslinie funktioner', 7 | '200' => 'Kommandoer', 8 | '210' => 'Sessions styring', 9 | '220' => 'Installation & vedligeholdelse', 10 | '230' => 'Konto vedligeholdelse', 11 | '240' => 'Bruger vedligeholdelse', 12 | '250' => 'Gruppe vedligeholdelse', 13 | '260' => 'Mappe operationer', 14 | '270' => 'Henvisnings operationer', 15 | '300' => 'Teknisk information', 16 | '302' => 'Sikkerheds mekanisme', 17 | '303' => 'Udseende', 18 | '304' => 'Forfattere', 19 | '305' => 'Migration', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/de_DE/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Deutsch', 5 | 'authors' => array( 6 | 'Gunnar Wrobel' => 'http://gunnarwrobel.de/', 7 | 'Olaf Nöhring' => 'http://www.team-noehring.de/', 8 | 'Deniz Burucu' => 'http://www.ocean-internet.de/', 9 | ), 10 | ); 11 | -------------------------------------------------------------------------------- /locale/de_DE/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Hinweise zur Verwendung', 5 | '101' => 'Drag & Drop', 6 | '103' => 'Funktionen der Werkzeugleiste', 7 | '200' => 'Kommandos', 8 | '210' => 'Sessionverwaltung', 9 | '220' => 'Installation & Pflege', 10 | '230' => 'Kontoverwaltung', 11 | '240' => 'Benutzerverwaltung', 12 | '250' => 'Gruppenverwaltung', 13 | '260' => 'Verzeichnisoperationen', 14 | '270' => 'Lesezeichen-Operationen', 15 | '300' => 'Technische Informationen', 16 | '302' => 'Sicherheitsmechanismus', 17 | '303' => 'Designs', 18 | '304' => 'Migration', 19 | '305' => 'Migration', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/el_GR/help.inc.php: -------------------------------------------------------------------------------- 1 | 'Ελληνικά', 5 | 'authors' => array( 6 | 'George Giftogiannis' => null, 7 | ), 8 | ); 9 | -------------------------------------------------------------------------------- /locale/el_GR/para.inc.php: -------------------------------------------------------------------------------- 1 | 'English', 5 | 'author' => 'Ondřej Brablc', 6 | 'url' => 'http://brablc.com/' 7 | ); 8 | -------------------------------------------------------------------------------- /locale/en_US/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Usage Tips', 5 | 101 => 'Drag & Drop', 6 | 103 => 'Tool Bar Functions', 7 | 8 | 200 => 'Commands', 9 | 210 => 'Session Management', 10 | 220 => 'Installation & Maintenance', 11 | 230 => 'Account Management', 12 | 240 => 'User Management', 13 | 250 => 'Group Management', 14 | 260 => 'Folder Operations', 15 | 270 => 'Link Operations', 16 | 17 | 300 => 'Technical Info', 18 | 302 => 'Security Mechanism', 19 | 303 => 'Skins', 20 | 304 => 'Writers', 21 | 305 => 'Migration', 22 | ); 23 | -------------------------------------------------------------------------------- /locale/es_ES/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Espanol', 5 | 'authors' => array( 6 | 'Francisco Gómez González' => 'http://www.cursoshomologados.com/', 7 | 'Juan Diego Gutiérrez Gallardo' => null, 8 | 'Jorge Izquierdo' => 'http://www.ateneoinformatico.net/ventanianos', 9 | ), 10 | ); 11 | -------------------------------------------------------------------------------- /locale/es_ES/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Suomi', 5 | 'authors' => array( 6 | 'Miika Havo' => 'http://www.bittituki.com/', 7 | 'Oskari Jääskeläinen' => null, 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/fi_FI/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Vinkkejä käyttöön', 5 | 101 => 'Vedä & pudota', 6 | 102 => 'Linkkien lisäys', 7 | 103 => 'Työkalurivitoiminnot', 8 | 9 | 200 => 'Komennot', 10 | 210 => 'Istunnonhallinta', 11 | 220 => 'Asennus & ylläpito', 12 | 230 => 'Tunnuksen hallinta', 13 | 240 => 'Käyttäjän hallinta', 14 | 250 => 'Ryhmän hallinta', 15 | 260 => 'Kansion asetukset', 16 | 270 => 'Linkkeihin kohdistuvat toiminnot', 17 | 18 | 300 => 'Tekninen tieto', 19 | 301 => 'Yhteensopivuus', 20 | 302 => 'Suojausmekaniikka', 21 | 303 => 'Tyylit', 22 | ); 23 | -------------------------------------------------------------------------------- /locale/fr_FR/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Français', 5 | 'authors' => array( 6 | 'Renaud Rakotomalala' => 'http://renaud.rakotomalala.com/', 7 | 'Stephane Schitter' => 'http://sourceforge.net/sendmessage.php?touser=381345/', 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/fr_FR/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Astuce d'utilisation', 5 | '101' => 'Saisir & déposer', 6 | '103' => 'Fonctions de la barre d'outils', 7 | '200' => 'Commandes', 8 | '210' => 'Gestion des sessions', 9 | '220' => 'Installation & maintenance', 10 | '230' => 'Gestion des comptes', 11 | '240' => 'Gestions des utilisateurs', 12 | '250' => 'Gestion des groupes', 13 | '260' => 'Opérations sur les dossiers', 14 | '270' => 'Opérations sur les liens', 15 | '300' => 'Informations techniques', 16 | '302' => 'Système de sécurité', 17 | '303' => 'Thèmes', 18 | '304' => 'Générateurs', 19 | '305' => 'Migration', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/gl_PT/help.inc.php: -------------------------------------------------------------------------------- 1 | 'Galego', 5 | 'authors' => array( 6 | 'KesarNet' => 'http://www.kesarnet.org/', 7 | ), 8 | 'aliases' => array('gl_ES'), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/gl_PT/para.inc.php: -------------------------------------------------------------------------------- 1 | 'हिन्दी', 5 | 'author' => 'Puneet Madaan', 6 | 'url' => null, 7 | ); 8 | -------------------------------------------------------------------------------- /locale/hi_HI/para.inc.php: -------------------------------------------------------------------------------- 1 | 'Hrvatski', 5 | 'authors' => array( 6 | 'Igor Kraljić' => 'http://igor.kraljic.info', 7 | ), 8 | ); 9 | -------------------------------------------------------------------------------- /locale/hr_HR/para.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/locale/hr_HR/para.inc.php -------------------------------------------------------------------------------- /locale/hr_HR/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Savjeti za korištenje', 5 | '101' => 'Drag & Drop', 6 | '103' => 'Funkcije toolbara', 7 | '200' => 'Zadaci', 8 | '210' => 'Upravljanje sessionima', 9 | '220' => 'Instalacija i održavanje', 10 | '230' => 'Upravljanje accountima', 11 | '240' => 'Upravljanje korisnicima', 12 | '250' => 'Upravljanje grupama', 13 | '260' => 'Operacije s folderima', 14 | '270' => 'Operacije s linkovima', 15 | '300' => 'Tehnički podaci', 16 | '302' => 'Sigurnosni mehanizam', 17 | '303' => 'Izgled', 18 | '304' => 'Writers', 19 | '305' => 'Preseljenje', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/hu_HU/help.inc.php: -------------------------------------------------------------------------------- 1 | Felhasználói menüből valamint a mappák és 7 | hivatkozások Környezetérzékeny menüiből érhetők el. A Felhasználói 8 | menü a SiteBar alján található, a környezetérzékeny menük a mappákra illetve 9 | hivatkozásokra való jobbkattintás segítségével érhetők el. Opera és Apple 10 | felhasználók ehelyett a Ctrl-kattintást használhatják. Amennyiben a Ctrl-kattintást 11 | sem ismeri fel a böngésző, a "Felhasználói beállítások" menüpontban beállítható a 12 | "Mutasd a menüikont" opció. Ha ez az opció be van kapcsolva, minden mappa és hivatkozás 13 | ikonja mellett megjelenik egy kis menüikon; az ikonra kattintva megjelenik a 14 | környezeti menü. 15 |

16 | Mind a környezeti, mind a felhasználói menükben más-más paracsok jelennek meg 17 | felhasználónként, a felhasználó jogosultságait figyelembe véve. Némelyik menüpont 18 | a felhasználó jogosultságaitól és a program pillanatnyi beállításaitól/állapotától függően 19 | inaktív lehet. A parancsok végrehajtása a Parancsablakban történik meg. 20 | _P; 21 | 22 | $help['101'] = <<<_P 23 | Kattints egy mappára vagy hivatkozásra az egérrel, majd az egérgombot nyomva tartva 24 | húzd át az egérmutatót egy másik mappa fölé. Az áthúzást a célmappa kiemelése jelzi. 25 | Az egérgomb elengedésére a hivatkozást az aktuálisan kiemelt célmappába helyezheted. 26 |

27 | Az áthúzással történő áthelyezés (Drag & Drop) Opera böngészőre nincs megvalósítva. 28 | Ebben az esetben a Másolás és Beillesztés funkciókat kell használni. 29 | _P; 30 | -------------------------------------------------------------------------------- /locale/hu_HU/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Magyar', 5 | 'authors' => array( 6 | 'Tamás Katona' => null, 7 | 'The Documan Project' => 'http://documan.sourceforge.net/', 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/hu_HU/topic.inc.php: -------------------------------------------------------------------------------- 1 | * 6 | * * 7 | * This program is free software; you can redistribute it and/or modify * 8 | * it under the terms of the GNU General Public License as published by * 9 | * the Free Software Foundation; either version 2 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU General Public License * 18 | * along with this program; if not, write to the Free Software * 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * 20 | ******************************************************************************/ 21 | 22 | header("Location: ../translator.php"); 23 | -------------------------------------------------------------------------------- /locale/it_IT/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Italiano', 5 | 'author' => 'Claudio Passon', 6 | 'url' => null, 7 | 'co-authors' => 'Andrea Borgia', 8 | ); 9 | -------------------------------------------------------------------------------- /locale/it_IT/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Informazioni sull'utilizzo', 5 | '101' => 'Copia e incolla', 6 | '103' => 'Funzioni della barra strumenti', 7 | '200' => 'Comandi', 8 | '210' => 'Gestione sessioni', 9 | '220' => 'Installazione e manutenzione', 10 | '230' => 'Gestione account', 11 | '240' => 'Gestione utenti', 12 | '250' => 'Gestione gruppi', 13 | '260' => 'Gestione cartelle', 14 | '270' => 'Gestione collegamenti', 15 | '300' => 'Informazioni tecniche', 16 | '302' => 'Meccanismi di sicurezza', 17 | '303' => 'Skins', 18 | '304' => 'Scrittori', 19 | '305' => 'Migrazione', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/ja_JA/info.inc.php: -------------------------------------------------------------------------------- 1 | '日本語', 5 | 'authors' => array( 6 | 'Seiji Kageura' => 'http://www.infocrest.jp/', 7 | '終端抵抗 (Terminator)' => null, 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/ja_JA/topic.inc.php: -------------------------------------------------------------------------------- 1 | '한국말', 5 | 'author' => 'Yang Seok-Ho', 6 | 'url' => null, 7 | ); 8 | -------------------------------------------------------------------------------- /locale/ko_KR/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Lietuviškai', 5 | 'author' => 'Linas Gricius', 6 | 'url' => null, 7 | ); 8 | -------------------------------------------------------------------------------- /locale/lt_LT/para.inc.php: -------------------------------------------------------------------------------- 1 | Ar tikrai norite pašalinti visas ikonas iš laikinos atminties? 26 | _P; 27 | 28 | $para['usermanager::signup_info'] = <<<_P 29 | <@>Vartotojas "%s" <%s> užsiregistravo Jūsų SiteBar esančiame %s. 30 | _P; 31 | 32 | $para['usermanager::alert'] = <<<_P 33 | %s 34 | _P; 35 | -------------------------------------------------------------------------------- /locale/lt_LT/text.inc.php: -------------------------------------------------------------------------------- 1 | 'SiteBar puslapis', 5 | 'Any Browser' => 'Bet kokia naršyklė', 6 | 'Your Language' => 'Lietuviškai', 7 | 'Add Link to SiteBar' => 'Įdėti nuorodą į SiteBar', 8 | 'Add Page to SiteBar' => 'Įdėti puslapį į SiteBar', 9 | 'Error' => 'Klaida', 10 | 'Warning' => 'Pranešimas', 11 | 'Unknown' => 'Nežinoma', 12 | 'Search' => 'Paieška', 13 | 'Collapse/Expand All' => 'Suskleisti/Išskleisti visus', 14 | 'Reload' => 'Perkrauti', 15 | 'Reload with Hidden Folders' => 'Perkrauti ir rodyti su paslėptais katalogais', 16 | 'Add Folder' => 'Pridėti katalogą', 17 | 'Add Bookmark' => 'Pridėti nuorodą', 18 | 'Contact Admin' => 'Susisiekti su administratoriumi', 19 | 'Contact Moderator' => 'Susisiekti su moderatoriumi', 20 | 'Copy' => 'Kopijuoti', 21 | 'Copy Bookmark' => 'Kopijuoti nuorodą', 22 | 'Create Group' => 'Sukurti grupę', 23 | 'Create Tree' => 'Sukurti medį', 24 | 'Create User' => 'Sukurti vartotoją', 25 | 'Custom order' => 'Spec.suskirstymas', 26 | 'Delete Folder' => 'Ištrinti katalogą', 27 | 'Delete Group' => 'Ištrinti grupę', 28 | 'Delete Bookmark' => 'Ištrinti nuorodą', 29 | 'Delete Account' => 'Ištrinti paskyrą', 30 | 'Delete User' => 'Ištrinti vartotoją', 31 | 'Delete Tree' => 'Ištrinti medį', 32 | 'Email Bookmark' => 'Siųsti nuorodą paštu', 33 | 'Export Bookmarks' => 'Eksportuoti nuorodas', 34 | 'Export Description' => 'Eksportuoti aprašymą', 35 | 'Favicon Management' => 'Ikonų valdymas', 36 | 'Folder Properties' => 'Katalogo sąvybės', 37 | 'Group Members' => 'Grupės nariai', 38 | 'Group Moderators' => 'Grupės moderatoriai', 39 | 'Group Properties' => 'Grupės sąvybės', 40 | 'Help' => 'Pagalba', 41 | 'Hide Folder' => 'Paslėpti katalogą', 42 | 'Import Bookmarks' => 'Importuoti nuorodas', 43 | 'Import Description' => 'Importuoti aprašymą', 44 | 'Log In' => 'Prisijungti', 45 | 'Log Out' => 'Atsijungti', 46 | 'Maintain Groups' => 'Tvarkyti grupes', 47 | 'Maintain Users' => 'Tvarkyti vartotojus', 48 | 'Maintain Trees' => 'Tvarkyti medžius', 49 | ); 50 | -------------------------------------------------------------------------------- /locale/lt_LT/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Pasiūlymai naudojimuisi', 5 | '101' => 'Drag & Drop', 6 | '102' => 'Nuorodų talpinimas', 7 | '103' => 'Įrankių juostos funkcijos', 8 | '200' => 'Komandos', 9 | '210' => 'Sesijų kontrolė', 10 | '220' => 'Įdiegimas & Palaikymas', 11 | '230' => 'Pasyrų tvarkymas', 12 | '240' => 'Vartotojų tvarkymas', 13 | '250' => 'Grupių tvarkymas', 14 | '260' => 'Darbas su katalogais', 15 | '270' => 'Darbas su nuorodomis', 16 | '300' => 'Techninė informacija', 17 | '301' => 'Suderinamumas', 18 | '302' => 'Saugumo mechanizmas', 19 | '303' => 'Odos', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/nb_NO/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Norsk (bokmål)', 5 | 'authors' => array( 6 | 'Torkill Bruland' => 'http://dataord.com/', 7 | ), 8 | 'aliases' => array('no_NO') 9 | ); 10 | -------------------------------------------------------------------------------- /locale/nb_NO/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Nederlands', 5 | 'authors' => array( 6 | 'Eric Hameleers' => 'http://www.slackware.com/~alien/', 7 | 'Henri Wiering' => null, 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/nl_NL/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Polski', 7 | 'author' => 'Maciek Sujkowski', 8 | 'url' => null, 9 | ); 10 | -------------------------------------------------------------------------------- /locale/pl_PL/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Informacje o użytkowaniu', 7 | '101' => 'Przeciągnij i upuść', 8 | '103' => 'Funkcje paska narzędzi', 9 | '200' => 'Polecenia', 10 | '210' => 'Zarządzanie sesjami', 11 | '220' => 'Instalacja i utrzymanie', 12 | '230' => 'Zarządzanie kontami', 13 | '240' => 'Zarządzanie użytkownikami', 14 | '250' => 'Zarządzanie grupami', 15 | '260' => 'Operacje na katalogach', 16 | '270' => 'Operacje na linkach', 17 | '300' => 'Informacje techniczne', 18 | '302' => 'Mechanizm zabezpieczeń', 19 | '303' => 'Skórki', 20 | '304' => 'Twórcy', 21 | '305' => 'Migracja', 22 | ); 23 | -------------------------------------------------------------------------------- /locale/pt_BR/help.inc.php: -------------------------------------------------------------------------------- 1 | 'Português Brasileiro', 5 | 'authors' => array( 6 | 'Carlos Felicio' => null, 7 | 'Albert E. Souza' => null 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /locale/pt_BR/para.inc.php: -------------------------------------------------------------------------------- 1 | 'Português', 5 | 'author' => 'Rui Umbelino', 6 | 'url' => 'http://ruiumbelino.web.pt', 7 | ); 8 | -------------------------------------------------------------------------------- /locale/pt_PT/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Uso de Dicas', 5 | '101' => 'Arrastar & Largar', 6 | '102' => 'Adicionar Links', 7 | '103' => 'Funções da Barra de Ferramentas', 8 | '200' => 'Comandos', 9 | '210' => 'Gestão da Sessão', 10 | '220' => 'Instalação e Manutenção', 11 | '230' => 'Gestão da Conta', 12 | '240' => 'Gestão do Utilizador', 13 | '250' => 'Gestão do Grupo', 14 | '260' => 'Operações de Pastas', 15 | '270' => 'Operações de Links', 16 | '300' => 'Informação Técnica', 17 | '301' => 'Compatibilidade', 18 | '302' => 'Mecanismo de Segurança', 19 | '303' => 'Skins', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/ru_RU/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Русский', 5 | 'author' => 'Andrew Baranow', 6 | 'url' => 'http://xhtml.ru/' 7 | ); 8 | -------------------------------------------------------------------------------- /locale/ru_RU/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Slovenian', 5 | 'authors' => array( 6 | 'Dusan Prapotnik' => null, 7 | ), 8 | ); 9 | -------------------------------------------------------------------------------- /locale/sl_SI/para.inc.php: -------------------------------------------------------------------------------- 1 | 'Srpski', 5 | 'authors' => array( 6 | 'Ozzii' => null, 7 | ), 8 | ); 9 | -------------------------------------------------------------------------------- /locale/sr_RS/para.inc.php: -------------------------------------------------------------------------------- 1 | 'Svenska', 5 | 'author' => 'Mats Bergsten', 6 | 'url' => 'http://www.bergsten.net/mats/', 7 | ); 8 | -------------------------------------------------------------------------------- /locale/sv_SE/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Användartips', 5 | '101' => 'Drag & Släpp', 6 | '103' => 'Verktygsfunktioner', 7 | '200' => 'Kommandon', 8 | '210' => 'Sessionshantering', 9 | '220' => 'Installation & Underhåll', 10 | '230' => 'Kontohantering', 11 | '240' => 'Användarhantering', 12 | '250' => 'Grupphantering', 13 | '260' => 'Mappoperationer', 14 | '270' => 'Länkoperationer', 15 | '300' => 'Teknisk Information', 16 | '302' => 'Säkerhetsmekanism', 17 | '303' => 'Utseende', 18 | '304' => 'Skärmskrivare', 19 | '305' => 'Överföring', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/tr_TR/info.inc.php: -------------------------------------------------------------------------------- 1 | 'Türkçe', 5 | 'author' => 'Aydin Coskuner', 6 | 'url' => null, 7 | ); 8 | -------------------------------------------------------------------------------- /locale/tr_TR/topic.inc.php: -------------------------------------------------------------------------------- 1 | 'Kullanım İpuçları', 5 | '101' => 'Sürükle ve Bırak', 6 | '103' => 'Araç Çubuğu İşlevleri', 7 | '200' => 'Komutlar', 8 | '210' => 'Oturum Yönetimi', 9 | '220' => 'Yükleme ve Ayarlar', 10 | '230' => 'Hesap Yönetimi', 11 | '240' => 'Kullanıcı Yönetimi', 12 | '250' => 'Grup Yönetimi', 13 | '260' => 'Klasör İşlemleri', 14 | '270' => 'Bağlantı İşlemleri', 15 | '300' => 'Teknik Bilgi', 16 | '302' => 'Güvenlik Mekanizması', 17 | '303' => 'Kabuklar(Skins)', 18 | '304' => 'Yazarlar', 19 | '305' => 'Taşıma', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/vi_VI/help.inc.php: -------------------------------------------------------------------------------- 1 | 'Tiếng Việt', 5 | 'author' => 'Quang Anh', 6 | 'url' => 'http://www.lazyanduseless.belike.net', 7 | ); 8 | -------------------------------------------------------------------------------- /locale/vi_VI/para.inc.php: -------------------------------------------------------------------------------- 1 | '简体字', // Chinese simplified characters 5 | 'author' => 'Tiger', 6 | 'url' => null, 7 | ); 8 | -------------------------------------------------------------------------------- /locale/zh_CN/topic.inc.php: -------------------------------------------------------------------------------- 1 | '使用提示', 5 | '101' => '拖动与放置', 6 | '102' => '增加链接', 7 | '103' => '工具条功能', 8 | '200' => '命令', 9 | '210' => 'Session管理', 10 | '220' => '安装和维护', 11 | '230' => '帐号管理', 12 | '240' => '用户管理', 13 | '250' => '组管理', 14 | '260' => '目录操作', 15 | '270' => '链接操作', 16 | '300' => '技术信息', 17 | '301' => '兼容性', 18 | '302' => '安全机制', 19 | '303' => '皮肤', 20 | ); 21 | -------------------------------------------------------------------------------- /locale/zh_TW/info.inc.php: -------------------------------------------------------------------------------- 1 | '繁體中文', //Chinese traditional characters (TW+HK) 5 | 'authors' => array( 6 | 'Chung-Ruei Huang' => null, 7 | 'Sam Liu' => null, 8 | 'Henry Wong' => null, 9 | ), 10 | 'aliases' => array('zh_HK'), 11 | ); 12 | -------------------------------------------------------------------------------- /locale/zh_TW/topic.inc.php: -------------------------------------------------------------------------------- 1 | '使用技巧', 5 | '101' => '拖曳', 6 | '103' => '工具列功能', 7 | '200' => '指令', 8 | '210' => '連線期間管理', 9 | '220' => '安裝及維護', 10 | '230' => '帳戶管理', 11 | '240' => '者用者管理', 12 | '250' => '群組管理', 13 | '260' => '資料夾操作', 14 | '270' => '連結操作', 15 | '300' => '技術資訊', 16 | '302' => '安全性結構', 17 | '303' => '面板', 18 | '304' => '輸出器', 19 | '305' => '遷移', 20 | ); 21 | -------------------------------------------------------------------------------- /news.php: -------------------------------------------------------------------------------- 1 | * 6 | * * 7 | * This program is free software: you can redistribute it and/or modify * 8 | * it under the terms of the GNU Affero General Public License as published * 9 | * by the Free Software Foundation, either version 3 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU Affero General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU Affero General Public License * 18 | * along with this program. If not, see . * 19 | ******************************************************************************/ 20 | 21 | require_once('./inc/errorhandler.inc.php'); 22 | require_once('./inc/page.inc.php'); 23 | 24 | SB_handleRootCookie('news.php'); 25 | 26 | $_REQUEST['w'] = 'news'; 27 | 28 | require_once('./inc/writers/xbel.inc.php'); 29 | require_once('./inc/writers/dir.inc.php'); 30 | require_once('./inc/writers/news.inc.php'); 31 | include('index.php'); 32 | -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Custom coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 0 11 | 12 | 13 | 0 14 | 15 | 16 | 0 17 | 18 | 19 | 0 20 | 21 | 22 | 0 23 | 24 | 25 | 0 26 | 27 | 28 | 0 29 | 30 | 31 | -------------------------------------------------------------------------------- /phplayersmenu.php: -------------------------------------------------------------------------------- 1 | * 6 | * * 7 | * This program is free software: you can redistribute it and/or modify * 8 | * it under the terms of the GNU Affero General Public License as published * 9 | * by the Free Software Foundation, either version 3 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU Affero General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU Affero General Public License * 18 | * along with this program. If not, see . * 19 | ******************************************************************************/ 20 | 21 | require_once('./inc/errorhandler.inc.php'); 22 | require_once('./inc/page.inc.php'); 23 | 24 | $pluginDir = SB_reqVal('name', true); 25 | 26 | SB_safePath($pluginDir); 27 | 28 | require('./plugins/' . $pluginDir . '/index.inc.php'); 29 | -------------------------------------------------------------------------------- /plugins/readme.txt: -------------------------------------------------------------------------------- 1 | This file should be in http://localhost/sitebar/plugins 2 | directory. Move the whole directory to achieve this for 3 | proper installation. 4 | 5 | Currently there can be only "command" and "auth" plugins. 6 | That is plugins which change some commands or add new 7 | functionality via commands and plugins for alternate 8 | authorization (which will usually have its command part as 9 | well). 10 | 11 | One plugin can implement more plugin types. 12 | 13 | More documentation will be written if there will be visible 14 | interest in plugins. Currently LDAP plugin should be used as 15 | reference for auth plugins and mailgate as reference for 16 | command plugins. 17 | 18 | Plugins can be downloaded from http://tinyurl.com/5j4ys . 19 | -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | * 6 | * * 7 | * This program is free software: you can redistribute it and/or modify * 8 | * it under the terms of the GNU Affero General Public License as published * 9 | * by the Free Software Foundation, either version 3 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU Affero General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU Affero General Public License * 18 | * along with this program. If not, see . * 19 | ******************************************************************************/ 20 | 21 | $_REQUEST['w'] = 'search'; 22 | include('index.php'); 23 | -------------------------------------------------------------------------------- /sitebar.php: -------------------------------------------------------------------------------- 1 | 2 | Header set Cache-Control "public, max-age=604800" 3 | 4 | -------------------------------------------------------------------------------- /skins/Classic/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/collapse.png -------------------------------------------------------------------------------- /skins/Classic/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | .siteBarBaseFont 4 | { 5 | font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif; 6 | font-size: 8pt; 7 | } 8 | 9 | .siteBarPageBackground 10 | { 11 | background: white; 12 | } 13 | 14 | .siteBar .cmnTitle 15 | { 16 | color: #333; 17 | background: #8899aa; 18 | } 19 | 20 | .siteBar .cmnTitleColorInverse 21 | { 22 | color: #8899aa; 23 | } 24 | 25 | .siteBar .cmnSubTitle 26 | { 27 | color: #333; 28 | background: #fffffa; 29 | } 30 | 31 | .siteBar .cmnSubTitleColorInverse 32 | { 33 | color: #fffffa; 34 | } 35 | 36 | .siteBar .cmnMenu 37 | { 38 | background: #fffff5; 39 | } 40 | 41 | .siteBar .cmnMenuItem 42 | { 43 | background: #c0d2ec; 44 | } 45 | 46 | .siteBar table th 47 | { 48 | background: #8899aa; 49 | color: #333; 50 | } 51 | -------------------------------------------------------------------------------- /skins/Classic/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/connect.png -------------------------------------------------------------------------------- /skins/Classic/directory.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../directory.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Classic/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/empty.png -------------------------------------------------------------------------------- /skins/Classic/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/feed.png -------------------------------------------------------------------------------- /skins/Classic/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/filter.png -------------------------------------------------------------------------------- /skins/Classic/hook.inc.php: -------------------------------------------------------------------------------- 1 | >David Szego 26 | -------------------------------------------------------------------------------- /skins/Classic/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/icon.png -------------------------------------------------------------------------------- /skins/Classic/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/join.png -------------------------------------------------------------------------------- /skins/Classic/join_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/join_last.png -------------------------------------------------------------------------------- /skins/Classic/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/link.png -------------------------------------------------------------------------------- /skins/Classic/link_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/link_private.png -------------------------------------------------------------------------------- /skins/Classic/link_wrong_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/link_wrong_favicon.png -------------------------------------------------------------------------------- /skins/Classic/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/logo.png -------------------------------------------------------------------------------- /skins/Classic/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/menu.png -------------------------------------------------------------------------------- /skins/Classic/messenger.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../messenger.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Classic/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/minus.png -------------------------------------------------------------------------------- /skins/Classic/minus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/minus_last.png -------------------------------------------------------------------------------- /skins/Classic/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/more.png -------------------------------------------------------------------------------- /skins/Classic/news.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../news.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Classic/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/node.png -------------------------------------------------------------------------------- /skins/Classic/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/node_open.png -------------------------------------------------------------------------------- /skins/Classic/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/plus.png -------------------------------------------------------------------------------- /skins/Classic/plus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/plus_last.png -------------------------------------------------------------------------------- /skins/Classic/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/reload.png -------------------------------------------------------------------------------- /skins/Classic/reload_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/reload_all.png -------------------------------------------------------------------------------- /skins/Classic/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/root.png -------------------------------------------------------------------------------- /skins/Classic/root_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/root_deleted.png -------------------------------------------------------------------------------- /skins/Classic/root_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/root_plus.png -------------------------------------------------------------------------------- /skins/Classic/root_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/root_transparent.png -------------------------------------------------------------------------------- /skins/Classic/search.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../search.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Classic/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Classic/search.png -------------------------------------------------------------------------------- /skins/Cornflower/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/collapse.png -------------------------------------------------------------------------------- /skins/Cornflower/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | .siteBarBaseFont 4 | { 5 | font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif; 6 | font-size: x-small; 7 | } 8 | 9 | .siteBarPageBackground 10 | { 11 | background: #ebecfb; 12 | } 13 | 14 | .siteBar .cmnTitle 15 | { 16 | color: #d5d7fd; 17 | background: #807ad6; 18 | } 19 | 20 | .siteBar .cmnTitleColorInverse 21 | { 22 | color: #807ad6; 23 | } 24 | 25 | .siteBar .cmnSubTitle 26 | { 27 | color: #295bb1; 28 | background: #dddfff; 29 | } 30 | 31 | .siteBar .cmnSubTitleColorInverse 32 | { 33 | color: #dddfff; 34 | } 35 | 36 | .siteBar .cmnMenu 37 | { 38 | background: #dddfff; 39 | } 40 | 41 | .siteBar .cmnMenuItem 42 | { 43 | background: navy; 44 | color: white; 45 | } 46 | 47 | .siteBar table th 48 | { 49 | background: #807ad6; 50 | color: #d5d7fd; 51 | } 52 | -------------------------------------------------------------------------------- /skins/Cornflower/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/connect.png -------------------------------------------------------------------------------- /skins/Cornflower/directory.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../directory.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Cornflower/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/empty.png -------------------------------------------------------------------------------- /skins/Cornflower/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/feed.png -------------------------------------------------------------------------------- /skins/Cornflower/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/filter.png -------------------------------------------------------------------------------- /skins/Cornflower/hook.inc.php: -------------------------------------------------------------------------------- 1 | >Ondrej Brablc 26 | -------------------------------------------------------------------------------- /skins/Cornflower/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/icon.png -------------------------------------------------------------------------------- /skins/Cornflower/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/join.png -------------------------------------------------------------------------------- /skins/Cornflower/join_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/join_last.png -------------------------------------------------------------------------------- /skins/Cornflower/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/link.png -------------------------------------------------------------------------------- /skins/Cornflower/link_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/link_private.png -------------------------------------------------------------------------------- /skins/Cornflower/link_wrong_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/link_wrong_favicon.png -------------------------------------------------------------------------------- /skins/Cornflower/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/logo.png -------------------------------------------------------------------------------- /skins/Cornflower/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/menu.png -------------------------------------------------------------------------------- /skins/Cornflower/messenger.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../messenger.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Cornflower/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/minus.png -------------------------------------------------------------------------------- /skins/Cornflower/minus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/minus_last.png -------------------------------------------------------------------------------- /skins/Cornflower/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/more.png -------------------------------------------------------------------------------- /skins/Cornflower/news.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../news.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Cornflower/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/node.png -------------------------------------------------------------------------------- /skins/Cornflower/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/node_open.png -------------------------------------------------------------------------------- /skins/Cornflower/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/plus.png -------------------------------------------------------------------------------- /skins/Cornflower/plus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/plus_last.png -------------------------------------------------------------------------------- /skins/Cornflower/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/reload.png -------------------------------------------------------------------------------- /skins/Cornflower/reload_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/reload_all.png -------------------------------------------------------------------------------- /skins/Cornflower/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/root.png -------------------------------------------------------------------------------- /skins/Cornflower/root_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/root_deleted.png -------------------------------------------------------------------------------- /skins/Cornflower/root_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/root_plus.png -------------------------------------------------------------------------------- /skins/Cornflower/root_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/root_transparent.png -------------------------------------------------------------------------------- /skins/Cornflower/search.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../search.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Cornflower/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Cornflower/search.png -------------------------------------------------------------------------------- /skins/Modern/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/collapse.png -------------------------------------------------------------------------------- /skins/Modern/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | .siteBarBaseFont 4 | { 5 | font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif; 6 | font-size: x-small; 7 | } 8 | 9 | .siteBarPageBackground 10 | { 11 | background: white; 12 | } 13 | 14 | .siteBar .cmnTitle 15 | { 16 | color: white; 17 | background: #295bb1; 18 | } 19 | 20 | .siteBar .cmnTitleColorInverse 21 | { 22 | color: #295bb1; 23 | } 24 | 25 | .siteBar .cmnSubTitle 26 | { 27 | color: #295bb1; 28 | background: #b2ccf7; 29 | } 30 | 31 | .siteBar .cmnSubTitleColorInverse 32 | { 33 | color: #b2ccf7; 34 | } 35 | 36 | .siteBar .cmnMenu 37 | { 38 | background: #f6f6f6; 39 | } 40 | 41 | .siteBar .cmnMenuItem 42 | { 43 | background: #ffeec2; 44 | } 45 | 46 | .siteBar table th 47 | { 48 | background: #b2ccf7; 49 | } 50 | -------------------------------------------------------------------------------- /skins/Modern/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/connect.png -------------------------------------------------------------------------------- /skins/Modern/directory.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../directory.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Modern/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/empty.png -------------------------------------------------------------------------------- /skins/Modern/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/feed.png -------------------------------------------------------------------------------- /skins/Modern/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/filter.png -------------------------------------------------------------------------------- /skins/Modern/hook.inc.php: -------------------------------------------------------------------------------- 1 | >Ondrej Brablc 26 | -------------------------------------------------------------------------------- /skins/Modern/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/icon.png -------------------------------------------------------------------------------- /skins/Modern/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/join.png -------------------------------------------------------------------------------- /skins/Modern/join_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/join_last.png -------------------------------------------------------------------------------- /skins/Modern/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/link.png -------------------------------------------------------------------------------- /skins/Modern/link_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/link_private.png -------------------------------------------------------------------------------- /skins/Modern/link_wrong_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/link_wrong_favicon.png -------------------------------------------------------------------------------- /skins/Modern/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/logo.png -------------------------------------------------------------------------------- /skins/Modern/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/menu.png -------------------------------------------------------------------------------- /skins/Modern/messenger.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../messenger.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Modern/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/minus.png -------------------------------------------------------------------------------- /skins/Modern/minus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/minus_last.png -------------------------------------------------------------------------------- /skins/Modern/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/more.png -------------------------------------------------------------------------------- /skins/Modern/news.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../news.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Modern/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/node.png -------------------------------------------------------------------------------- /skins/Modern/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/node_open.png -------------------------------------------------------------------------------- /skins/Modern/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/plus.png -------------------------------------------------------------------------------- /skins/Modern/plus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/plus_last.png -------------------------------------------------------------------------------- /skins/Modern/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/reload.png -------------------------------------------------------------------------------- /skins/Modern/reload_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/reload_all.png -------------------------------------------------------------------------------- /skins/Modern/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/root.png -------------------------------------------------------------------------------- /skins/Modern/root_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/root_deleted.png -------------------------------------------------------------------------------- /skins/Modern/root_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/root_plus.png -------------------------------------------------------------------------------- /skins/Modern/root_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/root_transparent.png -------------------------------------------------------------------------------- /skins/Modern/search.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../search.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Modern/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Modern/search.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/collapse.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | .siteBarBaseFont 4 | { 5 | font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif; 6 | font-size: x-small; 7 | } 8 | 9 | .siteBarPageBackground 10 | { 11 | background: #dde3eb; 12 | } 13 | 14 | .siteBar .cmnTitle 15 | { 16 | color: white; 17 | background: #7a8ca7; 18 | } 19 | 20 | .siteBar .cmnTitleColorInverse 21 | { 22 | color: #7a8ca7; 23 | } 24 | 25 | .siteBar .cmnSubTitle 26 | { 27 | color: #7a8ca7; 28 | background: #7a8ca7; 29 | } 30 | 31 | .siteBar .cmnSubTitleColorInverse 32 | { 33 | color: #7a8ca7; 34 | } 35 | 36 | .siteBar .cmnMenu 37 | { 38 | background:#fff; 39 | } 40 | 41 | .siteBar .cmnMenuItem 42 | { 43 | background: #7a8ca7; 44 | } 45 | 46 | .siteBar table th 47 | { 48 | background: #7a8ca7; 49 | } 50 | -------------------------------------------------------------------------------- /skins/Mozilla Modern/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/connect.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/directory.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../directory.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Mozilla Modern/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/empty.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/feed.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/filter.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/hook.inc.php: -------------------------------------------------------------------------------- 1 | >Jason Sawtelle 26 | -------------------------------------------------------------------------------- /skins/Mozilla Modern/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/icon.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/join.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/join_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/join_last.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/link.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/link_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/link_private.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/link_wrong_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/link_wrong_favicon.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/logo.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/menu.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/messenger.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../messenger.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Mozilla Modern/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/minus.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/minus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/minus_last.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/more.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/news.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../news.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Mozilla Modern/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/node.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/node_open.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/plus.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/plus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/plus_last.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/reload.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/reload_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/reload_all.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/root.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/root_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/root_deleted.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/root_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/root_plus.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/root_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/root_transparent.png -------------------------------------------------------------------------------- /skins/Mozilla Modern/search.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../search.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Mozilla Modern/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Mozilla Modern/search.png -------------------------------------------------------------------------------- /skins/Olive/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/collapse.png -------------------------------------------------------------------------------- /skins/Olive/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | .siteBarBaseFont 4 | { 5 | font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif; 6 | font-size: 8pt; 7 | } 8 | 9 | .siteBarPageBackground 10 | { 11 | background: #f2f6e5; 12 | } 13 | 14 | .siteBar .cmnTitle 15 | { 16 | color: white; 17 | background: #84aa00; 18 | } 19 | 20 | .siteBar .cmnTitleColorInverse 21 | { 22 | color: #84aa00; 23 | } 24 | 25 | .siteBar .cmnSubTitle 26 | { 27 | background: #fffff5; 28 | } 29 | 30 | .siteBar .cmnSubTitleColorInverse 31 | { 32 | color: #fffff5; 33 | } 34 | 35 | .siteBar .cmnMenu 36 | { 37 | background: #fffff5; 38 | color: #000000; 39 | } 40 | 41 | .siteBar .cmnMenuItem 42 | { 43 | color: #000000; 44 | background: #ffff9c; 45 | } 46 | 47 | .siteBar table th 48 | { 49 | background: #84aa00; 50 | } 51 | -------------------------------------------------------------------------------- /skins/Olive/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/connect.png -------------------------------------------------------------------------------- /skins/Olive/directory.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../directory.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Olive/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/empty.png -------------------------------------------------------------------------------- /skins/Olive/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/feed.png -------------------------------------------------------------------------------- /skins/Olive/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/filter.png -------------------------------------------------------------------------------- /skins/Olive/hook.inc.php: -------------------------------------------------------------------------------- 1 | >Gunnar Wrobel 26 | -------------------------------------------------------------------------------- /skins/Olive/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/icon.png -------------------------------------------------------------------------------- /skins/Olive/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/join.png -------------------------------------------------------------------------------- /skins/Olive/join_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/join_last.png -------------------------------------------------------------------------------- /skins/Olive/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/link.png -------------------------------------------------------------------------------- /skins/Olive/link_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/link_private.png -------------------------------------------------------------------------------- /skins/Olive/link_wrong_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/link_wrong_favicon.png -------------------------------------------------------------------------------- /skins/Olive/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/logo.png -------------------------------------------------------------------------------- /skins/Olive/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/menu.png -------------------------------------------------------------------------------- /skins/Olive/messenger.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../messenger.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Olive/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/minus.png -------------------------------------------------------------------------------- /skins/Olive/minus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/minus_last.png -------------------------------------------------------------------------------- /skins/Olive/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/more.png -------------------------------------------------------------------------------- /skins/Olive/news.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../news.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Olive/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/node.png -------------------------------------------------------------------------------- /skins/Olive/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/node_open.png -------------------------------------------------------------------------------- /skins/Olive/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/plus.png -------------------------------------------------------------------------------- /skins/Olive/plus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/plus_last.png -------------------------------------------------------------------------------- /skins/Olive/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/reload.png -------------------------------------------------------------------------------- /skins/Olive/reload_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/reload_all.png -------------------------------------------------------------------------------- /skins/Olive/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/root.png -------------------------------------------------------------------------------- /skins/Olive/root_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/root_deleted.png -------------------------------------------------------------------------------- /skins/Olive/root_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/root_plus.png -------------------------------------------------------------------------------- /skins/Olive/root_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/root_transparent.png -------------------------------------------------------------------------------- /skins/Olive/search.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../search.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/Olive/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/Olive/search.png -------------------------------------------------------------------------------- /skins/SiteBarXP/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/button_bg.png -------------------------------------------------------------------------------- /skins/SiteBarXP/button_bg_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/button_bg_down.png -------------------------------------------------------------------------------- /skins/SiteBarXP/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/collapse.png -------------------------------------------------------------------------------- /skins/SiteBarXP/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | .siteBarBaseFont 4 | { 5 | font-family: Tahoma, Geneva, Arial, Helvetica, sans-serif; 6 | font-size: 8pt; 7 | } 8 | 9 | .siteBarPageBackground 10 | { 11 | background: #FFFFFF; 12 | } 13 | 14 | .siteBar .cmnTitle 15 | { 16 | color: #333; 17 | background: #8899aa; 18 | } 19 | 20 | .siteBar .cmnTitleColorInverse 21 | { 22 | color: #8899aa; 23 | } 24 | 25 | .siteBar .cmnSubTitle 26 | { 27 | color: #333; 28 | background: #fffffa; 29 | } 30 | 31 | .siteBar .cmnSubTitleColorInverse 32 | { 33 | color: #fffffa; 34 | } 35 | 36 | .siteBar .cmnMenu 37 | { 38 | background: #EDF2FC; 39 | } 40 | 41 | .siteBar .cmnMenuItem 42 | { 43 | color: #FFFFFF; 44 | background: #6487DC; 45 | } 46 | 47 | .siteBar table th 48 | { 49 | background: #8899aa; 50 | color: #333; 51 | } 52 | -------------------------------------------------------------------------------- /skins/SiteBarXP/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/connect.png -------------------------------------------------------------------------------- /skins/SiteBarXP/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/empty.png -------------------------------------------------------------------------------- /skins/SiteBarXP/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/feed.png -------------------------------------------------------------------------------- /skins/SiteBarXP/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/filter.png -------------------------------------------------------------------------------- /skins/SiteBarXP/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/head.png -------------------------------------------------------------------------------- /skins/SiteBarXP/head_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/head_error.png -------------------------------------------------------------------------------- /skins/SiteBarXP/head_warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/head_warn.png -------------------------------------------------------------------------------- /skins/SiteBarXP/hook.inc.php: -------------------------------------------------------------------------------- 1 | >Igor 26 | -------------------------------------------------------------------------------- /skins/SiteBarXP/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/icon.png -------------------------------------------------------------------------------- /skins/SiteBarXP/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/join.png -------------------------------------------------------------------------------- /skins/SiteBarXP/join_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/join_last.png -------------------------------------------------------------------------------- /skins/SiteBarXP/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/link.png -------------------------------------------------------------------------------- /skins/SiteBarXP/link_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/link_private.png -------------------------------------------------------------------------------- /skins/SiteBarXP/link_wrong_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/link_wrong_favicon.png -------------------------------------------------------------------------------- /skins/SiteBarXP/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/logo.png -------------------------------------------------------------------------------- /skins/SiteBarXP/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/menu.png -------------------------------------------------------------------------------- /skins/SiteBarXP/messenger.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../messenger.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/SiteBarXP/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/minus.png -------------------------------------------------------------------------------- /skins/SiteBarXP/minus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/minus_last.png -------------------------------------------------------------------------------- /skins/SiteBarXP/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/more.png -------------------------------------------------------------------------------- /skins/SiteBarXP/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/node.png -------------------------------------------------------------------------------- /skins/SiteBarXP/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/node_open.png -------------------------------------------------------------------------------- /skins/SiteBarXP/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/plus.png -------------------------------------------------------------------------------- /skins/SiteBarXP/plus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/plus_last.png -------------------------------------------------------------------------------- /skins/SiteBarXP/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/reload.png -------------------------------------------------------------------------------- /skins/SiteBarXP/reload_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/reload_all.png -------------------------------------------------------------------------------- /skins/SiteBarXP/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/root.png -------------------------------------------------------------------------------- /skins/SiteBarXP/root_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/root_deleted.png -------------------------------------------------------------------------------- /skins/SiteBarXP/root_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/root_plus.png -------------------------------------------------------------------------------- /skins/SiteBarXP/root_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/root_transparent.png -------------------------------------------------------------------------------- /skins/SiteBarXP/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/search.png -------------------------------------------------------------------------------- /skins/SiteBarXP/toolbarbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/SiteBarXP/toolbarbg.png -------------------------------------------------------------------------------- /skins/System/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/collapse.png -------------------------------------------------------------------------------- /skins/System/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | .siteBarBaseFont 4 | { 5 | font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif; 6 | font-size: x-small; 7 | } 8 | 9 | .siteBarPageBackground 10 | { 11 | background: ButtonFace; 12 | } 13 | 14 | .siteBar .cmnTitle 15 | { 16 | color: ButtonText; 17 | background: ButtonShadow; 18 | } 19 | 20 | .siteBar .cmnTitleColorInverse 21 | { 22 | color: ButtonShadow; 23 | } 24 | 25 | .siteBar .cmnSubTitle 26 | { 27 | color: ButtonText; 28 | background: ButtonFace; 29 | } 30 | 31 | .siteBar .cmnSubTitleColorInverse 32 | { 33 | color: ButtonFace; 34 | } 35 | 36 | .siteBar .cmnMenu 37 | { 38 | background: ButtonFace ; 39 | } 40 | 41 | .siteBar .cmnMenuItem 42 | { 43 | color: HighlightText; 44 | background: Highlight; 45 | } 46 | 47 | .siteBar table th 48 | { 49 | background: ButtonShadow; 50 | } 51 | -------------------------------------------------------------------------------- /skins/System/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/connect.png -------------------------------------------------------------------------------- /skins/System/directory.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../directory.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/System/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/empty.png -------------------------------------------------------------------------------- /skins/System/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/feed.png -------------------------------------------------------------------------------- /skins/System/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/filter.png -------------------------------------------------------------------------------- /skins/System/hook.inc.php: -------------------------------------------------------------------------------- 1 | >Alexis Isaac 16 | -------------------------------------------------------------------------------- /skins/System/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/icon.png -------------------------------------------------------------------------------- /skins/System/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/join.png -------------------------------------------------------------------------------- /skins/System/join_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/join_last.png -------------------------------------------------------------------------------- /skins/System/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/link.png -------------------------------------------------------------------------------- /skins/System/link_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/link_private.png -------------------------------------------------------------------------------- /skins/System/link_wrong_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/link_wrong_favicon.png -------------------------------------------------------------------------------- /skins/System/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/logo.png -------------------------------------------------------------------------------- /skins/System/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/menu.png -------------------------------------------------------------------------------- /skins/System/messenger.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../messenger.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/System/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/minus.png -------------------------------------------------------------------------------- /skins/System/minus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/minus_last.png -------------------------------------------------------------------------------- /skins/System/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/more.png -------------------------------------------------------------------------------- /skins/System/news.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../news.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/System/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/node.png -------------------------------------------------------------------------------- /skins/System/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/node_open.png -------------------------------------------------------------------------------- /skins/System/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/plus.png -------------------------------------------------------------------------------- /skins/System/plus_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/plus_last.png -------------------------------------------------------------------------------- /skins/System/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/reload.png -------------------------------------------------------------------------------- /skins/System/reload_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/reload_all.png -------------------------------------------------------------------------------- /skins/System/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/root.png -------------------------------------------------------------------------------- /skins/System/root_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/root_deleted.png -------------------------------------------------------------------------------- /skins/System/root_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/root_plus.png -------------------------------------------------------------------------------- /skins/System/root_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/root_transparent.png -------------------------------------------------------------------------------- /skins/System/search.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @import url("../search.css"); 3 | @import url("common.css"); 4 | -------------------------------------------------------------------------------- /skins/System/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/System/search.png -------------------------------------------------------------------------------- /skins/command_edit_members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_edit_members.png -------------------------------------------------------------------------------- /skins/command_edit_members_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_edit_members_inactive.png -------------------------------------------------------------------------------- /skins/command_invite_members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_invite_members.png -------------------------------------------------------------------------------- /skins/command_invite_members_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_invite_members_inactive.png -------------------------------------------------------------------------------- /skins/command_leave_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_leave_group.png -------------------------------------------------------------------------------- /skins/command_leave_group_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_leave_group_inactive.png -------------------------------------------------------------------------------- /skins/command_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_message.png -------------------------------------------------------------------------------- /skins/command_message_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/command_message_inactive.png -------------------------------------------------------------------------------- /skins/common.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | /****************************************************************************** 4 | * SiteBar 3 - The Bookmark Server for Personal and Team Use. * 5 | * Copyright (C) 2004-2008 Ondrej Brablc * 6 | * * 7 | * This program is free software: you can redistribute it and/or modify * 8 | * it under the terms of the GNU Affero General Public License as published * 9 | * by the Free Software Foundation, either version 3 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU Affero General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU Affero General Public License * 18 | * along with this program. If not, see . * 19 | ******************************************************************************/ 20 | 21 | .siteBar img 22 | { 23 | border: 0; 24 | vertical-align: text-bottom; 25 | } 26 | -------------------------------------------------------------------------------- /skins/member_contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/member_contributor.png -------------------------------------------------------------------------------- /skins/member_keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/member_keep.png -------------------------------------------------------------------------------- /skins/member_moderator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/member_moderator.png -------------------------------------------------------------------------------- /skins/member_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/member_remove.png -------------------------------------------------------------------------------- /skins/more_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/more_arrow.png -------------------------------------------------------------------------------- /skins/msg_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/msg_new.gif -------------------------------------------------------------------------------- /skins/msg_read.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/msg_read.gif -------------------------------------------------------------------------------- /skins/punct_brace_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/punct_brace_left.png -------------------------------------------------------------------------------- /skins/punct_brace_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/punct_brace_right.png -------------------------------------------------------------------------------- /skins/punct_colon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/punct_colon.png -------------------------------------------------------------------------------- /skins/punct_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/punct_dot.png -------------------------------------------------------------------------------- /skins/punct_hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/punct_hash.png -------------------------------------------------------------------------------- /skins/punct_semicolon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brablc/sitebar/5f381ac403f609bd1429946049b3a7f740c9b5a8/skins/punct_semicolon.png -------------------------------------------------------------------------------- /sql/downgrade_3.1.1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.1'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.1.2.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.1.1'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.2.5.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2.5b'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.2.5b.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_favicon` 2 | CHANGE `ico` `ico` BLOB NOT NULL , 3 | CHANGE `changed` `t_changed` timestamp(14) NOT NULL; 4 | 5 | ALTER TABLE `sitebar_link` 6 | CHANGE `changed` `t_changed` timestamp(14) NOT NULL, 7 | CHANGE `tested` `t_tested` timestamp(14) NOT NULL, 8 | DROP `validate`; 9 | 10 | ALTER TABLE `sitebar_visit` 11 | CHANGE `visit` `t_visit` timestamp(14) NOT NULL; 12 | 13 | ALTER TABLE `sitebar_session` 14 | CHANGE `created` `created` datetime NOT NULL; 15 | 16 | UPDATE `sitebar_config` 17 | SET `release` = '3.2'; 18 | -------------------------------------------------------------------------------- /sql/downgrade_3.2.6.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2.5'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.2.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_node` 2 | DROP `sort_mode`, 3 | DROP `custom_order`; 4 | 5 | ALTER TABLE `sitebar_link` 6 | DROP `hits`; 7 | 8 | DROP TABLE `sitebar_visit`; 9 | 10 | DROP TABLE `sitebar_favicon`; 11 | 12 | UPDATE `sitebar_config` 13 | SET `release` = '3.1.2'; 14 | -------------------------------------------------------------------------------- /sql/downgrade_3.2cvs.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `sitebar_favicon`; 2 | 3 | UPDATE `sitebar_config` 4 | SET `release` = '3.1.2'; 5 | -------------------------------------------------------------------------------- /sql/downgrade_3.2cvs2.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | DROP `hits`; 3 | 4 | DROP TABLE `sitebar_visit`; 5 | 6 | UPDATE `sitebar_config` 7 | SET `release` = '3.2 CVS'; 8 | -------------------------------------------------------------------------------- /sql/downgrade_3.2cvs3.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_node` 2 | DROP `sort_mode`, 3 | DROP `custom_order`; 4 | 5 | UPDATE `sitebar_config` 6 | SET `release` = '3.2 CVS2'; 7 | -------------------------------------------------------------------------------- /sql/downgrade_3.2rc1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2 CVS3'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.2rc2.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_favicon` 2 | ADD `accessed` int(10) unsigned NOT NULL default '0'; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.2 RC1'; 6 | -------------------------------------------------------------------------------- /sql/downgrade_3.2rc3.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2 RC2'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.10.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | DROP `cannot_leave`, 3 | DROP `join_on_signup`, 4 | DROP `moderator_sharing`; 5 | 6 | UPDATE `sitebar_config` 7 | SET `release` = '3.3.9'; 8 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.11.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | ADD `moderator_sharing` tinyint(1) NOT NULL default '0'; 3 | 4 | ALTER TABLE `sitebar_acl` 5 | ADD `allow_purge` tinyint(1) NOT NULL DEFAULT '0', 6 | ADD `allow_grant` tinyint(1) NOT NULL DEFAULT '0'; 7 | 8 | UPDATE `sitebar_config` 9 | SET `release` = '3.3.10'; 10 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.12.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | ADD `allow_addself` tinyint(1) NOT NULL DEFAULT '0'; 3 | 4 | ALTER TABLE `sitebar_group` 5 | ADD `allow_contact` tinyint(1) NOT NULL DEFAULT '0'; 6 | 7 | ALTER TABLE `sitebar_group` 8 | ADD `is_usergroup` tinyint(1) NOT NULL default '0'; 9 | 10 | ALTER TABLE `sitebar_group` 11 | ADD `auto_join` text; 12 | 13 | ALTER TABLE `sitebar_group` 14 | ADD `cannot_leave` tinyint(1) NOT NULL default '0'; 15 | 16 | ALTER TABLE `sitebar_group` 17 | ADD `join_on_signup` tinyint(1) NOT NULL default '0'; 18 | 19 | ALTER TABLE `sitebar_group` 20 | DROP `uid`; 21 | 22 | ALTER TABLE `sitebar_config` 23 | ADD `gid_admins` int(10) unsigned NOT NULL DEFAULT '1'; 24 | 25 | ALTER TABLE `sitebar_config` 26 | ADD `gid_everyone` int(10) unsigned NOT NULL DEFAULT '2'; 27 | 28 | ALTER TABLE `sitebar_member` 29 | DROP `share`; 30 | 31 | ALTER TABLE `sitebar_member` 32 | DROP `confirmed`; 33 | 34 | ALTER TABLE `sitebar_member` 35 | DROP `invitator`; 36 | 37 | UPDATE `sitebar_config` 38 | SET `release` = '3.3.11'; 39 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.13.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `sitebar_message`; 2 | DROP TABLE `sitebar_message_folder`; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.3.12'; 6 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.2.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.1'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.3.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.2'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.4.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.3'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.5.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `sitebar_data`; 2 | 3 | UPDATE `sitebar_config` 4 | SET `release` = '3.3.4'; 5 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.6.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `sitebar_user_data`; 2 | 3 | UPDATE `sitebar_config` 4 | SET `release` = '3.3.5'; 5 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.6a.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_user` 2 | DROP `email`; 3 | 4 | ALTER TABLE `sitebar_user` 5 | CHANGE `username` `email` VARCHAR( 50 ) NOT NULL; 6 | 7 | ALTER TABLE `sitebar_user` 8 | DROP INDEX `username` , 9 | ADD UNIQUE `email` ( `email` ); 10 | 11 | UPDATE `sitebar_config` 12 | SET `release` = '3.3.6'; 13 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.6b.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | DROP `type`; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.3.6a'; 6 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.6c.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | DROP `is_feed`; 3 | 4 | ALTER TABLE `sitebar_link` 5 | DROP `is_sidebar`; 6 | 7 | UPDATE `sitebar_config` 8 | SET `release` = '3.3.6b'; 9 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.7.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.6c'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.8.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.7'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.9.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_root` 2 | DROP INDEX `uid`; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.3.8'; 6 | -------------------------------------------------------------------------------- /sql/downgrade_3.3.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE sitebar_user 2 | DROP `visited`, 3 | DROP `visits`; 4 | 5 | UPDATE `sitebar_config` 6 | SET `release` = '3.3 RC1'; 7 | -------------------------------------------------------------------------------- /sql/downgrade_3.3cvs4.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_config` 2 | DROP `changed`; 3 | 4 | ALTER TABLE `sitebar_link` 5 | CHANGE `changed` `changed` TIMESTAMP(14); 6 | 7 | ALTER TABLE `sitebar_link` 8 | CHANGE `tested` `tested` TIMESTAMP(14); 9 | 10 | ALTER TABLE `sitebar_link` 11 | DROP `added`; 12 | 13 | ALTER TABLE `sitebar_link` 14 | DROP `visited`; 15 | 16 | ALTER TABLE `sitebar_link` 17 | DROP `target`; 18 | 19 | ALTER TABLE `sitebar_visit` 20 | CHANGE `visited` `visit` TIMESTAMP(14); 21 | 22 | UPDATE `sitebar_node` 23 | SET sort_mode='visit' 24 | WHERE sort_mode='waiting'; 25 | 26 | ALTER TABLE `sitebar_node` 27 | DROP `type`; 28 | 29 | ALTER TABLE `sitebar_session` 30 | CHANGE `uid` `uid` INT(10) UNSIGNED DEFAULT '0' NOT NULL; 31 | 32 | DROP TABLE IF EXISTS `sitebar_favicon`; 33 | CREATE TABLE `sitebar_favicon` ( 34 | `favicon_md5` char(32) NOT NULL, 35 | `ico` mediumblob NOT NULL, 36 | `changed` timestamp(14) NOT NULL, 37 | PRIMARY KEY (`favicon_md5`) 38 | ) TYPE=MyISAM COMMENT='Contains the favicon cache.'; 39 | 40 | INSERT INTO `sitebar_favicon` 41 | SELECT `ckey`, `cvalue`, `created` 42 | FROM `sitebar_cache` 43 | WHERE `type` = 'favicon'; 44 | 45 | DROP TABLE IF EXISTS `sitebar_cache`; 46 | 47 | UPDATE `sitebar_config` 48 | SET `release` = '3.2.6'; 49 | -------------------------------------------------------------------------------- /sql/downgrade_3.3cvs5.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | DROP `is_usergroup`; 3 | 4 | ALTER TABLE `sitebar_user` 5 | DROP `approved`; 6 | 7 | UPDATE `sitebar_config` 8 | SET `release` = '3.3 CVS4'; 9 | -------------------------------------------------------------------------------- /sql/downgrade_3.3cvs6.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_user` 2 | ADD `code` int(6) DEFAULT NULL AFTER `demo`; 3 | 4 | DROP TABLE `sitebar_token`; 5 | 6 | UPDATE `sitebar_config` 7 | SET `release` = '3.3 CVS5'; 8 | -------------------------------------------------------------------------------- /sql/downgrade_3.3rc1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3 CVS6'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.4.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.5.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.4'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.6.1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_user` 2 | CHANGE `last_ip` `last_ip` VARCHAR(15) NULL DEFAULT NULL; 3 | 4 | ALTER TABLE `sitebar_session` 5 | CHANGE `ip` `ip` VARCHAR(15) NOT NULL DEFAULT ''; 6 | 7 | UPDATE `sitebar_config` 8 | SET `release` = '3.6'; 9 | -------------------------------------------------------------------------------- /sql/downgrade_3.6.2.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.6.1'; 3 | -------------------------------------------------------------------------------- /sql/downgrade_3.6.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_user` 2 | DROP `last_ip`; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.5'; 6 | -------------------------------------------------------------------------------- /sql/uninstall.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `sitebar_acl`; 2 | DROP TABLE IF EXISTS `sitebar_cache`; 3 | DROP TABLE IF EXISTS `sitebar_config`; 4 | DROP TABLE IF EXISTS `sitebar_data`; 5 | DROP TABLE IF EXISTS `sitebar_group`; 6 | DROP TABLE IF EXISTS `sitebar_link`; 7 | DROP TABLE IF EXISTS `sitebar_member`; 8 | DROP TABLE IF EXISTS `sitebar_node`; 9 | DROP TABLE IF EXISTS `sitebar_root`; 10 | DROP TABLE IF EXISTS `sitebar_session`; 11 | DROP TABLE IF EXISTS `sitebar_token`; 12 | DROP TABLE IF EXISTS `sitebar_user_data`; 13 | DROP TABLE IF EXISTS `sitebar_user`; 14 | DROP TABLE IF EXISTS `sitebar_visit`; 15 | DROP TABLE IF EXISTS `sitebar_message`; 16 | DROP TABLE IF EXISTS `sitebar_message_folder`; 17 | -------------------------------------------------------------------------------- /sql/upgrade_3.0.1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.0.2'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.0.2.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | DROP INDEX `url`; 3 | 4 | ALTER TABLE `sitebar_link` 5 | CHANGE `comment` `comment` LONGTEXT DEFAULT NULL; 6 | 7 | ALTER TABLE `sitebar_link` 8 | CHANGE `url` `url` TEXT NOT NULL DEFAULT ''; 9 | 10 | ALTER TABLE `sitebar_link` 11 | CHANGE `name` `name` VARCHAR(255) NOT NULL; 12 | 13 | ALTER TABLE `sitebar_node` 14 | CHANGE `name` `name` VARCHAR(255) NOT NULL; 15 | 16 | UPDATE `sitebar_config` 17 | SET `release` = '3.1'; 18 | -------------------------------------------------------------------------------- /sql/upgrade_3.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_user` 2 | ADD `demo` TINYINT( 1 ) DEFAULT '0' NOT NULL AFTER `verified`; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.0.1'; 6 | -------------------------------------------------------------------------------- /sql/upgrade_3.0pre1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_acl` 2 | CHANGE `allow_insert` `allow_insert` TINYINT( 1 ) DEFAULT '0' NOT NULL; 3 | 4 | ALTER TABLE `sitebar_acl` 5 | ADD INDEX `IGID` ( `gid` ); 6 | 7 | ALTER TABLE `sitebar_config` 8 | ADD `gid_everyone` int( 10 ) unsigned NOT NULL default '2'; 9 | 10 | ALTER TABLE `sitebar_group` 11 | ADD `allow_contact` TINYINT( 1 ) DEFAULT '0' NOT NULL AFTER `allow_addself` ; 12 | 13 | ALTER TABLE `sitebar_link` 14 | ADD `private` TINYINT( 1 ) DEFAULT '0' NOT NULL AFTER `name`; 15 | 16 | ALTER TABLE `sitebar_link` 17 | CHANGE `comment` `comment` TEXT; 18 | 19 | CREATE TABLE `sitebar_session` ( 20 | `uid` tinyint(10) unsigned NOT NULL default '0', 21 | `code` varchar(32) NOT NULL default '', 22 | `created` datetime NOT NULL default '0000-00-00 00:00:00', 23 | `expires` int(11) NOT NULL default '0', 24 | `ip` varchar(15) NOT NULL default '', 25 | PRIMARY KEY (`code`) 26 | ) TYPE=MyISAM COMMENT='Session management'; 27 | 28 | UPDATE `sitebar_config` 29 | SET `release` = '3.0rc1'; 30 | -------------------------------------------------------------------------------- /sql/upgrade_3.0rc1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_link` 2 | SET `url`='http://brablc.com/' 3 | WHERE `url`='http://brablc.com'; 4 | 5 | UPDATE `sitebar_link` 6 | SET `favicon` = 'http://brablc.com/favicon.ico' 7 | WHERE `url`='http://brablc.com/'; 8 | 9 | UPDATE `sitebar_config` 10 | SET `release` = '3.0'; 11 | -------------------------------------------------------------------------------- /sql/upgrade_3.1.1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.1.2'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.1.2.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `sitebar_favicon` ( 2 | `favicon_md5` char(32) NOT NULL, 3 | `ico` blob NOT NULL, 4 | `t_changed` timestamp(14) NOT NULL, 5 | PRIMARY KEY (`favicon_md5`) 6 | ) TYPE=MyISAM COMMENT='Contains the favicon cache.'; 7 | 8 | CREATE TABLE `sitebar_visit` ( 9 | `lid` int(10) unsigned NOT NULL, 10 | `uid` int(10) unsigned NOT NULL, 11 | `t_visit` timestamp(14) NOT NULL, 12 | PRIMARY KEY (`lid`,`uid`) 13 | ) TYPE=MyISAM COMMENT='Last link visit for each user'; 14 | 15 | ALTER TABLE `sitebar_link` 16 | CHANGE `favicon` `favicon` TEXT DEFAULT NULL; 17 | 18 | ALTER TABLE `sitebar_link` 19 | ADD `hits` int(10) unsigned NOT NULL default '0'; 20 | 21 | ALTER TABLE `sitebar_node` 22 | ADD `sort_mode` char(10) default 'user', 23 | ADD `custom_order` text; 24 | 25 | UPDATE `sitebar_config` 26 | SET `release` = '3.2'; 27 | -------------------------------------------------------------------------------- /sql/upgrade_3.1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.1.1'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.1cvs.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | DROP `urlchk`; 3 | 4 | ALTER TABLE `sitebar_link` 5 | DROP INDEX `url`; 6 | 7 | UPDATE `sitebar_config` 8 | SET `release` = '3.1 CVS2'; 9 | -------------------------------------------------------------------------------- /sql/upgrade_3.1cvs2.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | CHANGE `comment` `comment` LONGTEXT DEFAULT NULL; 3 | 4 | ALTER TABLE `sitebar_link` 5 | CHANGE `name` `name` VARCHAR(255) NOT NULL DEFAULT ''; 6 | 7 | ALTER TABLE `sitebar_node` 8 | CHANGE `name` `name` VARCHAR(255) NOT NULL DEFAULT ''; 9 | 10 | UPDATE `sitebar_config` 11 | SET `release` = '3.1'; 12 | -------------------------------------------------------------------------------- /sql/upgrade_3.2.5.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_session` 2 | CHANGE `uid` `uid` INT(10) UNSIGNED DEFAULT '0' NOT NULL; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.2.6'; 6 | -------------------------------------------------------------------------------- /sql/upgrade_3.2.5b.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2.5'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.2.6.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_config` 2 | ADD `changed` DATETIME NOT NULL AFTER `release`; 3 | 4 | ALTER TABLE `sitebar_link` 5 | CHANGE `changed` `changed` DATETIME NOT NULL; 6 | 7 | ALTER TABLE `sitebar_link` 8 | CHANGE `tested` `tested` DATETIME NOT NULL; 9 | 10 | ALTER TABLE `sitebar_link` 11 | ADD `added` DATETIME NOT NULL AFTER `favicon`; 12 | 13 | ALTER TABLE `sitebar_link` 14 | ADD `visited` DATETIME NOT NULL AFTER `changed`; 15 | 16 | ALTER TABLE `sitebar_link` 17 | ADD `target` varchar(32) AFTER `validate`; 18 | 19 | UPDATE `sitebar_link` 20 | SET added = changed; 21 | 22 | ALTER TABLE `sitebar_visit` 23 | CHANGE `visit` `visited` DATETIME NOT NULL; 24 | 25 | UPDATE `sitebar_node` 26 | SET sort_mode='waiting' 27 | WHERE sort_mode='visit'; 28 | 29 | ALTER TABLE `sitebar_node` 30 | ADD `type` VARCHAR(10) NOT NULL DEFAULT ''; 31 | 32 | ALTER TABLE `sitebar_session` 33 | CHANGE `uid` `uid` INT(10) UNSIGNED DEFAULT '0' NOT NULL; 34 | 35 | DROP TABLE IF EXISTS `sitebar_cache`; 36 | CREATE TABLE `sitebar_cache` ( 37 | `type` varchar(10) NOT NULL, 38 | `ckey` varchar(255) NOT NULL, 39 | `cvalue` LONGBLOB NOT NULL, 40 | `created` datetime NOT NULL default '0000-00-00 00:00:00', 41 | `expires` datetime NOT NULL default '0000-00-00 00:00:00', 42 | PRIMARY KEY (`type`, `ckey`) 43 | ) TYPE=MyISAM COMMENT='Contains multipurpose cache.'; 44 | 45 | INSERT INTO `sitebar_cache` 46 | SELECT 'favicon', `favicon_md5`, `ico`, `changed`, NULL 47 | FROM `sitebar_favicon`; 48 | 49 | DROP TABLE IF EXISTS `sitebar_favicon`; 50 | 51 | UPDATE `sitebar_config` 52 | SET `release` = '3.3 CVS4'; 53 | -------------------------------------------------------------------------------- /sql/upgrade_3.2.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_favicon` 2 | CHANGE `ico` `ico` MEDIUMBLOB NOT NULL , 3 | CHANGE `t_changed` `changed` TIMESTAMP(14) NOT NULL; 4 | 5 | ALTER TABLE `sitebar_link` 6 | CHANGE `comment` `comment` LONGTEXT NOT NULL, 7 | CHANGE `favicon` `favicon` TEXT NOT NULL, 8 | CHANGE `t_changed` `changed` TIMESTAMP(14) NOT NULL, 9 | CHANGE `t_tested` `tested` TIMESTAMP(14) NOT NULL, 10 | ADD `validate` TINYINT(1) DEFAULT '1' NOT NULL; 11 | 12 | ALTER TABLE `sitebar_visit` 13 | CHANGE `t_visit` `visit` TIMESTAMP(14) NOT NULL; 14 | 15 | ALTER TABLE `sitebar_session` 16 | CHANGE `created` `created` datetime NOT NULL; 17 | 18 | UPDATE `sitebar_config` 19 | SET `release` = '3.2.5'; 20 | -------------------------------------------------------------------------------- /sql/upgrade_3.2cvs.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `sitebar_visit` ( 2 | `lid` int(10) unsigned NOT NULL, 3 | `uid` int(10) unsigned NOT NULL, 4 | `t_visit` timestamp(14) NOT NULL, 5 | PRIMARY KEY (`lid`,`uid`) 6 | ) TYPE=MyISAM COMMENT='Last link visit for each user'; 7 | 8 | ALTER TABLE `sitebar_link` 9 | ADD `hits` int(10) unsigned NOT NULL default '0'; 10 | 11 | UPDATE `sitebar_config` 12 | SET `release` = '3.2 CVS2'; 13 | -------------------------------------------------------------------------------- /sql/upgrade_3.2cvs2.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_node` 2 | ADD `sort_mode` char(10) default 'user', 3 | ADD `custom_order` text; 4 | 5 | UPDATE `sitebar_config` 6 | SET `release` = '3.2 CVS3'; 7 | -------------------------------------------------------------------------------- /sql/upgrade_3.2cvs3.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2 RC1'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.2rc1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_favicon` DROP `accessed`; 2 | 3 | UPDATE `sitebar_config` 4 | SET `release` = '3.2 RC2'; 5 | -------------------------------------------------------------------------------- /sql/upgrade_3.2rc2.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2 RC3'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.2rc3.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.2'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.1.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.2'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.10.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | DROP `moderator_sharing`; 3 | 4 | ALTER TABLE `sitebar_acl` 5 | DROP `allow_purge`, 6 | DROP `allow_grant`; 7 | 8 | UPDATE `sitebar_config` 9 | SET `release` = '3.3.11'; 10 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.11.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | ADD `uid` int(10) unsigned NOT NULL; 3 | 4 | UPDATE `sitebar_group` 5 | SET `uid` = 1; 6 | 7 | ALTER TABLE `sitebar_group` 8 | DROP `allow_addself`; 9 | 10 | ALTER TABLE `sitebar_group` 11 | DROP `allow_contact`; 12 | 13 | ALTER TABLE `sitebar_group` 14 | DROP `is_usergroup`; 15 | 16 | ALTER TABLE `sitebar_group` 17 | DROP `auto_join`; 18 | 19 | ALTER TABLE `sitebar_group` 20 | DROP `cannot_leave`; 21 | 22 | ALTER TABLE `sitebar_group` 23 | DROP `join_on_signup`; 24 | 25 | ALTER TABLE `sitebar_config` 26 | DROP `gid_admins`; 27 | 28 | ALTER TABLE `sitebar_config` 29 | DROP `gid_everyone`; 30 | 31 | ALTER TABLE `sitebar_member` 32 | ADD `share` tinyint(1) NOT NULL DEFAULT '0', 33 | ADD `confirmed` tinyint(1) NOT NULL DEFAULT '0', 34 | ADD `invitator` int(10) unsigned DEFAULT NULL; 35 | 36 | UPDATE `sitebar_member` 37 | SET `confirmed`=1; 38 | 39 | UPDATE `sitebar_group` 40 | SET `uid` = 1; 41 | 42 | UPDATE `sitebar_config` 43 | SET `release` = '3.3.12'; 44 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.12.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `sitebar_message` 2 | ( 3 | `mid` int(10) unsigned NOT NULL auto_increment, 4 | `uid` int(10) unsigned NOT NULL, 5 | `gid` int(10) unsigned, 6 | `sent` datetime NOT NULL default '0000-00-00 00:00:00', 7 | `expires` datetime NOT NULL default '0000-00-00 00:00:00', 8 | `role` varchar(10), 9 | `format` varchar(10), 10 | `to_label` text, 11 | `subject` text, 12 | `message` text, 13 | PRIMARY KEY (`mid`) 14 | ) 15 | COMMENT='Message body.'; 16 | 17 | CREATE TABLE `sitebar_message_folder` 18 | ( 19 | `mid` int(10) unsigned NOT NULL, 20 | `uid` int(10) unsigned NOT NULL, 21 | `folder` varchar(10) default 'inbox', 22 | `flag` varchar(10) default 'new', 23 | PRIMARY KEY (`mid`,`uid`,`folder`) 24 | ) 25 | COMMENT='Message body placed in a folder.'; 26 | 27 | UPDATE `sitebar_config` 28 | SET `release` = '3.3.13'; 29 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.13.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.4'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.2.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.3'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.3.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.4'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.4.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `sitebar_data` ( 2 | `type` varchar(10) NOT NULL, 3 | `dkey` varchar(255) NOT NULL, 4 | `dvalue` LONGBLOB NOT NULL, 5 | PRIMARY KEY (`type`, `dkey`) 6 | ) 7 | COMMENT='Offers multipurpose data strorage space.'; 8 | 9 | UPDATE `sitebar_config` 10 | SET `release` = '3.3.5'; 11 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.5.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `sitebar_user_data` ( 2 | `type` varchar(10) NOT NULL, 3 | `uid` int(10) unsigned NOT NULL, 4 | `dkey` varchar(255) NOT NULL, 5 | `dvalue` LONGBLOB NOT NULL, 6 | PRIMARY KEY (`type`, `uid`, `dkey`) 7 | ) 8 | COMMENT='Offers multipurpose user data storage space.'; 9 | 10 | UPDATE `sitebar_config` 11 | SET `release` = '3.3.6'; 12 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.6.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_user` 2 | CHANGE `email` `username` VARCHAR( 50 ) NOT NULL; 3 | 4 | ALTER TABLE `sitebar_user` 5 | ADD `email` VARCHAR( 50 ) AFTER `pass`; 6 | 7 | ALTER TABLE `sitebar_user` 8 | DROP INDEX `email` , 9 | ADD UNIQUE `username` ( `username` ); 10 | 11 | UPDATE `sitebar_user` 12 | SET email = username 13 | WHERE username LIKE '%@%.%'; 14 | 15 | UPDATE `sitebar_config` 16 | SET `release` = '3.3.6a'; 17 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.6a.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | ADD `type` varchar(10) DEFAULT ''; 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.3.6b'; 6 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.6b.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_link` 2 | ADD `is_feed` tinyint(1) NOT NULL default '0' AFTER `is_dead` , 3 | ADD `is_sidebar` tinyint(1) NOT NULL default '0' AFTER `is_feed` ; 4 | 5 | UPDATE `sitebar_config` 6 | SET `release` = '3.3.6c'; 7 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.6c.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.7'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.7.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.8'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.8.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_root` 2 | ADD INDEX `uid` (`uid`); 3 | 4 | UPDATE `sitebar_config` 5 | SET `release` = '3.3.9'; 6 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.9.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | ADD `cannot_leave` tinyint(1) NOT NULL default '0', 3 | ADD `join_on_signup` tinyint(1) NOT NULL default '0', 4 | ADD `moderator_sharing` tinyint(1) NOT NULL default '0'; 5 | 6 | UPDATE `sitebar_config` 7 | SET `release` = '3.3.10'; 8 | -------------------------------------------------------------------------------- /sql/upgrade_3.3.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3.1'; 3 | 4 | UPDATE `sitebar_user` 5 | SET `approved` = 1 6 | WHERE uid < 3; 7 | -------------------------------------------------------------------------------- /sql/upgrade_3.3cvs4.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_group` 2 | ADD `is_usergroup` tinyint(1) NOT NULL default '0' AFTER `allow_contact`; 3 | 4 | ALTER TABLE `sitebar_user` 5 | ADD `approved` tinyint(1) NOT NULL default '0' AFTER `verified`; 6 | 7 | UPDATE `sitebar_config` 8 | SET `release` = '3.3 CVS5'; 9 | -------------------------------------------------------------------------------- /sql/upgrade_3.3cvs5.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `sitebar_user` 2 | DROP `code`; 3 | 4 | CREATE TABLE `sitebar_token` ( 5 | `uid` int(10) unsigned NOT NULL, 6 | `type` varchar(10) DEFAULT '', 7 | `issued` datetime NOT NULL default '0000-00-00 00:00:00', 8 | `expires` int(11) NOT NULL DEFAULT '0', 9 | `token` varchar(8) DEFAULT '' 10 | ) TYPE=MyISAM PACK_KEYS=0 COMMENT='Tokes for email validation, forgotten passwords, ...'; 11 | 12 | UPDATE `sitebar_config` 13 | SET `release` = '3.3 CVS6'; 14 | -------------------------------------------------------------------------------- /sql/upgrade_3.3cvs6.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.3 RC1'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.3rc1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE sitebar_user 2 | ADD `visited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 3 | ADD `visits` int( 11 ) unsigned NOT NULL DEFAULT '0'; 4 | 5 | UPDATE `sitebar_config` 6 | SET `release` = '3.3'; 7 | -------------------------------------------------------------------------------- /sql/upgrade_3.4.sql: -------------------------------------------------------------------------------- 1 | UPDATE `sitebar_config` 2 | SET `release` = '3.5'; 3 | -------------------------------------------------------------------------------- /sql/upgrade_3.5.sql: -------------------------------------------------------------------------------- 1 | SET @@sql_mode = ''; 2 | 3 | ALTER TABLE `sitebar_user` 4 | CHANGE `visited` `visited` DATETIME NULL DEFAULT NULL; 5 | 6 | UPDATE `sitebar_user` 7 | SET `visited` = NULL 8 | WHERE date(`visited`) = '0000-00-00 00:00:00'; 9 | 10 | ALTER TABLE `sitebar_user` 11 | ADD `last_ip` VARCHAR(15) DEFAULT NULL AFTER `visits`; 12 | 13 | UPDATE sitebar_user su, (SELECT uid, max(ip) last_ip FROM sitebar_session GROUP BY uid) x 14 | SET su.last_ip = x.last_ip 15 | WHERE su.uid = x.uid; 16 | 17 | UPDATE `sitebar_config` 18 | SET `release` = '3.6'; 19 | -------------------------------------------------------------------------------- /sql/upgrade_3.6.1.sql: -------------------------------------------------------------------------------- 1 | SET @@sql_mode = ''; 2 | 3 | ALTER TABLE `sitebar_cache` change `created` `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; 4 | ALTER TABLE `sitebar_config` change `changed` `changed` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; 5 | ALTER TABLE `sitebar_link` change `added` `added` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; 6 | ALTER TABLE `sitebar_message` change `sent` `sent` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; 7 | ALTER TABLE `sitebar_session` change `created` `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; 8 | ALTER TABLE `sitebar_token` change `issued` `issued` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; 9 | 10 | UPDATE `sitebar_cache` SET `expires` = NULL where date(`expires`) = '0000-00-00 00:00:00'; 11 | UPDATE `sitebar_link` SET `changed` = NULL where date(`changed`) = '0000-00-00 00:00:00'; 12 | UPDATE `sitebar_link` SET `visited` = NULL where date(`visited`) = '0000-00-00 00:00:00'; 13 | UPDATE `sitebar_link` SET `tested` = NULL where date(`tested`) = '0000-00-00 00:00:00'; 14 | 15 | UPDATE `sitebar_config` 16 | SET `release` = '3.6.2'; 17 | -------------------------------------------------------------------------------- /sql/upgrade_3.6.sql: -------------------------------------------------------------------------------- 1 | SET @@sql_mode = ''; 2 | 3 | ALTER TABLE `sitebar_user` 4 | CHANGE `last_ip` `last_ip` VARCHAR(45) NULL DEFAULT NULL; 5 | 6 | ALTER TABLE `sitebar_session` 7 | CHANGE `created` `created` DATETIME NULL DEFAULT NULL; 8 | 9 | ALTER TABLE `sitebar_session` 10 | CHANGE `ip` `ip` VARCHAR(45) NOT NULL; 11 | 12 | UPDATE `sitebar_config` 13 | SET `release` = '3.6.1'; 14 | -------------------------------------------------------------------------------- /token.php: -------------------------------------------------------------------------------- 1 | * 6 | * * 7 | * This program is free software: you can redistribute it and/or modify * 8 | * it under the terms of the GNU Affero General Public License as published * 9 | * by the Free Software Foundation, either version 3 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU Affero General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU Affero General Public License * 18 | * along with this program. If not, see . * 19 | ******************************************************************************/ 20 | 21 | require_once('./inc/token.inc.php'); 22 | 23 | $token = SB_Token::staticInstance(); 24 | $token->validate(key($_GET), current($_GET), true); 25 | -------------------------------------------------------------------------------- /validate.php: -------------------------------------------------------------------------------- 1 | * 6 | * * 7 | * This program is free software: you can redistribute it and/or modify * 8 | * it under the terms of the GNU Affero General Public License as published * 9 | * by the Free Software Foundation, either version 3 of the License, or * 10 | * (at your option) any later version. * 11 | * * 12 | * This program is distributed in the hope that it will be useful, * 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 15 | * GNU Affero General Public License for more details. * 16 | * * 17 | * You should have received a copy of the GNU Affero General Public License * 18 | * along with this program. If not, see . * 19 | ******************************************************************************/ 20 | 21 | require_once('./inc/validator.inc.php'); 22 | 23 | $validator = new SB_Validator(); 24 | $validator->validate($_GET['id'], isset($_GET['get_favicon'])); 25 | -------------------------------------------------------------------------------- /weblinks.php: -------------------------------------------------------------------------------- 1 |