Penguin

Differences between version 78 and predecessor to the previous major change of MozillaNotes.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 78 Last edited on Tuesday, April 18, 2006 7:27:23 am by SteveZobell Revert
Older page: version 77 Last edited on Tuesday, March 28, 2006 4:20:02 am by SteveZobell Revert
@@ -4,9 +4,9 @@
 Both Mozilla browsers support address bar shortcuts. They currently only support one substitution, but it works pretty well for most applications. 
  
 To create a shortcut, save a bookmark to the site you wish to have a shortcut to, then edit it and put a <tt>%s</tt> where the query would go and put a name for the shortcut in the shortcut field of its properties. F.ex, a shortcut for the WlugWiki might look like <tt>http://www.wlug.org.nz/%s</tt> and be invoked with the name <tt>wlug</tt>. Then you could enter "<tt>wiki MozillaNotes</tt>" in your address bar to get to this page. 
  
-!! Search plugins 
+ !! Search plugins 
  
 [Mozilla] supports the use of plugins that integrate new sites into the browser's search box. F.ex, the following file will let you perform a TitleSearch on the WlugWiki: 
  
  <verbatim> 
@@ -139,13 +139,13 @@
 Now I can control how my pdf files open, instead of being forced into that horrible acroread browser plugin... 
  
 !!Using user css to hide/disable plugin content 
  
-You can enable the flash plugin but not automatically load flash animations by using CSS and XUL. 
+You can enable the Flash and Java plugins but not automatically load flash animations or Java programs by using CSS and XUL. 
 This can also be used for arbitrary types. 
  
  
-!!Flash plugin click-to-load 
+!!Flash and Java plugin click-to-load 
  
 Copy the following into your your <tt>$HOME/.mozilla/firefox/''salt''/chrome/userContent.css</tt> file: 
 <verbatim> 
  /* Prevent flash animations from playing until you click on them. */ 
@@ -154,8 +154,15 @@
  object[type="application/x-shockwave-flash"], 
  embed[type="application/x-shockwave-flash"], 
  embed[src$=".swf"] 
  { -moz-binding: url("resource:///res/clickToView.xml#flash"); } 
+  
+ /* Prevent java applets from playing until you click on them. */  
+ object[codebase*="java"],  
+ object[type="application/java"],  
+ embed[type="application/java"],  
+ applet[code$=".class"]  
+ { -moz-binding: url("resource:///res/clickToView.xml#java"); }  
 </verbatim> 
 The file location of the userContent.css will be different for other browsers: try <tt>$HOME/.galeon/mozilla/galeon/chrome</tt> or <tt>$HOME/.mozilla/default/''salt''/chrome/userContent.css</tt>. 
  
 Next, copy the [ clickToView.xml | http://www.wlug.org.nz/archive/software/clickToView.xml ] file into the "res" subdirectory of the directory where firefox is installed. The command "which firefox" can help determine the directory where firefox is installed, and root may be needed to install the xml file. The xml file comments also give directions for installing clickToView, including hints for Windows OS users. 
@@ -166,24 +173,9 @@
 <verbatim> 
  { -moz-binding: url("http://www.wlug.org.nz/archive/software/clickToView.xml#flash"); } 
 </verbatim> 
  
-There is also a Firefox extension called ~FlashBlock that does this , although it only works for recent versions of Firefox 1.4 or 1.5.  
-  
-!! Java plugin click-to-load  
-  
-You can prevent [Java] applets from loading immediately, requiring a click instead, by copying the following into your <tt>userContent.css</tt>:  
-  
-<verbatim>  
-/* Prevent java applets from playing until you click on them. */  
-object[codebase*="java"],  
-object[type="application/java"],  
-embed[type="application/java"],  
-applet[code$=".class"]  
-{ -moz-binding: url("resource:///res/clickToView.xml#java"); }  
-</verbatim>  
-  
-As with the flash blocker above, [ clickToView.xml | http://www.wlug.org.nz/archive/software/clickToView.xml ] must be installed locally in the res subdirectory of the directory where Firefox is installed. Directions are also in the clickToView.xml file comments
+There is also a Firefox extension called ~FlashBlock to block Flash , although it only works for recent versions of Firefox 1.4 or 1.5. 
  
 !!!Misc Neat Stuff 
 http://webfx.eae.net/games/minehunter/launcher.html 
  
@@ -318,8 +310,10 @@
 !! Thunderbird hangs while accessing IMAP folders from Courier-IMAP server 
 I had to set MAXPERIP=5 in /etc/courier/imapd (on a Debian 3.0 server). Otherwise Courier-IMAP defaults to allow only 4 connections per IMAP client and that causes Thunderbird (and Netscape Messenger, IIRC) to stop responding. -- ~FrEd 
 -- This is actually configured within the mail client (Thunderbird, Netscape Messenger, Mozilla Mail, etc). Go to the Account Settings, then Server Settings, press the 'Advanced' button, and there is field for 'Maximum number of server connections to cache', which is set to 5 by default. -- DanielLawson 
  
+!! Slow File Picker  
+Firefox 1.5 comes with a GTK2 file picker that is very slow. You may see a large delay when starting a download or using "Save Image As" or "Save Link As". The delay increases if there are many files in the target directory, and KDE users may see more delay than GNOME users. Until this is fixed, you can recover the old file picker using the instructions [ here | http://forums.mozillazine.org/viewtopic.php?p=1783468&sid=25b198251a20b570b199705272dbc3a0#1783468 ]  
  
 !!! See also 
  
 * [More ad blocking | http://www.deftone.com/blogzilla/archives/ad_blocking.html]