




A Good Resource for Learning XUL & Javascript? 82
RJabelman asks: "I'm trying to write a Mozilla extension, but I can't find a decent resource to learn from. Tutorials abound for packaging up an extension, and the web's littered with Javascript snippets to pretty up a web page, but there seems to be very little authoritative information for doing serious work with Javascript, XUL and Mozilla (and more specifically, manipulating XML). I can find my one true resource for every other language or API I've learned: but not this. Can anyone point me to theirs?"
Re:Heck I don't know (Score:1, Offtopic)
Probably not since Slashdot is primarily a Fantasy Film and Gamer site. You should probably seek out a forum that deals with science on a more regular basis.
OReilly book (Score:5, Informative)
Re:OReilly book (Score:5, Insightful)
I bought that #*#$@ing book when it first came out. And proceeded to waste prodigious amounts of time trying to make even the simplest code samples from it work. It turned out that the code samples were riddled with typos that made them un-runnable.
The book is, quite honestly, a waste of your time and money. Maybe they've since gone back and fixed the errors, but considering that it's still in the 1st edition (which targeted Mozilla 1.0 -- god only knows how much has changed between that and Firefox 1.0) I seriously doubt it.
A start (Score:3, Informative)
mozilla [mozilla.org]
xulplanet [xulplanet.com]
As for the more advanced stuff, I'm not sure where.
Re:A start (Score:3, Informative)
Roachfiend Tutorial (Score:3, Informative)
It's targeted for Firefox extensions, but should serve your purpose pretty well.
Re:Roachfiend Tutorial (Score:3, Informative)
Re:Roachfiend Tutorial (Score:2)
Latest Build kit is here [boards.ie].
RAD With Mozilla, Bruce Perens OSS series (Score:5, Informative)
XulPlanet (Score:5, Informative)
On the down side, welcome to the land of magic and wonder, where arcane bugs haunt the long forgotten planes of DOM...
Re:XulPlanet (Score:5, Insightful)
Yeah, I dug into Mozilla development gung ho over the past year or so, and I've completely abandoned it... well, I'm in the process of creating a replacement XBL, but after that's done, I'm out. In painfully slow succession, I've tried in a serious way Moz's RDF support, XUL, and XBL, and in every case I have rapidly exceeded their capabilities (to the tune of segfaults) and gone back to JS + DOM. (For RDF, I now dump out my data as a JS file and use XMLHttpRequest to retrieve it and "eval" to run it; this is what Google Suggest uses. I beat them by about a month, I know others beat them by more
I'm preparing a series of half rants, half detailed indictments on why the Mozilla specific technologies are not just poorly implemented at the moment for any task other than being a web browser, but why Javascript + DOM is usually, on the balance, a superior solution. ("On the balance" means that while my JS implementation of XBL is neither a subset nor a superset of "true" XBL, on the whole the benefits level out in favor of my JS implementation... and if I were willing to go pure Moz instead of cross-platform it would be a total win.) I don't want to repeat them here in toto, but, well, that's actually the basic argument: Me, a single schmoe, can replicate most of XBL in a couple of weeks, in Javascript, and it is actually much more reliable too, for reasons that will only make sense if you used Moz's XBL support for anything serious, like widgets that can load remote data or include other widgets in interesting ways. How much time has been spent on XBL, which is still behind?
Unless you need a XUL widget like "popup" that has no good HTML replacement, you're just better off with JS and DOM. Most people don't understand how powerful JS really is, and I've found it to be surprisingly speedy, too.
(To show I'm not just spouting off randomly, here is my current XBL in JS implementation [jerf.org]. Still in development, but it oughta show I'm serious about this, and even now I'm finding it more pleasing to work with overall than real XBL. What stops me from releasing the rants right now is, well, there's some writing to be done yet, but instead of just bitching I want to have some constructive solutions as well; xbl.js is a big part of that, and right now I'm working on the POPUP element because I need that for my app. Ranting is great but I find they are even more powerful when they are not purely negative.)
Details forthcoming at a later date, but next time you're reaching for XUL or XBL, if it isn't for a Mozilla extension, stop and make sure you don't really want to do it in cross-platform JS + DOM. See, the thing is, those libraries are well tested and optimized in a variety of situations; I'm not encountering bugs hourly like I felt like I was in Moz.
Finally, to preempt some of the obvious responses, I'm not saying XBL or something was a bad idea; in fact the idea is so good I'm re-implementing it. I'm saying the implementation right now is so dodgy it isn't worth playing with when there is another less cool, but more functional, alternative available today in the form of JS + DOM.... and what advantages XUL or XBL have over my JS implementation are only a few small hooks away from being exposed to the JS as well.
Re:XulPlanet (Score:2)
For web-based apps, XMLHttpRequest is a good way to h
Update: New Sourceforge project (Score:2)
Dynamic menus (Score:5, Interesting)
What I want to know, which nobody seems to document, is how to create menus dynamically in Firefox. Instead of specifying the menus statically in XML, I want to create them at runtime -- specifically, I want to create a top-level menu item and populate its submenu at runtime based on HTTP queries or something similar. I know it's possible, but I have not figured out how.
Re:Dynamic menus (Score:2)
Re:Dynamic menus (Score:3, Informative)
Re:Dynamic menus (Score:1)
Re:Dynamic menus (Score:2)
Re:Dynamic menus (Score:2)
I agree that it is unfortunate there is no nice collection of HowTos for XUL/JS. To really document and explain all of the possibilities, it would take several books.
Re:Dynamic menus (Score:2)
Alas, menulist has nothing to do with menus. Correct me if I'm wrong, but I believe menulist is the XUL equivalent of HTML select dropdowns; the elements used for window menus are menu, menubar, menuitem and so on.
I'm starting to figure out how to do this with XUL in-memory datasources now, though; see the first example on this page [mozilla.org].
Re:Dynamic menus (Score:2)
Yes, if you are referring strictly to toolbar menus, then menupopup [xulplanet.com] , as well as menu, menubar, etc... are the elements you need. These also have a nice list of Javascript methods that can be called, including 'insertBefore' and 'insertAfter', while many more methods such as 'appendChild' can be called on individual menuitem [xulplanet.com] elements in the menu.
I personally shy away from RDF and the use of mozilla datasources, because they don't really offer that much of use to me. Their performance is not ve
Re:Dynamic menus (Score:1)
It makes a <menuitem> (via document.createElement) then appends it to a <menupopup>.
Essential XUL Programming (Score:4, Informative)
Nothing a quick google-search wouldn't pick up. But that hasn't stopped ask /. in the past, I guess.
XUL links (Score:5, Informative)
Once you have that down, here are a few XUL sites I recommend:
Creating Application with Mozilla [mozdev.org] - Online version of O'Reilly's book. Great resource for beginners to follow through, but some of the examples no longer work due to changes in the APIs since the books release.
XUL Planet [xulplanet.com] - An excellene resource for XUL developers of any level. This site contains a great tutorial for getting started and becoming familiar with the environment, as well as a definitive reference guide for XUL and XPCOM objects and functions.
XUL Planet Forum [xulplanet.com] - This forum is also housed at the XUL Planet website, but it deserves separate mention. This is the only forum/newsgroup/list I've been able to find that's still active and populated with friendly and helpful souls. I've received helped there several times on problems I'd been working on for weeks or months.
There are also a few XUL-related newsgroups on mozilla's usenet server (eg, news://news.mozilla.org:563/netscape.public.dev.x
There's also Mozilla official XUL Programmer's Reference [mozilla.org]. This is a great reference resource, but it's not geared for beginners.
And finally, the mother of all example sites: http://www.hevanet.com/acorbin/xul/top.xul [hevanet.com] If you can't figure out how something work, this most likely has a working example.
Good luck!
Re:XUL links (Score:2)
Re:XUL links (Score:3, Informative)
Devedge used to be the place, but AOL seems to have killed it. See bugzilla.mozilla.org #264184. (Their bugzilla doesn't allow referals from slashdot)
Mirrors here:
JavaScript Guide [huji.ac.il]
JavaScript Reference [huji.ac.il]
Re:XUL links (Score:2)
I suppose if you like "tutorials" that are all forward reference you might get something
Re:XUL links (Score:2)
The mother of all example sites would be over here [mozilla.org]. Unzip the extensions, and examples abound.
Re:XUL links (Score:2)
Re:XUL links (Score:2)
A book by Nigel McFarlane... (Score:1)
It goes pretty in depth and covers a lot of ground about a lot of the parts of XUL: XBL, XPCOM, XML, etc.
I would recommend it highly.
Re:A book by Nigel McFarlane... (Score:1)
I recommend the above book.
There... are you happy? You twit.
Javascript, good for beginners and reference (Score:3, Informative)
With XUL nearly all of the dynamic aspects are controlled by javascript, so its good to get a good grounding in that subject before you start in with the XUL tags.
I recently coded an XUL tree that loads links at the click event. Sounds easy but it took me a long time to figure out how to bubble up the right event.
The only way I figured it out was with the help of that javascript book.
Re:Javascript, good for beginners and reference (Score:2)
Re:Javascript, good for beginners and reference (Score:3, Informative)
Actual urls have been removed to protect my friends from slashdotting.
Re:Javascript, good for beginners and reference (Score:2)
The Javascript Console and Javascript debugger are essential for XUL development, in my opinion. They also come in handy for general web development as well, as they can accurately reveal and test javascript issues.
Javascript is nice, but (Score:3, Interesting)
When will we be able to write XUL apps in PHP, like can be done with Perl, Python, and Ruby?
Re:Javascript is nice, but (Score:1)
Re:Javascript is nice, but (Score:1)
Re:Javascript is nice, but (Score:3, Interesting)
Many *implementations* of Javascript are lacking, but Mozilla applications turn Javascript into a full-featured scripting language, including the ability to use sockets, read/write files, run other executables, and in general do just about everything you would need to do for a XUL "front end" application. For more serious back-end integration, just use sockets to
LAME (Score:2, Insightful)
need i say more?
Re:LAME (Score:2)
Mozilla offers a framework for building applications, which is why there's an entire O'Reilly book on the subject. One of the primary functions of the Mozilla application is that of a web browser, but it's not accurate to say that XUL is a proprietary web browser language. A bowser is just one of the many things you could create within that framework, as evidenced by the existence of mail and news, IRC, composer, calendar and other compon
Re:LAME (Score:2)
they can't!
ANY browser technology that segregates netizens based on applications for a piece of market share really removes themselves from what the net and 'cyberspace' mean, at least to me.
Cyberspace being a form of communication that is ubiq, REGARDLESS of platform, or browser of choice
Re:LAME (Score:4, Insightful)
Re:LAME (Score:2)
I started off building internal apps with full knowledge that I had some control over what browser they were going to be used with, but over time sibling aplications extended to the outside world and I didn't code down to standards. That was my mistake. I don't think any browser should be criticized for it's extra features (which is different from deviating from standards *cough* IE *cough*)
The responsibility of universally accessible web based applications l
Re:LAME (Score:2)
I use XUL all the time in my work creating client-side touchscreen applications. I would
Re:LAME (Score:2)
1. proprietary? It's freely available. Maybe you meant it's not standardized?
2. web browser? It's a UI definition language for the mozilla platform, nothing to do with browsers per se.
Re:LAME (Score:2)
just because its freely available doesnt mean its not proprietary.
if third party developers use the same code base to build other applications of off then its still proprietary
only when someone build an new XUL engine from the ground up will it start out on the road to being anything close to a standard
I do concede though, that is the vision of XUL
web browser:
what is the mozilla platform?
first and formost it is a suite of open source internet applications
ok design your desktop in xul, i
Re:LAME (Score:2)
isn't it possible to build a XUL engine from the ground up if you wanted to? I think that makes it distinctly *not* proprietary.... I mean,the w3c has all sorts of standards, some of which haven't even been implemented at all -- are they proprietary until at least two engines are built to handle them?
Re:LAME (Score:2)
Satisfied?
Re:LAME (Score:1)
Nice troll, indeed :-)
Ted's Extension Developer extension (Score:2)
Re:Ted's Extension Developer extension (Score:1)
Re:Ted's Extension Developer extension (Score:2)
Actually, I'm actively using it as it is, mainly to build/install extensions during development, but also for some of the other features. It has ways to go, yes, but it is already very useful. And I try to not only report bugs but provide fixes too, hoping that what little I do helps getting it from useful to really useful as soon as possible.
Go for... (Score:2, Interesting)
http://www.openlaszlo.org/
Learn from code (Score:2, Informative)
use [faser.net] the [mozdev.org] source [mozdev.org], luke [x25.se]!
(links blatantly stolen from the mozilla amazon link page)
But seriously, disassemble other peoples code is the best way to learn. See how they do thing. Javascript is easy enough to understand and there are millions of tutorials on the subject alone, but if you want to see how it interacts with XUL applications this is your best bet. And hey, all those applications are zero install and can run in the browser, how cool isn't that!? =P
documentation sucks (Score:5, Informative)
For example, the most difficult thing for me was trying to figure out how to package up my XUL/JS in a form that Firefox would take it. All the tutorials talked about install.js, installed-chrome.txt, and regxpcom, all of which are outdated. (Hint: Since Firefox 0.9, install.rdf is the key to the whole thing, so any tutorial that doesn't mention it is outdated.)
Once you've gotten the basics (probably by reading the O'Reilly book--the Nigel MacFarlane book may have a lot of useful info, but it was so poorly written I couldn't get through it), you really want to do yourself a favor and install Venkman, the Javascript debugger. The only place I've been able to find that has this little gem for Firefox is here [mozillazine.org].
Then, as you inevitably run into walls trying to get things done in the browser, cozy up to the source [mozilla.org]. There's not much you can do with XUL/JS that hasn't already been done in the Firefox source, and the search tools available on LXR will often lead you right to them.
And here are some source files you're definitely going to need to look at:
browser main window [mozilla.org]
browser menus and commands [mozilla.org]
browser main logic [mozilla.org]
Also, shamelessly unzip and dissect other people's XPI's; they probably won't mind anyway.
Javascript reference guide (Score:1)
First learn XPCOM (Score:1)
Documentation the next challenge for Mozilla (Score:1, Interesting)
Right now the platform documentation hasn't been compiled into a form that's accessible for external (to the Mozilla project) developers.
Now Firefox 1.0 is out, and the Mozilla / XUL runtime is speading, hopefully we'll see the Mozilla team setting up something approaching PHP's documentation (which is a big part of PHP's success as a technology for the masses). Part of that is having a supporting documentation team, willing to keep it complete and up-to-date. Spreadfirefox.com shows it's possible for Moz