Small feature for uploading using a bookmark.

This commit is contained in:
green-ponies (jgen) 2012-01-08 13:23:39 -05:00
parent db59cb14af
commit f93b86261e

View File

@ -63,7 +63,8 @@ class UploadTheme extends Themelet {
if($tl_enabled) { if($tl_enabled) {
$link = make_http(make_link("upload")); $link = make_http(make_link("upload"));
$title = "Upload to " . $config->get_string('title'); $home = make_http(make_link());
$title = $config->get_string('title');
if($config->get_bool('nice_urls')){ if($config->get_bool('nice_urls')){
$delimiter = '?'; $delimiter = '?';
@ -71,9 +72,9 @@ class UploadTheme extends Themelet {
$delimiter = '&'; $delimiter = '&';
} }
$html .= '<p><a href="javascript:location.href=&quot;' . $js='javascript:(function(){if(typeof window=="undefined"||!window.location||window.location.href=="about:blank"){window.location="'. $home .'";}else if(typeof document=="undefined"||!document.body){window.location="'. $home .'?url="+encodeURIComponent(window.location.href);} else if(window.location.href.match("\/\/'. $_SERVER["HTTP_HOST"] .'.*")){alert("You are already at '. $title .'!");} else{var tags=prompt("Please enter tags","tagme");if(tags!=""&&tags!=null){var link="'. $link . $delimiter .'url="+location.href+"&tags="+tags;var w=window.open(link,"_blank");}}})();';
$link . $delimiter . 'url=&quot;+location.href+&quot;&amp;tags=&quot;+prompt(&quot;enter tags&quot;)">' .
$title . '</a> (Drag & drop onto your bookmarks toolbar, then click when looking at an image)'; $html .= '<p><a href=\''.$js.'\'>Upload to '.$title.'</a> (Drag & drop onto your bookmarks toolbar, then click when looking at an image)';
} }
$page->set_title("Upload"); $page->set_title("Upload");