root/wp-stats/trunk/readme.html

Revision 53041, 17.8 kB (checked in by GamerZ, 2 days ago)

Rename Widget

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-Stats 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                 }
23                 LI {
24                         margin-top: 20px;
25                 }
26                 UL LI UL LI {
27                         margin-top: 10px;
28                 }
29                 A, A:active, A:link, A:visited {
30                         color: #2d3a4c;
31                         text-decoration: none;
32                 }
33                 A:hover {
34                         color: #5577a5;
35                         text-decoration: underline;
36                 }
37                 /* Place Holder Style */
38                 #Container {
39                         width: 780px;
40                         margin-left: auto;
41                         margin-right: auto;
42                 }
43                 #Content {
44                         background-color: #fafafa;
45                         border: 1px solid #a2b6cb;
46                         padding: 10px;
47                         margin-top: -13px;
48                 }
49                 /* Title Style */
50                 #Title {
51                         font-family: Verdana, Arial;
52                         font-size: 22px;
53                         font-weight: bold;
54                         color: #389aff;
55                         border-bottom: 1px solid #389aff;
56                         margin-bottom: 10px;
57                 }
58                 .SubTitle {
59                         font-family: Verdana, Arial;
60                         font-size: 18px;
61                         font-weight: bold;
62                         color: #5b87b4;
63                 }
64                 .SubSubTitle {
65                         font-family: Verdana, Arial;
66                         font-size: 14px;
67                         font-weight: bold;
68                         color: #73a4d6;
69                 }
70                 /* Tabs */
71                 UL#Tabs {
72                         font-family: Verdana, Arial;
73                         font-size: 12px;
74                         font-weight: bold;
75                         list-style-type: none;
76                         padding-bottom: 28px;
77                         border-bottom: 1px solid #a2b6cb;
78                         margin-bottom: 12px;
79                         z-index: 1;
80                 }
81                 #Tabs LI.Tab {
82                         float: right;
83                         height: 25px;
84                         background-color: #deedfb;
85                         margin: 2px 0px 0px 5px;
86                         border: 1px solid #a2b6cb;
87                 }
88                 #Tabs LI.Tab A {
89                         float: left;
90                         display: block;
91                         color: #666666;
92                         text-decoration: none;
93                         padding: 5px;
94                 }
95                 #Tabs LI.Tab A:hover {
96                         background-color: #bfe0fe;
97                         border-bottom: 1px solid #bfe0fe;
98                 }
99                 /* Selected Tab */
100                 #Tabs LI.SelectedTab {
101                         float: right;
102                         height: 25px;
103                         background-color: #fafafa;
104                         margin: 2px 0px 0px 5px;
105                         border-top: 1px solid #a2b6cb;
106                         border-right: 1px solid #a2b6cb;
107                         border-bottom: 1px solid #fafafa;
108                         border-left: 1px solid #a2b6cb;
109                 }
110                 #Tabs LI.SelectedTab A {
111                         float: left;
112                         display: block;
113                         color: #666666;
114                         text-decoration: none;
115                         padding: 5px;
116                         cursor: default;
117                 }
118                 /* Copyright */
119                 #Copyright {
120                         text-align: center;
121                 }
122         </style>
123         <script type="text/javascript">
124         /* <![CDATA[*/
125                 // Index Page
126                 function index() {
127                         // Tab
128                         document.getElementById('IndexTab').className = 'SelectedTab';
129                         document.getElementById('ChangelogTab').className = 'Tab';
130                         document.getElementById('InstallTab').className = 'Tab';
131                         document.getElementById('UpgradeTab').className = 'Tab';
132                         document.getElementById('UsageTab').className = 'Tab';
133                         // Page
134                         document.getElementById('Index').style.display= 'block';
135                         document.getElementById('Changelog').style.display = 'none';
136                         document.getElementById('Install').style.display = 'none';
137                         document.getElementById('Upgrade').style.display = 'none';
138                         document.getElementById('Usage').style.display = 'none';
139                 }
140                 // Changelog Page
141                 function changelog() {
142                         // Tab
143                         document.getElementById('IndexTab').className = 'Tab';
144                         document.getElementById('ChangelogTab').className = 'SelectedTab';
145                         document.getElementById('InstallTab').className = 'Tab';
146                         document.getElementById('UpgradeTab').className = 'Tab';
147                         document.getElementById('UsageTab').className = 'Tab';
148                         // Page
149                         document.getElementById('Index').style.display = 'none';
150                         document.getElementById('Changelog').style.display = 'block';
151                         document.getElementById('Install').style.display = 'none';
152                         document.getElementById('Upgrade').style.display = 'none';
153                         document.getElementById('Usage').style.display = 'none';
154                 }
155                 // Installation Page
156                 function install() {
157                         // Tab
158                         document.getElementById('IndexTab').className = 'Tab';
159                         document.getElementById('ChangelogTab').className = 'Tab';
160                         document.getElementById('InstallTab').className = 'SelectedTab';
161                         document.getElementById('UpgradeTab').className = 'Tab';
162                         document.getElementById('UsageTab').className = 'Tab';
163                         // Page
164                         document.getElementById('Index').style.display= 'none';
165                         document.getElementById('Changelog').style.display = 'none';
166                         document.getElementById('Install').style.display = 'block';
167                         document.getElementById('Upgrade').style.display = 'none';
168                         document.getElementById('Usage').style.display = 'none';
169                 }
170                 // Upgrade Page
171                 function upgrade() {
172                         // Tab
173                         document.getElementById('IndexTab').className = 'Tab';
174                         document.getElementById('ChangelogTab').className = 'Tab';
175                         document.getElementById('InstallTab').className = 'Tab';
176                         document.getElementById('UpgradeTab').className = 'SelectedTab';
177                         document.getElementById('UsageTab').className = 'Tab';
178                         // Page
179                         document.getElementById('Index').style.display= 'none';
180                         document.getElementById('Changelog').style.display = 'none';
181                         document.getElementById('Install').style.display = 'none';
182                         document.getElementById('Upgrade').style.display = 'block';
183                         document.getElementById('Usage').style.display = 'none';
184                 }
185                 // Usage Page
186                 function usage() {
187                         // Tab
188                         document.getElementById('IndexTab').className = 'Tab';
189                         document.getElementById('ChangelogTab').className = 'Tab';
190                         document.getElementById('InstallTab').className = 'Tab';
191                         document.getElementById('UpgradeTab').className = 'Tab';
192                         document.getElementById('UsageTab').className = 'SelectedTab';
193                         // Page
194                         document.getElementById('Index').style.display= 'none';
195                         document.getElementById('Changelog').style.display = 'none';
196                         document.getElementById('Install').style.display = 'none';
197                         document.getElementById('Upgrade').style.display = 'none';
198                         document.getElementById('Usage').style.display = 'block';
199                 }
200         /* ]]> */
201         </script>
202 </head>
203 <body>
204 <div id="Container">
205         <!-- Title -->
206         <div id="Title">WP-Stats 2.31&nbsp;&nbsp;&nbsp;<span style="color: #aaaaaa;">Readme</span></div>
207
208         <!-- Tabs -->
209         <ul id="Tabs">
210                 <li id="UsageTab" class="Tab"><a href="#Usage" onclick="usage(); return false;" title="Usage Instructions">Usage</a></li>
211                 <li id="UpgradeTab" class="Tab"><a href="#Upgrade" onclick="upgrade(); return false;" title="Upgrade Instructions">Upgrade</a></li>
212                 <li id="InstallTab" class="Tab"><a href="#Installation" onclick="install(); return false;" title="Installation Instructions">Installation</a></li>
213                 <li id="ChangelogTab" class="Tab"><a href="#Changelog" onclick="changelog(); return false;" title="Changelog">Changelog</a></li>
214                 <li id="IndexTab" class="SelectedTab"><a href="#Index" onclick="index(); return false;" title="Index Instructions">Index</a></li>
215         </ul>
216
217         <!-- Content -->
218         <div id="Content">
219                 <!-- Index -->
220                 <div id="Index">
221                         <div class="SubTitle">&raquo; Index</div>
222                         <div class="SubSubTitle">Plugin Information</div>
223                         <p>
224                                 <strong>Author:</strong><br />
225                                 <strong>&raquo;</strong> Lester 'GaMerZ' Chan
226                         </p>
227                         <p>
228                                 <strong>Website:</strong><br /><strong>&raquo;</strong> <a href="http://lesterchan.net/" title="http://lesterchan.net/">http://lesterchan.net/</a>
229                         </p>
230                         <p>
231                                 <strong>Features:</strong><br />
232                                 <strong>&raquo;</strong> Display your WordPress blog statistics. Ranging from general total statistics, some of my plugins statistics and top 10 statistics.
233                         </p>
234                         <p>
235                                 <strong>Download:</strong><br />
236                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-stats.2.31.zip" title="http://downloads.wordpress.org/plugin/wp-stats.2.31.zip">WP-Stats 2.31 For WordPress 2.5.x And 2.6.x</a><br />
237                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-stats.2.20.zip" title="http://downloads.wordpress.org/plugin/wp-stats.2.20.zip">WP-Stats 2.20 For WordPress 2.3.x</a><br />
238                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-stats.2.11.zip" title="http://downloads.wordpress.org/plugin/wp-stats.2.11.zip">WP-Stats 2.11 For WordPress 2.1.x And 2.2.x</a><br />
239                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-stats.2.06.zip" title="http://downloads.wordpress.org/plugin/wp-stats.2.06.zip">WP-Stats 2.06 For WordPress 2.0.x</a><br />
240                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-stats.1.00.zip" title="http://downloads.wordpress.org/plugin/wp-stats.1.00.zip">WP-Stats 1.00 For WordPress 1.5.2 </a>
241                         </p>
242                         <p>
243                                 <strong>Screenshots:</strong><br />
244                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/wordpress/screenshots/browse/wp-stats/" title="http://lesterchan.net/wordpress/screenshots/browse/wp-stats/">http://lesterchan.net/wordpress/screenshots/browse/wp-stats/</a>
245                         </p>
246                         <p>
247                                 <strong>Demo:</strong><br /><strong>&raquo;</strong> <a href="http://lesterchan.net/wordpress/stats/" title="http://lesterchan.net/wordpress/stats/">http://lesterchan.net/wordpress/stats/</a>
248                         </p>
249                         <p>
250                                 <strong>Development:</strong><br />
251                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-stats/" title="http://dev.wp-plugins.org/browser/wp-stats/">http://dev.wp-plugins.org/browser/wp-stats/</a>
252                         </p>
253                         <p>
254                                 <strong>Translations:</strong><br />
255                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-stats/i18n/" title="http://dev.wp-plugins.org/browser/wp-stats/i18n/">http://dev.wp-plugins.org/browser/wp-stats/i18n/</a>
256                         </p>
257                         <p>
258                                 <strong>Support Forums:</strong><br />
259                                 <strong>&raquo;</strong> <a href="http://forums.lesterchan.net/index.php?board=20.0" title="http://forums.lesterchan.net/index.php?board=20.0">http://forums.lesterchan.net/index.php?board=20.0</a>
260                         </p>
261                         <p>
262                                 <strong>Note:</strong><br />
263                                 <strong>&raquo;</strong> The <strong>Changelog</strong>, <strong>Installation</strong>, <strong>Upgrade</strong>, <strong>Usage</strong> Tab at the top of the page.
264                         </p>
265                         <p>
266                                 <strong>Donations:</strong><br />
267                                 <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
268                                 <script type="text/javascript">
269                                         /* <![CDATA[*/
270                                         document.write(' <strong>lesterchan@gmail.com</strong>.');
271                                         /* ]]> */
272                                 </script>
273                         </p>
274                 </div>
275
276                 <!-- Changelog -->
277                 <div id="Changelog" style="display: none;">
278                         <div class="SubTitle">Changelog</div>
279                         <ul>
280                                 <li>
281                                         <strong>Version 2.31 (01-08-2008)</strong>
282                                         <ul>
283                                                 <li>NEW: Works For WordPress 2.6</li>
284                                                 <li>NEW: Added stats-css.css For Use In Comment Author Stats Paging</li>
285                                                 <li>FIXED: Changed Default Threshold For Comment Author Stats To 5 Comments</li>
286                                                 <li>FIXED: Renamed Widget To WP-Stats To Advoid Conflict With FireStats</li>
287                                         </ul>
288                                 </li>
289                                 <li>
290                                         <strong>Version 2.30 (01-06-2008)</strong>
291                                         <ul>
292                                                 <li>NEW: Works With WordPress 2.5 Only</li>
293                                                 <li>NEW: Uses Shortcode API</li>
294                                                 <li>NEW: Uses /wp-stats/ Folder Instead Of /stats/</li>
295                                                 <li>NEW: Uses wp-stats.php Instead Of stats.php</li>
296                                                 <li>NEW: Uses wp-stats-widget.php Instead Of stats-widget.php</li>
297                                         </ul>
298                                 </li>
299                                 <li>
300                                         <strong>Version 2.20 (01-10-2007)</strong>
301                                         <ul>
302                                                 <li>NEW: Works For WordPress 2.3 Only</li>
303                                                 <li>NEW: Added Total Tags And Tag Lists</li>
304                                                 <li>NEW: Added Total Post Categories And Total Link Categories Stats</li>
305                                                 <li>NEW: Ability To Uninstall WP-Stats</li>
306                                                 <li>NEW: Added Filters For WP-Stats So That Plugins Can Plug Into WP-Stats</li>
307                                                 <li>NEW: Removed All Plugins Stats (Plugins Are Plugged In Via Filters Now)</li>
308                                                 <li>FIXED: Recent Post Authors Are Now Displayed By Their Display Name Instead Of Nickname</li>
309                                         </ul>
310                                 </li>
311                                 <li>
312                                         <strong>Version 2.11 (01-06-2007)</strong>
313                                         <ul>
314                                                 <li>NEW: Post Categories Are Now Hierarchical</li>
315                                                 <li>NEW: Used WordPress's Date/Time Format</li>
316                                                 <li>FIXED: Missing WHERE in get_authorsstats()</li>
317                                                 <li>FIXED: Password Protected Post Comments Viewable On Comment Author Stats</li>
318                                                 <li>FIXED: Wrong URL For Page Under Certain Stat Posts Listing</li>
319                                         </ul>
320                                 </li>
321                                 <li>
322                                         <strong>Version 2.10 (01-02-2007)</strong>
323                                         <ul>
324                                                 <li>NEW: Works For WordPress 2.1 Only</li>
325                                         </ul>
326                                 </li>
327                                 <li>
328                                         <strong>Version 2.06 (02-01-2007)</strong>
329                                         <ul>
330                                                 <li>NEW: Localize WP-Stats</li>
331                                         </ul>
332                                 </li>                   
333                                 <li>
334                                         <strong>Version 2.05 (01-10-2006)</strong>
335                                         <ul>
336                                                 <li>NEW: Allow You To Choose Which Type Of Stats To Display Under Options -> Stats</li>
337                                                 <li>NEW: Stats Is Now Embedded Into A Page, And Hence No More Integrating Of Stats Page (Removed wp-stats.php)</li>
338                                                 <li>NEW: Added Widget Title Option To WP-Stats Widget</li>
339                                         </ul>
340                                 </li>
341                                 <li>
342                                         <strong>Version 2.04 (01-07-2006)</strong>
343                                         <ul>
344                                                 <li>NEW: Added Highest Rated Post If WP-PostRatings Is Installed</li>
345                                                 <li>NEW: Remove My Other Plugins Stats Functions Inside stats.php</li>
346                                                 <li>NEW: WP-Stats Files Are Now In wp-content/plugins/stats/ Folder</li>
347                                                 <li>NEW: You Can Now Place Selected Stats On The Sidebar As A Widget</li>
348                                                 <li>NEW: Code That WP-Stats Generated Is XHTML 1.0 Transitional</li>
349                                         </ul>
350                                 </li>
351                                 <li>
352                                         <strong>Version 2.03 (01-04-2006)</strong>
353                                         <ul>
354                                                 <li>FIXED: Hardcoded Table Name For Ratings Stats</li>
355                                                 <li>FIXED: Removed Table From Comment's Author Page Navigation</li>
356                                                 <li>FIXED: Password Protected Post's Comments Viewable</li>
357                                         </ul>
358                                 </li>
359                                 <li>
360                                         <strong>Version 2.02 (01-03-2006)</strong>
361                                         <ul>
362                                                 <li>NEW: Added WP-PostRatings, WP-PostViews, WP-UserOnline Stats</li>
363                                                 <li>NEW: Slightly Changed The Grouping Of Stats</li>
364                                                 <li>NEW: WP-Stats Now Can Be Found ALso On The Dashboard</li>
365                                                 <li>NEW: Added Author Status</li>
366                                                 <li>FIXED: Moved All Stats Functions To stats.php</li>
367                                         </ul>
368                                 </li>
369                                 <li>
370                                         <strong>Version 2.01 (01-02-2006)</strong>
371                                         <ul>
372                                                 <li>NEW: Display EMail Stats If You Have WP-EMail Installed</li>
373                                                 <li>NEW: Display N/A If There Are No Stats For That Particular Stats</li>
374                                                 <li>FIXED: Page Permalink Issues</li>
375                                                 <li>FIXED: Error If User Has Not Posted Comment</li>
376                                                 <li>FIXED: Page Navigation if There Are 0 or 1 Page</li>
377                                                 <li>FIXED: Exploit $comment_author</li>
378                                         </ul>
379                                 </li>
380                                 <li>
381                                         <strong>Version 2.00 (01-01-2006)</strong>
382                                         <ul>
383                                                 <li>NEW: Compatible With WordPress 2.0 Only</li>
384                                                 <li>NEW: Display Poll Stats If You Have WP-Polls Installed</li>
385                                         </ul>
386                                 </li>
387                         </ul>
388                 </div>
389
390                 <!-- Installation Instructions -->
391                 <div id="Install" style="display: none;">
392                         <div class="SubTitle">&raquo; Installation Instructions</div>
393                         <ol>
394                                 <li>
395                                         Open <strong>wp-content/plugins</strong> Folder
396                                 </li>
397                                 <li>
398                                         Put:
399                                         <blockquote>Folder: wp-stats</blockquote>
400                                 </li>
401                                 <li>
402                                         <strong>Activate</strong> WP-Stats Plugin
403                                 </li>
404                                 <li>
405                                         Refer To <strong>Usage</strong> For Further Instructions
406                                 </li>
407                         </ol>
408                 </div>
409
410                 <!-- Upgrade Instructions -->   
411                 <div id="Upgrade" style="display: none;">
412                         <div class="SubTitle">&raquo; Upgrade Instructions</div>
413                         <div class="SubSubTitle">From v2.0x To v2.31</div>
414                         <ol>
415                                 <li>
416                                         <strong>Deactivate</strong> WP-Stats Plugin
417                                 </li>
418                                 <li>
419                                         Open <strong>wp-content/plugins</strong> Folder
420                                 </li>
421                                 <li>
422                                         Put/Overwrite:
423                                         <blockquote>Folder: wp-stats</blockquote>
424                                 </li>
425                                 <li>
426                                         Delete this folder if exists:
427                                         <blockquote>
428                                                 Folder: stats
429                                         </blockquote>
430                                 </li>
431                                 <li>
432                                         <strong>Activate</strong> WP-Stats Plugin
433                                 </li>
434                                 <li>
435                                         Refer To <strong>Usage</strong> For Further Instructions
436                                 </li>
437                         </ol>
438                 </div>
439
440                 <!-- Usage Instructions -->     
441                 <div id="Usage" style="display: none;">
442                         <div class="SubTitle">&raquo; Usage Instructions</div>
443                         <div class="SubSubTitle">General Usage</div>
444                         <ol>
445                                 <li>
446                                         Go to '<strong>WP-Admin -> Write -> Write Page</strong>'
447                                 </li>
448                                 <li>
449                                         Type any title you like in the post's title area
450                                 </li>
451                                 <li>
452                                   &nb