Changeset 640087
- Timestamp:
- 12/16/2012 05:00:47 PM (13 years ago)
- Location:
- simplesmileyreplace/trunk
- Files:
-
- 2 edited
-
SimpleSmileyReplace.php (modified) (1 diff)
-
readme.txt (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simplesmileyreplace/trunk/SimpleSmileyReplace.php
r525103 r640087 4 4 Plugin URI: http://brokenlibrarian.org/tinyplugins/simplesmileyreplace/ 5 5 Description: Replaces standard smilies with ones from a theme folder 6 Version: 0. 46 Version: 0.5 7 7 Author: Christian Wagner 8 8 Author URI: http://brokenlibrarian.org/tinyplugins/ -
simplesmileyreplace/trunk/readme.txt
r526493 r640087 4 4 Tags: comments, smilies 5 5 Requires at least: 3.3.1 6 Tested up to: 3. 3.17 Stable tag: 0. 46 Tested up to: 3.5 7 Stable tag: 0.5 8 8 License: Apache 9 9 … … 12 12 SimpleSmileyReplace is a plugin that checks for the existence of a _images/smilies/_ folder in a theme. If that folder exists, WordPress uses the smiley files in that folder instead. The plugin assumes that the smilies have the usual filenames (_icon_rolleyes.gif_, etc). 13 13 14 It has no extra requirements and has been tested on the twentyeleven and twentytenthemes.14 It has no extra requirements and has been tested with modified versions of the twentyten, twentyeleven, and twentytwelve themes. 15 15 16 16 Feedback, positive or negative, is highly appreciated as this plugin is in an early stage. Emails or comments are welcome. … … 18 18 http://brokenlibrarian.org/tinyplugins/ 19 19 brokenlibrarian@gmail.com 20 3/17/201220 12/16/2012 21 21 22 22 == Installation == … … 30 30 = What are the standard WordPress filenames? = 31 31 32 An up-to-date list of smilies and filenames can be found in _/wp-includes/functions.php_ by searching for the _$wpsmiliestrans_ variable. As of WordPress version 3. 3.1, this is the list (cut-and-pasted):32 An up-to-date list of smilies and filenames can be found in _/wp-includes/functions.php_ by searching for the _$wpsmiliestrans_ variable. As of WordPress version 3.5, this is the list (cut-and-pasted): 33 33 34 34 ` 35 :mrgreen: => icon_mrgreen.gif 36 :neutral: => icon_neutral.gif 37 :twisted: => icon_twisted.gif 38 :arrow: => icon_arrow.gif 39 :shock: => icon_eek.gif 40 :smile: => icon_smile.gif 41 :???: => icon_confused.gif 42 :cool: => icon_cool.gif 43 :evil: => icon_evil.gif 44 :grin: => icon_biggrin.gif 45 :idea: => icon_idea.gif 46 :oops: => icon_redface.gif 47 :razz: => icon_razz.gif 48 :roll: => icon_rolleyes.gif 49 :wink: => icon_wink.gif 50 :cry: => icon_cry.gif 51 :eek: => icon_surprised.gif 52 :lol: => icon_lol.gif 53 :mad: => icon_mad.gif 54 :sad: => icon_sad.gif 55 8-) => icon_cool.gif 56 8-O => icon_eek.gif 57 :-( => icon_sad.gif 58 :-) => icon_smile.gif 59 :-? => icon_confused.gif 60 :-D => icon_biggrin.gif 61 :-P => icon_razz.gif 62 :-o => icon_surprised.gif 63 :-x => icon_mad.gif 64 :-| => icon_neutral.gif 65 ;-) => icon_wink.gif 66 8O => icon_eek.gif 67 :( => icon_sad.gif 68 :) => icon_smile.gif 69 :? => icon_confused.gif 70 :D => icon_biggrin.gif 71 :P => icon_razz.gif 72 :o => icon_surprised.gif 73 :x => icon_mad.gif 74 :| => icon_neutral.gif 75 ;) => icon_wink.gif 76 :!: => icon_exclaim.gif 77 :?: => icon_question.gif 35 ':mrgreen:' => 'icon_mrgreen.gif', 36 ':neutral:' => 'icon_neutral.gif', 37 ':twisted:' => 'icon_twisted.gif', 38 ':arrow:' => 'icon_arrow.gif', 39 ':shock:' => 'icon_eek.gif', 40 ':smile:' => 'icon_smile.gif', 41 ':???:' => 'icon_confused.gif', 42 ':cool:' => 'icon_cool.gif', 43 ':evil:' => 'icon_evil.gif', 44 ':grin:' => 'icon_biggrin.gif', 45 ':idea:' => 'icon_idea.gif', 46 ':oops:' => 'icon_redface.gif', 47 ':razz:' => 'icon_razz.gif', 48 ':roll:' => 'icon_rolleyes.gif', 49 ':wink:' => 'icon_wink.gif', 50 ':cry:' => 'icon_cry.gif', 51 ':eek:' => 'icon_surprised.gif', 52 ':lol:' => 'icon_lol.gif', 53 ':mad:' => 'icon_mad.gif', 54 ':sad:' => 'icon_sad.gif', 55 '8-)' => 'icon_cool.gif', 56 '8-O' => 'icon_eek.gif', 57 ':-(' => 'icon_sad.gif', 58 ':-)' => 'icon_smile.gif', 59 ':-?' => 'icon_confused.gif', 60 ':-D' => 'icon_biggrin.gif', 61 ':-P' => 'icon_razz.gif', 62 ':-o' => 'icon_surprised.gif', 63 ':-x' => 'icon_mad.gif', 64 ':-|' => 'icon_neutral.gif', 65 ';-)' => 'icon_wink.gif', 66 '8O' => 'icon_eek.gif', 67 ':(' => 'icon_sad.gif', 68 ':)' => 'icon_smile.gif', 69 ':?' => 'icon_confused.gif', 70 ':D' => 'icon_biggrin.gif', 71 ':P' => 'icon_razz.gif', 72 ':o' => 'icon_surprised.gif', 73 ':x' => 'icon_mad.gif', 74 ':|' => 'icon_neutral.gif', 75 ';)' => 'icon_wink.gif', 76 ':!:' => 'icon_exclaim.gif', 77 ':?:' => 'icon_question.gif', 78 78 ` 79 79 … … 84 84 == Changelog == 85 85 86 = 0.5 = 87 * update for WordPress 3.5 compatibility testing 88 86 89 = 0.4 = 87 90 * readme and source code cleanup, no other changes … … 91 94 92 95 == Upgrade Notice == 96 97 = 0.5 = 98 * update for WordPress 3.5 compatibility testing 93 99 94 100 = 0.4 =
Note: See TracChangeset
for help on using the changeset viewer.