├── classes
├── index.html
├── post.class.php
├── webm.class.php
├── tag.class.php
├── extimage.class.php
├── cache.class.php
├── comment.class.php
├── innodb.search.class.php
├── user.class.php
└── search.class.php
├── counter
├── index.html
├── 0.png
├── 1.png
├── 2.png
├── 3.png
├── 4.png
├── 5.png
├── 6.png
├── 7.png
├── 8.png
├── 9.png
└── quote.gif
├── images
├── index.html
└── 404.jpg
├── public
├── index.html
├── current_date.php
├── domains.php
├── addfav.php
├── report.php
├── post_vote.php
├── remove.php
└── note_save.php
├── script
├── index.html
├── pngfix.js
├── sound.js
├── scriptaculous.js
└── builder.js
├── tmp
└── index.html
├── includes
├── index.html
├── forum
│ ├── index.html
│ ├── forum_search.php
│ ├── forum_post.php
│ ├── forum_remove.php
│ ├── forum_edit.php
│ ├── forum_list.php
│ ├── forum_add.php
│ └── forum_view.php
├── search.php
├── posts.php
├── forum.php
├── login.php
├── account.php
├── post_vote.php
├── index.php
├── post_random.php
├── signup.php
├── header.php
├── api_view.php
├── alias.php
├── users.php
├── reset_password.php
├── dapi.php
├── account_options.php
├── favorites.php
├── account_profile.php
├── api_list.php
└── history.php
├── thumbnails
└── index.html
├── LICENSE.txt
├── default.png
├── favicon.ico
├── gelbooru.png
├── README.md
├── extras
├── lightbox2.04.zip
├── bytebox.css
├── readme.txt
└── bytebox.js
├── autoload.php
├── inv.header.php
├── admin
├── header.php
├── tcon_depoint.php
├── index.php
├── admin.functions.php
├── add_group.php
├── left_menu.php
├── mass_parent.php
├── edit_user.php
├── alias.php
├── reported_posts.php
├── reported_comments.php
├── ban_user.php
└── edit_group_permission.php
├── gelbooru.src
├── auto_login.php
├── help
├── index.php
├── forum.php
├── posts.php
└── ratings.php
├── .gitattributes
├── thumbnail.php
├── .gitignore
├── optimize_defrag.php
├── thumbs_fix.php
├── upgrades
├── 0.1.10
│ └── index.php
└── 0.1.11
│ └── index.php
├── index.php
├── install
├── index.php
└── Readme.txt
├── functions.global.php
├── image_data.php
├── gelbooru.xml
├── config.php
└── batch_add.php
/classes/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/counter/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/images/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/script/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tmp/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/includes/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/thumbnails/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/includes/forum/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/current_date.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/LICENSE.txt
--------------------------------------------------------------------------------
/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/default.png
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/favicon.ico
--------------------------------------------------------------------------------
/gelbooru.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/gelbooru.png
--------------------------------------------------------------------------------
/counter/0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/0.png
--------------------------------------------------------------------------------
/counter/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/1.png
--------------------------------------------------------------------------------
/counter/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/2.png
--------------------------------------------------------------------------------
/counter/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/3.png
--------------------------------------------------------------------------------
/counter/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/4.png
--------------------------------------------------------------------------------
/counter/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/5.png
--------------------------------------------------------------------------------
/counter/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/6.png
--------------------------------------------------------------------------------
/counter/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/7.png
--------------------------------------------------------------------------------
/counter/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/8.png
--------------------------------------------------------------------------------
/counter/9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/9.png
--------------------------------------------------------------------------------
/images/404.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/images/404.jpg
--------------------------------------------------------------------------------
/counter/quote.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/counter/quote.gif
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # gelbooru-fork
2 | A continuation of Gelbooru 0.1 beta with an emphasis on usability.
3 |
--------------------------------------------------------------------------------
/extras/lightbox2.04.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zixaphir/gelbooru-fork/HEAD/extras/lightbox2.04.zip
--------------------------------------------------------------------------------
/autoload.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/domains.php:
--------------------------------------------------------------------------------
1 | ",$domains);
4 | ?>
5 |
--------------------------------------------------------------------------------
/includes/search.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/includes/forum/forum_search.php:
--------------------------------------------------------------------------------
1 | real_escape_string($_POST['search']);
5 | header("Location: index.php?page=forum&s=list&query=$search");
6 | }
7 | ?>
--------------------------------------------------------------------------------
/inv.header.php:
--------------------------------------------------------------------------------
1 | set_charset('utf8');
7 | require "auto_login.php";
8 | ?>
--------------------------------------------------------------------------------
/admin/header.php:
--------------------------------------------------------------------------------
1 | gotpermission('admin_panel'))
5 | {
6 | header("Location:../");
7 | exit;
8 | }
9 | define('_IN_ADMIN_HEADER_',true);
10 | require "left_menu.php";
11 | ?>
--------------------------------------------------------------------------------
/gelbooru.src:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/admin/tcon_depoint.php:
--------------------------------------------------------------------------------
1 | gotpermission('is_admin'))
5 | header("Location:../");
6 | exit;
7 | }
8 | $s1 = "UPDATE posts set score='-100' where tags LIKE '% toddlercon %' AND rating !='safe'";
9 | $db->query($s1) or die($db->error);
10 | ?>
--------------------------------------------------------------------------------
/auto_login.php:
--------------------------------------------------------------------------------
1 | check_log())
6 | {
7 | setcookie("user_id","",time()-60*60*24*365);
8 | setcookie("pass_hash","",time()-60*60*24*365);
9 | }
10 | }
11 | ?>
--------------------------------------------------------------------------------
/includes/posts.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/help/index.php:
--------------------------------------------------------------------------------
1 |
5 |