forked from bentglasstube/blosxom-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmilefie-v0i1
132 lines (93 loc) · 4.66 KB
/
smilefie-v0i1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Blosxom Plugin: smilefie
# Author(s): Jason Silver
# Version: 0.1
# Home/Docs/Licensing: contact at http://intelliscript.net/
package smilefie;
# --- Configurable variables -----
$height = 12;
$happy = "/images/blog_buttons/happy.gif";
$sad = "/images/blog_buttons/sad.gif";
$winking = "/images/blog_buttons/winking.gif";
$laughing = "/images/blog_buttons/laughing.gif";
$suprised = "/images/blog_buttons/suprised.gif";
$cool = "/images/blog_buttons/cool.gif";
$confused = "/images/blog_buttons/confused.gif";
$frustrated = "/images/blog_buttons/frustrated.gif";
$disappointed = "/images/blog_buttons/disappointed.gif";
$tired = "/images/blog_buttons/tired.gif";
$tongue = "/images/blog_buttons/tongue.gif";
# There are no more user configurable variables
# --------------------------------
sub smilefie_this{
my ($ref_to_convert) = @_;
$$ref_to_convert =~ s/:\)/<img src="$happy" alt="happy" height=$height>/sg;
$$ref_to_convert =~ s/:\-\)/<img src="$happy" alt="happy" height=$height>/sg;
$$ref_to_convert =~ s/:\(/<img src="$sad" alt="sad" height=$height>/sg;
$$ref_to_convert =~ s/:\-\(/<img src="$sad" alt="sad" height=$height>/sg;
$$ref_to_convert =~ s/\;\)/<img src="$winking" alt="winking" height=$height>/sg;
$$ref_to_convert =~ s/\;\-\)/<img src="$winking" alt="winking" height=$height>/sg;
# $$ref_to_convert =~ s/:\D/<img src="$laughing" alt="laughing" height=$height>/sg;
# $$ref_to_convert =~ s/:\-\D/<img src="$laughing" alt="laughing" height=$height>/sg;
$$ref_to_convert =~ s/:O/<img src="$suprised" alt="suprised" height=$height>/sg;
$$ref_to_convert =~ s/:\-O/<img src="$suprised" alt="suprised" height=$height>/sg;
$$ref_to_convert =~ s/B\)/<img src="$cool" alt="cool" height=$height>/sg;
$$ref_to_convert =~ s/B\-\)/<img src="$cool" alt="cool" height=$height>/sg;
$$ref_to_convert =~ s/:S/<img src="$confused" alt="confused" height=$height>/sg;
$$ref_to_convert =~ s/:\-S/<img src="$confused" alt="confused" height=$height>/sg;
$$ref_to_convert =~ s/:\|/<img src="$frustrated" alt="frustrated" height=$height>/sg;
$$ref_to_convert =~ s/:\-\|/<img src="$frustrated" alt="frustrated" height=$height>/sg;
$$ref_to_convert =~ s/:\\/<img src="$disappointed" alt="disappointed" height=$height>/sg;
$$ref_to_convert =~ s/:\-\\/<img src="$disappointed" alt="disappointed" height=$height>/sg;
$$ref_to_convert =~ s/:z/<img src="$tired" alt="tired" height=$height>/sg;
$$ref_to_convert =~ s/:\-z/<img src="$tired" alt="tired" height=$height>/sg;
$$ref_to_convert =~ s/:P/<img src="$tongue" alt="tongue" height=$height>/sg;
$$ref_to_convert =~ s/:\-P/<img src="$tongue" alt="tongue" height=$height>/sg;
1;
}
sub start {
1;
}
sub story {
my ($pkg, $path, $filename, $story_ref, $title_ref, $body_ref) = @_;
smilefie_this($story_ref);
smilefie_this($title_ref);
smilefie_this($body_ref);
1;
}
1;
__END__
=head1 NAME
Blosxom Plug-in: smilefie
=head1 SYNOPSIS
Purpose: This plugin changes some basic smiley symbols to graphics much like popular instant messenger programs
=head1 VERSION
0.1
=head1 AUTHOR
Jason Silver
http://www.crookedbush.com/
=head1 CONFIGURATION
Set the height of your smileys, and change the URL's of your smiley images to point to images on your own server.
If you want my images, send me an email and I'll shoot 'em over to you.
Many of them were grabbed them from a Google image search. Other's I made from scratch.
=head1 EXAMPLE
:-) becomes a happy face!
;) is a wink
etc.!
=head1 LICENSE
Copyright 2004, Jason Silver
(This license is the same as Blosxom's)
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.