extension documentation updates

This commit is contained in:
Shish 2009-08-20 23:37:17 +01:00
parent 8ea67db1fa
commit f87b34400e
33 changed files with 63 additions and 47 deletions

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Comment Word Ban * Name: Comment Word Ban
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,14 +1,16 @@
<?php <?php
/** /*
* Name: Browser Search * Name: Browser Search
* Author: ATravelingGeek <atg@atravelinggeek.com> * Author: ATravelingGeek <atg@atravelinggeek.com>
* Some code (and lots of help) by Artanis (Erik Youngren <artanis.00@gmail.com>) from the 'tagger' extention - Used with permission * Some code (and lots of help) by Artanis (Erik Youngren <artanis.00@gmail.com>) from the 'tagger' extention - Used with permission
* Link: http://atravelinggeek.com/ * Link: http://atravelinggeek.com/
* License: GPLv2 * License: GPLv2
* Description: Allows the user to add a browser 'plugin' to search the site with real-time suggestions * Description: Allows the user to add a browser 'plugin' to search the site with real-time suggestions
* Version 0.1c * Version: 0.1c, October 26, 2007
* October 26, 2007 * Documentation:
* * Once installed, users with an opensearch compatible browser should see
* their search box light up with whatever "click here to add a search
* engine" notification they have
*/ */
class BrowserSearch implements Extension { class BrowserSearch implements Extension {

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Bulk Add * Name: Bulk Add
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,17 +1,20 @@
<?php <?php
/* /*
Name: Danbooru Client API Name: Danbooru Client API
Description: Allow Danbooru apps like Danbooru Uploader for Firefox to communicate with Shimmie
Author: JJS <jsutinen@gmail.com> Author: JJS <jsutinen@gmail.com>
Notes: Description: Allow Danbooru apps like Danbooru Uploader for Firefox to communicate with Shimmie
danbooru API based on documentation from danbooru 1.0 - http://attachr.com/7569 Documentation:
I've only been able to test add_post and find_tags because I use the old danbooru firefox extension for firefox 1.5 <p>Notes:
<br>danbooru API based on documentation from danbooru 1.0 -
Functions currently implemented: http://attachr.com/7569
add_post - title and rating are currently ignored because shimmie does not support them <br>I've only been able to test add_post and find_tags because I use the
find_posts - sort of works, filename is returned as the original filename and probably won't help when it comes to actually downloading it old danbooru firefox extension for firefox 1.5
find_tags - id, name, and after_id all work but the tags parameter is ignored just like danbooru 1.0 ignores it <p>Functions currently implemented:
<ul>
<li>add_post - title and rating are currently ignored because shimmie does not support them
<li>find_posts - sort of works, filename is returned as the original filename and probably won't help when it comes to actually downloading it
<li>find_tags - id, name, and after_id all work but the tags parameter is ignored just like danbooru 1.0 ignores it
</ul>
CHANGELOG CHANGELOG
13-OCT-08 8:00PM CST - JJS 13-OCT-08 8:00PM CST - JJS

View File

@ -1,9 +1,14 @@
<?php <?php
/** /*
* Name: Downtime * Name: Downtime
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2
* Description: Show a "down for maintenance" page * Description: Show a "down for maintenance" page
* Documentation:
* Once installed there will be some more options on the config page --
* Ticking "disable non-admin access" will mean that regular and anonymous
* users will be blocked from accessing the site, only able to view the
* message specified in the box.
*/ */
class Downtime implements Extension { class Downtime implements Extension {

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Emoticon Filter * Name: Emoticon Filter
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: System Info * Name: System Info
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,9 +1,16 @@
<?php <?php
/** /*
* Name: Favorites * Name: Favorites
* Author: Daniel Marschall <info@daniel-marschall.de> * Author: Daniel Marschall <info@daniel-marschall.de>
* License: GPLv2 * License: GPLv2
* Description: Allow users to favorite images * Description: Allow users to favorite images
* Documentation:
* Gives users a "favorite this image" button that they can press
* <p>Favorites for a user can then be retrieved by searching for
* "favorited_by=UserName"
* <p>Popular images can be searched for by eg. "favorites>5"
* <p>Favorite info can be added to an image's filename or tooltip
* using the $favorites placeholder
*/ */
class FavoriteSetEvent extends Event { class FavoriteSetEvent extends Event {

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Featured Image * Name: Featured Image
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Archive File Handler * Name: Archive File Handler
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* Description: Allow users to upload archives (zip, etc) * Description: Allow users to upload archives (zip, etc)

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Flash File Handler * Name: Flash File Handler
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* Description: Handle Flash files * Description: Handle Flash files

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: ICO File Handler * Name: ICO File Handler
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* Description: Handle windows icons * Description: Handle windows icons

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: MP3 File Handler * Name: MP3 File Handler
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* Description: Handle MP3 files * Description: Handle MP3 files

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: SVG File Handler * Name: SVG File Handler
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* Description: Handle SVG files * Description: Handle SVG files

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Home Page * Name: Home Page
* Author: Bzchan <bzchan@animemahou.com> * Author: Bzchan <bzchan@animemahou.com>
* License: GPLv2 * License: GPLv2

View File

@ -1,13 +1,12 @@
<?php <?php
/** /*
* Name: Image Hash Ban * Name: Image Hash Ban
* Author: ATravelingGeek <atg@atravelinggeek.com> * Author: ATravelingGeek <atg@atravelinggeek.com>
* Link: http://atravelinggeek.com/ * Link: http://atravelinggeek.com/
* License: GPLv2 * License: GPLv2
* Description: Ban images based on their hash * Description: Ban images based on their hash
* Based on the ResolutionLimit and IPban extensions by Shish * Based on the ResolutionLimit and IPban extensions by Shish
* Version 0.1 * Version 0.1, October 21, 2007
* October 21, 2007
*/ */
// RemoveImageHashBanEvent {{{ // RemoveImageHashBanEvent {{{

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: IP Ban * Name: IP Ban
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Link to Image * Name: Link to Image
* Author: Artanis <artanis.00@gmail.com> * Author: Artanis <artanis.00@gmail.com>
* Description: Show various forms of link to each image, for copy & paste * Description: Show various forms of link to each image, for copy & paste

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: News * Name: News
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Image Scores (Numeric) * Name: Image Scores (Numeric)
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Private Messaging * Name: Private Messaging
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Random Image * Name: Random Image
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Image Ratings * Name: Image Ratings
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Regen Thumb * Name: Regen Thumb
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Resolution Limiter * Name: Resolution Limiter
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: RSS for Comments * Name: RSS for Comments
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: RSS for Images * Name: RSS for Images
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Site Description * Name: Site Description
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: XML Sitemap * Name: XML Sitemap
* Author: Sein Kraft <mail@seinkraft.info> * Author: Sein Kraft <mail@seinkraft.info>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Tag History * Name: Tag History
* Author: Bzchan <bzchan@animemahou.com> * Author: Bzchan <bzchan@animemahou.com>
* Description: Keep a record of tag changes * Description: Keep a record of tag changes

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Simple Wiki * Name: Simple Wiki
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Word Filter * Name: Word Filter
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2

View File

@ -1,5 +1,5 @@
<?php <?php
/** /*
* Name: Image Zoom * Name: Image Zoom
* Author: Shish <webmaster@shishnet.org> * Author: Shish <webmaster@shishnet.org>
* License: GPLv2 * License: GPLv2