Difference between revisions of "Mozilla.dev.tech.xul"

From CDOT Wiki
Jump to: navigation, search
(Weekly Summaries)
Line 16: Line 16:
 
== FAQ ==
 
== FAQ ==
  
1. How do I create my summary page?
+
=== [http://groups.google.com/group/mozilla.dev.tech.xul/browse_thread/thread/1cd0d95ece50e2ed/3d56c5f2b5a56b9b#3d56c5f2b5a56b9b How do I remove the file location header included in the default printing setting?] ===
 +
:See http://www.xulplanet.com/references/elemref/ref_iframe.html, the first user note at the bottom. Change this line
  
Like this!
+
var settings = PrintUtils.getPrintSettings();
  
2. Should I put the FAQ questions/answers in the summaries?
+
:to this
  
NoPut them in a single place (here), instead of in the summaries.
+
var settings = PrintUtils.getPrintSettings().clone();
 +
settings.docURL = " "; // suppress URL on printout
 +
 
 +
:Other options you can modify are documented here:
 +
 
 +
:http://www.xulplanet.com/references/xpcomref/ifaces/nsIPrintSettings.html
 +
 
 +
 
 +
=== [http://groups.google.com/group/mozilla.dev.tech.xul/browse_thread/thread/bceb1fad72d3dd4c/599a85d1f1097d2c#599a85d1f1097d2c Is it possible to load the template with XML file and not rdf based source?] ===
 +
 
 +
:That feature isn't available yet. The code that implements it is waiting to be reviewed.  See bug https://bugzilla.mozilla.org/show_bug.cgi?id=321171
 +
 
 +
 
 +
== UnAnswered Questions (UAQ) ==
 +
 
 +
=== [http://groups.google.com/group/mozilla.dev.tech.xul/browse_thread/thread/b1141a8d850db281/50a5fd68808a3afc#50a5fd68808a3afc Gettng an error in the console when inserting a subtree into a XUL document from another XML.] ===
 +
 
 +
=== [http://groups.google.com/group/mozilla.dev.tech.xul/browse_thread/thread/9b5a463c079ad8c0/3bc4b207ed661a89#3bc4b207ed661a89 How can I find more information about TB infrastructure?] ===

Revision as of 15:14, 29 September 2006