|
|
|
| Newsbits |
|---|
|
| Related Software | |
|---|---|
| tcpip32.dll | Steve Levine has released a patched version of tcpip32.dll that prevents crashes people have experienced when using the Mozilla apps; it makes this DLL multi-thread and SMP safe. |
| Exceptq | If Warpzilla crashes, Exceptq will beep and then create an exception report containing details of the crash. See also the NSPR_NO_EXCEPTQ info in the environment variables section. |
| Doodle's Screen Saver | If you install Doodle's Screen Saver, Warzpilla can determine when you are not interacting with the computer, and will perform various background and cleanup tasks during idle periods. |
| RWS | With RWS, you can open downloads using their default WPS association and have the app display the correct icon in file listings & dialogs. See also the MOZ_NO_RWS info in the environment variables section. |
| Lightning | The Lightning extension for Thunderbird and SeaMonkey adds calendar support; unlike most extensions, versions must be matched with specific Gecko releases. Dave Yeo has provided builds for 17ESR, 24ESR, 31ESR, and 38ESR. It is already bundled into 45ESR. |
| Compatible Plugins | Filename | Notes |
|---|---|---|
| nparos2.dll
nparos25.dll | The PDFJS addon is a viable replacement for the plugins
Requires the InnoWin Runtime. To get this plugin working with LIBPATHSTRICT, you can use this patch (for Acrobat 4), follow the idea in the patch to patch your own version, or add \OS2\DLL to BEGINLIBPATH | |
Flash
Flash 11
| npflos2.dll | Available for eComstation Software Subscription customers; only works on eCS 1.2 and later. Flashblock allows you to have the Flash plugin installed without being constantly annoyed by Flash ads (or having the browser crash due to bugs in the plugin, and IPC not being ported yet). You simply click on the "Play" icon for any Flash objects that you actually want to see. |
Flash
Flash 7
| npswf2.dll | Flash7 package patched so that sound works with LIBPATHSTRICT; reports itself as Flash 9 |
Java
Java 6
| npicedt.dll | The IcedTea-Web plugin works with OpenJDK 1.6. The older Java 1.4.x plugins are no longer compatible. |
MPlayer
MPlayer
| npmp.dll | Streaming audio/video plugin (MPEG, QuickTime, WMV, ASF, FLV, and more). |
| DjVu | npdjvu.dll | DjVu is a set of compression technologies, a file format, and a software platform for the delivery over the Web of digital documents, scanned documents, and high resolution images. |
| PM Downloader | nppmd.dll | Captures and handles downloads |
| Auto Wget | npawgbin.dll & others | Captures and handles downloads Also has npawgaud.dll and npawgvid.dll for handling audio and video |
| GBM | npgbm.dll | Generalised Bitmap Module can display a variety of bitmap file formats |
| META viewer | npmeta.dll | Allows you to view *.MET files |
| Unzip Plugin | npunzip.dll | |
|
You can "install" plugins by simply copying them to the plugins directory (or your profile plugins directory) Developers may want to check out the OS/2 Plugin Toolkit (from Hobbes), including this update Another place to find plugin information is plugindoc | ||
You can transfer portions of older profiles into a new profile; there are tips for SeaMonkey, Firefox, and Thunderbird. Moving profiles can be done, but requires manually modifying paths in configuration files (primarily prefs.js), and getting registry.dat to point to the correct profile location. This online registry.dat editor (for SeaMonkey 1.x) or these REXX tools can help.
In Firefox 2.0, every tab has a close button. If you wish to restore the old behavior, set "browser.tabs.closeButtons" to 3.
Phil Parker has created some Firebird icons based on the flame design found on the Firebird web site. With a little prodding, he also produced two more icons for us; one of the Firebird icon found on the Mozilla beta web site, and one found on a recent Stardock screenshot. Note that OS/2 icons are not viewable in Mozilla, save them to disk to see them! There are some Firefox icons on Hobbes as well.
You can also enable site icons in your bookmarks menu, by setting this option:
user_pref("browser.chrome.load_toolbar_icons", 2);
#navigator-throbber
{
list-style-image : url("animthrob_single.gif") !important;
}
#navigator-throbber[busy="true"]
{
list-style-image : url("animthrob.gif") !important;
}
There is a nice throbber you can use from one of the Netscape builds. Just place the image files in your profile's chrome directory, along with userChrome.css
You can also take a look at prefbar which has a menu of several options for this.
Other aspects of spring-loaded folders can also be tweaked; the defaults are:
user_pref("ui.treeOpenDelay", 1000);
user_pref("ui.treeLazyScrollDelay", 150);
user_pref("ui.treeScrollDelay", 100);
user_pref("ui.treeScrollLinesMax", 3);
Warpzilla now has the "telnet:" protocol built-in to os2pref.js, which runs telnetpm.
1. Create an icon on your desktop with an object ID of <CCINBOX>, using this REXX code:
/* */
call RxFuncAdd 'SysCreateObject', 'RexxUtil', 'SysCreateObject'
result = SysCreateObject('WPProgram', 'Mozilla Mail', '<WP_DESKTOP>', 'OBJECTID=<CCINBOX>');
Customize this object to open "mozilla -mail" with the appropriate path info.
2. Add the mail icons to your WarpCenter; you need Resource Manager and NewMail.Zip. Unzip both of these files into a temporary directory, and make a copy of your \OS2\DLL\SCENTER.DLL there. To add the icons, run this command:
resmgr -a scenter.dll scenter.resNow replace your \OS2\DLL\SCENTER.DLL with the one just created (I suggest using an unlock utility).
3. Once you reboot, your Warpcenter should have a mail icon. There is a mailtest.exe application in NewMail.Zip, which can be used to test the functionality outside of Mozilla.
If you want to customize the icons, edit mail.bmp or newmail.bmp, then run the resource compiler to recreate scenter.res.
There is a REXX script for integrating PMMail with Mozilla and an executable version of similar function
To have Firefox open Thunderbird when clicking on a mailto: link using the Run! utility, you can use these preferences:
user_pref("applications.mailto", "X:\\path\\to\\thunderbird\\thunderbird!l.exe");
user_pref("applications.mailto.parameters", "-compose");
You can run multiple versions of SeaMonkey (i.e. debug and release versions) at the same time, as long as you are careful. You must use different profiles for each version, and use Run! or a little script to start it (such as seaMonkey.cmd):
SET MOZ_NO_REMOTE=1 SET LIBPATHSTRICT=T SET MOZILLA_HOME=<profile_path> SET PATH=<mozilla_directory>;%PATH% SET BEGINLIBPATH=<mozilla_directory> seamonkey.exe %1 %2 %3 %4 %5
MOZ_NO_REMOTE=1 keeps Mozilla from creating the parent message window, so two Mozilla's can no longer detect that each other is running. LIBPATHSTRICT=T forces DLLs to be loaded from the correct place, instead of using what is already in memory (this feature requires a recent OS/2 kernel). These pre-made mozcall scripts may be useful.
Preferences Toolbar adds a toolbar for quickly changing the settings for custom fonts and colours, images, and Javascript.
mycroft is a list of search plugins for Mozilla, and instructions for writing your own (like a nice Hobbes search). There's also some FireFox search plugins for use with Google (images, news groups, and news), commTalk software archive, Leo German/English dictionary, and Hobbes.
Bookmarklets are some nice little Javascript utilities for dealing with annoying web pages
Form History Control gives you a nice interface to manage saved form field data.