[Catalyst-commits] r13792 - trunk/examples/CatalystAdvent/root/2010

jester at dev.catalyst.perl.org jester at dev.catalyst.perl.org
Mon Dec 6 18:39:52 GMT 2010


Author: jester
Date: 2010-12-06 18:39:52 +0000 (Mon, 06 Dec 2010)
New Revision: 13792

Modified:
   trunk/examples/CatalystAdvent/root/2010/6.pod
Log:
Tweaks to Advent 6.pod


Modified: trunk/examples/CatalystAdvent/root/2010/6.pod
===================================================================
--- trunk/examples/CatalystAdvent/root/2010/6.pod	2010-12-06 12:12:45 UTC (rev 13791)
+++ trunk/examples/CatalystAdvent/root/2010/6.pod	2010-12-06 18:39:52 UTC (rev 13792)
@@ -1,7 +1,7 @@
 =head1 Adding Simple Excel Support
 
 In this example I will expand on my
-L<last year's advent article|http://www.catalystframework.org/calendar/2009/22>
+L<Advent article from last year|http://www.catalystframework.org/calendar/2009/22>
 on AJAX grids by adding a button to download the book list as an Excel
 spreadsheet.
 
@@ -14,7 +14,7 @@
 
 =head1 The Button
 
-First we need a suitable Excel icon, find one and put it into your
+First we need a suitable Excel icon. Find one and put it into your
 C<root/static/images> directory. I used
 L<this one|http://www.nc-sco.com/images/excel-icon-small.gif>.
 
@@ -33,7 +33,7 @@
 
     {name: 'Excel', bclass: 'excel', onpress : export_to_excel},
 
-Now we'll write the javascript, as specified in the
+Now we'll write the JavaScript, as specified in the
 L<synopsis|http://search.cpan.org/perldoc?Catalyst::Action::Serialize::SimpleExcel#SYNOPSIS>.
 
     function export_to_excel(button, grid) {
@@ -87,17 +87,18 @@
 Start the server with C<script/myapp_server.pl>.
 
 In your browser, open L<http://localhost:3000/ajax>. You will see the books
-grid, click on the excel icon and you should get a file download prompt for the
-Excel file, open it with Excel or OpenOffice.
+grid; click on the Excel icon and you should get a file-download prompt for the
+Excel file. Open it with Excel or OpenOffice.
 
 =head2 TODO
 
 We need an Excel deserializer, so that users can edit the downloaded Excel
-sheets and upload them back. It would also be nice if the ID column was
+sheets and upload them back. It would also be nice if the ID column were
 highlighted and locked against editing.
 
-If you have any interest in these things, or in working on them, please email
-me, my email is at the bottom. Patches most certainly welcome as well.
+If you have any interest in these issues, please email me at the address
+below, especially if you are able to do any work on them. Patches most
+certainly welcome as well.
 
 =head1 AUTHOR
 




More information about the Catalyst-commits mailing list