Merge branch 'master' into merge-from-master
Conflicts: ext/tag_list/theme.php
This commit is contained in:
commit
ebab9eddeb
@ -14,7 +14,7 @@ class Chatbox extends Extension {
|
|||||||
|
|
||||||
// Adds header to enable chatbox
|
// Adds header to enable chatbox
|
||||||
$root = get_base_href();
|
$root = get_base_href();
|
||||||
$yPath = make_http("") . "/ext/chatbox/";
|
$yPath = make_http( $root . "/ext/chatbox/");
|
||||||
$page->add_html_header("
|
$page->add_html_header("
|
||||||
<script src=\"http://code.jquery.com/jquery-migrate-1.2.1.js\" type=\"text/javascript\"></script>
|
<script src=\"http://code.jquery.com/jquery-migrate-1.2.1.js\" type=\"text/javascript\"></script>
|
||||||
<script src=\"$root/ext/chatbox/js/yshout.js\" type=\"text/javascript\"></script>
|
<script src=\"$root/ext/chatbox/js/yshout.js\" type=\"text/javascript\"></script>
|
||||||
@ -27,10 +27,9 @@ class Chatbox extends Extension {
|
|||||||
</script>
|
</script>
|
||||||
", 500);
|
", 500);
|
||||||
|
|
||||||
// loads the chatbox at the set location
|
// loads the chatbox at the set location
|
||||||
$html = "<div id=\"yshout\"></div>";
|
$html = "<div id=\"yshout\"></div>";
|
||||||
$chatblock = new Block("Chatbox", $html, "main", 97);
|
$chatblock = new Block("Chatbox", $html, "main", 97);
|
||||||
$page->add_block($chatblock);
|
$page->add_block($chatblock);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,18 +29,16 @@ else if(CA === 2) { // New Tags
|
|||||||
* jQuery should always active here, meaning we can use jQuery in this part of the bookmarklet.
|
* jQuery should always active here, meaning we can use jQuery in this part of the bookmarklet.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if(document.getElementById("post_tag_string") !== null) {
|
if(document.getElementById("image-container") !== null) {
|
||||||
|
var imageContainer = $('#image-container')[0];
|
||||||
if (typeof tag !== "ftp://ftp." && chk !==1) {
|
if (typeof tag !== "ftp://ftp." && chk !==1) {
|
||||||
var tag = $('#post_tag_string').text().replace(/\n/g, "");
|
var tag = imageContainer.getAttribute('data-tags');
|
||||||
}
|
}
|
||||||
tag = tag.replace(/\+/g, "%2B");
|
tag = tag.replace(/\+/g, "%2B");
|
||||||
|
|
||||||
var source = "http://" + document.location.hostname + document.location.href.match("\/posts\/[0-9]+");
|
var source = "http://" + document.location.hostname + document.location.href.match("\/posts\/[0-9]+");
|
||||||
|
|
||||||
var rlist = $('[name="post[rating]"]');
|
var rating = imageContainer.getAttribute('data-rating');
|
||||||
for( var x=0; x < 3; x++){
|
|
||||||
var rating = (rlist[x].checked === true ? rlist[x].value : rating);
|
|
||||||
}
|
|
||||||
|
|
||||||
var fileinfo = $('#sidebar > section:eq(3) > ul > :contains("Size") > a');
|
var fileinfo = $('#sidebar > section:eq(3) > ul > :contains("Size") > a');
|
||||||
var furl = "http://" + document.location.hostname + fileinfo.attr('href');
|
var furl = "http://" + document.location.hostname + fileinfo.attr('href');
|
||||||
@ -49,6 +47,7 @@ if(document.getElementById("post_tag_string") !== null) {
|
|||||||
|
|
||||||
if(supext.search(furl.match("[a-zA-Z0-9]+$")[0]) !== -1){
|
if(supext.search(furl.match("[a-zA-Z0-9]+$")[0]) !== -1){
|
||||||
if(filesize <= maxsize){
|
if(filesize <= maxsize){
|
||||||
|
history.pushState(history.state, document.title, location.href);
|
||||||
location.href = ste+furl+"&tags="+tag+"&rating="+rating+"&source="+source;
|
location.href = ste+furl+"&tags="+tag+"&rating="+rating+"&source="+source;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
@ -61,15 +60,11 @@ if(document.getElementById("post_tag_string") !== null) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* konachan | sankakucomplex | gelbooru
|
* konachan | sankakucomplex | gelbooru | etc.
|
||||||
*/
|
*/
|
||||||
else if(document.getElementById('tag-sidebar') !== null) {
|
else if(document.getElementById('tag-sidebar') !== null) {
|
||||||
if (typeof tag !== "ftp://ftp." && chk !==1) {
|
if (typeof tag !== "ftp://ftp." && chk !==1) {
|
||||||
if(document.location.href.search("sankakucomplex\\.com") >= 0 || document.location.href.search("gelbooru\\.com")){
|
var tag = document.getElementById('tag-sidebar').innerText.replace(/ /g, "_").replace(/[\?_]*(.*?)_(\(\?\)_)?[0-9]+$/gm, "$1 ");
|
||||||
var tag = document.getElementById('tag-sidebar').innerText.replace(/ /g, "_").replace(/[\?_]*(.*?)_(\(\?\)_)?[0-9]+\n/g, "$1 ");
|
|
||||||
}else{
|
|
||||||
var tag = document.getElementById("post_tags").value;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
tag = tag.replace(/\+/g, "%2B");
|
tag = tag.replace(/\+/g, "%2B");
|
||||||
|
|
||||||
@ -77,21 +72,27 @@ else if(document.getElementById('tag-sidebar') !== null) {
|
|||||||
|
|
||||||
var rating = document.getElementById("stats").innerHTML.match("Rating: ([a-zA-Z]+)")[1];
|
var rating = document.getElementById("stats").innerHTML.match("Rating: ([a-zA-Z]+)")[1];
|
||||||
|
|
||||||
if(source.search("sankakucomplex\\.com") >= 0 || source.search("konachan\\.com") >= 0){
|
if(document.getElementById('highres') !== null) {
|
||||||
var fileinfo = document.getElementById("highres");
|
var fileinfo = document.getElementById("highres");
|
||||||
//NOTE: If highres doesn't exist, post must be flash (only sankakucomplex has flash)
|
}else if(document.getElementById('pfd') !== null){
|
||||||
}else if(source.search("gelbooru\\.com") >= 0){
|
// Try to find the "Original image" link in the options sidebar.
|
||||||
var fileinfo = document.getElementById('pfd').parentNode.parentNode.getElementsByTagName('a')[0];
|
var fileinfo;
|
||||||
//gelbooru has no easy way to select the original image link, so we need to double check it is the correct link.
|
var nodes = document.getElementById('pfd').parentNode.parentNode.getElementsByTagName('a');
|
||||||
fileinfo = (fileinfo.getAttribute('href') === "#" ? document.getElementById('pfd').parentNode.parentNode.getElementsByTagName('a')[1] : fileinfo);
|
for (var i = 0; i < nodes.length; i++) {
|
||||||
|
if (nodes[i].getAttribute('href') === "#") continue;
|
||||||
|
fileinfo = nodes[i];
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fileinfo = fileinfo || document.getElementsByTagName('embed')[0]; //If fileinfo is null then image is most likely flash.
|
fileinfo = fileinfo || document.getElementsByTagName('embed')[0]; //If fileinfo is null then assume that the image is flash.
|
||||||
var furl = fileinfo.href || fileinfo.src;
|
var furl = fileinfo.href || fileinfo.src;
|
||||||
|
furl = furl.split('?')[0]; // Remove trailing variables, if present.
|
||||||
var fs = (fileinfo.innerText.match(/[0-9]+ (KB|MB)/) || ["0 KB"])[0].split(" ");
|
var fs = (fileinfo.innerText.match(/[0-9]+ (KB|MB)/) || ["0 KB"])[0].split(" ");
|
||||||
var filesize = (fs[1] === "MB" ? fs[0] * 1024 : fs[0]);
|
var filesize = (fs[1] === "MB" ? fs[0] * 1024 : fs[0]);
|
||||||
|
|
||||||
if(supext.search(furl.match("[a-zA-Z0-9]+$")[0]) !== -1){
|
if(supext.search(furl.match("[a-zA-Z0-9]+$")[0]) !== -1){
|
||||||
if(filesize <= maxsize){
|
if(filesize <= maxsize){
|
||||||
|
history.pushState(history.state, document.title, location.href);
|
||||||
location.href = ste+furl+"&tags="+tag+"&rating="+rating+"&source="+source;
|
location.href = ste+furl+"&tags="+tag+"&rating="+rating+"&source="+source;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
@ -128,6 +129,7 @@ else if(document.getElementsByTagName("title")[0].innerHTML.search("Image [0-9.-
|
|||||||
if(tag.search(/\bflash\b/) === -1) {
|
if(tag.search(/\bflash\b/) === -1) {
|
||||||
var img = document.getElementById("main_image").src;
|
var img = document.getElementById("main_image").src;
|
||||||
if(supext.search(img.match(".*\\.([a-z0-9]+)")[1]) !== -1) {
|
if(supext.search(img.match(".*\\.([a-z0-9]+)")[1]) !== -1) {
|
||||||
|
history.pushState(history.state, document.title, location.href);
|
||||||
location.href = ste+img+"&tags="+tag+"&source="+source;
|
location.href = ste+img+"&tags="+tag+"&source="+source;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
@ -137,6 +139,7 @@ else if(document.getElementsByTagName("title")[0].innerHTML.search("Image [0-9.-
|
|||||||
else{
|
else{
|
||||||
var mov = document.location.hostname+document.getElementsByName("movie")[0].value;
|
var mov = document.location.hostname+document.getElementsByName("movie")[0].value;
|
||||||
if(supext.search("swf") !== -1) {
|
if(supext.search("swf") !== -1) {
|
||||||
|
history.pushState(history.state, document.title, location.href);
|
||||||
location.href = ste+mov+"&tags="+tag+"&source="+source;
|
location.href = ste+mov+"&tags="+tag+"&source="+source;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
@ -403,11 +403,14 @@ class Upload extends Extension {
|
|||||||
$metadata['tags'] = $tags;
|
$metadata['tags'] = $tags;
|
||||||
$metadata['source'] = (($url == $source) && !$config->get_bool('upload_tlsource') ? "" : $source);
|
$metadata['source'] = (($url == $source) && !$config->get_bool('upload_tlsource') ? "" : $source);
|
||||||
|
|
||||||
|
$ext = false;
|
||||||
if (is_array($headers)) {
|
if (is_array($headers)) {
|
||||||
$metadata['extension'] = getExtension(findHeader($headers, 'Content-Type'));
|
$ext = getExtension(findHeader($headers, 'Content-Type'));
|
||||||
} else {
|
|
||||||
$metadata['extension'] = $pathinfo['extension'];
|
|
||||||
}
|
}
|
||||||
|
if ($ext === false) {
|
||||||
|
$ext = $pathinfo['extension'];
|
||||||
|
}
|
||||||
|
$metadata['extension'] = $ext;
|
||||||
|
|
||||||
/* check for locked > adds to metadata if it has */
|
/* check for locked > adds to metadata if it has */
|
||||||
if(!empty($locked)){
|
if(!empty($locked)){
|
||||||
|
@ -228,6 +228,7 @@ class UploadTheme extends Themelet {
|
|||||||
if(class_exists("ICOFileHandler")){$supported_ext .= " ico ani cur";}
|
if(class_exists("ICOFileHandler")){$supported_ext .= " ico ani cur";}
|
||||||
if(class_exists("MP3FileHandler")){$supported_ext .= " mp3";}
|
if(class_exists("MP3FileHandler")){$supported_ext .= " mp3";}
|
||||||
if(class_exists("SVGFileHandler")){$supported_ext .= " svg";}
|
if(class_exists("SVGFileHandler")){$supported_ext .= " svg";}
|
||||||
|
if(class_exists("VideoFileHandler")){$supported_ext .= " flv mp4 ogv webm m4v";}
|
||||||
$title = "Booru to " . $config->get_string('title');
|
$title = "Booru to " . $config->get_string('title');
|
||||||
// CA=0: Ask to use current or new tags | CA=1: Always use current tags | CA=2: Always use new tags
|
// CA=0: Ask to use current or new tags | CA=1: Always use current tags | CA=2: Always use new tags
|
||||||
$html .= '<p><a href="javascript:
|
$html .= '<p><a href="javascript:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user