<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to make printer queues known to CSWB? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866831#M79025</link>
    <description>On mine, there's a Print &amp;gt; Properties gizmo&lt;BR /&gt;where you could change the queue name in the&lt;BR /&gt;"Print Command".&lt;BR /&gt;&lt;BR /&gt;In my&lt;BR /&gt;[._MOZILLA.DEFAULT.816NKX63_SLT]PREFS.JS&lt;BR /&gt;file, there's a load of printer-related&lt;BR /&gt;stuff which might be altered/augmented&lt;BR /&gt;manually.  It also offers comments which&lt;BR /&gt;point to other resources.&lt;BR /&gt;&lt;BR /&gt;A quick Google search for "mozilla printers"&lt;BR /&gt;found some pages which claim that you only&lt;BR /&gt;get the one printer, and so you need to&lt;BR /&gt;change the "Print Command".&lt;BR /&gt;&lt;BR /&gt;I have only one useful print queue, so it's&lt;BR /&gt;never bothered me.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 20 Sep 2006 20:45:24 GMT</pubDate>
    <dc:creator>Steven Schweda</dc:creator>
    <dc:date>2006-09-20T20:45:24Z</dc:date>
    <item>
      <title>How to make printer queues known to CSWB?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866830#M79024</link>
      <description>How can I make our printer queues known to the Secure Web Browser?&lt;BR /&gt;&lt;BR /&gt;When a user opens the Print... menu, the only option is to print to "Postscript/default"&lt;BR /&gt;which sends it to the queue defined as SYS$PRINT.&lt;BR /&gt;&lt;BR /&gt;How can I add "real" printers to the list?&lt;BR /&gt;Is this documented anywhere? If so, I haven't been able to find it :(&lt;BR /&gt;&lt;BR /&gt;Thanks for whatever help you can provide.</description>
      <pubDate>Wed, 20 Sep 2006 19:25:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866830#M79024</guid>
      <dc:creator>Selden Ball</dc:creator>
      <dc:date>2006-09-20T19:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to make printer queues known to CSWB?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866831#M79025</link>
      <description>On mine, there's a Print &amp;gt; Properties gizmo&lt;BR /&gt;where you could change the queue name in the&lt;BR /&gt;"Print Command".&lt;BR /&gt;&lt;BR /&gt;In my&lt;BR /&gt;[._MOZILLA.DEFAULT.816NKX63_SLT]PREFS.JS&lt;BR /&gt;file, there's a load of printer-related&lt;BR /&gt;stuff which might be altered/augmented&lt;BR /&gt;manually.  It also offers comments which&lt;BR /&gt;point to other resources.&lt;BR /&gt;&lt;BR /&gt;A quick Google search for "mozilla printers"&lt;BR /&gt;found some pages which claim that you only&lt;BR /&gt;get the one printer, and so you need to&lt;BR /&gt;change the "Print Command".&lt;BR /&gt;&lt;BR /&gt;I have only one useful print queue, so it's&lt;BR /&gt;never bothered me.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Sep 2006 20:45:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866831#M79025</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-09-20T20:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to make printer queues known to CSWB?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866832#M79026</link>
      <description>&lt;!--!*#--&gt;To preserve file attributes (just in case), I&lt;BR /&gt;copied PREFS.JS to USER.JS, eliminated all&lt;BR /&gt;the non-printer stuff, and replaced all&lt;BR /&gt;instances of "/default." with "/alternate."&lt;BR /&gt;(and chose a distictive queue name), so:&lt;BR /&gt;&lt;BR /&gt;[...]&lt;BR /&gt;user_pref("print.printer_PostScript/alternate.print_command", "print&lt;BR /&gt;/delete  /queue = SyS$PrInT");&lt;BR /&gt;user_pref("print.printer_PostScript/alternate.print_edge_bottom", 4);&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;This didn't do much, but I did notice this in&lt;BR /&gt;"about:config":&lt;BR /&gt;&lt;BR /&gt;print.printer_list  default  string&lt;BR /&gt;&lt;BR /&gt;So, with little to lose, I tried adding this&lt;BR /&gt;to USER.JS:&lt;BR /&gt;&lt;BR /&gt;user_pref("print.printer_list", "default alternate");&lt;BR /&gt;&lt;BR /&gt;After which (and restarting the browser),&lt;BR /&gt;"print.printer_list" went from plain&lt;BR /&gt;("default") to BOLD ("user-set"),&lt;BR /&gt;and I had a list of two printers in the Print&lt;BR /&gt;gizmo.&lt;BR /&gt;&lt;BR /&gt;As the documentation suggests, stuff in&lt;BR /&gt;USER.JS gets saved in PREFS.JS when the&lt;BR /&gt;brower dies peacefully.&lt;BR /&gt;&lt;BR /&gt;I also set ("print.selection_radio_enabled",&lt;BR /&gt;true), but I have no idea what effect that&lt;BR /&gt;might have had.</description>
      <pubDate>Wed, 20 Sep 2006 21:34:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866832#M79026</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-09-20T21:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to make printer queues known to CSWB?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866833#M79027</link>
      <description>Ok.  I figured out what&lt;BR /&gt;("print.selection_radio_enabled", true) does.&lt;BR /&gt;You can relax now.</description>
      <pubDate>Wed, 20 Sep 2006 21:36:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866833#M79027</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-09-20T21:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to make printer queues known to CSWB?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866834#M79028</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;Thanks for the hints.&lt;BR /&gt;&lt;BR /&gt;For no obvious reason, your trick of editing the .js file(s) did nothing for me. :(&lt;BR /&gt;&lt;BR /&gt;However, modifying print.printer_defs at the URL access:config by entering a space-delimited list of queue names causes that list of queues to be shown, but SWB still tries to print to the queue SYS$PRINT and not to the selected queue :(&lt;BR /&gt;&lt;BR /&gt;i.e. the print command value shown in the Preferences window seems to have priority and it is not changed when different queues are selected, nor does selecting any of the listed queues define SYS$PRINT to a corresponding value.&lt;BR /&gt;&lt;BR /&gt;We're still running SWB v1.4, if that makes a difference for this.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:25:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866834#M79028</guid>
      <dc:creator>Selden Ball</dc:creator>
      <dc:date>2006-09-21T12:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to make printer queues known to CSWB?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866835#M79029</link>
      <description>Mine says "SWB 1.7.13", which, as I recall,&lt;BR /&gt;includes some security-related improvements,&lt;BR /&gt;as well as some features.  I'd vote for&lt;BR /&gt;trying the latest version.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/openvms/products/ips/cswb/cswb.html" target="_blank"&gt;http://h71000.www7.hp.com/openvms/products/ips/cswb/cswb.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You're right, editing the "about:config" page&lt;BR /&gt;(Hey -- You can do that!) is the easy way to&lt;BR /&gt;add a printer to the list (no restart&lt;BR /&gt;required, either), and when I did that,&lt;BR /&gt;specifying a fictional queue, it seemed to&lt;BR /&gt;work as expected.  That is, selecting a&lt;BR /&gt;printer which specified a real queue got a&lt;BR /&gt;print job queued, while selecting a printer&lt;BR /&gt;which specified a bad queue got these&lt;BR /&gt;messages in the underlying terminal window:&lt;BR /&gt;&lt;BR /&gt;PRINT-F-CREJOB, error creating job&lt;BR /&gt;-JBC-E-NOSUCHQUE, no such queue&lt;BR /&gt;&lt;BR /&gt;So, it does seem to work as expected for me&lt;BR /&gt;(with the newer CSWB version).</description>
      <pubDate>Thu, 21 Sep 2006 13:25:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-make-printer-queues-known-to-cswb/m-p/3866835#M79029</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-09-21T13:25:09Z</dc:date>
    </item>
  </channel>
</rss>

