User Eugene Katz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:43:17Z http://stackoverflow.com/feeds/user/1533 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1039029/does-java-have-a-limit-on-the-class-name-length 2 Does Java have a limit on the class name length? Eugene Katz 2009-06-24T15:16:32Z 2009-11-27T14:54:05Z <p>This question came up in Spring class, which has some rather long class names. Is there a limit in the language for class name lengths?</p> http://stackoverflow.com/questions/1674527/mailto-causing-a-blank-page-in-ie8-when-used-with-dojo 1 mailto causing a blank page in IE8 when used with Dojo Eugene Katz 2009-11-04T15:26:49Z 2009-11-25T12:25:54Z <p>For some reason, in IE (IE8 in Win 7 to be precise), when I click on a mailto link, I end up with the current page being replaced by a blank page with mailto in the address bar.</p> <p>Specifically, this is what happens when I click the mailto link:</p> <ol> <li>New about:blank tab opens and a security prompt pops up asking if I want to open Outlook. At this point, it looks like the original tab still is showing the original page.</li> <li>When I click "Allow" or "Don't Allow", the new tab closes and the original page is reloaded with the mailto in the address bar.</li> </ol> <p>If I comment out the dojo.xd.js reference, it works as expected.</p> <p>Firefox and Chrome just pop up the Outlook new message window. Also tested and works on Windows XP and IE7.</p> <p>The code to replicate the issue is: </p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;HTML&gt; &lt;HEAD&gt; &lt;TITLE&gt;mailto test&lt;/TITLE&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3.2/dojo/dojo.xd.js" djConfig="parseOnLoad: true"&gt;&lt;/script&gt; &lt;/HEAD&gt; &lt;BODY&gt; &lt;a href="mailto:example@example.com"&gt;mailto&lt;/a&gt; &lt;/BODY&gt; &lt;/HTML&gt; </code></pre> http://stackoverflow.com/questions/182600/should-one-use-or-in-a-for-loop 30 Should one use < or <= in a for loop Eugene Katz 2008-10-08T12:59:56Z 2009-10-29T17:28:41Z <p>If you had to iterate through a loop 7 times, would you use:</p> <pre><code>for (int i = 0; i &lt; 7; i++) </code></pre> <p>or:</p> <pre><code>for (int i = 0; i &lt;= 6; i++) </code></pre> <p>There are two considerations:</p> <ul> <li>performance</li> <li>readability </li> </ul> <p>For performance I'm assuming Java or C#. Does it matter if "less than" or "less than or equal to" is used? If you have insight for a different language, please indicate which.</p> <p>For readability I'm assuming 0-based arrays.</p> <p><strong>UPD:</strong> My mention of 0-based arrays may have confused things. I'm not talking about iterating through array elements. Just a general loop. </p> <p>There is a good point below about using a constant to which would explain what this magic number is. So if I had "<code>int NUMBER_OF_THINGS = 7</code>" then "<code>i &lt;= NUMBER_OF_THINGS - 1</code>" would look weird, wouldn't it. </p> http://stackoverflow.com/questions/167854/why-are-marginally-appropriate-questions-such-a-good-source-of-reputation-and-wha 3 Why are marginally appropriate questions such a good source of reputation and what can be done about it? [closed] Eugene Katz 2008-10-03T16:56:40Z 2009-10-10T23:43:01Z <p>I've noticed that marginally appropriate questions seem to generate a lot of reputation for the poster. For example, Shawn's "<a href="http://stackoverflow.com/questions/79884/best-place-to-meet-female-programmers-for-romance">Best place to meet female programmers</a>", while being at -6 at the time of this post, has actually generated 206 rep points <a href="http://stackoverflow.com/users/26?sort=reputationhistory#sort-top">(+280 -74)</a> for him. There are many other examples - often having to do with "What's your favorite X?"</p> <p><strong>UPD</strong>: jop posted a link in the comments to a <a href="http://stackoverflow.uservoice.com/pages/general/suggestions/21131" rel="nofollow">uservoice entry which talks about having subjective answers receive less reputation</a>. this will probably help, but only in cases where there are many comments.</p> http://stackoverflow.com/questions/1469461/which-stsadm-command-do-and-dont-recycled-the-application-pool 0 Which stsadm command do and don't recycled the application pool? Eugene Katz 2009-09-24T01:59:21Z 2009-09-25T14:01:46Z <p>I'm trying to figure out if deploying/upgrading solutions and activating features recycles the app pool or interrupts/slows the user's actions in any way. I need to know if these steps can be performed while there is load on the server, or it is best to do an after-hours deployment.</p> <p>The specific commands I'm using upgradesolution or displaysolution, addsolution, installfeature and activatefeature, but for the sake of completeness, it would be nice to have a comprehensive list.</p> http://stackoverflow.com/questions/1429153/is-there-a-web-service-for-getting-a-list-of-all-site-collections-in-wss-3-0 2 Is there a web service for getting a list of all site collections in WSS 3.0? [closed] Eugene Katz 2009-09-15T19:23:02Z 2009-09-18T13:25:07Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1420128/accessing-all-sitecollections-on-a-sharepoint-server-with-webservice">Accessing all SiteCollections on a SharePoint Server with WebService</a></p> </blockquote> <p>There is no Site Directory in WSS 3.0, which is what I would use to get a list of sites in MOSS 2007. Is there a way of getting a list of all site collections from WSS 3.0 through a web service?</p> <p><strong>Update:</strong> Looks like it can't be done. Sinced a daily dump is good enough, rather than write a custom web service, I'll just have the admin create a scheduled task to dump the output of an stsadm enumsites command into a web accessible location.</p> http://stackoverflow.com/questions/1378997/how-to-re-compress-the-cmp-file-created-by-stsadm-export-command-after-editing 0 How to re-compress the .cmp file, created by stsadm export command, after editing Eugene Katz 2009-09-04T12:42:29Z 2009-09-07T13:21:44Z <p>I need to manually edit some of the files inside of the .cmp file created by stsadm export command (or SharePoint Designer backup). I can extract the files and make the edits, but don't know how to properly re-compress the files so that the resulting .cmp file is valid for use with stsadm import.</p> http://stackoverflow.com/questions/1378997/how-to-re-compress-the-cmp-file-created-by-stsadm-export-command-after-editing/1379104#1379104 0 Answer by Eugene Katz for How to re-compress the .cmp file, created by stsadm export command, after editing Eugene Katz 2009-09-04T13:02:19Z 2009-09-04T13:02:19Z <p>Found that the <a href="http://technet.microsoft.com/en-us/library/cc261866.aspx" rel="nofollow">-nofilecompression flag</a> can be used to import uncompressed files, but still looking for the ability to re-compress the Content Migration Package (cmp).</p> http://stackoverflow.com/questions/1348994/is-there-a-way-to-filter-the-rss-view-of-a-sharepoint-list 1 Is there a way to filter the RSS view of a SharePoint list? Eugene Katz 2009-08-28T19:49:59Z 2009-08-30T16:11:32Z <p>I'm trying to get only certain items from a SharePoint list. The RSS feed is giving me everything, even if I have the list filtered of looking at a specific view.</p> http://stackoverflow.com/questions/1348994/is-there-a-way-to-filter-the-rss-view-of-a-sharepoint-list/1354194#1354194 1 Answer by Eugene Katz for Is there a way to filter the RSS view of a SharePoint list? Eugene Katz 2009-08-30T16:11:32Z 2009-08-30T16:11:32Z <p>Some more digging around <a href="http://sharepoint.microsoft.com/blogs/GetThePoint/Lists/Posts/Post.aspx?ID=94" rel="nofollow">revealed</a> that yes, you can get an RSS feed for a specific view. The link is on the "Edit View" page. It effectively adds the view GUID to the url.</p> http://stackoverflow.com/questions/1001726/sharepoint-failed-to-extract-the-cab-file-in-the-solution/1001869#1001869 0 Answer by Eugene Katz for SharePoint: "Failed to extract the cab file in the solution" Eugene Katz 2009-06-16T14:31:29Z 2009-06-16T14:31:29Z <p>Check that you don't have any special characters in your files. They might have sneaked in as a result of copy-paste. For example, the way your code sample renders on this page, it has the (`), which shouldn't be there.</p> http://stackoverflow.com/questions/998312/embed-section-of-html-from-another-site/998393#998393 3 Answer by Eugene Katz for Embed section of HTML from another site? Eugene Katz 2009-06-15T21:05:58Z 2009-06-15T21:05:58Z <p>Don't think image should really be last resort. You have no control over the HTML/CSS of the source page, so even if you craft a solution (probably by using JavaScript to parse out the desired snippet) there is no guarantee that tomorrow the site doesn't decide to change its layout.</p> <p>Even Jeff, who has control over the layout of stackoverflow.com, still prefers to <a href="http://blog.stackoverflow.com/2009/06/new-tag-statistics/" rel="nofollow">screen-capture</a> the site, rather than pull in the contents live.</p> <p>Now if your goals was to have the contents auto-update, that would be a different story. But still, unless you use some agreed-upon method of sharing content, such as RSS, your solution would be very fragile.</p> http://stackoverflow.com/questions/447774/specifying-the-running-directory-for-scheduled-tasks-using-schtasks-exe 1 Specifying the running directory for Scheduled Tasks using schtasks.exe Eugene Katz 2009-01-15T17:52:36Z 2009-04-21T14:02:04Z <p>I have an application which gets called by a scheduled task. It moved from Windows Server 2003 to Windows Server 2008. On 2003, the app ran in the directory where the executable was located. On 2008 <code>Environment.CurrentDirectory</code> (C#) reports that it's running in C:\Windows\System32. How do I set the running directory? I'm using schtasks.exe for command-line deployment.</p> <p><strong>UPD</strong>: Through the interface, it seems to be the "Start in (optional)" field on the action edit screen.</p> <p><strong>UPD</strong>: Looks like using the XML file may help, but I'm looking to do without it.</p> http://stackoverflow.com/questions/666573/how-to-remove-the-password-from-a-log-file-in-windows 0 How to remove the password from a log file in windows? Eugene Katz 2009-03-20T15:13:32Z 2009-04-01T14:51:47Z <p>I have a deployment script (.bat), part of which requires calling other programs and sending a password on the command line. I log the output of the deployment script to a file. The problem is that the password gets logged as well. I need a way of sanitizing this log file. </p> <p>One way to do this is to not echo the line which contains the password, but I would prefer to just replace the password with another string.</p> <p>This is done on a server (Windows 2008), so I can't just install cygwin or the like. I thought the Windows 'find' command may help, but the best it can do is omit the whole line with the '/v' option.</p> <p><b>UPD:</B> Did some research, and I think PowerShell is the way to go. The password is in the environment variable, so need need to figure out how to get read it and replace.</p> http://stackoverflow.com/questions/666573/how-to-remove-the-password-from-a-log-file-in-windows/705894#705894 0 Answer by Eugene Katz for How to remove the password from a log file in windows? Eugene Katz 2009-04-01T14:51:47Z 2009-04-01T14:51:47Z <p>I perused the PowerShell option and after getting past the encoding, quotes and a few other issues, here is my final solution:</p> <pre><code>powershell "&amp; {(Get-Content $env:LOG_FILENAME)|Foreach-Object {$_ -replace [regex]::escape($env:PASSWORD), '######'} | Set-Content ($env:LOG_FILENAME+\".clean.\"+(get-date).toString('yyyyMMddhhmmss')+\".log\")}" </code></pre> <p>This line is called from a batch file, as the last step of the deployment script. Earlier in the script the values for LOG_FILENAME and PASSWORD are set.</p> <p>Breaking it down:</p> <p>Executing a PowerShell from a batch file:</p> <pre><code>powershell "&amp; {...}" </code></pre> <p>Reading in the log file:</p> <pre><code>(Get-Content $env:LOG_FILENAME) </code></pre> <p>For each line, replace [regex]::escape($env:PASSWORD) with '######':</p> <pre><code>Foreach-Object {$_ -replace [regex]::escape($env:PASSWORD), '######'} </code></pre> <p>Escape any characters in the PASSWORD environment variable which may be interpreted as regex reserved character:</p> <pre><code>[regex]::escape($env:PASSWORD) </code></pre> <p>Save the output to a new log file with a .clean.[timestamp].log appended to the original name:</p> <pre><code>Set-Content ($env:LOG_FILENAME+\".clean.\"+(get-date).toString('yyyyMMddhhmmss')+\".log\") </code></pre> http://stackoverflow.com/questions/653911/swapping-left-and-right-mouse-button-in-net 1 Swapping left and right mouse button in .NET Eugene Katz 2009-03-17T11:53:28Z 2009-03-17T12:19:43Z <p>How do I swap left and right mouse buttons in .NET (preferably C#)? Basically the result should be the same as if the user checked the "Switch primary and secondary buttons" checkbox in the Mouse Properties through the control panel. I'm dealing with Windows XP, in case that makes a difference.</p> http://stackoverflow.com/questions/202142/how-do-you-reset-a-password-in-ad-using-ldp-exe 0 How do you reset a password in AD using LDP.exe? Eugene Katz 2008-10-14T17:51:07Z 2009-03-09T22:54:06Z <p>I can connect with a user who has permissions to set passwords. I'm able to change attributes, but I can't set the password.</p> <p>Found some instructions to set the attribute <code>unicodePwd</code> to <code>\UNC:"*password*"</code>, but it says:</p> <blockquote> <p>Error: Modify: Unwilling To Perform. &lt;53></p> </blockquote> <p>Setting LDAP_OPT_ENCRYPT to 1 didn't work either. The port I'm using is 389.</p> http://stackoverflow.com/questions/15053/how-to-get-out-parameters-working-in-sharepoint-workflows 3 How to get out parameters working in SharePoint workflows Eugene Katz 2008-08-18T18:35:22Z 2009-02-16T10:45:24Z <p>I'm trying to create a custom workflow action with an output parameter for error handling. Working from various examples, I can't get Parameter Direction="Out" to work. Everything seems right, but when I try to assign the output to the "error" variable in SharePoint Designer, it places asterisks around it and flags it as a workflow error. Here is what the action XML looks like:</p> <pre><code>&lt;Action Name="Create Folder" ClassName="ActivityLibrary.CreateFolderActivityTest" Assembly="ActivityLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxx" AppliesTo="all" CreatesInList="ListId" Category="Custom"&gt; &lt;RuleDesigner Sentence="Create a folder %1 in the %2 base folder. If an error occurs it will be output to %3."&gt; &lt;FieldBind Field="FolderName" Text="folder name" Id="1" /&gt; &lt;FieldBind Field="BaseFolderPath" Text="folder path" Id="2"/&gt; &lt;FieldBind Field="OutError" DesignerType="ParameterNames" Text="out error" Id="3"/&gt; &lt;/RuleDesigner&gt; &lt;Parameters&gt; &lt;Parameter Name="FolderName" Type="System.String, mscorlib" Direction="In" /&gt; &lt;Parameter Name="BaseFolderPath" Type="System.String, mscorlib" Direction="In" /&gt; &lt;Parameter Name="OutError" Type="System.String, mscorlib" Direction="Out" /&gt; &lt;/Parameters&gt; &lt;/Action&gt; </code></pre> http://stackoverflow.com/questions/422338/how-do-i-programatically-modify-information-stored-in-active-directory-using-net/422361#422361 0 Answer by Eugene Katz for How do I programatically modify information stored in Active Directory using .NET? Eugene Katz 2009-01-07T22:08:18Z 2009-01-07T22:08:18Z <p>For editing data, I've used <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.aspx" rel="nofollow">System.DirectoryServices</a> in the past. Haven't done extending of fields.</p> http://stackoverflow.com/questions/422143/what-are-the-best-practices-with-source-code-control/422253#422253 0 Answer by Eugene Katz for What are the best practices with source code control? Eugene Katz 2009-01-07T21:49:50Z 2009-01-07T21:49:50Z <p>What timing! The <a href="http://blog.stackoverflow.com/2009/01/podcast-36/" rel="nofollow">upcoming StackOverflow podcast</a> (guessing the URL here - won't work yet) is <a href="http://twitter.com/spolsky/statuses/1100454500" rel="nofollow">supposed to be about source control</a>.</p> http://stackoverflow.com/questions/422090/in-c-check-that-filename-is-possibly-valid-not-that-it-exists/422109#422109 5 Answer by Eugene Katz for In C# check that filename is *possibly* valid (not that it exists) Eugene Katz 2009-01-07T21:11:06Z 2009-01-07T21:24:54Z <p>You can get a list of invalid characters from <a href="http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidpathchars.aspx" rel="nofollow">Path.GetInvalidPathChars</a> and <a href="http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidfilenamechars.aspx" rel="nofollow">GetInvalidFileNameChars</a> as discussed in <a href="http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows">this question.</a></p> <p>As Micah <a href="http://stackoverflow.com/questions/422090/in-c-check-that-filename-is-possibly-valid-not-that-it-exists#422131">points out</a>, there is <a href="http://msdn.microsoft.com/en-us/library/system.io.directory.getlogicaldrives.aspx" rel="nofollow">Directory.GetLogicalDrives</a> to get a list of valid drives.</p> http://stackoverflow.com/questions/403031/changing-css-style-from-asp-net-code/403057#403057 0 Answer by Eugene Katz for Changing CSS style from ASP.NET code Eugene Katz 2008-12-31T14:23:40Z 2008-12-31T14:23:40Z <p>If your div is an ASP.NET control with runat="server" then AviewAnew's answer should do it. If it's just an HTML div, then you'd probably want to use JavaScript. Can you add the actual div tag to your question?</p> http://stackoverflow.com/questions/234432/sharepoint-development-production-environments/234546#234546 2 Answer by Eugene Katz for SharePoint Development / Production Environments Eugene Katz 2008-10-24T17:39:01Z 2008-10-24T17:39:01Z <p>There are really two (more?) levels to SharePoint "development". You have the code which gets deployed to the server, such as web parts, content types, workflow actions, etc. This works relatively well in terms of deployment and best practices.</p> <p>Then you have your example, which is more of a customization of site instances. What we've done when we had to customize a calculated field in the Portal's Site Directory list, is to try and tweak the changes in development. Then write up detailed instructions of the customization to be made, and have a separate person with appropriate permissions use those instructions to make the change on an integration (staging) server. Then have the same person makes the changes live on the production.</p> <p>I'm not sure if your changes are susceptible to this approach, but it's worth considering.</p> <p>Then we have another site which is heavily customized with SharePoint designer, and that one we work live on.</p> http://stackoverflow.com/questions/192122/moss-2007-invalid-url-exception-spsite-openweb/192611#192611 2 Answer by Eugene Katz for MOSS 2007 -- Invalid URL Exception SPSite.OpenWeb(...) Eugene Katz 2008-10-10T18:45:00Z 2008-10-10T18:45:00Z <p>Looks at the examples table at the bottom of <a href="http://msdn.microsoft.com/en-us/library/ms955307.aspx" rel="nofollow">this page</a>.</p> <p>Try not sending any parameters into the OpenWeb() method (2nd row).</p> http://stackoverflow.com/questions/182529/creating-controls-within-a-loop/182557#182557 2 Answer by Eugene Katz for Creating controls within a Loop Eugene Katz 2008-10-08T12:48:50Z 2008-10-08T12:48:50Z <p>I think this should do it: </p> <pre><code> for (int i = 0; i &lt; 7; i++) { TableCell tCell = new TableCell(); TextBox txt = new TextBox(); tCell.Controls.Add(txt); tRow.Cells.Add(tCell); } </code></pre> <p>Make sure that 6 is changed to a 7.</p> http://stackoverflow.com/questions/39389/how-to-add-a-web-part-zone-in-sharepoint-using-sharepoint-designer 2 How to add a web part zone in SharePoint using SharePoint Designer Eugene Katz 2008-09-02T12:35:58Z 2008-10-07T14:12:50Z <p>I need to add a web part zone to a wiki page. I'm opening the page using SharePoint Designer, but there doesn't seem to be an obvious way (such as a menu) to add a Web Part Zone.</p> http://stackoverflow.com/questions/178290/iis-service-unavailable/178461#178461 0 Answer by Eugene Katz for IIS Service Unavailable Eugene Katz 2008-10-07T13:36:05Z 2008-10-07T13:36:05Z <p>You probably need to get together with whomever has access to the server to look at the errors. Short of that, can you try putting the old code back to see if it still works? If not, it's likely a configuration error.</p> <p>Also, editing the web.config will get the application restarted. It's a useful trick when you can't access IIS.</p> http://stackoverflow.com/questions/178290/iis-service-unavailable/178304#178304 0 Answer by Eugene Katz for IIS Service Unavailable Eugene Katz 2008-10-07T12:57:14Z 2008-10-07T12:57:14Z <p>Could be lots of things. Did you try iisreset after updating the pages?</p> http://stackoverflow.com/questions/168560/best-practices-for-performing-sequential-operations/168630#168630 0 Answer by Eugene Katz for Best Practices for Performing Sequential Operations Eugene Katz 2008-10-03T19:57:49Z 2008-10-03T19:57:49Z <p>If you're using a language which uses <a href="http://en.wikipedia.org/wiki/Short-circuit_evaluation" rel="nofollow">sort-circuit evaluation</a> (Java and C# do), you can simply do:</p> <pre><code>return SendEmail() &amp;&amp; ArchiveResportsInDatabase() &amp;&amp; CreateAFile(); </code></pre> <p>This will return true if all the functions return true, and stop as soon as the first one return false.</p> http://stackoverflow.com/questions/162225/how-do-i-preserve-markup-tags-when-using-xslt/162274#162274 1 Answer by Eugene Katz for How do I preserve markup tags when using XSLT? Eugene Katz 2008-10-02T13:30:59Z 2008-10-02T13:30:59Z <p>If you don't have control over the input document, copy-of should work:</p> <p>From <a href="http://www.xml.com/pub/a/2000/06/07/transforming/index.html" rel="nofollow">http://www.xml.com/pub/a/2000/06/07/transforming/index.html</a></p> <p>"The xsl:copy-of element, on the other hand, can copy the entire subtree of each node that the template selects. This includes attributes, if the xsl:copy-of element's select attribute has the appropriate value. In the following example, the template copies title element nodes and all of their descendant nodes -- in other words, the complete title elements, including their tags, subelements, and attributes:"</p> <pre><code>&lt;xsl:template match="title"&gt; &lt;xsl:copy-of select="*"/&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/210657/jsp-how-can-i-still-get-the-code-on-my-error-page-to-run-even-if-i-cant-displa/1833962#1833962 Comment by Eugene Katz on JSP: How can I still get the code on my error page to run, even if I can't display it? Eugene Katz 2009-12-03T17:33:04Z 2009-12-03T17:33:04Z You probably want to use window.location.replace(&quot;&lt;c:url value=&quot;/error.do&quot; /&gt;&quot;) so that the back button still works. http://stackoverflow.com/questions/210657/jsp-how-can-i-still-get-the-code-on-my-error-page-to-run-even-if-i-cant-displa Comment by Eugene Katz on JSP: How can I still get the code on my error page to run, even if I can't display it? Eugene Katz 2009-12-02T15:55:23Z 2009-12-02T15:55:23Z Did you ever find a solution? http://stackoverflow.com/questions/1674527/mailto-causing-a-blank-page-in-ie8-when-used-with-dojo/1733253#1733253 Comment by Eugene Katz on mailto causing a blank page in IE8 when used with Dojo Eugene Katz 2009-11-27T16:45:44Z 2009-11-27T16:45:44Z no, couldn't get that to work. It seems to be setting the URL of the top. http://stackoverflow.com/questions/1674527/mailto-causing-a-blank-page-in-ie8-when-used-with-dojo/1796593#1796593 Comment by Eugene Katz on mailto causing a blank page in IE8 when used with Dojo Eugene Katz 2009-11-25T16:30:48Z 2009-11-25T16:30:48Z no, that doesn't fix it. http://stackoverflow.com/questions/1674527/mailto-causing-a-blank-page-in-ie8-when-used-with-dojo/1675106#1675106 Comment by Eugene Katz on mailto causing a blank page in IE8 when used with Dojo Eugene Katz 2009-11-04T16:52:36Z 2009-11-04T16:52:36Z I just left the doctype which the editor put there... changed it to what you suggested, but it doesn't fix the problem. http://stackoverflow.com/questions/1674527/mailto-causing-a-blank-page-in-ie8-when-used-with-dojo Comment by Eugene Katz on mailto causing a blank page in IE8 when used with Dojo Eugene Katz 2009-11-04T15:46:08Z 2009-11-04T15:46:08Z Please let me know if it works or doesn't work in other browser/os combinations. http://stackoverflow.com/questions/7592/can-i-use-javascript-to-create-a-client-side-email/7643#7643 Comment by Eugene Katz on Can I use JavaScript to create a client side email? Eugene Katz 2009-11-03T17:26:38Z 2009-11-03T17:26:38Z Can't find a solution so far. http://stackoverflow.com/questions/7592/can-i-use-javascript-to-create-a-client-side-email/7643#7643 Comment by Eugene Katz on Can I use JavaScript to create a client side email? Eugene Katz 2009-11-03T16:41:36Z 2009-11-03T16:41:36Z Doesn't seem to work in IE 8. wndMail is null, according to the debugger. http://stackoverflow.com/questions/15053/how-to-get-out-parameters-working-in-sharepoint-workflows/469921#469921 Comment by Eugene Katz on How to get out parameters working in SharePoint workflows Eugene Katz 2009-10-26T15:12:13Z 2009-10-26T15:12:13Z no, never worked for me http://stackoverflow.com/questions/1469461/which-stsadm-command-do-and-dont-recycled-the-application-pool/1477464#1477464 Comment by Eugene Katz on Which stsadm command do and don't recycled the application pool? Eugene Katz 2009-09-30T12:18:45Z 2009-09-30T12:18:45Z thanks for the info http://stackoverflow.com/questions/1429153/is-there-a-web-service-for-getting-a-list-of-all-site-collections-in-wss-3-0/1430052#1430052 Comment by Eugene Katz on Is there a web service for getting a list of all site collections in WSS 3.0? Eugene Katz 2009-09-16T12:19:06Z 2009-09-16T12:19:06Z &quot;Can't be done&quot; is good enough of an answer for me. Since a daily dump is good enough, I'll just have the admin create a scheduled task to dump the output of an stsadm enumsites command into a web accessible location. http://stackoverflow.com/questions/1429153/is-there-a-web-service-for-getting-a-list-of-all-site-collections-in-wss-3-0/1429229#1429229 Comment by Eugene Katz on Is there a web service for getting a list of all site collections in WSS 3.0? Eugene Katz 2009-09-15T19:46:29Z 2009-09-15T19:46:29Z This will get me a list of webs in a site collection. I'm looking for a list of all top-level site collections. http://stackoverflow.com/questions/1378997/how-to-re-compress-the-cmp-file-created-by-stsadm-export-command-after-editing Comment by Eugene Katz on How to re-compress the .cmp file, created by stsadm export command, after editing Eugene Katz 2009-09-04T12:43:44Z 2009-09-04T12:43:44Z I do think this question fits StackOVerflow better than ServerFault because it goes beyond what an admin would normally do. http://stackoverflow.com/questions/480438/share-outlook-calendar-from-html Comment by Eugene Katz on Share outlook calendar from html Eugene Katz 2009-04-21T15:19:30Z 2009-04-21T15:19:30Z did you ever find a solution? I'm trying to do the same exact thing http://stackoverflow.com/questions/447774/specifying-the-running-directory-for-scheduled-tasks-using-schtasks-exe/772731#772731 Comment by Eugene Katz on Specifying the running directory for Scheduled Tasks using schtasks.exe Eugene Katz 2009-04-21T14:38:13Z 2009-04-21T14:38:13Z works like a charm, as long as your working dir is not just the drive letter (c:\test.bat was setting working dir to c: which is ignored)