diff --git a/core/basepage.php b/core/basepage.php
index e3fb982c..b9f223c7 100644
--- a/core/basepage.php
+++ b/core/basepage.php
@@ -560,7 +560,7 @@ EOD;
$contact = empty($contact_link) ? "" : "
Contact";
return "
- Images © their respective owners,
+ Media © their respective owners,
Shimmie ©
Shish &
The Team
diff --git a/core/extension.php b/core/extension.php
index cf841b54..55cf3de2 100644
--- a/core/extension.php
+++ b/core/extension.php
@@ -313,17 +313,17 @@ abstract class DataHandlerExtension extends Extension
$existing = Image::by_id($event->replace_id);
if (is_null($existing)) {
- throw new UploadException("Image to replace does not exist!");
+ throw new UploadException("Post to replace does not exist!");
}
if ($existing->hash === $event->metadata['hash']) {
- throw new UploadException("The uploaded image is the same as the one to replace.");
+ throw new UploadException("The uploaded post is the same as the one to replace.");
}
// even more hax..
$event->metadata['tags'] = $existing->get_tag_list();
$image = $this->create_image_from_data(warehouse_path(Image::IMAGE_DIR, $event->metadata['hash']), $event->metadata);
if (is_null($image)) {
- throw new UploadException("Data handler failed to create image object from data");
+ throw new UploadException("Data handler failed to create post object from data");
}
if (empty($image->get_mime())) {
throw new UploadException("Unable to determine MIME for ". $event->tmpname);
@@ -339,7 +339,7 @@ abstract class DataHandlerExtension extends Extension
} else {
$image = $this->create_image_from_data(warehouse_path(Image::IMAGE_DIR, $event->hash), $event->metadata);
if (is_null($image)) {
- throw new UploadException("Data handler failed to create image object from data");
+ throw new UploadException("Data handler failed to create post object from data");
}
if (empty($image->get_mime())) {
throw new UploadException("Unable to determine MIME for ". $event->tmpname);
diff --git a/core/imageboard/image.php b/core/imageboard/image.php
index fa54edd3..cee3a9a4 100644
--- a/core/imageboard/image.php
+++ b/core/imageboard/image.php
@@ -396,7 +396,7 @@ class Image
SET owner_id=:owner_id
WHERE id=:id
", ["owner_id"=>$owner->id, "id"=>$this->id]);
- log_info("core_image", "Owner for Image #{$this->id} set to {$owner->name}");
+ log_info("core_image", "Owner for Post #{$this->id} set to {$owner->name}");
}
}
@@ -648,7 +648,7 @@ class Image
}
if ($new_source != $old_source) {
$database->execute("UPDATE images SET source=:source WHERE id=:id", ["source"=>$new_source, "id"=>$this->id]);
- log_info("core_image", "Source for Image #{$this->id} set to: $new_source (was $old_source)");
+ log_info("core_image", "Source for Post #{$this->id} set to: $new_source (was $old_source)");
}
}
@@ -665,7 +665,7 @@ class Image
global $database;
if ($locked !== $this->locked) {
$database->execute("UPDATE images SET locked=:yn WHERE id=:id", ["yn"=>$locked, "id"=>$this->id]);
- log_info("core_image", "Setting Image #{$this->id} lock to: $locked");
+ log_info("core_image", "Setting Post #{$this->id} lock to: $locked");
}
}
@@ -782,7 +782,7 @@ class Image
);
}
- log_info("core_image", "Tags for Image #{$this->id} set to: ".Tag::implode($tags));
+ log_info("core_image", "Tags for Post #{$this->id} set to: ".Tag::implode($tags));
$cache->delete("image-{$this->id}-tags");
}
}
@@ -795,7 +795,7 @@ class Image
global $database;
$this->delete_tags_from_image();
$database->execute("DELETE FROM images WHERE id=:id", ["id"=>$this->id]);
- log_info("core_image", 'Deleted Image #'.$this->id.' ('.$this->hash.')');
+ log_info("core_image", 'Deleted Post #'.$this->id.' ('.$this->hash.')');
unlink($this->get_image_filename());
unlink($this->get_thumb_filename());
@@ -807,7 +807,7 @@ class Image
*/
public function remove_image_only(): void
{
- log_info("core_image", 'Removed Image File ('.$this->hash.')');
+ log_info("core_image", 'Removed Post File ('.$this->hash.')');
@unlink($this->get_image_filename());
@unlink($this->get_thumb_filename());
}
diff --git a/ext/admin/info.php b/ext/admin/info.php
index 4a396aa9..55cea22d 100644
--- a/ext/admin/info.php
+++ b/ext/admin/info.php
@@ -15,9 +15,9 @@ class AdminPageInfo extends ExtensionInfo
Lowercase all tags:
Set all tags to lowercase for consistency
Recount tag use:
-
If the counts of images per tag get messed up somehow, this will reset them, and remove any unused tags
+
If the counts of posts per tag get messed up somehow, this will reset them, and remove any unused tags
Database dump:
Download the contents of the database in plain text format, useful for backups.
-
Image dump:
-
Download all the images as a .zip file (Requires ZipArchive)";
+
Post dump:
+
Download all the posts as a .zip file (Requires ZipArchive)";
}
diff --git a/ext/admin/test.php b/ext/admin/test.php
index 0e4852bf..e0f5b919 100644
--- a/ext/admin/test.php
+++ b/ext/admin/test.php
@@ -28,14 +28,14 @@ class AdminPageTest extends ShimmiePHPUnitTestCase
// Validate problem
$page = $this->get_page("post/view/$image_id_1");
- $this->assertEquals("Image $image_id_1: TeStCase$ts", $page->title);
+ $this->assertEquals("Post $image_id_1: TeStCase$ts", $page->title);
// Fix
send_event(new AdminActionEvent('lowercase_all_tags'));
// Validate fix
$this->get_page("post/view/$image_id_1");
- $this->assert_title("Image $image_id_1: testcase$ts");
+ $this->assert_title("Post $image_id_1: testcase$ts");
// Change
$_POST["tag"] = "TestCase$ts";
@@ -43,7 +43,7 @@ class AdminPageTest extends ShimmiePHPUnitTestCase
// Validate change
$this->get_page("post/view/$image_id_1");
- $this->assert_title("Image $image_id_1: TestCase$ts");
+ $this->assert_title("Post $image_id_1: TestCase$ts");
}
# FIXME: make sure the admin tools actually work
diff --git a/ext/alias_editor/test.php b/ext/alias_editor/test.php
index 9829cec3..23cad165 100644
--- a/ext/alias_editor/test.php
+++ b/ext/alias_editor/test.php
@@ -36,7 +36,7 @@ class AliasEditorTest extends ShimmiePHPUnitTestCase
$image_id = $this->post_image("tests/pbx_screenshot.jpg", "test1");
$this->get_page("post/view/$image_id"); # check that the tag has been replaced
- $this->assert_title("Image $image_id: test2");
+ $this->assert_title("Post $image_id: test2");
$this->get_page("post/list/test1/1"); # searching for an alias should find the master tag
$this->assert_response(302);
$this->get_page("post/list/test2/1"); # check that searching for the main tag still works
@@ -67,13 +67,13 @@ class AliasEditorTest extends ShimmiePHPUnitTestCase
$image_id_2 = $this->post_image("tests/bedroom_workshop.jpg", "onetag");
$this->get_page("post/list/onetag/1"); # searching for an aliased tag should find its aliases
$this->assert_title("multi tag");
- $this->assert_no_text("No Images Found");
+ $this->assert_no_text("No Posts Found");
$this->get_page("post/list/multi/1");
$this->assert_title("multi");
- $this->assert_no_text("No Images Found");
+ $this->assert_no_text("No Posts Found");
$this->get_page("post/list/multi tag/1");
$this->assert_title("multi tag");
- $this->assert_no_text("No Images Found");
+ $this->assert_no_text("No Posts Found");
$this->delete_image($image_id_1);
$this->delete_image($image_id_2);
diff --git a/ext/approval/main.php b/ext/approval/main.php
index 36c435d8..cf83ff0a 100644
--- a/ext/approval/main.php
+++ b/ext/approval/main.php
@@ -33,7 +33,7 @@ class Approval extends Extension
$image_id = isset($_POST['image_id']) ? $_POST['image_id'] : null;
}
if (empty($image_id)) {
- throw new SCoreException("Can not approve image: No valid Image ID given.");
+ throw new SCoreException("Can not approve post: No valid Post ID given.");
}
self::approve_image($image_id);
@@ -48,7 +48,7 @@ class Approval extends Extension
$image_id = isset($_POST['image_id']) ? $_POST['image_id'] : null;
}
if (empty($image_id)) {
- throw new SCoreException("Can not disapprove image: No valid Image ID given.");
+ throw new SCoreException("Can not disapprove image: No valid Post ID given.");
}
self::disapprove_image($image_id);
diff --git a/ext/approval/theme.php b/ext/approval/theme.php
index bde28240..7b85c43c 100644
--- a/ext/approval/theme.php
+++ b/ext/approval/theme.php
@@ -27,14 +27,14 @@ class ApprovalTheme extends Themelet
public function get_help_html()
{
- return '
Search for images that are approved/not approved.
+ return 'Search for posts that are approved/not approved.
approved:yes-
Returns images that have been approved.
+Returns posts that have been approved.
approved:no-
Returns images that have not been approved.
+Returns posts that have not been approved.
Search for images with a particular artist.
+ return 'Search for posts with a particular artist.
artist=leonardo-
Returns images with the artist "leonardo".
-Returns posts with the artist "leonardo".
+ '; } } diff --git a/ext/auto_tagger/test.php b/ext/auto_tagger/test.php index 9d1e096d..d4e9a6eb 100644 --- a/ext/auto_tagger/test.php +++ b/ext/auto_tagger/test.php @@ -37,14 +37,14 @@ class AutoTaggerTest extends ShimmiePHPUnitTestCase $image_id = $this->post_image("tests/pbx_screenshot.jpg", "test1"); $this->get_page("post/view/$image_id"); # check that the tag has been replaced - $this->assert_title("Image $image_id: test1 test2"); + $this->assert_title("Post $image_id: test1 test2"); $this->delete_image($image_id); send_event(new AddAutoTagEvent("test2", "test3")); $image_id = $this->post_image("tests/pbx_screenshot.jpg", "test1"); $this->get_page("post/view/$image_id"); # check that the tag has been replaced - $this->assert_title("Image $image_id: test1 test2 test3"); + $this->assert_title("Post $image_id: test1 test2 test3"); $this->delete_image($image_id); send_event(new DeleteAutoTagEvent("test1")); diff --git a/ext/bbcode/info.php b/ext/bbcode/info.php index d01ac5b5..5ee10f5a 100644 --- a/ext/bbcode/info.php +++ b/ext/bbcode/info.php @@ -27,6 +27,6 @@ class BBCodeInfo extends ExtensionInfo
"velocity37@gmail.com"];
public $license = self::LICENSE_GPLV2;
- public $description = "Bulk add server-side images with metadata from CSV file";
+ public $description = "Bulk add server-side posts with metadata from CSV file";
public $documentation =
"Modification of \"Bulk Add\" by Shish. -Adds images from a CSV with the five following values: +Adds posts from a CSV with the five following values: \"/path/to/image.jpg\",\"spaced tags\",\"source\",\"rating s/q/e\",\"/path/thumbnail.jpg\" e.g. \"/tmp/cat.png\",\"shish oekaki\",\"shimmie.shishnet.org\",\"s\",\"tmp/custom.jpg\" Any value but the first may be omitted, but there must be five values per line. e.g. \"/why/not/try/bulk_add.jpg\",\"\",\"\",\"\",\"\" -Image thumbnails will be displayed at the AR of the full image. Thumbnails that are +Post thumbnails will be displayed at the AR of the full post. Thumbnails that are normally static (e.g. SWF) will be displayed at the board's max thumbnail size -Useful for importing tagged images without having to do database manipulation. - Note: requires \"Admin Controls\" and optionally \"Image Ratings\" to be enabled Note: requires \"Admin Controls\" and optionally \"Post Ratings\" to be enabled ".make_form(make_link("bulk_add_csv"))." diff --git a/ext/bulk_import_export/main.php b/ext/bulk_import_export/main.php index afe30984..f5f76374 100644 --- a/ext/bulk_import_export/main.php +++ b/ext/bulk_import_export/main.php @@ -36,7 +36,7 @@ class BulkImportExport extends DataHandlerExtension $image = Image::by_hash($item->hash); if ($image!=null) { $skipped++; - log_info(BulkImportExportInfo::KEY, "Image $item->hash already present, skipping"); + log_info(BulkImportExportInfo::KEY, "Post $item->hash already present, skipping"); $database->commit(); continue; } diff --git a/ext/comment/info.php b/ext/comment/info.php index acec497f..1a8ced0f 100644 --- a/ext/comment/info.php +++ b/ext/comment/info.php @@ -5,7 +5,7 @@ class CommentListInfo extends ExtensionInfo public const KEY = "comment"; public $key = self::KEY; - public $name = "Image Comments"; + public $name = "Post Comments"; public $url = self::SHIMMIE_URL; public $authors = self::SHISH_AUTHOR; public $license = self::LICENSE_GPLV2; diff --git a/ext/comment/theme.php b/ext/comment/theme.php index d33aa134..f9ef115d 100644 --- a/ext/comment/theme.php +++ b/ext/comment/theme.php @@ -289,23 +289,23 @@ class CommentListTheme extends Themelet public function get_help_html() { - return ' Search for images containing a certain number of comments, or comments by a particular individual. + return 'Search for posts containing a certain number of comments, or comments by a particular individual. comments=1- Returns images with exactly 1 comment. +Returns posts with exactly 1 comment. comments>0- Returns images with 1 or more comments. +Returns posts with 1 or more comments. Can use <, <=, >, >=, or =. commented_by:username- Returns images that have been commented on by "username". +Returns posts that have been commented on by "username". commented_by_userno:123- Returns images that have been commented on by user 123. +Returns posts that have been commented on by user 123. cron is a service that runs commands over and over again on a a schedule. You can set up cron (or any similar tool) to run the command above to trigger the import on whatever schedule you desire. If you're not sure how to do this, you can give the command to your web host and you can ask them to create the cron job for you. - When you create the cron job, you choose when to upload new images. When you create the cron job, you choose when to upload new posts. "; diff --git a/ext/eokm/main.php b/ext/eokm/main.php index 2cde369f..83e43633 100644 --- a/ext/eokm/main.php +++ b/ext/eokm/main.php @@ -29,7 +29,7 @@ class Eokm extends Extension // all ok } elseif ($return == "true") { log_warning("eokm", "User tried to upload banned image {$event->image->hash}"); - throw new UploadException("Image banned"); + throw new UploadException("Post banned"); } else { log_warning("eokm", "Unexpected return from EOKM: $return"); } diff --git a/ext/favorites/info.php b/ext/favorites/info.php index baab8e90..5a6e2591 100644 --- a/ext/favorites/info.php +++ b/ext/favorites/info.php @@ -13,5 +13,5 @@ class FavoritesInfo extends ExtensionInfo "Gives users a \"favorite this image\" button that they can press Favorites for a user can then be retrieved by searching for \"favorited_by=UserName\" Popular images can be searched for by eg. \"favorites>5\" - Favorite info can be added to an image's filename or tooltip using the \$favorites placeholder"; + Favorite info can be added to a post's filename or tooltip using the \$favorites placeholder"; } diff --git a/ext/favorites/main.php b/ext/favorites/main.php index f19311b6..e1c66a1f 100644 --- a/ext/favorites/main.php +++ b/ext/favorites/main.php @@ -75,7 +75,7 @@ class Favorites extends Extension $i_days_old = ((time() - strtotime($event->display_user->join_date)) / 86400) + 1; $h_favorites_rate = sprintf("%.1f", ($i_favorites_count / $i_days_old)); $favorites_link = make_link("post/list/favorited_by={$event->display_user->name}/1"); - $event->add_stats("Images favorited: $i_favorites_count, $h_favorites_rate per day"); + $event->add_stats("Posts favorited: $i_favorites_count, $h_favorites_rate per day"); } public function onImageInfoSet(ImageInfoSetEvent $event) diff --git a/ext/favorites/test.php b/ext/favorites/test.php index 7df3e0eb..933180eb 100644 --- a/ext/favorites/test.php +++ b/ext/favorites/test.php @@ -9,7 +9,7 @@ class FavoritesTest extends ShimmiePHPUnitTestCase # No favourites $this->get_page("post/view/$image_id"); - $this->assert_title("Image $image_id: test"); + $this->assert_title("Post $image_id: test"); $this->assert_no_text("Favorited By"); # Add a favourite @@ -17,7 +17,7 @@ class FavoritesTest extends ShimmiePHPUnitTestCase # Favourite shown on page $this->get_page("post/view/$image_id"); - $this->assert_title("Image $image_id: test"); + $this->assert_title("Post $image_id: test"); $this->assert_text("Favorited By"); # Favourite shown on index @@ -26,14 +26,14 @@ class FavoritesTest extends ShimmiePHPUnitTestCase # Favourite shown on user page $this->get_page("user/test"); - $this->assert_text("Images favorited: 1"); + $this->assert_text("Posts favorited: 1"); # Delete a favourite send_event(new FavoriteSetEvent($image_id, $user, false)); # No favourites $this->get_page("post/view/$image_id"); - $this->assert_title("Image $image_id: test"); + $this->assert_title("Post $image_id: test"); $this->assert_no_text("Favorited By"); } } diff --git a/ext/favorites/theme.php b/ext/favorites/theme.php index b2c3ca23..b6e06e5a 100644 --- a/ext/favorites/theme.php +++ b/ext/favorites/theme.php @@ -34,23 +34,23 @@ class FavoritesTheme extends Themelet public function get_help_html() { - return ' Search for images that have been favorited a certain number of times, or favorited by a particular individual. + return 'Search for posts that have been favorited a certain number of times, or favorited by a particular individual. favorites=1- Returns images that have been favorited once. +Returns posts that have been favorited once. favorites>0- Returns images that have been favorited 1 or more times +Returns posts that have been favorited 1 or more times Can use <, <=, >, >=, or =. favorited_by:username- Returns images that have been favorited by "username". +Returns posts that have been favorited by "username". favorited_by_userno:123- Returns images that have been favorited by user 123. +Returns posts that have been favorited by user 123. Viewing a featured post
Downloading a featured post
".$this->theme->build_thumb_html($existing); throw new ImageAdditionException($error); } @@ -205,12 +205,12 @@ class ImageIO extends Extension $existing = Image::by_id($id); if (is_null($existing)) { - throw new ImageReplaceException("Image to replace does not exist!"); + throw new ImageReplaceException("Post to replace does not exist!"); } $duplicate = Image::by_hash($image->hash); if (!is_null($duplicate) && $duplicate->id!=$id) { - $error = "Image {$duplicate->id} " . + $error = "Post {$duplicate->id} " . "already has hash {$image->hash}: " . $this->theme->build_thumb_html($duplicate);
throw new ImageReplaceException($error);
}
@@ -249,21 +249,21 @@ class ImageIO extends Extension
$i_days_old = ((time() - strtotime($event->display_user->join_date)) / 86400) + 1;
$h_image_rate = sprintf("%.1f", ($i_image_count / $i_days_old));
$images_link = make_link("post/list/user=$u_name/1");
- $event->add_stats("Images uploaded: $i_image_count, $h_image_rate per day");
+ $event->add_stats("Posts uploaded: $i_image_count, $h_image_rate per day");
}
public function onSetupBuilding(SetupBuildingEvent $event)
{
global $config;
- $sb = new SetupBlock("Image Options");
+ $sb = new SetupBlock("Post Options");
$sb->start_table();
$sb->position = 30;
// advanced only
//$sb->add_text_option(ImageConfig::ILINK, "Image link: ");
//$sb->add_text_option(ImageConfig::TLINK, " Search for images that have received views by users. '; + return 'Search for posts that have received views by users. '; } } diff --git a/ext/index/info.php b/ext/index/info.php index 67e453a3..9c7377fe 100644 --- a/ext/index/info.php +++ b/ext/index/info.php @@ -5,11 +5,11 @@ class IndexInfo extends ExtensionInfo public const KEY = "index"; public $key = self::KEY; - public $name = "Image List"; + public $name = "Post List"; public $url = self::SHIMMIE_URL; public $authors = self::SHISH_AUTHOR; public $license = self::LICENSE_GPLV2; - public $description = "Show a list of uploaded images"; + public $description = "Show a list of uploaded posts"; public $core = true; public $documentation = "Here is a list of the search methods available out of the box; Shimmie extensions may provide other filters: @@ -24,40 +24,40 @@ Shimmie extensions may provide other filters:
Search items can be combined to search for images which match both, + Search items can be combined to search for posts which match both, or you can stick \"-\" in front of an item to search for things that don't match it. Metatags can be followed by \":\" rather than \"=\" if you prefer. @@ -129,43 +129,43 @@ match it.
hash=0D3512CAA964B2BA5D7851AF5951F33B- Returns image with an MD5 hash 0D3512CAA964B2BA5D7851AF5951F33B. +Returns post with an MD5 hash 0D3512CAA964B2BA5D7851AF5951F33B. diff --git a/ext/link_image/info.php b/ext/link_image/info.php index cbd937bb..57c9de6b 100644 --- a/ext/link_image/info.php +++ b/ext/link_image/info.php @@ -5,7 +5,7 @@ class LinkImageInfo extends ExtensionInfo public const KEY = "link_image"; public $key = self::KEY; - public $name = "Link to Image"; + public $name = "Link to Post"; public $authors = ["Artanis"=>"artanis.00@gmail.com"]; public $description = "Show various forms of link to each image, for copy & paste"; public $license = self::LICENSE_GPLV2; @@ -25,9 +25,9 @@ It takes the following arguments as well as plain text. || \$title || The site title as set in Config. || - Link to Image will default this option to '\$title - \$id (\$ext \$size \$filesize)'. + Link to Post will default this option to '\$title - \$id (\$ext \$size \$filesize)'. - To reset to the default, simply clear the current setting. Link to Image + To reset to the default, simply clear the current setting. Link to Post will then fill in the default value after the save. To leave the setting blank for any reason, leave a space (' ') in it."; diff --git a/ext/link_image/main.php b/ext/link_image/main.php index b3b93ddd..11e70cb5 100644 --- a/ext/link_image/main.php +++ b/ext/link_image/main.php @@ -13,7 +13,7 @@ class LinkImage extends Extension public function onSetupBuilding(SetupBuildingEvent $event) { - $sb = new SetupBlock("Link to Image"); + $sb = new SetupBlock("Link to Post"); $sb->add_text_option("ext_link-img_text-link_format", "Text Link Format: "); $event->panel->add_block($sb); } diff --git a/ext/link_image/test.php b/ext/link_image/test.php index 6ddf7c89..c99f792f 100644 --- a/ext/link_image/test.php +++ b/ext/link_image/test.php @@ -11,6 +11,6 @@ class LinkImageTest extends ShimmiePHPUnitTestCase preg_match("#value='https?://.*/(post/view/[0-9]+)'#", $this->page_to_text(), $matches); $this->assertTrue(count($matches) > 0); $page = $this->get_page($matches[1]); - $this->assertEquals("Image $image_id: pie", $page->title); + $this->assertEquals("Post $image_id: pie", $page->title); } } diff --git a/ext/link_image/theme.php b/ext/link_image/theme.php index 4806e71e..a8c15a5b 100644 --- a/ext/link_image/theme.php +++ b/ext/link_image/theme.php @@ -10,7 +10,7 @@ class LinkImageTheme extends Themelet $page->add_block(new Block( - "Link to Image", + "Link to Post", " |
@@ -31,7 +31,7 @@ class LinkImageTheme extends Themelet
".
$this->link_code("Link", $this->url($post_link, $text_link, "html"), "html_text-link").
$this->link_code("Thumb", $this->url($post_link, $this->img($thumb_src, "html"), "html"), "html_thumb-link").
- $this->link_code("Image", $this->img($image_src, "html"), "html_full-image").
+ $this->link_code("File", $this->img($image_src, "html"), "html_full-image").
"
Search for items based on the type of media.
+ return 'Search for posts based on the type of media.
content:audio-
Returns items that contain audio, including videos and audio files.
+Returns posts that contain audio, including videos and audio files.
content:video-
Returns items that contain video, including animated GIFs.
+Returns posts that contain video, including animated GIFs.
These search terms depend on the items being scanned for media content. Automatic scanning was implemented in mid-2019, so items uploaded before, or items uploaded on a system without ffmpeg, will require additional scanning before this will work.
+These search terms depend on the posts being scanned for media content. Automatic scanning was implemented in mid-2019, so posts uploaded before, or posts uploaded on a system without ffmpeg, will require additional scanning before this will work.
'; } } diff --git a/ext/mime/theme.php b/ext/mime/theme.php index 024fbf69..5da350a7 100644 --- a/ext/mime/theme.php +++ b/ext/mime/theme.php @@ -14,11 +14,11 @@ class MimeSystemTheme extends Themelet sort($exts); $exts = join("Search for images by extension
+ return 'Search for posts by extension
ext=jpg-
Returns images with the extension "jpg".
+Returns posts with the extension "jpg".
Search for images by MIME type
+Search for posts by MIME type
mime=image/jpeg-
Returns images that have the MIME type "image/jpeg".
+Returns posts that have the MIME type "image/jpeg".
Image | ". + "Post | ". "Note | ". "Body | ". "Updater | ". @@ -250,23 +250,23 @@ class NotesTheme extends Themelet public function get_help_html() { - return '
---|
Image | Reason | Action | +Post | Reason | Action | $h_reportedimages
Search for images containing a certain number of tags with the specified tag category.
+ return 'Search for posts containing a certain number of tags with the specified tag category.
persontags=1-
Returns images with exactly 1 tag with the tag category "person".
+Returns posts with exactly 1 tag with the tag category "person".
cattags>0-
Returns images with 1 or more tags with the tag category "cat".
+Returns posts with 1 or more tags with the tag category "cat".
Can use <, <=, >, >=, or =.
Category name is not case sensitive, category must exist for search to work.
diff --git a/ext/tag_edit/info.php b/ext/tag_edit/info.php index 87af3743..c3396597 100644 --- a/ext/tag_edit/info.php +++ b/ext/tag_edit/info.php @@ -26,7 +26,7 @@ class TagEditInfo extends ExtensionInfoSearch for images in the trash.
+ return 'Search for posts in the trash.
in:trash-
Returns images that are in the trash.
+Returns posts that are in the trash.
Replacing Image ID ".$image_id."
Please note: You will have to refresh the image page, or empty your browser cache.
Replacing Post ID ".$image_id."
Please note: You will have to refresh the post page, or empty your browser cache.