here is what we do:<br><br>set pref for all users from a <span style="text-decoration: underline;">single</span> <span style="font-weight: bold;">firefox.cfg</span> file (<a title="http://mit.edu/~firefox/www/maintainers/autoconfig.html" href="http://mit.edu/%7Efirefox/www/maintainers/autoconfig.html">
http://mit.edu/~firefox/www/maintainers/autoconfig.html</a> )<br><br>and the files we use...<br>/usr/local/firefox_2/bookmarks.html <<-- you general links :-)<br>/usr/local/firefox_2/ltsp-in-schools.cfg  <<-- general configuration for all users
<br>/usr/local/firefox_2/defaults/pref/all.js  <<-- tells firefox to use ltsp-in-schools.cfg<br><br>the contents of "all.js"<br><br>pref('general.config.obscure_value', 0); <br>pref('general.config.filename
', 'ltsp-in-schools.cfg'); <br><br>the contents of "ltsp-in-schools.cfg"<br><br>// Set Cache Directory<br>//var env_user = getenv("USER");<br>//var cache_dir = "/var/tmp/MozillaFirefox-" + env_user + "/Cache/";
<br>//lockPref('browser.cache.disk.parent_directory', cache_dir);<br><br>// Security Settings<br>lockPref("signon.rememberSignons", false);<br><br>// set local squid as default proxy<br>// squid is probably redirected through ISP's proxy for adult content filtering !
<br>pref("network.proxy.http", "server.ltsp");<br>pref("network.proxy.http_port", 3128);<br>pref("network.proxy.type",1);<br>// set school's home page<br>pref("browser.startup.page
",1);<br>pref('browser.startup.homepage','<a href="http://www.google.co.il/'">http://www.google.co.il/'</a>);<br>// clear download bar when browser closes<br>pref("downbar.function.clearOnClose
",true);<br>// no crash recovery<br>pref("browser.sessionstore.enabled",false);<br>// adblock<br>pref("extensions.adblockplus.frameobjects",false);<br>pref("extensions.adblockplus.showintoolbar
",false);<br>pref("extensions.adblockplus.showsubscriptions",false);<br>pref("extensions.adblockplus.frameobjects",false);<br>// firefox updates<br>pref("extensions.update.enabled",false);
<br>pref("extensions.update.notifyUser",false);<br>// language<br>pref("font.language.group","he");<br>pref("intl.charset.default","ISO-8859-8");<br>pref("intl.charsetmenu.browser.static
","ISO-8859-1, UTF-8, ISO-8859-8-I, ISO-8859-8, windows-1255");<br>pref("spellchecker.dictionary","he-IL");<br><br>// use kmail as email client for mailto: links<br>pref("network.protocol-handler.app.mailto
","kmailservice");<br><br>// use my fonts to display hebrew with nikod correctly<br>pref("browser.display.use_document_fonts",0);<br><br>// one bookmarks.html file to all students :-)<br>pref("
browser.bookmarks.file","/usr/local/firefox_2/bookmarks.html");<br><br><br>enjoy :-)<br><br><br><div><span class="gmail_quote">On 4/10/07, <b class="gmail_sendername">Rob Owens</b> <<a href="mailto:rowens@ptd.net">
rowens@ptd.net</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">bookmarks.html is actually a simple web page. So you could put a copy of
<br>it in a public folder and send everyone a link to it.  When they open it<br>in Firefox, they'll see a text-like list of the teacher's links, and<br>they can click on each one to be brought to the corresponding web page.
<br><br>-Rob<br><br>On Mon, Apr 09, 2007 at 09:39:22PM -0500, Peter Scheie wrote:<br>> I swear someone just asked this question, but I can't find it in my<br>> archives.  What is the best way for teachers to distribute Firefox
<br>> bookmarks to students' accounts?  I suppose I could tell the teacher to<br>> get her bookmarks set the way she wants, and then give her a script that<br>> copies her ~/.mozilla/firefox/*default/bookmarks.html to the same place
<br>> for each user.  But that seems a bit clumsy.  Anyone know a better way?<br>><br>> Petre<br>><br>> _______________________________________________<br>> K12OSN mailing list<br>> <a href="mailto:K12OSN@redhat.com">
K12OSN@redhat.com</a><br>> <a href="https://www.redhat.com/mailman/listinfo/k12osn">https://www.redhat.com/mailman/listinfo/k12osn</a><br>> For more info see <<a href="http://www.k12os.org">http://www.k12os.org</a>
><br><br>_______________________________________________<br>K12OSN mailing list<br><a href="mailto:K12OSN@redhat.com">K12OSN@redhat.com</a><br><a href="https://www.redhat.com/mailman/listinfo/k12osn">https://www.redhat.com/mailman/listinfo/k12osn
</a><br>For more info see <<a href="http://www.k12os.org">http://www.k12os.org</a>><br></blockquote></div><br>