LJSUP-17669: Login.bml form refactoring
[livejournal.git] / cgi-bin / imageconf.pl
blob56cad27be83fa34102bfdfdfe1a0346241626ea1
1 #!/usr/bin/perl
4 use strict;
5 package LJ::Img;
6 use vars qw(%img);
8 $img{'ins_obj'} = {
9 'src' => '/ins-object.gif?v=5587',
10 'width' => 129,
11 'height' => 52,
12 'alt' => 'img.ins_obj',
15 $img{'btn_up'} = {
16 'src' => '/btn_up.gif?v=17312',
17 'width' => 22,
18 'height' => 20,
19 'alt' => 'img.btn_up',
22 $img{'btn_down'} = {
23 'src' => '/btn_dn.gif?v=17312',
24 'width' => 22,
25 'height' => 20,
26 'alt' => 'img.btn_down',
29 $img{'btn_del'} = {
30 'src' => '/btn_del.gif?v=17312',
31 'width' => 24,
32 'height' => 24,
33 'alt' => 'img.btn_del',
36 $img{'btn_spam'} = {
37 'src' => '/btn_spam.gif?v=11145',
38 'width' => 24,
39 'height' => 24,
40 'alt' => 'img.btn_spam',
43 $img{'btn_unspam'} = {
44 'src' => '/btn_unspam.gif?v=11145',
45 'width' => 24,
46 'height' => 24,
47 'alt' => 'img.btn_unspam',
50 $img{'btn_freeze'} = {
51 'src' => '/btn_freeze.gif?v=17312',
52 'width' => 24,
53 'height' => 24,
54 'alt' => 'img.btn_freeze',
57 $img{'btn_unfreeze'} = {
58 'src' => '/btn_unfreeze.gif?v=17312',
59 'width' => 24,
60 'height' => 24,
61 'alt' => 'img.btn_unfreeze',
64 $img{'btn_scr'} = {
65 'src' => '/btn_scr.gif?v=17312',
66 'width' => 24,
67 'height' => 24,
68 'alt' => 'img.btn_scr',
71 $img{'btn_unscr'} = {
72 'src' => '/btn_unscr.gif?v=17312',
73 'width' => 24,
74 'height' => 24,
75 'alt' => 'img.btn_unscr',
78 $img{'prev_entry'} = {
79 'src' => '/btn_prev.gif?v=17312',
80 'width' => 24,
81 'height' => 24,
82 'alt' => 'img.prev_entry',
85 $img{'next_entry'} = {
86 'src' => '/btn_next.gif?v=17312',
87 'width' => 24,
88 'height' => 24,
89 'alt' => 'img.next_entry',
92 $img{'memadd'} = {
93 'src' => '/memadd.gif?v=17312',
94 'width' => 24,
95 'height' => 24,
96 'alt' => 'img.memadd',
99 $img{'editentry'} = {
100 'src' => '/btn_edit.gif?v=17312',
101 'width' => 24,
102 'height' => 24,
103 'alt' => 'img.editentry',
106 $img{'edittags'} = {
107 'src' => '/btn_edittags.gif?v=17312',
108 'width' => 24,
109 'height' => 24,
110 'alt' => 'img.edittags',
113 $img{'tellfriend'} = {
114 'src' => '/btn_tellfriend.gif?v=16326',
115 'width' => 24,
116 'height' => 24,
117 'alt' => 'img.tellfriend',
120 $img{'placeholder'} = {
121 'src' => '/imageplaceholder2.png?v=3635',
122 'width' => 35,
123 'height' => 35,
124 'alt' => 'img.placeholder',
127 $img{'xml'} = {
128 'src' => '/xml.gif?v=6803',
129 'width' => 36,
130 'height' => 14,
131 'alt' => 'img.xml',
134 $img{'track'} = {
135 'src' => '/btn_track.gif?v=17312',
136 'width' => 24,
137 'height' => 24,
138 'alt' => 'img.track',
141 $img{'track_active'} = {
142 'src' => '/btn_tracking.gif?v=17312',
143 'width' => 24,
144 'height' => 24,
145 'alt' => 'img.track_active',
148 $img{'track_thread_active'} = {
149 'src' => '/btn_tracking_thread.gif?v=17312',
150 'width' => 24,
151 'height' => 24,
152 'alt' => 'img.track_thread_active',
155 $img{'flag'} = {
156 'src' => '/button-flag.gif?v=17312',
157 'width' => 24,
158 'height' => 24,
159 'alt' => 'img.flag_btn',
162 $img{'editcomment'} = {
163 'src' => '/btn_edit.gif?v=17312',
164 'width' => 24,
165 'height' => 24,
166 'alt' => 'img.editcomment',
169 $img{'share'} = {
170 'src' => '/btn_share.gif?v=18463',
171 'width' => 24,
172 'height' => 24,
173 'alt' => 'img.share',
176 # load the site-local version, if it's around.
177 if (-e "$LJ::HOME/cgi-bin/imageconf-local.pl") {
178 require "$LJ::HOME/cgi-bin/imageconf-local.pl";