root/wp-polls/trunk/readme.html

Revision 52846, 28.5 kB (checked in by GamerZ, 4 days ago)

Works For WordPress 2.6

Line 
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html>
3 <head> 
4         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5         <title>WP-Polls 2.31 Readme</title>
6         <style type="text/css" media="screen">
7                 /* Default Style */
8                 BODY {
9                         font-family: Verdana, Arial;
10                         font-size: 12px;
11                         color: #000000;
12                         background: #FFFFFF;
13                 }
14                 P {
15                         padding-left: 10px;
16                 }
17                 BLOCKQUOTE {
18                         margin: 10px 20px 0px 20px;
19                         padding: 10px;
20                         border: 1px solid #8d8d8d;
21                         background-color: #f5f5f5;
22                         overflow: auto;
23                 }
24                 LI {
25                         margin-top: 20px;
26                 }
27                 UL LI UL LI {
28                         margin-top: 10px;
29                 }
30                 A, A:active, A:link, A:visited {
31                         color: #2d3a4c;
32                         text-decoration: none;
33                 }
34                 A:hover {
35                         color: #5577a5;
36                         text-decoration: underline;
37                 }
38                 /* Place Holder Style */
39                 #Container {
40                         width: 780px;
41                         margin-left: auto;
42                         margin-right: auto;
43                 }
44                 #Content {
45                         background-color: #fafafa;
46                         border: 1px solid #a2b6cb;
47                         padding: 10px;
48                         margin-top: -13px;
49                 }
50                 /* Title Style */
51                 #Title {
52                         font-family: Verdana, Arial;
53                         font-size: 22px;
54                         font-weight: bold;
55                         color: #389aff;
56                         border-bottom: 1px solid #389aff;
57                         margin-bottom: 10px;
58                 }
59                 .SubTitle {
60                         font-family: Verdana, Arial;
61                         font-size: 18px;
62                         font-weight: bold;
63                         color: #5b87b4;
64                 }
65                 .SubSubTitle {
66                         font-family: Verdana, Arial;
67                         font-size: 14px;
68                         font-weight: bold;
69                         color: #73a4d6;
70                 }
71                 /* Tabs */
72                 UL#Tabs {
73                         font-family: Verdana, Arial;
74                         font-size: 12px;
75                         font-weight: bold;
76                         list-style-type: none;
77                         padding-bottom: 28px;
78                         border-bottom: 1px solid #a2b6cb;
79                         margin-bottom: 12px;
80                         z-index: 1;
81                 }
82                 #Tabs LI.Tab {
83                         float: right;
84                         height: 25px;
85                         background-color: #deedfb;
86                         margin: 2px 0px 0px 5px;
87                         border: 1px solid #a2b6cb;
88                 }
89                 #Tabs LI.Tab A {
90                         float: left;
91                         display: block;
92                         color: #666666;
93                         text-decoration: none;
94                         padding: 5px;
95                 }
96                 #Tabs LI.Tab A:hover {
97                         background-color: #bfe0fe;
98                         border-bottom: 1px solid #bfe0fe;
99                 }
100                 /* Selected Tab */
101                 #Tabs LI.SelectedTab {
102                         float: right;
103                         height: 25px;
104                         background-color: #fafafa;
105                         margin: 2px 0px 0px 5px;
106                         border-top: 1px solid #a2b6cb;
107                         border-right: 1px solid #a2b6cb;
108                         border-bottom: 1px solid #fafafa;
109                         border-left: 1px solid #a2b6cb;
110                 }
111                 #Tabs LI.SelectedTab A {
112                         float: left;
113                         display: block;
114                         color: #666666;
115                         text-decoration: none;
116                         padding: 5px;
117                         cursor: default;
118                 }
119                 /* Copyright */
120                 #Copyright {
121                         text-align: center;
122                 }
123         </style>
124         <script type="text/javascript">
125         /* <![CDATA[*/
126                 // Index Page
127                 function index() {
128                         // Tab
129                         document.getElementById('IndexTab').className = 'SelectedTab';
130                         document.getElementById('ChangelogTab').className = 'Tab';
131                         document.getElementById('InstallTab').className = 'Tab';
132                         document.getElementById('UpgradeTab').className = 'Tab';
133                         document.getElementById('UsageTab').className = 'Tab';
134                         // Page
135                         document.getElementById('Index').style.display= 'block';
136                         document.getElementById('Changelog').style.display = 'none';
137                         document.getElementById('Install').style.display = 'none';
138                         document.getElementById('Upgrade').style.display = 'none';
139                         document.getElementById('Usage').style.display = 'none';
140                 }
141                 // Changelog Page
142                 function changelog() {
143                         // Tab
144                         document.getElementById('IndexTab').className = 'Tab';
145                         document.getElementById('ChangelogTab').className = 'SelectedTab';
146                         document.getElementById('InstallTab').className = 'Tab';
147                         document.getElementById('UpgradeTab').className = 'Tab';
148                         document.getElementById('UsageTab').className = 'Tab';
149                         // Page
150                         document.getElementById('Index').style.display = 'none';
151                         document.getElementById('Changelog').style.display = 'block';
152                         document.getElementById('Install').style.display = 'none';
153                         document.getElementById('Upgrade').style.display = 'none';
154                         document.getElementById('Usage').style.display = 'none';
155                 }
156                 // Installation Page
157                 function install() {
158                         // Tab
159                         document.getElementById('IndexTab').className = 'Tab';
160                         document.getElementById('ChangelogTab').className = 'Tab';
161                         document.getElementById('InstallTab').className = 'SelectedTab';
162                         document.getElementById('UpgradeTab').className = 'Tab';
163                         document.getElementById('UsageTab').className = 'Tab';
164                         // Page
165                         document.getElementById('Index').style.display= 'none';
166                         document.getElementById('Changelog').style.display = 'none';
167                         document.getElementById('Install').style.display = 'block';
168                         document.getElementById('Upgrade').style.display = 'none';
169                         document.getElementById('Usage').style.display = 'none';
170                 }
171                 // Upgrade Page
172                 function upgrade() {
173                         // Tab
174                         document.getElementById('IndexTab').className = 'Tab';
175                         document.getElementById('ChangelogTab').className = 'Tab';
176                         document.getElementById('InstallTab').className = 'Tab';
177                         document.getElementById('UpgradeTab').className = 'SelectedTab';
178                         document.getElementById('UsageTab').className = 'Tab';
179                         // Page
180                         document.getElementById('Index').style.display= 'none';
181                         document.getElementById('Changelog').style.display = 'none';
182                         document.getElementById('Install').style.display = 'none';
183                         document.getElementById('Upgrade').style.display = 'block';
184                         document.getElementById('Usage').style.display = 'none';
185                 }
186                 // Usage Page
187                 function usage() {
188                         // Tab
189                         document.getElementById('IndexTab').className = 'Tab';
190                         document.getElementById('ChangelogTab').className = 'Tab';
191                         document.getElementById('InstallTab').className = 'Tab';
192                         document.getElementById('UpgradeTab').className = 'Tab';
193                         document.getElementById('UsageTab').className = 'SelectedTab';
194                         // Page
195                         document.getElementById('Index').style.display= 'none';
196                         document.getElementById('Changelog').style.display = 'none';
197                         document.getElementById('Install').style.display = 'none';
198                         document.getElementById('Upgrade').style.display = 'none';
199                         document.getElementById('Usage').style.display = 'block';
200                 }
201         /* ]]> */
202         </script>
203 </head>
204 <body>
205 <div id="Container">
206         <!-- Title -->
207         <div id="Title">WP-Polls 2.31&nbsp;&nbsp;&nbsp;<span style="color: #aaaaaa;">Readme</span></div>
208
209         <!-- Tabs -->
210         <ul id="Tabs">
211                 <li id="UsageTab" class="Tab"><a href="#Usage" onclick="usage(); return false;" title="Usage Instructions">Usage</a></li>
212                 <li id="UpgradeTab" class="Tab"><a href="#Upgrade" onclick="upgrade(); return false;" title="Upgrade Instructions">Upgrade</a></li>
213                 <li id="InstallTab" class="Tab"><a href="#Installation" onclick="install(); return false;" title="Installation Instructions">Installation</a></li>
214                 <li id="ChangelogTab" class="Tab"><a href="#Changelog" onclick="changelog(); return false;" title="Changelog">Changelog</a></li>
215                 <li id="IndexTab" class="SelectedTab"><a href="#Index" onclick="index(); return false;" title="Index Instructions">Index</a></li>
216         </ul>
217
218         <!-- Content -->
219         <div id="Content">
220                 <!-- Index -->
221                 <div id="Index">
222                         <div class="SubTitle">&raquo; Index</div>
223                         <div class="SubSubTitle">Plugin Information</div>
224                         <p>
225                                 <strong>Author:</strong><br />
226                                 <strong>&raquo;</strong> Lester 'GaMerZ' Chan
227                         </p>
228                         <p>
229                                 <strong>Website:</strong><br />
230                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/" title="http://lesterchan.net/">http://lesterchan.net/</a>
231                         </p>
232                         <p>
233                                 <strong>Features:</strong><br />
234                                 <strong>&raquo;</strong> Adds an AJAX poll system to your WordPress blog. You can easily include a poll into your WordPress's blog post/page. WP-Polls is extremely customizable via templates and css styles and there are tons of options for you to choose to ensure that WP-Polls runs the way you wanted. It now supports multiple selection of answers.
235                         </p>
236                         <p>
237                                 <strong>Download:</strong><br />
238                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-polls.2.31.zip" title="http://downloads.wordpress.org/plugin/wp-polls.2.31.zip">WP-Polls 2.31 For WordPress 2.5.x And 2.6.x</a><br />
239                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-polls.2.20.zip" title="http://downloads.wordpress.org/plugin/wp-polls.2.20.zip">WP-Polls 2.20 For WordPress 2.1.x, 2.2.x And 2.3.x</a><br />
240                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-polls.2.13.zip" title="http://downloads.wordpress.org/plugin/wp-polls.2.13.zip">WP-Polls 2.13 For WordPress 2.0.x</a><br />
241                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-polls.2.02a.zip" title="http://downloads.wordpress.org/plugin/wp-polls.2.02a.zip">WP-Polls 2.02a For WordPress 1.5.2</a>
242                         </p>
243                         <p>
244                                 <strong>Screenshots:</strong><br />
245                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/wordpress/screenshots/browse/wp-polls/" title="http://lesterchan.net/wordpress/screenshots/browse/wp-polls/">http://lesterchan.net/wordpress/screenshots/browse/wp-polls/</a>
246                         </p>
247                         <p>
248                                 <strong>Demo:</strong><br />
249                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/wordpress/" title="http://lesterchan.net/wordpress/">http://lesterchan.net/wordpress/</a>
250                         </p>
251                         <p>
252                                 <strong>Development:</strong><br />
253                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-polls/" title="http://dev.wp-plugins.org/browser/wp-polls/">http://dev.wp-plugins.org/browser/wp-polls/</a>
254                         </p>
255                         <p>
256                                 <strong>Translations:</strong><br />
257                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-polls/i18n/" title="http://dev.wp-plugins.org/browser/wp-polls/i18n/">http://dev.wp-plugins.org/browser/wp-polls/i18n/</a>
258                         </p>
259                         <p>
260                                 <strong>Support Forums:</strong><br />
261                                 <strong>&raquo;</strong> <a href="http://forums.lesterchan.net/index.php?board=15.0" title="http://forums.lesterchan.net/index.php?board=15.0">http://forums.lesterchan.net/index.php?board=15.0</a>
262                         </p>
263                         <p>
264                                 <strong>Note:</strong><br />
265                                 <strong>&raquo;</strong> The <strong>Changelog</strong>, <strong>Installation</strong>, <strong>Upgrade</strong>, <strong>Usage</strong> Tab at the top of the page.<br />
266                         </p>
267                         <p>
268                                 <strong>Donations:</strong><br />
269                                 <strong>&raquo;</strong> I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks as my school allowance, I will really appericiate it. If not feel free to use it without any obligations. Thank You. My Paypal account is
270                                 <script type="text/javascript">
271                                         /* <![CDATA[*/
272                                         document.write(' <strong>lesterchan@gmail.com</strong>.');
273                                         /* ]]> */
274                                 </script>
275                         </p>
276                 </div>
277
278                 <!-- Changelog -->
279                 <div id="Changelog" style="display: none;">
280                         <div class="SubTitle">&raquo; Changelog</div>
281                         <ul>
282                                 <li>
283                                         <strong>Version 2.31 (01-08-2008)</strong>
284                                         <ul>
285                                                 <li>NEW: Works For WordPress 2.6</li>
286                                                 <li>FIXED: MYSQL Charset Issue Should Be Solved</li>
287                                         </ul>
288                                 </li>
289                                 <li>
290                                         <strong>Version 2.30 (01-06-2008)</strong>
291                                         <ul>
292                                                 <li>NEW: Works For WordPress 2.5 Only</li>
293                                                 <li>NEW: Added Paging Header And Footer Template For Polls Archive Page</li>
294                                                 <li>NEW: Uses WP-PageNavi Style Paging For Polls Archive Page</li>
295                                                 <li>NEW: WP-Polls Will Load 'polls-css.css' Inside Your Theme Directory If It Exists. If Not, It Will Just Load The Default 'polls-css.css' By WP-Polls</li>
296                                                 <li>NEW: Uses Shortcode API</li>
297                                                 <li>NEW: When Inserting Poll Into Post, It is Now [poll id="1"], Where 1 Is Your Poll ID</li>
298                                                 <li>NEW: When User Does Not Have Permission To Vote, The Voting Form Is Now Disabled Instead Of Showing Poll's Result</li>
299                                                 <li>NEW: Added A New Action Called "Display Disabled Poll's Voting Form" To Action Taken When A Poll Is Closed</li>
300                                                 <li>NEW: Updated WP-Polls TinyMCE Plugin To Work With TinyMCE 3.0</li>
301                                                 <li>NEW: Add Time Expiry For Cookie/Log</li>
302                                                 <li>NEW: Removed polls-usage.php</li>
303                                                 <li>NEW: Removed "Fade Anything Technique" In Polls Admin</li>
304                                                 <li>NEW: Uses /wp-polls/ Folder Instead Of /polls/</li>
305                                                 <li>NEW: Uses wp-polls.php Instead Of polls.php</li>
306                                                 <li>NEW: Uses wp-polls-widget.php Instead Of polls-widget.php</li>
307                                                 <li>NEW: Use number_format_i18n() Instead</li>
308                                                 <li>NEW: Renamed polls-admin-js.php To polls-admin-js.js and Move The Dynamic Javascript Variables To The PHP Pages</li>
309                                                 <li>NEW: Renamed polls-js.php To polls-js.js and Move The Dynamic Javascript Variables To The PHP Pages</li>
310                                                 <li>NEW: Uses polls-js-packed.js And polls-admin-js-packed.js</li>
311                                                 <li>FIXED: Unable To Delete Poll Or Poll Answers If There Is Quotes Within The Poll Or Poll Answer</li>
312                                                 <li>FIXED: number_format() Not Used In Polls Archive</li>
313                                                 <li>FIXED: Unable To Schedule Future Poll If The Year Is Different From Current Year</li>
314                                                 <li>FIXED: TinyMCE Tool Tip For Insert Poll Not Translated</li>
315                                                 <li>FIXED: Content-Type Not Being Sent Back When AJAX Return Results</li>
316                                         </ul>
317                                 </li>
318                                 <li>
319                                         <strong>Version 2.21 (01-10-2007)</strong>
320                                         <ul>
321                                                 <li>NEW: Works For WordPress 2.3 Only</li>
322                                                 <li>NEW: Added Quick Tag For Poll To Visual (TinyMCE) / Code Editor</li>
323                                                 <li>NEW: New CSS Style For WP-Polls Archive (.wp-polls-archive)</li>
324                                                 <li>NEW: Uses WP-Stats Filter To Add Stats Into WP-Stats Page</li>
325                                                 <li>NEW: Ability To Add Polls To Excerpt</li>
326                                                 <li>NEW: Added "Random Order" For Sorting Poll's Answers And Poll's Result Answers</li>
327                                                 <li>FIXED: Language Problem By Setting Database Table To UTF8</li>
328                                                 <li>FIXED: Some Text Not Translated In Polls Widget</li>
329                                                 <li>FIXED: 2 Wrong Options Name In Polls Uninstall</li>
330                                                 <li>FIXED: Some Translation Bug in polls-usage.php</li>
331                                         </ul>
332                                 </li>
333                                 <li>
334                                         <strong>Version 2.20 (01-06-2007)</strong>
335                                         <ul>
336                                                 <li>NEW: Poll Archive Link, Individual Poll Header And Footer In Poll Archive Template</li>
337                                                 <li>NEW: Poll Templates Has Now Its Own Page 'WP-Admin -> Polls -> Poll Templates'</li>
338                                                 <li>NEW: Poll Widget Can Now Display Multiple Polls</li>
339                                                 <li>NEW: Ability To Allow User To Select More Than 1 Poll Answer</li>
340                                                 <li>NEW: Added AJAX Style Option: "Show Loading Image With Text"</li>
341                                                 <li>NEW: Added AJAX Style Option: "Show Fading In And Fading Out Of Polls"</li>
342                                                 <li>NEW: Major Changes To The Administration Panel For WP-Polls</li>
343                                                 <li>NEW: AJAX Added To The Administration Panel For WP-Polls</li>
344                                                 <li>NEW: Default Poll's Result Template Will Now Show Number Of Votes Beside The Percentage</li>
345                                                 <li>NEW: Term "Total Votes" Changed To "Total Voters". <a href="http://lesterchan.net/wordpress/2007/02/09/total-voters-and-total-votes/">Refer To Here</a></li>
346                                                 <li>NEW: Removed Polls From Feed If The Poll Is Embedded Into The Post Using [poll=ID]</li>
347                                                 <li>NEW: Filtering Of Individual Poll Logs</li>
348                                                 <li>FIXED: Poll Archive Will Now Show Only Polls Results</li>
349                                         </ul>
350                                 </li>
351                                 <li>
352                                         <strong>Version 2.14 (01-02-2007)</strong>
353                                         <ul>
354                                                 <li>NEW: Works For WordPress 2.1 Only</li>
355                                                 <li>NEW: Renamed polls-js.js to polls-js.php To Enable PHP Parsing</li>
356                                                 <li>NEW: Ability To Make A Poll Expire</li>
357                                                 <li>NEW: Ability To Make A Future Poll</li>
358                                                 <li>NEW: Future Poll Will Automatically Open When The Poll's Date Is Reached</li>
359                                                 <li>NEW: Expired Poll Will Automatically Closed When The Poll's Date Is Reached</li>
360                                                 <li>NEW: Ablity To Choose What To Do When The Poll Is Closed (Display Result, Remove Poll From Sidebar)</li>
361                                                 <li>FIXED: Future Dated Polls Will Not Appear In The Post/Sidebar/Polls Archive</li>
362                                         </ul>
363                                 </li>
364                                 <li>
365                                         <strong>Version 2.13 (02-01-2007)</strong>
366                                         <ul>
367                                                 <li>NEW: polls.php Now Handles The AJAX Processing Instead Of index.php</li>
368                                                 <li>NEW: Able To Modify The Style Of Poll Results Bar in 'Polls -> Poll Option'</li>
369                                                 <li>NEW: Usage Instructions Is Also Included Within The Plugin Itself</li>
370                                                 <li>NEW: Uninstaller Done By Philippe Corbes</li>
371                                                 <li>NEW: Localization Done By <a href="http://4visions.nl/" title="http://4visions.nl/">Ravan</a></li>
372                                                 <li>NEW: Ability To Add HTML Into Poll Question and Answers</li>
373                                                 <li>FIXED: AJAX Not Working On Servers Running On PHP CGI</li>
374                                                 <li>FIXED: Added Some Default Styles To polls-css.css To Ensure That WP-Polls Does Not Break</li>
375                                                 <li>FIXED: Other Languages Not Appearing Properly</li>
376                                                 <li>FIXED: Poll IP Logs Of Deleted Poll's Answer Did Not Get Deleted</li>
377                                                 <li>FIXED: There Is An Error In Voting If There Is Only 1 Poll's Answer</li>
378                                         </ul>
379                                 </li>
380                                 <li>
381                                         <strong>Version 2.12 (01-10-2006)</strong>
382                                         <ul>
383                                        
384                                                 <li>NEW: Polls Archive Is Now Embedded Into A Page, And Hence No More Integrating Of Polls Archive</li>
385                                                 <li>NEW: WP-Polls Is Now Using DIV To Display The Poll's Results Instead Of The Image Bar</li>
386                                                 <li>NEW: Added Widget Title Option To WP-Polls Widget</li>
387                                                 <li>NEW: Ability To Logged By UserName</li>
388                                                 <li>NEW: Added CSS Class 'wp-polls-image' To All IMG Tags</li>
389                                                 <li>FIXED: If Site URL Doesn't Match WP Option's Site URL, WP-Polls Will Not Work</li>
390                                         </ul>
391                                 </li>
392                                 <li>
393                                         <strong>Version 2.11 (08-06-2006)</strong>
394                                         <ul>
395                                                 <li>NEW: You Can Now Place The Poll On The Sidebar As A Widget</li>
396                                                 <li>NEW: Moved wp-polls.php To wp-content/plugins/polls/ Folder</li>
397                                                 <li>FIXED: AJAX Not Working In Opera Browser</li>
398                                                 <li>FIXED: Poll Not Working On Physical Pages That Is Integrated Into WordPress</li>
399                                         </ul>
400                                 </li>
401                                 <li>
402                                         <strong>Version 2.1 (01-06-2006)</strong>
403                                         <ul>
404                                                 <li>NEW: Poll Is Now Using AJAX</li>
405                                                 <li>NEW: Ability To Close/Open Poll</li>
406                                                 <li>NEW: Added Poll Option For Logging Method</li>
407                                                 <li>NEW: Added Poll Option For Who Can Vote</li>
408                                                 <li>NEW: Added Poll Results Footer Template Variable (Used When User Click "View Results")</li>
409                                                 <li>NEW: Added The Ability To Delete All Poll Logs Or Logs From A Specific Poll</li>
410                                                 <li>NEW: Poll Administration Panel And The Code That WP-Polls Generated Is XHTML 1.0 Transitional</li>
411                                         </ul>
412                                 </li>
413                                 <li>
414                                         <strong>Version 2.06b (26-04-2006)</strong>
415                                         <ul>
416                                                 <li>FIXED: Bug In vote_poll();</li>
417                                         </ul>
418                                 </li>
419                                 <li>
420                                         <strong>Version 2.06a (02-04-2006)</strong>
421                                         <ul>
422                                                 <li>FIXED: Random Poll Not Working Correctly</li>
423                                         </ul>
424                                 </li>
425                                 <li>
426                                         <strong>Version 2.06 (01-04-2006)</strong>
427                                         <ul>
428                                                 <li>NEW: Poll Bar Is Slightly Nicer</li>
429                                                 <li>NEW: Got Rid Of Tables, Now Using List</li>
430