From 79b4adf1d1b7bee875a55d75db41365df4c9182b Mon Sep 17 00:00:00 2001 From: Daku Date: Wed, 18 Jan 2012 08:09:49 +0000 Subject: [PATCH 01/12] renamed style.css for the upload ext to avoid autoloading --- ext/upload/{style.css => _style.css} | 0 ext/upload/theme.php | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) rename ext/upload/{style.css => _style.css} (100%) diff --git a/ext/upload/style.css b/ext/upload/_style.css similarity index 100% rename from ext/upload/style.css rename to ext/upload/_style.css diff --git a/ext/upload/theme.php b/ext/upload/theme.php index fc6d5f59..c14631a3 100644 --- a/ext/upload/theme.php +++ b/ext/upload/theme.php @@ -10,9 +10,10 @@ class UploadTheme extends Themelet { } public function display_page(Page $page) { - global $config; - $tl_enabled = ($config->get_string("transload_engine", "none") != "none"); + global $config, $page; + $page->add_html_header(""); + $tl_enabled = ($config->get_string("transload_engine", "none") != "none"); // Uploader 2.0! $upload_list = ""; for($i=0; $i<$config->get_int('upload_count'); $i++) From fd9ab641324f36a74ff3966c67b6ed6e5123b4eb Mon Sep 17 00:00:00 2001 From: Daku Date: Wed, 18 Jan 2012 09:55:00 +0000 Subject: [PATCH 02/12] Holiday ext --- contrib/holiday/main.php | 33 ++++++++++++++++++++++ contrib/holiday/stylesheets/aprilfools.css | 15 ++++++++++ contrib/holiday/theme.php | 21 ++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 contrib/holiday/main.php create mode 100644 contrib/holiday/stylesheets/aprilfools.css create mode 100644 contrib/holiday/theme.php diff --git a/contrib/holiday/main.php b/contrib/holiday/main.php new file mode 100644 index 00000000..598e2a89 --- /dev/null +++ b/contrib/holiday/main.php @@ -0,0 +1,33 @@ + + * Link: http://www.codeanimu.net + * License: GPLv2 + * Description: Use an additional stylesheet on certain holidays. + */ +class Holiday extends SimpleExtension { + public function onInitExt(Event $event) { + global $config; + $config->set_default_bool("holiday_aprilfools", false); + } + + public function onSetupBuilding(Event $event) { + global $config; + $sb = new SetupBlock("Holiday Theme"); + $sb->add_bool_option("holiday_aprilfools", "Enable April Fools"); + $event->panel->add_block($sb); + } + + public function onPageRequest(Event $event) { + global $config; + $date = /*date('d/m') == '01/01' ||date('d/m') == '14/02' || */date('d/m') == '01/04'/* || date('d/m') == '24/12' || date('d/m') == '25/12' || date('d/m') == '31/12'*/; + if($date){ + if($config->get_bool("holiday_aprilfools")){ + $this->theme->display_holiday($date); + } + } + } + +} +?> diff --git a/contrib/holiday/stylesheets/aprilfools.css b/contrib/holiday/stylesheets/aprilfools.css new file mode 100644 index 00000000..e04e1b0a --- /dev/null +++ b/contrib/holiday/stylesheets/aprilfools.css @@ -0,0 +1,15 @@ +BODY { + background: #F0F7FF; + font-family: sans-serif; + font-size: 14px; + margin: 0px; + /* It's a bit crazy but, april fools is supposed to be crazy. + This flips the entire page upside down. + TODO: Add a way for the user to disable this */ + + -webkit-transform: rotate(-180deg); /*Safari*/ + -moz-transform: rotate(-180deg); /*Firefox*/ + -o-transform: rotate(-180deg); /*Opera*/ + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); /*IE6*/ + ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; /*IE7+?*/ +} diff --git a/contrib/holiday/theme.php b/contrib/holiday/theme.php new file mode 100644 index 00000000..2d77a942 --- /dev/null +++ b/contrib/holiday/theme.php @@ -0,0 +1,21 @@ +"; + $page->add_html_header("$csssheet"); + } + } +} +?> From df20a752716a8f2010b335e2a735b6ff79958c6b Mon Sep 17 00:00:00 2001 From: Daku Date: Wed, 18 Jan 2012 09:56:25 +0000 Subject: [PATCH 03/12] removing holiday feature from lite theme --- themes/lite/holidays/style_aprilfools.css | 21 ------------ themes/lite/layout.class.php | 39 ++--------------------- 2 files changed, 2 insertions(+), 58 deletions(-) delete mode 100644 themes/lite/holidays/style_aprilfools.css diff --git a/themes/lite/holidays/style_aprilfools.css b/themes/lite/holidays/style_aprilfools.css deleted file mode 100644 index 0f3f3080..00000000 --- a/themes/lite/holidays/style_aprilfools.css +++ /dev/null @@ -1,21 +0,0 @@ - /* - If you wish to play about with colors, the main two colors to replace are: - Main color: #CEDFF0 - Secondary color: #E3EFFA - */ - -BODY { - background: #F0F7FF; - font-family: sans-serif; - font-size: 14px; - margin: 0px; - /* It's a bit crazy but, april fools is supposed to be crazy. - This flips the entire page upside down. - TODO: Add a way for the user to disable this */ - - -webkit-transform: rotate(-180deg); /*Safari*/ - -moz-transform: rotate(-180deg); /*Firefox*/ - -o-transform: rotate(-180deg); /*Opera*/ - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); /*IE6*/ - ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; /*IE7+?*/ -} diff --git a/themes/lite/layout.class.php b/themes/lite/layout.class.php index 363f466b..44e1ec08 100644 --- a/themes/lite/layout.class.php +++ b/themes/lite/layout.class.php @@ -23,33 +23,6 @@ class Layout { foreach($page->html_headers as $line) { $header_html .= "\t\t$line\n"; } - - /* Holiday Stuff! - If the current day is one of the set holidays, it will use a seperate stylesheet. Aswell as a few extra things depending on the day. - This only adds April Fools for now. - TODO: Add setup block to make the whole holiday thing "optional". / Choose what holidays you wish to use. - */ - if(/*date('d/m') == '01/01' || date('d/m') == '14/02' || */date('d/m') == '01/04'/* || date('d/m') == '24/12' || date('d/m') == '25/12' || date('d/m') == '31/12'*/){ - - $csssheet = "$main_block_html"; } - // This is required for the holiday feature. - if(empty($csssheet)){ - $csssheet = ""; - } - if(empty($banner)){ - $holiday = ""; - } - print << @@ -195,12 +160,12 @@ class Layout { {$page->title} - $csssheet + $header_html - $banner + $menu $custom_sublinks From 9a35401666124a2e5f4e467967024738a9232386 Mon Sep 17 00:00:00 2001 From: Daku Date: Wed, 18 Jan 2012 15:32:43 +0000 Subject: [PATCH 04/12] image replace form now uses jquery --- ext/upload/theme.php | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/ext/upload/theme.php b/ext/upload/theme.php index c14631a3..993a40c5 100644 --- a/ext/upload/theme.php +++ b/ext/upload/theme.php @@ -168,17 +168,28 @@ class UploadTheme extends Themelet { /* only allows 1 file to be uploaded - for replacing another image file */ public function display_replace_page(Page $page, $image_id) { - global $config; + global $config, $page; + $page->add_html_header(""); $tl_enabled = ($config->get_string("transload_engine", "none") != "none"); + $js2 = 'javascript:$(function() { + $("#data").hide(); + $("#data").val(""); + $("#url").show(); });'; + + $js1 = 'javascript:$(function() { + $("#url").hide(); + $("#url").val(""); + $("#data").show(); });'; + $upload_list = ''; $upload_list .= " -
File
"; + File
"; if($tl_enabled) { $upload_list .=" - URL
- + URL + "; } else { $upload_list .= " From 38e2f961fb00cd314ef031c5f9637462fd6d9d9a Mon Sep 17 00:00:00 2001 From: Daku Date: Wed, 18 Jan 2012 16:08:51 +0000 Subject: [PATCH 05/12] holiday ext should work properly now --- contrib/holiday/stylesheets/aprilfools.css | 4 ---- contrib/holiday/theme.php | 3 +-- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/contrib/holiday/stylesheets/aprilfools.css b/contrib/holiday/stylesheets/aprilfools.css index e04e1b0a..9250c688 100644 --- a/contrib/holiday/stylesheets/aprilfools.css +++ b/contrib/holiday/stylesheets/aprilfools.css @@ -1,8 +1,4 @@ BODY { - background: #F0F7FF; - font-family: sans-serif; - font-size: 14px; - margin: 0px; /* It's a bit crazy but, april fools is supposed to be crazy. This flips the entire page upside down. TODO: Add a way for the user to disable this */ diff --git a/contrib/holiday/theme.php b/contrib/holiday/theme.php index 2d77a942..2012f3ee 100644 --- a/contrib/holiday/theme.php +++ b/contrib/holiday/theme.php @@ -3,14 +3,13 @@ class HolidayTheme extends Themelet { public function display_holiday($date) { global $page; if($date){ - $csssheet = " Date: Fri, 20 Jan 2012 10:46:18 +0000 Subject: [PATCH 06/12] change email form now shows in lite theme --- themes/lite/user.theme.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/themes/lite/user.theme.php b/themes/lite/user.theme.php index e6241a8e..7f6d6440 100644 --- a/themes/lite/user.theme.php +++ b/themes/lite/user.theme.php @@ -107,12 +107,20 @@ class CustomUserPageTheme extends UserPageTheme { - +
Change Password
Change Password
Password
Repeat Password
+

+ + + + + +
Change Email
Address
+

"; if($user->is_admin()) { From 471e3d057acd5c70eb6ec3b72362479122a8ce80 Mon Sep 17 00:00:00 2001 From: Daku Date: Fri, 20 Jan 2012 12:27:01 +0000 Subject: [PATCH 07/12] fixed bookmarklet on danbooru flash pages again.. --- ext/upload/bookmarklet.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ext/upload/bookmarklet.js b/ext/upload/bookmarklet.js index 05646134..1873d25c 100644 --- a/ext/upload/bookmarklet.js +++ b/ext/upload/bookmarklet.js @@ -12,19 +12,19 @@ if(document.getElementById("post_tags") !== null){ if (typeof tag !=="ftp://ftp." && chk !==1){var tag=document.getElementById("post_tags").value;} var rtg=document.getElementById("stats").innerHTML.match("
  • Rating: (.*)<\/li>")[1]; var srx="http://" + document.location.hostname + document.location.href.match("\/post\/show\/[0-9]+\/"); - var filesze=document.getElementById("stats").innerHTML.match("[0-9] \\(((?:\.*[0-9])) ([a-zA-Z]+)"); - if(filesze[2] == "MB"){var filesze = filesze[1] * 1024;}else{var filesze = filesze[2].match("[0-9]+");} - if(tag.search(/\bflash\b/)==-1){ + + if(tag.search(/\bflash\b/)===-1){ + var filesze=document.getElementById("stats").innerHTML.match("[0-9] \\(((?:\.*[0-9])) ([a-zA-Z]+)"); + if(filesze[2] == "MB"){var filesze = filesze[1] * 1024;}else{var filesze = filesze[2].match("[0-9]+");} + if(supext.search(document.getElementById("highres").href.match("http\:\/\/.*\\.([a-z0-9]+)")[1]) !== -1){ if(filesze <= maxsze){ location.href=ste+document.getElementById("highres").href+"&tags="+tag+"&rating="+rtg[1]+"&source="+srx; }else{alert(toobig);} }else{alert(notsup);} }else{ - if(supext.search(document.getElementById("highres").href.match("http\:\/\/.*\\.([a-z0-9]+)")[1]) !== -1){ - if(filesze <= maxsze){ + if(supext.search("swf") !== -1){ location.href=ste+document.getElementsByName("movie")[0].value+"&tags="+tag+"&rating="+rtg[1]+"&source="+srx; - }else{alert(toobig);} }else{alert(notsup);} } } @@ -45,7 +45,7 @@ else if(document.getElementsByTagName("title")[0].innerHTML.search("Image [0-9.- }else{alert(notsup);} }else{ var mov = document.location.hostname+document.getElementsByName("movie")[0].value; - if(supext.search(mov.match(".*\\.([a-z0-9]+)")[1]) !== -1){ + if(supext.search("swf") !== -1){ location.href=ste+mov+"&tags="+tag+"&source="+srx; }else{alert(notsup);} } From 53211aa0a748e3ac74b1465fa7fe2de1ba55a847 Mon Sep 17 00:00:00 2001 From: Daku Date: Fri, 20 Jan 2012 12:36:52 +0000 Subject: [PATCH 08/12] delete with jquery should no longer hide under flash --- contrib/handle_flash/theme.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/handle_flash/theme.php b/contrib/handle_flash/theme.php index a0e8cbb4..aec6bb9f 100644 --- a/contrib/handle_flash/theme.php +++ b/contrib/handle_flash/theme.php @@ -9,6 +9,7 @@ class FlashFileHandlerTheme extends Themelet { codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' height='{$image->height}' width='{$image->width}' + wmode='opaque' > @@ -16,6 +17,7 @@ class FlashFileHandlerTheme extends Themelet { pluginspage='http://www.macromedia.com/go/getflashplayer' height='{$image->height}' width='{$image->width}' + wmode='opaque' type='application/x-shockwave-flash'> "; $page->add_block(new Block("Flash Animation", $html, "main", 0)); From eeaa27133afe5d6015bdd1d94806f837f524530c Mon Sep 17 00:00:00 2001 From: Daku Date: Fri, 20 Jan 2012 12:37:24 +0000 Subject: [PATCH 09/12] fixed rating with bookmarklet --- ext/upload/bookmarklet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/upload/bookmarklet.js b/ext/upload/bookmarklet.js index 1873d25c..2838bdca 100644 --- a/ext/upload/bookmarklet.js +++ b/ext/upload/bookmarklet.js @@ -19,12 +19,12 @@ if(document.getElementById("post_tags") !== null){ if(supext.search(document.getElementById("highres").href.match("http\:\/\/.*\\.([a-z0-9]+)")[1]) !== -1){ if(filesze <= maxsze){ - location.href=ste+document.getElementById("highres").href+"&tags="+tag+"&rating="+rtg[1]+"&source="+srx; + location.href=ste+document.getElementById("highres").href+"&tags="+tag+"&rating="+rtg+"&source="+srx; }else{alert(toobig);} }else{alert(notsup);} }else{ if(supext.search("swf") !== -1){ - location.href=ste+document.getElementsByName("movie")[0].value+"&tags="+tag+"&rating="+rtg[1]+"&source="+srx; + location.href=ste+document.getElementsByName("movie")[0].value+"&tags="+tag+"&rating="+rtg+"&source="+srx; }else{alert(notsup);} } } From 7049b3bf4d30c5a7388d62c6ab1b5c2d18b6d14d Mon Sep 17 00:00:00 2001 From: Daku Date: Fri, 20 Jan 2012 23:04:28 +0000 Subject: [PATCH 10/12] rating/source/locked now log info when set --- contrib/rating/main.php | 1 + core/imageboard.pack.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/contrib/rating/main.php b/contrib/rating/main.php index f456fdf3..31db9a56 100644 --- a/contrib/rating/main.php +++ b/contrib/rating/main.php @@ -208,6 +208,7 @@ class Ratings implements Extension { private function set_rating($image_id, $rating) { global $database; $database->Execute("UPDATE images SET rating=? WHERE id=?", array($rating, $image_id)); + log_info("core-image", "Rating for Image #{$image_id} set to: ".$this->theme->rating_to_name($rating)); } } add_event_listener(new Ratings()); diff --git a/core/imageboard.pack.php b/core/imageboard.pack.php index 70e0d9fb..31ff6340 100644 --- a/core/imageboard.pack.php +++ b/core/imageboard.pack.php @@ -372,6 +372,7 @@ class Image { global $database; if(empty($source)) $source = null; $database->execute("UPDATE images SET source=:source WHERE id=:id", array("source"=>$source, "id"=>$this->id)); + log_info("core-image", "Source for Image #{$this->id} set to: ".$source); } @@ -385,6 +386,7 @@ class Image { $sln = str_replace("'", "", $sln); $sln = str_replace('"', "", $sln); $database->execute("UPDATE images SET locked=:yn WHERE id=:id", array("yn"=>$sln, "id"=>$this->id)); + log_info("core-image", "Locked status of Image #{$this->id} set to: ".$sln); } /** From 3338ff0420eed277b133f5f70044a3d3d49e5d12 Mon Sep 17 00:00:00 2001 From: Daku Date: Sat, 21 Jan 2012 00:17:07 +0000 Subject: [PATCH 11/12] tags/source/rating/locked should only update/log if different than current --- contrib/rating/main.php | 10 +++-- core/imageboard.pack.php | 83 +++++++++++++++++++++------------------- ext/tag_edit/main.php | 7 ++-- 3 files changed, 53 insertions(+), 47 deletions(-) diff --git a/contrib/rating/main.php b/contrib/rating/main.php index 31db9a56..32a90747 100644 --- a/contrib/rating/main.php +++ b/contrib/rating/main.php @@ -64,7 +64,7 @@ class Ratings implements Extension { } if($event instanceof RatingSetEvent) { - $this->set_rating($event->image->id, $event->rating); + $this->set_rating($event->image->id, $event->rating, $event->image->rating); } if($event instanceof ImageInfoBoxBuildingEvent) { @@ -205,10 +205,12 @@ class Ratings implements Extension { } } - private function set_rating($image_id, $rating) { + private function set_rating($image_id, $rating, $old_rating) { global $database; - $database->Execute("UPDATE images SET rating=? WHERE id=?", array($rating, $image_id)); - log_info("core-image", "Rating for Image #{$image_id} set to: ".$this->theme->rating_to_name($rating)); + if($old_rating != $rating){ + $database->Execute("UPDATE images SET rating=? WHERE id=?", array($rating, $image_id)); + log_info("core-image", "Rating for Image #{$image_id} set to: ".$this->theme->rating_to_name($rating)); + } } } add_event_listener(new Ratings()); diff --git a/core/imageboard.pack.php b/core/imageboard.pack.php index 31ff6340..44b9ca4b 100644 --- a/core/imageboard.pack.php +++ b/core/imageboard.pack.php @@ -368,25 +368,29 @@ class Image { /** * Set the image's source URL */ - public function set_source($source) { + public function set_source($source, $old_source) { global $database; if(empty($source)) $source = null; - $database->execute("UPDATE images SET source=:source WHERE id=:id", array("source"=>$source, "id"=>$this->id)); - log_info("core-image", "Source for Image #{$this->id} set to: ".$source); + if($old_source != $source){ + $database->execute("UPDATE images SET source=:source WHERE id=:id", array("source"=>$source, "id"=>$this->id)); + log_info("core-image", "Source for Image #{$this->id} set to: ".$source); + } } public function is_locked() { return ($this->locked === true || $this->locked == "Y" || $this->locked == "t"); } - public function set_locked($tf) { + public function set_locked($tf, $old_sln) { global $database; $ln = $tf ? "Y" : "N"; $sln = $database->engine->scoreql_to_sql("SCORE_BOOL_$ln"); $sln = str_replace("'", "", $sln); $sln = str_replace('"', "", $sln); - $database->execute("UPDATE images SET locked=:yn WHERE id=:id", array("yn"=>$sln, "id"=>$this->id)); - log_info("core-image", "Locked status of Image #{$this->id} set to: ".$sln); + if($old_sln != $sln){ + $database->execute("UPDATE images SET locked=:yn WHERE id=:id", array("yn"=>$sln, "id"=>$this->id)); + log_info("core-image", "Setting Image #{$this->id} lock to: {$event->locked}".$sln); + } } /** @@ -405,48 +409,49 @@ class Image { /** * Set the tags for this image */ - public function set_tags($tags) { + public function set_tags($tags, $old_tags) { global $database; $tags = Tag::resolve_list($tags); assert(is_array($tags)); assert(count($tags) > 0); - - // delete old - $this->delete_tags_from_image(); - - // insert each new tags - foreach($tags as $tag) { - $id = $database->get_one( - $database->engine->scoreql_to_sql( - "SELECT id FROM tags WHERE SCORE_STRNORM(tag) = SCORE_STRNORM(:tag)" - ), - array("tag"=>$tag)); - if(empty($id)) { - // a new tag - $database->execute( - "INSERT INTO tags(tag) VALUES (:tag)", + $new_tags = implode(" ", $tags); + if($old_tags != $new_tags){ + // delete old + $this->delete_tags_from_image(); + // insert each new tags + foreach($tags as $tag) { + $id = $database->get_one( + $database->engine->scoreql_to_sql( + "SELECT id FROM tags WHERE SCORE_STRNORM(tag) = SCORE_STRNORM(:tag)" + ), array("tag"=>$tag)); + if(empty($id)) { + // a new tag + $database->execute( + "INSERT INTO tags(tag) VALUES (:tag)", + array("tag"=>$tag)); + $database->execute( + "INSERT INTO image_tags(image_id, tag_id) + VALUES(:id, (SELECT id FROM tags WHERE tag = :tag))", + array("id"=>$this->id, "tag"=>$tag)); + } + else { + // user of an existing tag + $database->execute( + "INSERT INTO image_tags(image_id, tag_id) VALUES(:iid, :tid)", + array("iid"=>$this->id, "tid"=>$id)); + } $database->execute( - "INSERT INTO image_tags(image_id, tag_id) - VALUES(:id, (SELECT id FROM tags WHERE tag = :tag))", - array("id"=>$this->id, "tag"=>$tag)); + $database->engine->scoreql_to_sql( + "UPDATE tags SET count = count + 1 WHERE SCORE_STRNORM(tag) = SCORE_STRNORM(:tag)" + ), + array("tag"=>$tag)); } - else { - // user of an existing tag - $database->execute( - "INSERT INTO image_tags(image_id, tag_id) VALUES(:iid, :tid)", - array("iid"=>$this->id, "tid"=>$id)); - } - $database->execute( - $database->engine->scoreql_to_sql( - "UPDATE tags SET count = count + 1 WHERE SCORE_STRNORM(tag) = SCORE_STRNORM(:tag)" - ), - array("tag"=>$tag)); - } - log_info("core-image", "Tags for Image #{$this->id} set to: ".implode(" ", $tags)); - $database->cache->delete("image-{$this->id}-tags"); + log_info("core-image", "Tags for Image #{$this->id} set to: ".implode(" ", $tags)); + $database->cache->delete("image-{$this->id}-tags"); + } } /** diff --git a/ext/tag_edit/main.php b/ext/tag_edit/main.php index 9cea8ced..afdfdbe1 100644 --- a/ext/tag_edit/main.php +++ b/ext/tag_edit/main.php @@ -91,20 +91,19 @@ class TagEdit implements Extension { if($event instanceof TagSetEvent) { if($user->is_admin() || !$event->image->is_locked()) { - $event->image->set_tags($event->tags); + $event->image->set_tags($event->tags, $event->image->get_tag_list()); } } if($event instanceof SourceSetEvent) { if($user->is_admin() || !$event->image->is_locked()) { - $event->image->set_source($event->source); + $event->image->set_source($event->source, $event->image->source); } } if($event instanceof LockSetEvent) { if($user->is_admin()) { - log_debug("tag_edit", "Setting Image #{$event->image->id} lock to: {$event->locked}"); - $event->image->set_locked($event->locked); + $event->image->set_locked($event->locked, $event->image->locked); } } From f589ee3f8019b83c3d972b56d2e663660f63574c Mon Sep 17 00:00:00 2001 From: Daku Date: Sat, 21 Jan 2012 13:13:10 +0000 Subject: [PATCH 12/12] git ignore update --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b1d70c05..8b9f72d0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ sql.log shimmie.log !lib/images ext/admin +ext/amazon_s3 ext/artists ext/autocomplete ext/ban_words @@ -28,6 +29,7 @@ ext/handle_flash ext/handle_ico ext/handle_mp3 ext/handle_svg +ext/holiday ext/home ext/image_hash_ban ext/ipban @@ -44,6 +46,7 @@ ext/random_image ext/rating ext/regen_thumb ext/report_image +ext/resize ext/res_limit ext/rss_comments ext/rss_images @@ -56,7 +59,7 @@ ext/tagger ext/tag_history ext/text_score ext/tips -ext/amazon_s3 +ext/twitter_soc ext/upload_cmd ext/wiki ext/word_filter