| XUL-App documentation | Contained in the XUL-App distribution. |
XUL::App - Nifty XUL apps in a XUL::App
This document describes XUL::App 0.09 released on August 13, 2008.
$ xulapp app --name YSearchAll
$ cd YSearchAll
$ xulapp view --name Overlay --type overlay
# Edit lib/YSearchAll/App.pm to add the following lines:
package YSearchAll::App; our $VERSION = '0.09';
use XUL::App::Schema;
use XUL::App schema {
+ xulfile 'overlay.xul' =>
+ generated from 'YSearchAll::View::Overlay',
+ includes qw( xulapp/jquery.js overlay.js ),
+ overlays 'chrome://browser/content/browser.xul';
+
xpifile 'ysearchall.xpi' =>
name is 'YSearchAll',
id is 'ysearchall@agentz.agentz-office',
version is '0.0.1',
targets {
Firefox => ['2.0' => '3.0.*'], # FIXME
Mozilla => ['1.5' => '1.8'], # FIXME
},
creator is 'The YSearchAll development team',
developers are ['agentz'],
contributors are [],
homepageURL is 'http://searchall.agentz.org', # FIXME
iconURL is '', # like 'chrome://helloworld/content/logo.png'
updateURL is ''; # This should not set for AMO extensions.
};
1;
# Add and edit js/ysearchall.js manually
$ xulapp overlay -p dev11
$ xulapp bundle . # generate XPI ready for deployment
XUL::App is a nifty Firefox extension development framework based on Perl. It has a lot of parallels with Jifty. In particular, this framework allows you to build real-world modern Firefox extensions using Perl. But the resulting XPI installation file is completely portable and contains 0 Perl.
This framework has the following highlights:
jar-based XPI bundling, no chrome.manifest, install.rdf, and zip panic. XUL::App generates all of them for you according to your (declarative) Perl code. Currently the module is still in alpha stage and we're in severe lack of documentation and tests. (Although a real-world fully-fledged Firefox extension named SearchAll (https://addons.mozilla.org/en-US/firefox/addon/5712) is already developed atop it.
You can get a lot of information from the slides that I used in the following talk:
http://agentzh.org/misc/slides/xulapp/xulapp.xul (a JS-enabled Firefox is required to view these slides)
If you're having problems in displaying the slides given above, please try out the PowerPoint (PPT) version below:
http://agentzh.org/misc/slides/xulapp.ppt
or the PDF version:
You can always get the latest source of XUL::App from the following SVN repository:
http://svn.openfoundry.org/xulapp/trunk/
I really need help in improving this module's docs, tests, and implementation. If you find this thing useful and feel like contributing to it, please write to me and get a commit bit! ;)
Click the XPI file from your Firefox browser:
http://svn.openfoundry.org/xulapp/trunk/demo/ExportReader/exportreader.xpi
After installation, please remember to restart the browser.
Enter the following chrome URL in your Firefox's address bar:
chrome://exportreader/content/exportreader.xul
Then you will see the main UI of this extension.
Login to your Google Reader and then click the site on the left-hand-side menu whose entries are what you want to export, say, "chromatic's Journal". Ensure that the "Expanded View" is used in the right-hand-side on the Google Reader page.
Click the "Extract!" button on the right-upper corner. Then you'll see an alert dialog saying how many entries were found. Click "OK" then the corresponding JSON string will be in the right-most textbox which is ready for copy-and-paste.
Note that, by defaul, Google Reader lazily loads just the top 5 entries or so. So in order to export all the entries in the subscribed site, say, "chromatic's Journal", you'll have to scroll down the Reader's Expanded View and force it to retrieve more entries.
perl Makefile.PL
make
sudo make install
Sadly XUL::App does not run on Win32 yet. I've only tested it on Ubuntu Linux so far. If you have any problems or would love to help, please let me know ;)
Agent Zhang <agentzh@yahoo.cn>
Copyright 2007, 2008 by Yahoo! China EEEE Works, Alibaba Inc. (http://www.eeeeworks.org)
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Artistic or GPL.
xulapp, Locale::Maketext::Lexicon, Template::Declare, Jifty.
| XUL-App documentation | Contained in the XUL-App distribution. |
package XUL::App; use strict; use warnings; use base qw/ Class::Data::Inheritable /; our $VERSION = '0.09'; __PACKAGE__->mk_classdata('FILES' => {}); our ($ID, $APP_NAME); 1; __END__