User robertc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:47:25Zhttp://stackoverflow.com/feeds/user/8655http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889592/how-do-i-redirect-to-a-shared-virtual-hosted-site-in-the-hosts-file/1889671#18896710Answer by robertc for How do I redirect to a shared virtual hosted site in the hosts file?robertc2009-12-11T17:40:17Z2009-12-11T17:40:17Z<p>On a shared host, the website you get is determined by the domain name you ask for thanks to the <a href="http://en.wikipedia.org/wiki/Virtual%5Fhosting#Name-based" rel="nofollow">Host HTTP header</a>. For this to work properly the web server needs to be configured correctly so it knows what website to serve in response to which Host request - this is usually called 'Add-on Domains' on CPanel driven shared hosting.</p>
http://stackoverflow.com/questions/1749052/prevent-onbeforeunload-from-being-called-when-clicking-on-mailto-link/1749220#17492200Answer by robertc for Prevent onbeforeunload from being called when clicking on mailto linkrobertc2009-11-17T14:22:41Z2009-11-17T14:29:32Z<p>What about a workaround?</p>
<pre><code>$(document).ready(function(){
mailtoClicked = false;
window.onbeforeunload = confirmExit;
$$('a[href^=mailto]').click(function() {mailtoClicked = true;});
});
function confirmExit() {
if (!mailtoClicked) {
return "Are you sure?";
} else {
mailtoClicked = false;
}
}
</code></pre>
http://stackoverflow.com/questions/1704909/disabled-cookies/1704921#17049212Answer by robertc for Disabled cookiesrobertc2009-11-10T00:33:42Z2009-11-10T00:42:34Z<p>You can append an SID variable to every link you output to the user. PHP has some <a href="http://www.php.net/manual/en/session.configuration.php#ini.session.use-trans-sid" rel="nofollow">built in support</a> for this.</p>
http://stackoverflow.com/questions/1655794/javascript-source-query/1655799#16557992Answer by robertc for JavaScript Source Queryrobertc2009-10-31T22:29:42Z2009-10-31T22:29:42Z<p>It's known as a <a href="http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=1210" rel="nofollow">cache breaker</a>. It stops the browser using an old version of your javascript due to caching rules.</p>
http://stackoverflow.com/questions/1655104/upload-file-via-ftp-server-returned-error-550-file-is-unavailable-cannot-fin/1655139#16551390Answer by robertc for Upload file via FTP - Server returned error (550) File is unavailable, cannot find filerobertc2009-10-31T18:16:04Z2009-10-31T18:16:04Z<p>Try flipping the <a href="http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.usepassive.aspx" rel="nofollow">UsePassive</a> property. Control and data use <a href="http://en.wikipedia.org/wiki/File%5FTransfer%5FProtocol#Connection%5Fmethods" rel="nofollow">different ports in FTP</a>, it's possible you're getting through on the control port but getting blocked somehow on the data port.</p>
http://stackoverflow.com/questions/1643349/is-there-any-way-to-find-an-element-in-a-documentfragment/1643383#16433832Answer by robertc for Is there any way to find an element in a documentFragment?robertc2009-10-29T12:30:27Z2009-10-29T13:33:18Z<p>What about:</p>
<pre><code>var oFra = document.createDocumentFragment();
var myDiv = document.createElement("div");
myDiv.id="myId";
oFra.appendChild(myDiv);
oFra.getElementById("myId"); //not in FF
</code></pre>
<p>Unless you've added the the created <code>div</code> to your document fragment I'm not sure why <code>getElementById</code> would find it?</p>
<p>--edit</p>
<p>If you're willing to roll your own getElementById function then you ought to be able to get the reference you're after, because this code works:</p>
<pre><code>var oFra = document.createDocumentFragment();
var myDiv = document.createElement("div");
myDiv.id = "myId";
oFra.appendChild(myDiv);
if (oFra.hasChildNodes()) {
var i=0;
var myEl;
var children = oFra.childNodes;
for (var i = 0; i < children.length; i++) {
if (children[i].id == "myId") {
myEl = children[i];
}
}
}
window.alert(myEl.id);
</code></pre>
http://stackoverflow.com/questions/1643576/using-javascript-to-show-a-grey-scale-version-of-an-image-on-mouse-over/1643702#16437023Answer by robertc for Using javascript to show a grey-scale version of an image on mouse-overrobertc2009-10-29T13:22:54Z2009-10-29T13:22:54Z<p>Assuming, as reko_t has commented, you can't just create grey scale versions of the images on the server for some reason, it's possible in IE using the proprietary <code>filter</code> CSS attribute, <a href="http://msdn.microsoft.com/en-us/library/ms532889%28VS.85%29.aspx" rel="nofollow">BasicImage with grayScale</a>. You don't need JS to do this, it can be declared in CSS:</p>
<pre><code>a {
display: block;
width: 80px;
height: 15px;
background-image: url(http://www.boogdesign.com/images/buttons/microformat_hcard.png);
}
a:hover {
filter:progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
}
</code></pre>
<p>In Firefox, you could <a href="https://developer.mozilla.org/En/Applying%5FSVG%5Feffects%5Fto%5FHTML%5Fcontent" rel="nofollow">apply an SVG mask</a>, or you could try using the canvas element.</p>
<p>However, the simplest solution may be to either manually create grey scale versions of your images, or do it server side with something like <a href="http://www.libgd.org/Main%5FPage" rel="nofollow">GD</a>.</p>
http://stackoverflow.com/questions/1574967/svg-not-working-when-access-on-localhost-why/1619210#16192100Answer by robertc for SVG not working when access on localhost. Why?robertc2009-10-24T21:34:55Z2009-10-24T21:34:55Z<p>As NickFitz and codedread have mentioned, for embedded SVG to work your page needs to be served as <code>application/xhtml+xml</code>. There are at least three ways of achieving this with Tomcat:</p>
<ol>
<li>Edit your server or application <a href="http://wiki.metawerx.net/wiki/Web.xml" rel="nofollow">web.xml</a> to change the default MIME type, or the <a href="http://wiki.metawerx.net/wiki/Web.xml.MimeMapping" rel="nofollow">MIME type</a> for a particular file extension.</li>
<li>If your page is a JSP, set the contentType in the <a href="http://java.sun.com/products/jsp/syntax/1.2/syntaxref1210.html" rel="nofollow">page directive</a></li>
<li>If you want to accommodate IE users, <a href="http://download-east.oracle.com/docs/cd/A97329%5F03/web.902/a95882/jspnls.htm#1009349" rel="nofollow">set the contentType dynamically</a> based on the <code>HTTP_ACCEPT</code> header sent in the HTTP request (<a href="http://www.boogdesign.com/b2evo/index.php/2007/10/16/my%5Ffirst%5Fwebsite%5Ffor%5Fmobiles?blog=2" rel="nofollow">I blogged this approach in the context of mobile devices</a>).</li>
</ol>
<p>Alternatively, split your SVG content into a separate files, then it won't matter what content type your page is. IE won't render the SVG, but it will at least show the rest of the page. You can take all the SVG out of the page and the link to it, though there are still <a href="http://e.metaclarity.org/52/cross-browser-svg-issues/" rel="nofollow">some browser compatibility issues</a>.</p>
<p>Finally, if you just want to look at a static page with embedded SVG off your local hard disk with no servers involved, changing the file extension from <code>.html</code> to <code>.xhtml</code> may work.</p>
http://stackoverflow.com/questions/1400124/firefox-3-5-duplicating-code/1583471#15834710Answer by robertc for Firefox 3.5 duplicating coderobertc2009-10-17T23:12:30Z2009-10-17T23:12:30Z<p>When I paste your exact code above into a test page I don't see the duplication in Firefox. However if I change the last tag from this:</p>
<pre><code></a>
</code></pre>
<p>To this (incorrect closing tag):</p>
<pre><code><a/>
</code></pre>
<p>I see exactly the same duplication you're seeing on your real page. Are you sure the markup on your real page is correct?</p>
http://stackoverflow.com/questions/1583065/javascript-for-css-style-modification-inside-google-chrome-browser/1583448#15834481Answer by robertc for Javascript for CSS style modification inside Google Chrome browserrobertc2009-10-17T23:00:01Z2009-10-17T23:00:01Z<p>If you swap the padding for margin it works the same in both Firefox and Chrome (on my PC anyway):</p>
<pre><code>div#content{
padding: 0;
margin: 15px 15px 15px 15px;
background: #fff;
}
</code></pre>
<p>And then:</p>
<pre><code>function hideSideBar(){
document.getElementById('content' ).style.margin="15px 15px 15px 15px";
document.getElementById('out' ).style.display="none";
document.getElementById('in' ).style.display="block";
}
function showSideBar(){
document.getElementById('content').style.margin="15px 15px 15px 215px";
document.getElementById('out' ).style.display="block";
document.getElementById('in' ).style.display="none";
}
</code></pre>
<p>You may have to muck around with some of the rest of your styles to make it look the same.</p>
<p>I think what Chrome is doing is justifiable (not that I've reviewed the specs to check), increasing the padding should naturally make the block wider.</p>
http://stackoverflow.com/questions/1583279/javascript-not-generating-in-browser-just-prints-code-to-screen/1583410#15834100Answer by robertc for javascript not generating in browser, just prints code to screenrobertc2009-10-17T22:44:17Z2009-10-17T22:44:17Z<p>When you load a local page from disk in IE which has javascript in it then there's a warning bar which pops up saying "Active content has been disabled. Click here to enable active content." (or something along those lines). Check with the teacher whether he saw the bar, not seeing it would imply JS is disabled somehow, either in the browser or through some sort of security/anti-virus on his local machine. If he did see it, make sure he clicked to enable the active content :)</p>
<p>It's hard to see from the screenshot if there was some sort of error, as he's cunningly moved the part of the window where the error icon appears in the status bar off the screen, but I can see he has Firefox installed, so ask him to look at your page in that.</p>
http://stackoverflow.com/questions/1561610/why-does-my-heading-disappear-in-ie7-and-change-color-in-ff/1561690#15616900Answer by robertc for Why does my heading disappear in IE7 and change color in FF?robertc2009-10-13T17:19:09Z2009-10-13T17:19:09Z<p>The problem with the hover state is easy to fix - your closing tag on the urgent.mchenry.edu link is <code><a/></code> instead of <code></a></code>. I suspect this may fix your other issues too.</p>
http://stackoverflow.com/questions/1547418/how-to-download-all-the-tags-from-delicious/1547527#15475272Answer by robertc for how to download all the tags from deliciousrobertc2009-10-10T09:53:40Z2009-10-10T09:53:40Z<p>It's not possible to get <em>all</em> tags, you can get all tags for your username (replace the placeholders with your username and password):</p>
<pre><code>curl https://{username}:{password}@api.del.icio.us/v1/tags/get
</code></pre>
<p>This returns some XML which (for me) looks something like this:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<tags>
<tag count="42" tag=".Net"/>
<tag count="9" tag="AI"/>
<tag count="1" tag="ASP"/>
<tag count="64" tag="Accessibility"/>
<tag count="15" tag="Admin"/>
<tag count="3" tag="Agile"/>
<tag count="57" tag="Ajax"/>
<tag count="12" tag="Amiga"/>
...
</tags>
</code></pre>
<p>Or you can get a list of recommended or suggested tags for a particular URL:</p>
<pre><code>curl https://{username}:{password}@api.del.icio.us/v1/posts/suggest?url=http://stackoverflow.com/
</code></pre>
<p>This returns XML with two different types of tag, your tags which are recommended plus tags from all users which are popular:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<suggest>
<recommended>Reference</recommended>
<recommended>Development</recommended>
<recommended>Software</recommended>
<recommended>Tips</recommended>
<recommended>Community</recommended>
<recommended>Technology</recommended>
<recommended>HowTo</recommended>
<recommended>Forum</recommended>
<recommended>Web2.0</recommended>
<recommended>Blog</recommended>
<recommended>Learning</recommended>
<recommended>FAQ</recommended>
<popular>programming</popular>
<popular>reference</popular>
<popular>development</popular>
<popular>software</popular>
<popular>tips</popular>
</suggest>
</code></pre>
<p>There's a webmonkey article which covers <a href="http://www.webmonkey.com/tutorial/Using%5Fthe%5FDelicious%5FAPI" rel="nofollow">using the Delicious API from PHP</a>.</p>
http://stackoverflow.com/questions/1544163/ie-improperly-rendering-dynamic-content-until-a-stylesheet-change-is-made/1544265#15442651Answer by robertc for IE improperly rendering dynamic content until a stylesheet change is maderobertc2009-10-09T14:46:51Z2009-10-09T14:46:51Z<p>Have you got a width set on the table? It occurs to me that if you're generating the table while it's hidden it may not be picking up things like the current browser window width which it would normally use to set the width of a table, so it falls back to the maximum.</p>
http://stackoverflow.com/questions/1544164/how-do-i-edit-an-asp-net-site-changes-i-make-to-cs-files-dont-affect-anything/1544193#15441932Answer by robertc for How do I edit an asp.net site? Changes I make to .cs files, don't affect anything.robertc2009-10-09T14:38:38Z2009-10-09T14:38:38Z<p>Try downloading <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">Visual Web Developer</a> and opening the site with that. There should be a project file somewhere that will show up when you select open project from the menu.</p>
http://stackoverflow.com/questions/1480917/it-is-possible-to-set-size-of-images-in-imagearray-of-javascript/1481740#14817400Answer by robertc for It is possible to set size of images in imagearray of javascript?robertc2009-09-26T17:49:29Z2009-09-26T17:49:29Z<p>I don't think trying to solve this in javascript is the correct approach. You don't actually have any images in your array, you have URLs. If you hope to manipulate the images with javascript then you're going to have to fetch the images and turn them into data you can actually work with. This is possible, but it'll be a lot of work as there aren't any built in image processing primitives in javascript.</p>
<p>A better approach may be to get the images into the HTML of your page and then rely on the browser itself to do the work for you. Insert the image element into your page and specify the width and the height and the browser will scale the image for you:</p>
<pre><code>var elImage = document.createElement("img");
elImage.src = "http://i26.tinypic.com/11l7ls0.jpg";
elImage.height = 400;
elImage.width = 400;
elImage.alt = "";
document.getElementById("myImageContainer").appendChild(elImage);
</code></pre>
<p>The above assumes you've got a div with id myImageContainer to stick the images in. It could easily be adapted to sit in a loop where you add each image from your array to the page in turn. However, if this is all you're doing, you might as well just stick the image in to your HTML rather than messing around with javascript:</p>
<pre><code><img src="http://i26.tinypic.com/11l7ls0.jpg" height="400" width="400" alt="" />
</code></pre>
<p>The main problem with this approach (either scripting or straight to HTML) is that it doesn't preserve aspect ratio, so your images may looked squashed. If you want to avoid this then you probably do want to use javascript: load the image into your page, detect its 'natural' height and width, then either use simple arithmetic to scale to something that will fit within both the width and height, or scale so that at least one is and display the image inside a div with a fixed width and height and a style of <code>overflow: hidden</code> to crop.</p>
http://stackoverflow.com/questions/1391151/how-do-i-install-xmllibxml-for-activeperl/1391214#13912143Answer by robertc for How do I install XML::LibXML for ActivePerl?robertc2009-09-07T22:43:13Z2009-09-08T00:16:41Z<p>You should be able to install it with the <a href="http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/" rel="nofollow">ActivePerl Perl Package Manager</a>. There should have been a start menu shortcut created when you installed ActivePerl, start <a href="http://docs.activestate.com/activeperl/5.10/faq/ActivePerl-faq2.html#ppm%5Fgui" rel="nofollow">the GUI</a> and search for libxml.</p>
<p>--edit</p>
<p><a href="http://codingforums.com/showthread.php?p=798219" rel="nofollow">Here's a post on adding an alternative repository to PPM and installing XML-LibXML</a></p>
http://stackoverflow.com/questions/1383608/is-there-a-way-to-trigger-an-ie-window-to-open-from-firefox-browser-using-php-an/1383627#13836270Answer by robertc for is there a way to trigger an IE window to open from firefox browser using php and javascript?robertc2009-09-05T15:40:32Z2009-09-05T16:20:46Z<p>Not that I'm aware of - it would be something of a security hole if a web page could run arbitrary programs off your harddrive.</p>
<p>You could maybe write a simple Firefox extension to do it, or, if you are on Windows, use (or modify) <a href="https://addons.mozilla.org/en-US/firefox/addon/1419" rel="nofollow">IETab</a> somehow.</p>
http://stackoverflow.com/questions/1378192/send-sms-from-php/1378214#13782140Answer by robertc for Send SMS from PHProbertc2009-09-04T09:41:06Z2009-09-04T09:41:06Z<p>I've used <a href="http://www.2sms.com/" rel="nofollow">2sms.com</a> in the past. They have pay as you go options and a fairly simple http interface, <a href="http://www.2sms.com/software.aspx?section=CodePHP" rel="nofollow">PHP code sample here</a>.</p>
http://stackoverflow.com/questions/1373659/what-does-this-refer-to-in-an-onfilterchange-attribute0What does this refer to in an onfilterchange attribute?robertc2009-09-03T14:17:19Z2009-09-03T14:24:49Z
<p>I've taken code from the <a href="http://msdn.microsoft.com/en-us/library/ms533014%28VS.85%29.aspx" rel="nofollow">MSDN page on Matrix Filters</a> and modified it slightly. The functions all expect an input variable <code>oObj</code> which gets passed in originally from the <code>onfilterchange</code>:</p>
<pre><code><DIV ID="oDiv" STYLE="position:absolute;
filter:progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand')"
onfilterchange="fnSpin(this)" >
</code></pre>
<p>What I'm now trying to do is send arbitrary values to the <code>setRotation</code> function using the <code>onclick</code> event of a button:</p>
<pre><code><input type="button" onclick="var theDiv = document.getElementById('oDiv'); setRotation(theDiv,45)" value="Set">
</code></pre>
<p>Unfortunately when I click the button I get an Error: Object expected. I've obviously misunderstood what exactly <code>this</code> refers to in the <code>onfilterchange</code> - I thought it would be the HTML Element with ID oDiv. As far as I can tell <a href="http://msdn.microsoft.com/en-us/library/ms537452%28VS.85%29.aspx" rel="nofollow">filters should exist on the DIV element</a>. I remember recently reading an excellent description of what <code>this</code> refers to in different situations in <a href="http://oreilly.com/catalog/9780596517748/" rel="nofollow">Javascript: The Good Parts</a>, but I don't have access to the print version right now, and searching the Safari edition for "this" hasn't been very productive.</p>
<p>Things I've tried (mostly in the hope that it's an obscure IE bug):</p>
<ul>
<li>Having <code>document.getElementById('oDiv')</code> as the first argument to <code>setRotation</code></li>
<li>Using <code>document.all</code> instead of <code>getElementById</code></li>
<li>Using different properties such as <code>styles</code></li>
</ul>
<p><a href="http://www.boogdesign.com/examples/transforms/ietest.html" rel="nofollow">Complete code is online here</a>.</p>
http://stackoverflow.com/questions/1348206/how-does-a-website-know-the-google-query-i-used-to-find-it/1348235#13482351Answer by robertc for How does a website know the Google query I used to find it?robertc2009-08-28T16:51:47Z2009-08-28T16:51:47Z<p>It looks at the referrer header. Here is some <a href="http://www.liamdelahunty.com/tips/php%5Fgoogle%5Freferer.php" rel="nofollow">fairly basic PHP code</a> to do it.</p>
http://stackoverflow.com/questions/1347796/css3-firefox-moz-border-radius-wont-crop-out-image/1347863#13478632Answer by robertc for [CSS3] Firefox -moz-border-radius won't crop out image?robertc2009-08-28T15:47:47Z2009-08-28T15:54:01Z<p>Does it not crop if you apply the border radius directly to the <code>img</code> element? There are <a href="http://stackoverflow.com/questions/1280339/have-border-radius-cover-inner-divs/1280368#1280368">known issues with -moz-border-radius as far as contained content is concerned</a>.</p>
<p>--edit</p>
<p>OK, it doesn't crop <code>img</code> either. If your image is some sort of png/gif on a solid background you may be able to do something like this:</p>
<pre><code>img {
border: 10px solid white;
-moz-border-radius: 10px;
}
</code></pre>
<p>But if you're trying to get rounded corners on a photo then it's not going to work in 3.5.</p>
http://stackoverflow.com/questions/1340539/time-since-last-user-actitivty-in-firefox/1344224#13442242Answer by robertc for Time since last user actitivty in firefoxrobertc2009-08-27T23:07:54Z2009-08-27T23:07:54Z<p>I would expect that if you overlay browser.xul you ought to be able to hook into events at the browser level rather than mess around with individual pages. XPCOM has an <a href="https://developer.mozilla.org/en/Observer%5FNotifications#Idle%5FService" rel="nofollow">Idle Service</a>, getting at it from an extension <a href="https://developer.mozilla.org/en/nsIIdleService" rel="nofollow">ought to be possible</a>.</p>
http://stackoverflow.com/questions/1279338/xul-get-selection-html/1344063#13440631Answer by robertc for xul-Get selection htmlrobertc2009-08-27T22:19:16Z2009-08-27T22:19:16Z<p>It looks to me like you're getting the contents of the parent element rather than the selection itself. If the parent element contains anything other than what you have selected, then you'll get that too.</p>
<pre><code>var sel = focusedWindow.getSelection();
</code></pre>
<p>This line <a href="https://developer.mozilla.org/en/DOM/window.getSelection" rel="nofollow">returns</a> a <a href="https://developer.mozilla.org/en/DOM/Selection" rel="nofollow">selection object</a>. It contains the exact text selected by the user. You then get the range from the selection and get the <a href="https://developer.mozilla.org/en/DOM/range.commonAncestorContainer" rel="nofollow">commonAncestorContainer</a>. So if you have code like this:</p>
<pre><code><div id="ancestor">
<p>First sentence.</p>
<p>Another sentence.</p>
</div>
</code></pre>
<p>And your user selects from the 's' of the first sentence to the 's' of the second sentence then the commonAncestorContainer is the <code>div</code> element so you'll also get the rest of the text.</p>
<p>A good reason for this would be if you wanted to guarantee yourself a valid HTML fragment (this seems to be the case, implied by your function name), but if you just want the selected text then call the <a href="https://developer.mozilla.org/en/DOM/range.toString" rel="nofollow">toString</a> method on the range directly:</p>
<pre><code>var focusedWindow = document.commandDispatcher.focusedWindow;
var sel = focusedWindow.getSelection();
var r = sel.getRangeAt(0);
return r.toString();
</code></pre>
http://stackoverflow.com/questions/1339384/displaying-html-content-in-a-field-in-blackberry/1343858#13438582Answer by robertc for Displaying HTML content in a Field in blackberryrobertc2009-08-27T21:34:42Z2009-08-27T21:34:42Z<p>You can just <code>eval</code> the JSON response, though for better security adding <a href="http://www.json.org/js.html" rel="nofollow">JSON parsing support</a> is fairly simple, try the <a href="http://www.json.org/json2.js" rel="nofollow">json2.js</a> library. Then just use normal JS notation to extract your HTML string and insert it into your text field.</p>
<p>Note that:</p>
<ol>
<li>The Blackberry browser didn't support <a href="http://docs.blackberry.com/en/developers/deliverables/8857/Feature%5FAJAX%5F512507%5F11.jsp" rel="nofollow">XMLHttpRequest</a> until 4.6, for example the <a href="http://supportforums.blackberry.com/rim/board/message?message.uid=67550" rel="nofollow">Curve 8310</a> does not support it.</li>
<li>Javascript is not enabled by default on the Blackberry browser, if you have corporate setup you can enable it through an <a href="http://docs.blackberry.com/en/admin/deliverables/7229/MDS%5FBrowser%5FJavaScript%5FEnabled%5F204041%5F11.jsp" rel="nofollow">MDS policy rule</a></li>
<li>If you've got the above two covered, be careful with Javascript libraries as you can easily exhaust the device memory simply interpreting them (with less than 300k of JS IMX)</li>
</ol>
http://stackoverflow.com/questions/1311268/tool-for-creating-a-java-daemon-service-on-linux/1311362#13113624Answer by robertc for Tool for creating a Java daemon service on Linuxrobertc2009-08-21T11:11:59Z2009-08-21T11:11:59Z<p>Services on Linux are just shell scripts which start background processes. Have a look in <code>/etc/init.d</code> - you can open the files in a text editor. All you need is a bash script which responds to the parameters <code>start</code> and <code>stop</code> in an appropriate way (eg. <code>start</code> will start your service and record the process ID in a known location, <code>stop</code> will kill the process with the PID from the file you created), and then place it in <code>/etc/init.d</code>.</p>
<p>Have a look at <a href="http://www.linux-tutorial.info/modules.php?name=MContent&pageid=67" rel="nofollow">Init Scripts</a> and <a href="http://www.linux.com/news/enterprise/systems-management/8116-an-introduction-to-services-runlevels-and-rcd-scripts" rel="nofollow">An introduction to services, runlevels, and rc.d scripts</a></p>
http://stackoverflow.com/questions/1305164/communication-between-firefox-extension-and-page-javascript/1307687#13076871Answer by robertc for Communication between firefox extension and page javascriptrobertc2009-08-20T17:27:28Z2009-08-20T17:27:28Z<p>You could hook into the XMLHttpRequest object from your extension and monitor the requests, <a href="http://blog.monstuff.com/archives/images/XMLHttpRequestTracing.user.js" rel="nofollow">similar to what this GreaseMonkey script does</a> (<a href="http://blog.monstuff.com/archives/000250.html" rel="nofollow">description</a>). Add a wrapper to onreadystatechange in the same way he's added a wrapper to open which notifies the extension when complete. Probably also want some code which makes sure you're only doing this when visiting your own page.</p>
<p>Firebug does similar stuff for its Net panel, the codebase for that is a bit more intimidating though :) I also had a look at the <a href="http://getfirebug.com/releases/lite/1.2/firebug-lite.js" rel="nofollow">Firebug Lite watchXHR function</a>, but that code is a bit too cunning for me, if you can work it out let me know.</p>
http://stackoverflow.com/questions/1305359/xlst-newbie-and-xml-array/1305418#13054181Answer by robertc for XLST Newbie and XML Arrayrobertc2009-08-20T11:02:56Z2009-08-20T11:02:56Z<p>Is something like this what you want?</p>
<pre><code><?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<ul>
<xsl:apply-templates />
</ul>
</xsl:template>
<xsl:template match="string">
<li><xsl:value-of select="text()"></xsl:value-of></li>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>It produces the following output for me:</p>
<pre><code><?xml version='1.0' ?>
<ul>
<li>One</li>
<li>Two</li>
</ul>
</code></pre>
http://stackoverflow.com/questions/1282352/suggested-permissions-for-website-files/1282497#12824971Answer by robertc for Suggested permissions for website filesrobertc2009-08-15T18:21:15Z2009-08-15T18:21:15Z<p>There are some Apache configuration options which may impact what permissions you need to have on your files. Here are some things to check:</p>
<ol>
<li>Most shared hosting uses Apache in a mode where your website uses your own logon identity to serve files and run scripts (<a href="http://httpd.apache.org/docs/2.0/mod/mod%5Fsuexec.html" rel="nofollow">SuexecUserGroup</a>, <a href="http://httpd.apache.org/docs/2.0/suexec.html" rel="nofollow">suEXEC</a>). If this is the case for your host then only the first number of the permissions is relevant. If it's not the case, you may need to set the group and/or world values to at least 4 (eg. <code>644</code> which is <code>rw-r--r--</code> - check <a href="http://en.wikipedia.org/wiki/File%5Fsystem%5Fpermissions#Permissions" rel="nofollow">Wikipedia for a quick intro</a>).</li>
<li>If your host is using suEXEC then it may be prevented from serving files which are executable for anything other than your own user.</li>
<li>Remember that you should have the execute bit set on any directories</li>
</ol>
http://stackoverflow.com/questions/1280088/how-do-you-clear-an-html-form-on-page-reload-but-not-when-the-user-navigates-back/1280433#12804331Answer by robertc for How do you clear an HTML form on page reload but not when the user navigates BACK to the page?robertc2009-08-14T22:00:29Z2009-08-14T22:00:29Z<p>If you can't get the form based approach to work, you may want to investigate one the 'ajax history' libraries like <a href="http://code.google.com/p/reallysimplehistory/" rel="nofollow">RSH</a>.</p>
http://stackoverflow.com/questions/1400288/best-book-for-learning-script-aculo-us-in-depth/1400345#1400345Comment by robertc on Best book for learning script.aculo.us in depthrobertc2009-11-10T01:14:05Z2009-11-10T01:14:05ZYep, funny. Check out this blog post from 2006 which introduced an unobtrusive extension to prototype: <a href="http://www.danwebb.net/2006/9/3/low-pro-unobtrusive-scripting-for-prototype" rel="nofollow">danwebb.net/2006/9/…</a>http://stackoverflow.com/questions/1643576/using-javascript-to-show-a-grey-scale-version-of-an-image-on-mouse-over/1643702#1643702Comment by robertc on Using javascript to show a grey-scale version of an image on mouse-overrobertc2009-10-29T15:54:43Z2009-10-29T15:54:43ZYeah, also I've been looking around and I haven't yet come across an easy way to do a 'greyscale mask' in SVG so probably better to go canvas all the way.http://stackoverflow.com/questions/1643349/is-there-any-way-to-find-an-element-in-a-documentfragment/1643383#1643383Comment by robertc on Is there any way to find an element in a documentFragment?robertc2009-10-29T13:01:03Z2009-10-29T13:01:03ZI must be missing something about what you're doing then - how are you creating elements and appending them to your document fragment without creating references to them? The tradeoff is between storing a reference to an element as you create it and not immediately throwing it away against scanning through the whole document a few milliseconds later in order to recreate that reference to the element.http://stackoverflow.com/questions/1643349/is-there-any-way-to-find-an-element-in-a-documentfragment/1643383#1643383Comment by robertc on Is there any way to find an element in a documentFragment?robertc2009-10-29T12:49:30Z2009-10-29T12:49:30ZOK, but if you're building the form in JS anyway, why not just keep references to the elements as you create them and use those references to add the events?http://stackoverflow.com/questions/1612116/html5-local-storage-of-audio-element-source-is-it-possibleComment by robertc on HTML5 Local Storage of audio element source - is it possible?robertc2009-10-24T20:35:41Z2009-10-24T20:35:41ZDo you have some examples of what you've tried so far?http://stackoverflow.com/questions/1547221/javascript-canvas-images-scaling-problem-in-firefoxComment by robertc on Javascript/Canvas/Images scaling problem in Firefoxrobertc2009-10-21T02:38:49Z2009-10-21T02:38:49ZThe browser will stop loading the page to load any scripts it comes across. If the scripts are the last thing on the page (after the body) then they won't hold up page loading and you also can be sure all the DOM objects you might want to access in your script have been loaded.http://stackoverflow.com/questions/1583279/javascript-not-generating-in-browser-just-prints-code-to-screen/1583410#1583410Comment by robertc on javascript not generating in browser, just prints code to screenrobertc2009-10-17T23:02:17Z2009-10-17T23:02:17ZYou could try uploading the same page to your website and ask him to check it there?http://stackoverflow.com/questions/1577814/wrapping-a-div-around-the-document-body/1577853#1577853Comment by robertc on Wrapping a div around the document bodyrobertc2009-10-16T12:50:37Z2009-10-16T12:50:37ZThis is exactly what I was going to say, only difference I would have mentioned, use the Prototype DOM Builder: <a href="http://prototypejs.org/2007/5/12/dom-builder" rel="nofollow">prototypejs.org/2007/5/12/dom-builder</a>http://stackoverflow.com/questions/1547221/javascript-canvas-images-scaling-problem-in-firefoxComment by robertc on Javascript/Canvas/Images scaling problem in Firefoxrobertc2009-10-10T21:28:39Z2009-10-10T21:28:39ZYou can just grab the jQuery off Google to avoid dependency problems: <a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" rel="nofollow">ajax.googleapis.com/ajax/libs/…</a>
I did a test page: <a href="http://www.boogdesign.com/examples/canvas/image.html" rel="nofollow">boogdesign.com/examples/canvas/…</a>
Looks fine for me, FF 3.5.3 on Linux: <a href="http://www.boogdesign.com/examples/canvas/Canvas_test_ff.png" rel="nofollow">boogdesign.com/examples/canvas/…</a>http://stackoverflow.com/questions/1547418/how-to-download-all-the-tags-from-deliciousComment by robertc on how to download all the tags from deliciousrobertc2009-10-10T17:27:13Z2009-10-10T17:27:13Z<a href="http://delicious.com/tag" rel="nofollow">delicious.com/tag</a> doesn't show all the tags, it just shows the 200 or so most popular ones.http://stackoverflow.com/questions/1544163/ie-improperly-rendering-dynamic-content-until-a-stylesheet-change-is-made/1544265#1544265Comment by robertc on IE improperly rendering dynamic content until a stylesheet change is maderobertc2009-10-09T15:08:18Z2009-10-09T15:08:18ZSo if you set it to a specific number of pixels, rather than something which depends on the viewport size, do you still get the problem?http://stackoverflow.com/questions/1544163/ie-improperly-rendering-dynamic-content-until-a-stylesheet-change-is-made/1544257#1544257Comment by robertc on IE improperly rendering dynamic content until a stylesheet change is maderobertc2009-10-09T15:01:58Z2009-10-09T15:01:58Z"Table rows may be grouped into a table head, table foot, and one or more table body sections" - <a href="http://www.w3.org/TR/html4/struct/tables.html#h-11.2.3" rel="nofollow">w3.org/TR/html4/…</a>http://stackoverflow.com/questions/1480917/it-is-possible-to-set-size-of-images-in-imagearray-of-javascript/1481740#1481740Comment by robertc on It is possible to set size of images in imagearray of javascript?robertc2009-09-26T19:49:17Z2009-09-26T19:49:17ZGood tip, I didn't mention it because it only works with pictures in landscape. If your source picture is 800wx1200h and you set the width to 400 then the resulting picture will be 600px high, thus exceeding the 400px height requirement. At this point you're better off doing something more general like I discussed in the last paragraph. Of course, if you can guarantee all your pictures will be in landscape format, yours is the simpler solution.http://stackoverflow.com/questions/1391151/how-do-i-install-xmllibxml-for-activeperl/1391214#1391214Comment by robertc on How do I install XML::LibXML for ActivePerl?robertc2009-09-08T00:09:59Z2009-09-08T00:09:59ZTry searching for xml-libxml.http://stackoverflow.com/questions/1385284/how-to-implement-bottom-position-for-ie6and-does-the-same-problem-still-exist-fo/1385298#1385298Comment by robertc on How to implement bottom-position for IE6?And does the same problem still exist for IE5,say,all earlier versions?robertc2009-09-06T09:40:56Z2009-09-06T09:40:56ZThat would be position: fixed