contrib docs
git-svn-id: file:///home/shish/svn/shimmie2/trunk@245 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
parent
96ae672063
commit
dafaa1933c
6 changed files with 42 additions and 0 deletions
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Autocomplete
|
||||
* Author: Shish <webmaster@shishnet.org>
|
||||
* Link: http://trac.shishnet.org/shimmie2/
|
||||
* License: GPLv2
|
||||
* Description: Auto-complete for search and upload tags
|
||||
*/
|
||||
|
||||
class AutoComplete extends Extension {
|
||||
public function receive_event($event) {
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Emoticon Filter
|
||||
* Author: Shish <webmaster@shishnet.org>
|
||||
* Link: http://trac.shishnet.org/shimmie2/
|
||||
* License: GPLv2
|
||||
* Description: Turn :smile: into a link to smile.gif
|
||||
*/
|
||||
|
||||
class Emoticons extends Extension {
|
||||
public function receive_event($event) {
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Image Notes
|
||||
* Author: Shish <webmaster@shishnet.org>
|
||||
* Link: http://trac.shishnet.org/shimmie2/
|
||||
* License: GPLv2
|
||||
* Description: Adds notes overlaid on the images
|
||||
*/
|
||||
|
||||
class Notes extends Extension {
|
||||
var $theme;
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Image Ratings
|
||||
* Author: Shish <webmaster@shishnet.org>
|
||||
* Link: http://trac.shishnet.org/shimmie2/
|
||||
* License: GPLv2
|
||||
* Description: Allow users to rate images
|
||||
*/
|
||||
|
||||
class Ratings extends Extension {
|
||||
// event handler {{{
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: RSS for Comments
|
||||
* Author: Shish <webmaster@shishnet.org>
|
||||
* Link: http://trac.shishnet.org/shimmie2/
|
||||
* License: GPLv2
|
||||
* Description: Self explanitory
|
||||
*/
|
||||
|
||||
class RSS_Comments extends Extension {
|
||||
// event handling {{{
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Word Filter
|
||||
* Author: Shish <webmaster@shishnet.org>
|
||||
* Link: http://trac.shishnet.org/shimmie2/
|
||||
* License: GPLv2
|
||||
* Description: Simple search and replace
|
||||
*/
|
||||
|
||||
class WordFilter extends Extension {
|
||||
public function receive_event($event) {
|
||||
|
|
Reference in a new issue