root/wp-email/trunk/readme.html

Revision 52843, 26.2 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-EMail 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-EMail 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 />
229                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/" title="http://lesterchan.net/">http://lesterchan.net/</a>
230                         </p>
231                         <p>
232                                 <strong>Features:</strong><br />
233                                 <strong>&raquo;</strong> Allows people to recommend/send your WordPress blog's post/page to a friend.
234                         </p>
235                         <p>
236                                 <strong>Download:</strong><br />
237                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-email.2.31.zip" title="http://downloads.wordpress.org/plugin/wp-email.2.31.zip">WP-EMail 2.31 For WordPress 2.5.x And 2.6.x</a><br />
238                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-email.2.20.zip" title="http://downloads.wordpress.org/plugin/wp-email.2.20.zip">WP-EMail 2.20 For WordPress 2.3.x</a><br />
239                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-email.2.11.zip" title="http://downloads.wordpress.org/plugin/wp-email.2.11.zip">WP-EMail 2.11 For WordPress 2.1.x And 2.2.x</a><br />
240                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-email.2.07.zip" title="http://downloads.wordpress.org/plugin/wp-email.2.07.zip">WP-EMail 2.07 For WordPress 2.0.x</a><br />
241                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-email.2.00b.zip" title="http://downloads.wordpress.org/plugin/wp-email.2.00b.zip">WP-EMail 2.00b 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-email/" title="http://lesterchan.net/wordpress/screenshots/browse/wp-email/">http://lesterchan.net/wordpress/screenshots/browse/wp-email/</a>
246                         </p>
247                         <p>
248                                 <strong>Demo:</strong><br />
249                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/wordpress/2006/07/05/donations/email/" title="http://lesterchan.net/wordpress/2006/07/05/donations/email/">http://lesterchan.net/wordpress/2006/07/05/donations/email/</a>
250                         </p>
251                         <p>
252                                 <strong>Development:</strong><br />
253                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-email/" title="http://dev.wp-plugins.org/browser/wp-email/">http://dev.wp-plugins.org/browser/wp-email/</a>
254                         </p>
255                         <p>
256                                 <strong>Translations:</strong><br />
257                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-email/i18n/" title="http://dev.wp-plugins.org/browser/wp-email/i18n/">http://dev.wp-plugins.org/browser/wp-email/i18n/</a></p>
258                         <p>
259                         <strong>
260                                 Support Forums:</strong><br />
261                                 <strong>&raquo;</strong> <a href="http://forums.lesterchan.net/index.php?board=13.0" title="http://forums.lesterchan.net/index.php?board=13.0">http://forums.lesterchan.net/index.php?board=13.0</a>
262                         </p>
263                         <p>
264                                 <strong>Credits:</strong><br />
265                                 <strong>&raquo;</strong> Icons courtesy of <a href="http://www.famfamfam.com/">FamFamFam</a>.
266                         </p>
267                         <p>
268                                 <strong>Note:</strong><br />
269                                 <strong>&raquo;</strong> The <strong>Changelog</strong>, <strong>Installation</strong>, <strong>Upgrade</strong>, <strong>Usage</strong> Tab at the top of the page.<br />
270                         </p>
271                         <p>
272                                 <strong>Donations:</strong><br />
273                                 <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
274                                 <script type="text/javascript">
275                                         /* <![CDATA[*/
276                                         document.write(' <strong>lesterchan@gmail.com</strong>.');
277                                         /* ]]> */
278                                 </script>
279                         </p>
280                 </div>
281
282                 <!-- Changelog -->
283                 <div id="Changelog" style="display: none;">
284                         <div class="SubTitle">&raquo; Changelog</div>
285                         <ul>
286                                 <li>
287                                         <strong>Version 2.31 (01-08-2008)</strong>
288                                         <ul>
289                                                 <li>NEW: Works For WordPress 2.6</li>
290                                                 <li>FIXED: MYSQL Charset Issue Should Be Solved</li>
291                                         </ul>
292                                 </li>
293                                 <li>
294                                         <strong>Version 2.30 (01-06-2008)</strong>
295                                         <ul>
296                                                 <li>NEW: Works For WordPress 2.5 Only</li>
297                                                 <li>NEW: WP-Email Will Load 'email.php' Inside Your Theme Directory If It Exists. This Will Allow Some Flexibility Instead Of Using 'page.php' As The Default Template.</li>
298                                                 <li>NEW: WP-Email Will Load 'email-css.css' Inside Your Theme Directory If It Exists. If Not, It Will Just Load The Default 'email-css.css' By WP-Email</li>
299                                                 <li>NEW: Changed CSS Style For Input Field From 'Forms' To 'TextField' And For Buttons From 'Buttons' To 'Button'</li>
300                                                 <li>NEW: Renamed email-js.php To email-js.js and Move The Dynamic Javascript Variables To The PHP Pages</li>
301                                                 <li>NEW: Uses email-js-packed.js</li>
302                                                 <li>NEW: Uses /wp-email/ Folder Instead Of /email/</li>
303                                                 <li>NEW: Uses wp-email.php Instead Of email.php</li>
304                                                 <li>NEW: Uses wp-email-widget.php Instead Of email-widget.php</li>
305                                                 <li>NEW: Changed wp-email.php To email-standalone.php</li>
306                                                 <li>NEW: Changed wp-email-popup.php To email-popup.php</li>
307                                                 <li>NEW: Use number_format_i18n() Instead</li>
308                                                 <li>NEW: Show 'Remarks' In 'WP-Admin -> E-Mail -> E-Mail Logs' Page By Default. See Usage Tab On How To Hide It.</li>
309                                         </ul>
310                                 </li>
311                                 <li>
312                                         <strong>Version 2.20 (01-10-2007)</strong>
313                                         <ul>
314                                                 <li>NEW: Works For WordPress 2.3 Only</li>
315                                                 <li>NEW: Removed PHPMailer Files From The Zip As It Is Included In WordPress</li>
316                                                 <li>NEW: Ability To Embed [email_link] Into Excerpt</li>
317                                                 <li>NEW: AJAX Used To Email The Post/Page</li>
318                                                 <li>NEW: Most Emailed Widget Added</li>
319                                                 <li>NEW: Ability To Uninstall WP-EMail</li>
320                                                 <li>NEW: Uses WP-Stats Filter To Add Stats Into WP-Stats Page</li>
321                                                 <li>FIXED: Displaying Friend's E-Mail Field Is Compulsory To Prevent Error</li>
322                                                 <li>FIXED: Method Of Storing SMTP Information Updated</li>
323                                                 <li>FIXED: If There Is No Trailing Slash In Your Permalink, WP-Email Will Add It For You</li>
324                                                 <li>FIXED: Use @session_start() Instead To Compress Session Already Started Error</li>
325                                         </ul>
326                                 </li>
327                                 <li>
328                                         <strong>Version 2.11 (01-06-2007)</strong>
329                                         <ul>
330                                                 <li>NEW: Added Template For Page Title And Page Subtitle In 'WP-Admin -> E-Mail -> E-Mail Options'</li>
331                                                 <li>NEW: Putting [email_link] In Your Post/Page Content Will Display A Link To The E-Mail Post/Page</li>
332                                                 <li>FIXED: Suppress gethostbyaddr() Error</li>
333                                                 <li>FIXED: Duplicate Page Title When Listing Pages With wp_list_pages()</li>
334                                                 <li>FIXED: If page.php Is Not Found, single.php or index.php Will Be Used</li>
335                                                 <li>FIXED: Wrong URL For Page Under Most E-Mailed Posts Listing</li>
336                                                 <li>FIXED: Wrong URL If Front Page Is A Static Page</li>
337                                                 <li>FIXED: Fixed A Minor Grammer Mistake For Remark (Singular)</li>
338                                                 <li>FIXED: Some Text Not Translated</li>
339                                         </ul>
340                                 </li>
341                                 <li>
342                                         <strong>Version 2.10 (01-02-2007)</strong>
343                                         <ul>
344                                                 <li>NEW: Works For WordPress 2.1 Only</li>
345                                                 <li>NEW: Added Fam Fam Fam's E-Mail Icon</li>
346                                                 <li>NEW: Localize WP-EMail</li>
347                                                 <li>NEW: Ability To Configure The Text For E-Mail Links Via 'WP-Admin -> E-Mail -> E-Mail Options'</li>
348                                                 <li>NEW: Ability To Set E-Mail Link Type (Standalone Page Or Popup Page) Via 'WP-Admin -> E-Mail -> E-Mail Options'</li>
349                                                 <li>NEW: The Text For E-Mail Links Can No Longer Be Pass To The Function email_link(), email_link_image(), email_popup() or email_popup_image().</li>
350                                                 <li>NEW: Ability To Select Which Field You Want To Display In The E-Mail Form</li>
351                                                 <li>FIXED: Name Fields No Longer Check For Validity Due To Localization</li>
352                                                 <li>FIXED: Special HTML Characters No Longer Get Converted Into Its Symbolic Form When Displaying In E-Mail -> E-Mail Options</li>
353                                                 <li>FIXED: Extra ; When Displaying Error Message</li>
354                                                 <li>FIXED: Removed 1 0 I O From The Image Verify To Avoid Confusion</li>
355                                         </ul>
356                                 </li>
357                                 <li>
358                                         <strong>Version 2.07 (01-10-2006)</strong>
359                                         <ul>
360                                                 <li>NEW: WP-EMail-Popup Now Have Nice Permalinks /emailpopup/ Or /emailpopuppage/</li>
361                                                 <li>NEW: Added rel="nofollow" To All Links Generated By WP-EMail</li>
362                                                 <li>NEW: Added noindex, nofollow To Robots Meta Tag In wp-email-popup.php</li>
363                                                 <li>NEW: Error Messages Will Now Be Displayed Together With The E-Mail Form</li>
364                                                 <li>FIXED: PHP5 Compatibility Issue</li>
365                                                 <li>FIXED: Image Verify Is Now Not Case Sensitive</li>
366                                                 <li>FIXED: Error In Logging Due To Post ID Being Blank</li>
367                                                 <li>FIXED: Form Input Data Will No Longer Be Lost After Encountering An Error</li>
368                                                 <li>FIXED: WP-EMail-Popup Not Working With Other Nice Permalinks</li>
369                                         </ul>
370                                 </li>
371                                 <li>
372                                         <strong>Version 2.06 (01-07-2006)</strong>
373                                         <ul>
374                                                 <li>FIXED: Modified Get Most Emailed Post Function</li>
375                                         </ul>
376                                 </li>
377                                 <li>
378                                         <strong>Version 2.05 (06-06-2006)</strong>
379                                         <ul>
380                                                 <li>NEW: Spam Prevention - Image Verification</li>
381                                                 <li>NEW: EMail Administration Panel And The Code That WP-EMail Generated Is XHTML 1.0 Transitional</li>
382                                                 <li>NEW: Added &lt;label&gt; Tag For Form Fields</li>
383                                                 <li>FIXED: Remarks Column Removed From E-Mail Logs Due To Privacy Issue</li>
384                                                 <li>FIXED: Duplicate Subject/Name When Sent Using PHP</li>
385                                                 <li>FIXED: Quotes Not Displaying When Sending In Plain Text</li>
386                                         </ul>
387                                 </li>
388                                 <li>
389                                         <strong>Version 2.04a (01-05-2006)</strong>
390                                         <ul>
391                                                 <li>FIXED: PHP Mail Not Working Properly (Thanks To Pablo)</li>
392                                         </ul>
393                                 </li>
394                                 <li>
395                                         <strong>Version 2.04 (01-04-2006)</strong>
396                                         <ul>
397                                                 <li>NEW: Ability To Sent To Multiple EMails (Config Via Admin Panel)l</li>
398                                                 <li>NEW: Added wp-email-popup.php For Using WP-EMail In A Pop Up Windowl</li>
399                                                 <li>NEW: Combined functions-wp-email.php With email.phpl</li>
400                                                 <li>NEW: Moved wp-email.php/wp-email-popup.php To Plugin Folderl</li>
401                                         </ul>
402                                 </li>
403                                 <li>
404                                         <strong>Version 2.03 (01-03-2006)</strong>
405                                         <ul>
406                                                 <li>NEW: Improved On 'manage_email' Capabilities</li>
407                                                 <li>NEW: Neater Structure</li>
408                                                 <li>NEW: No More Install/Upgrade File, It Will Install/Upgrade When You Activate The Plugin</li>
409                                                 <li>NEW: Added E-Mail Stats Function</li>
410                                                 <li>NEW: Per Page Option In email-manager.php</li>
411                                                 <li>NEW: Added Excerpt As A Template Variable</li>
412                                                 <li>NEW: Added EMail Image With email_link_image()</li>
413                                                 <li>FIXED: Now Paginate Have Sort Options</li>
414                                                 <li>FIXED: Default Mailer Type Is Now PHP</li>
415                                                 <li>FIXED: Charset Is Now UTF-8</li>
416                                                 <li>FIXED: Quotes Not Displaying</li>
417                                         </ul>
418                                 </li>
419                                 <li>
420                                         <strong>Version 2.02 (01-02-2006)</strong>
421                                         <ul>
422                                                 <li>NEW: Added 'manage_email' Capabilities To Administrator Roles</li>
423                                                 <li>FIXED: Able To View Password Protected Blog</li>
424                                         </ul>
425                                 </li>
426                                 <li>
427                                         <strong>Version 2.01 (01-01-2006)</strong>
428                                         <ul>
429                                                 <li>NEW: Compatible With WordPress 2.0 Only</li>
430                                                 <li>NEW: EMail A Snippet Of The Post Rather Than The Whole Post. Able To Specify The No. Of Words Before Cutting Off</li>
431                                                 <li>NEW: Spam Prevention - Better Checking Of Names, EMail Addresses And Remark