User dacracot - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:08:49Z http://stackoverflow.com/feeds/user/13930 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1822838/can-i-flush-the-event-stack-within-firefox-using-javascript 1 Can I flush the event stack within Firefox using Javascript? dacracot 2009-11-30T22:24:48Z 2009-11-30T23:00:08Z <p>I have a hierarchy of tags within my HTML which all contain onclick event handlers. The onclick is pushed onto the event stack from the leaf back through the root of the hierarchy. I only want to respond to the leaf onclick event. Can I flush the event stack rather than using a flag?</p> <p>For instance...</p> <pre><code> &lt;ul&gt; &lt;li onclick="nada('1');"&gt;&lt;a href="#1"&gt;1&lt;/a&gt;&lt;/li&gt; &lt;li onclick="nada('2');"&gt;&lt;a href="#2"&gt;2&lt;/a&gt; &lt;ul&gt; &lt;li onclick="nada('2.1');"&gt;&lt;a href="#2.1"&gt;2.1&lt;/a&gt;&lt;/li&gt; &lt;li onclick="nada('2.2');"&gt;&lt;a href="#2.2"&gt;2.2&lt;/a&gt;&lt;/li&gt; &lt;li onclick="nada('2.3');"&gt;&lt;a href="#2.3"&gt;2.3&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li onclick="nada('4');"&gt;&lt;a href="#4"&gt;4&lt;/a&gt;&lt;/li&gt; &lt;li onclick="nada('5');"&gt;&lt;a href="#5"&gt;5&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Clicking on 2.2 using this function...</p> <pre><code>function nada(which) { alert(which); } </code></pre> <p>...will result in two alerts for '2.2' and '2'.</p> <p>What could I add to the nada function to eliminate the alert for '2'?</p> http://stackoverflow.com/questions/1822881/xml-schema-format-for-representing-a-generic-file-format/1822898#1822898 1 Answer by dacracot for XML schema/format for representing a generic file format? dacracot 2009-11-30T22:35:13Z 2009-11-30T22:35:13Z <p>I would consider what has been done by <a href="http://x12.org/" rel="nofollow">x12.org</a> for EDI. Their file formats are commerce oriented, but may cover what you have in mind.</p> http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user 1 How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T16:31:02Z 2009-11-25T17:22:54Z <p>I'm allowing the user to select text contained within <code>&lt;div&gt;&lt;/div&gt;</code> and change it to bolded text. In other words from <code>&lt;div&gt;this is some text&lt;/div&gt;</code> to <code>&lt;div&gt;this is &lt;b&gt;some&lt;/b&gt; text&lt;/div&gt;</code>. All is working except that when I change the div.innerHTML to <code>this is &lt;b&gt;some&lt;/b&gt; text</code>, the <code>&lt;b&gt;some&lt;/b&gt;</code> tags are shown to the user rather than being rendered as HTML and displaying <strong>some</strong> bolded. This is all happening client side with Javascript.</p> <p>How do I force the browser to render the tags rather than reveal them to the user?</p> <p>Per request, here is the code...</p> <p>HTML...</p> <pre><code>&lt;div id="blob"&gt; One simple, but not very efficient implementation of a dictionary is a linked list. In this implementation all operations take linear time in the worst case (and even in the average case), assuming that insertions first check whether the item is in the current list. A more scalable implementation of a dictionary is a balanced search tree. In this lecture note we present two even more efficient data structures based on hashing. &lt;/div&gt; </code></pre> <p>Javascript...</p> <pre><code>tagText(document.getElementById("blob"),"&lt;b&gt;","&lt;/b&gt;"); </code></pre> <p>and...</p> <pre><code>//====================================================================== function tagText(el,tagstart,tagend) { var range = window.getSelection().getRangeAt(0); var rtxt = range.startContainer.textContent; var rlen = rtxt.length; var start = range.startOffset; var stop = range.endOffset; var result = rtxt.substring(0,start) + tagstart + rtxt.substring(start,stop) + tagend + rtxt.substring(stop,rlen); // el.innerHTML = result; range.startContainer.textContent = result; var txt = el.innerHTML; el.innerHTML = txt; } //====================================================================== </code></pre> <p><hr></p> <p>Looking at the div:innerHTML via firebug shows that the tags are escaped <code>&amp;lt;b&amp;gt;</code> rather than <code>&lt;b&gt;</code>.</p> http://stackoverflow.com/questions/1791526/can-i-get-a-javascript-event-from-the-selection-of-text-outside-of-text-or-textar 0 Can I get a Javascript event from the selection of text outside of text or textarea? dacracot 2009-11-24T17:11:51Z 2009-11-24T17:52:46Z <p>I would like to know when a user selects text in an html page using Javascript. The text should not be editable. The <code>onselect</code> event seems to be only applicable to <code>&lt;textarea&gt;</code> and <code>&lt;input type="TEXT"&gt;</code> tags. The event is not fired if either tag is disabled.</p> <p>Is there a way around this with these tags?</p> <p>Is there a completely different approach?</p> http://stackoverflow.com/questions/1773768/non-framework-implementation-of-a-hierarchical-drop-down-for-firefox 0 Non framework implementation of a hierarchical drop down for Firefox. dacracot 2009-11-20T23:05:25Z 2009-11-23T17:05:11Z <p>I need a hierarchical drop down <code>&lt;select&gt;&lt;option/&gt;&lt;/select&gt;</code> for use within a browser, preferably Firefox. I'd rather not use a framework like jQuery. Please spare me the questions as to why.</p> http://stackoverflow.com/questions/1773768/non-framework-implementation-of-a-hierarchical-drop-down-for-firefox/1784540#1784540 0 Answer by dacracot for Non framework implementation of a hierarchical drop down for Firefox. dacracot 2009-11-23T17:05:11Z 2009-11-23T17:05:11Z <p>This is what I need... <a href="http://www.leigeber.com/2008/11/drop-down-menu/" rel="nofollow">http://www.leigeber.com/2008/11/drop-down-menu/</a>.</p> http://stackoverflow.com/questions/1494131/what-is-the-query-string-of-a-blazeds-request 0 What is the query string of a BlazeDS request? dacracot 2009-09-29T18:18:31Z 2009-11-22T08:00:05Z <p>I have a Tomcat service running on localhost:8080 and I have installed BlazeDS. I created and configured a simple hello world application like this...</p> <pre><code>package com.adobe.remoteobjects; import java.util.Date; public class RemoteServiceHandler { public RemoteServiceHandler() { //This is required for the Blaze DS to instantiate the class } public String getResults(String name) { String result = “Hi ” + name + “, the time is : ” + new Date(); return result; } } </code></pre> <p>With what query string can I invoke RemoteServiceHandler to my Tomcat instance via just a browser? Something like... <a href="http://localhost:8080/blazeds/?xyz" rel="nofollow">http://localhost:8080/blazeds/?xyz</a></p> http://stackoverflow.com/questions/1773768/non-framework-implementation-of-a-hierarchical-drop-down-for-firefox/1773842#1773842 0 Answer by dacracot for Non framework implementation of a hierarchical drop down for Firefox. dacracot 2009-11-20T23:22:16Z 2009-11-20T23:22:16Z <p>Found this... <a href="http://spicebrains.com/multi-level-drop-down-menu/" rel="nofollow">http://spicebrains.com/multi-level-drop-down-menu/</a></p> http://stackoverflow.com/questions/140959/if-your-software-development-team-is-not-following-any-design-methodology-what-i/141064#141064 5 Answer by dacracot for If your software development team is not following any design methodology, what is that called? dacracot 2008-09-26T18:13:45Z 2009-11-20T17:53:35Z <p><a href="http://www.laputan.org/mud/" rel="nofollow">Big Ball of Mud</a></p> http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x 1 Migrating from Tomcat 5.5.x to 6.0.x. dacracot 2009-11-19T21:08:08Z 2009-11-20T16:45:09Z <p>I'm migrating an mature application from Tomcat 5.5.x to 6.0.x. What are the sticking points that I need to make sure that I address?</p> <p>I use a couple of Tomcat's services that I suspect will need adjustment...</p> <ol> <li>The logging mechanism: I altered the conf/logging.properties to include my webapp.</li> <li>The Resource of type="javax.sql.DataSource": I use this to connect to Oracle.</li> </ol> <p><strong>Edit</strong>: *I'm seeing from some of the Tomcat documentation that rather than using the server.xml and logging.properties of the $TOMCAT_HOME/conf, that these belong in the application's context.xml and WEB-INF. Perhaps 6.0 insists upon this?*</p> <p><strong>Note</strong>: Cross posted on <a href="http://serverfault.com/questions/86454/migrating-from-tomcat-5-5-x-to-6-0-x">serverfault.com</a>.</p> <p><strong>Edit-2</strong>: Here is the exception as logged in the localhost.YYYY-MM-DD.log...</p> <pre><code>Nov 19, 2009 12:29:31 PM org.apache.catalina.core.ApplicationContext log INFO: [gov.llnl.tox.toxServlet]@20091119122931.231 - initialized tox version: 1.5 build 0 with verbose logging Nov 19, 2009 12:29:38 PM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet jsp threw exception java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.apache.commons.httpclient.HttpMethodBase.&lt;clinit&gt;(HttpMethodBase.java:104) at gov.llnl.tox.util.tag.doPost(tag.java:37) at gov.llnl.tox.util.tag.doAfterBody(tag.java:66) at org.apache.jsp.test_jsp._jspx_meth_tox_005ftoxTalk_005f0(test_jsp.java:241) at org.apache.jsp.test_jsp._jspService(test_jsp.java:90) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454) at java.lang.Thread.run(Thread.java:595) Nov 19, 2009 12:35:58 PM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet jsp threw exception java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.apache.commons.httpclient.HttpMethodBase.&lt;clinit&gt;(HttpMethodBase.java:104) at gov.llnl.tox.util.tag.doPost(tag.java:37) at gov.llnl.tox.util.tag.doAfterBody(tag.java:66) at org.apache.jsp.test_jsp._jspx_meth_tox_005ftoxTalk_005f0(test_jsp.java:241) at org.apache.jsp.test_jsp._jspService(test_jsp.java:90) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454) at java.lang.Thread.run(Thread.java:595) </code></pre> http://stackoverflow.com/questions/1724847/what-is-the-jdbc-equivalent-to-query-an-ibm-domino-data-store 0 What is the JDBC equivalent to query an IBM Domino data store? dacracot 2009-11-12T19:42:46Z 2009-11-15T19:18:40Z <p>I need to query an IBM Domino data store that was populated using Lotus Notes from within a Java application. I am hoping that IBM followed the JDBC design pattern so that I can implement similarly to what I have done to get data from Oracle. Where should I start?</p> <p><hr></p> <p>I am aware that IBM does not support JDBC for Domino. What I need is an equivalent.</p> http://stackoverflow.com/questions/1732396/highlighted-text-popup-widget-what-to-call-it-and-where-to-find-the-javascript 0 Highlighted text popup widget... What to call it and where to find the Javascript? dacracot 2009-11-13T22:50:51Z 2009-11-13T23:07:24Z <p>I recall seeing a web site that when you highlighted/selected text on their page, it produced a small balloon just to the upper right, which was clickable and would perform some action when clicked. I have an application where this type of interface would be appropriate for my users. But... I haven't any idea what to call this widget nor where to start from scratch.</p> http://stackoverflow.com/questions/1717510/preferred-os-for-hosting-tomcat-servlet-container 0 Preferred OS for hosting Tomcat servlet container. dacracot 2009-11-11T19:32:41Z 2009-11-11T22:38:36Z <p>I know that I'm taking a risk, pitting the differing OS religions against each other, but I would like professional opinions about hosting a servlet container. In my case the container is set, we will be using Tomcat. But what is in question is the hosting operating system. We have administrators experienced in Windows Server 2003. We have developers experienced in Solaris, OSX, and Linux. There is no warring between these groups, just a question of who will ramp up through the learning curve necessary to use the OS that they are unfamiliar with. So given all the cooperative spirit, we are struggling with how to find the most efficient path.</p> http://stackoverflow.com/questions/1704010/need-to-use-body-onload-event-but-third-party-javascript-library-has-hijacked-it 0 Need to use body onload event, but third party JavaScript library has hijacked it. dacracot 2009-11-09T21:35:09Z 2009-11-09T22:24:13Z <p>I'm using Simile to draw dynamic timelines. I am also using an in-house library to add a comment blog. Our in-house library uses the body element's onload event to initialize.</p> <pre><code>&lt;body onload="initComments('myID')"&gt; </code></pre> <p>But Simile seems to have hijacked the onload for their own purpose so that initComments('myID') never executes.</p> <p>Short of changing the Simile code, how could I get my initializer to run?</p> <p>I would prefer not to add another library (i.e. jQuery) just to solve the problem.</p> http://stackoverflow.com/questions/159914/css-javascript-use-div-to-grey-out-section-of-page/159962#159962 5 Answer by dacracot for CSS/JavaScript Use Div to grey out section of page dacracot 2008-10-01T22:02:13Z 2009-11-09T22:16:28Z <p>Add this to your HTML:</p> <pre><code>&lt;div id="darkLayer" class="darkClass" display="none"&gt;&lt;/div&gt; </code></pre> <p>And this to your CSS:</p> <pre><code>.darkClass { background-color: white; filter:alpha(opacity=50); /* IE */ opacity: 0.5; /* Safari, Opera */ -moz-opacity:0.50; /* FireFox */ z-index: 20; height: 100%; width: 100%; background-repeat:no-repeat; background-position:center; position:absolute; top: 0px; left: 0px; } </code></pre> <p>And finally this to turn it off and on with JavaScript:</p> <pre><code>function dimOff() { document.getElementById("darkLayer").style.display = "none"; } function dimOn() { document.getElementById("darkLayer").style.display = ""; } </code></pre> <p>Change the dimensions of the darkClass to suite your purposes.</p> http://stackoverflow.com/questions/1683354/can-i-embed-a-silverlight-applet-in-my-jsp-java-server-page 0 Can I embed a Silverlight applet in my JSP (java server page)? dacracot 2009-11-05T20:26:11Z 2009-11-05T20:38:18Z <p>I suspect the answer is yes, you can embed a Silverlight applet in a JSP, but I'm having a very difficult time finding any examples of this. Seems to me that I can just use the HTML that would go in a strict HTML file...</p> <pre><code>&lt;object width="300" height="300" data="data:application/x-silverlight-2," type="application/x-silverlight-2" &gt; &lt;param name="source" value="SomeSilverlightApplet.xap"/&gt; &lt;/object&gt; </code></pre> <p>... and it would just work.</p> <p>I would test this, but finding a .xap file that I can download and test with is more difficult than I would like. Perhaps it is just because a Java programmer like myself doesn't know where to look.</p> http://stackoverflow.com/questions/342052/how-to-increment-a-java-string-through-all-the-possibilities 2 How to increment a java String through all the possibilities? dacracot 2008-12-04T21:02:24Z 2009-11-05T05:06:32Z <p>I need to increment a String in java from "aaaaaaaa" to "aaaaaab" to "aaaaaac" up through the alphabet, then eventually to "aaaaaaba" to "aaaaaabb" etc. etc.</p> <p>Is there a trick for this?</p> http://stackoverflow.com/questions/1637538/does-mac-os-x-have-a-better-installation-story-than-windows/1637591#1637591 1 Answer by dacracot for Does Mac OS X have a better installation story than Windows? dacracot 2009-10-28T14:26:45Z 2009-10-28T14:26:45Z <p>The "proper" method for OSX application installation is drag and drop the application to the /Applications folder. No installer, no "type your password", no changes to the system.</p> http://stackoverflow.com/questions/153414/tool-to-visualize-code-flow-in-java 3 Tool to visualize code flow in Java? dacracot 2008-09-30T14:55:30Z 2009-10-26T14:02:36Z <p>I'm inspired by the <a href="http://stackoverflow.com/questions/153074/tool-to-visualise-code-flow-cc">C/C++</a> question for a code flow visualization tool.</p> <p>Is there such a thing for Java servlets or applications?</p> http://stackoverflow.com/questions/141241/does-java-have-a-using-clause 6 Does java have a using clause? dacracot 2008-09-26T18:52:28Z 2009-10-15T18:20:53Z <p>I've seen reference in some C# posted questions to a "using" clause. Does java have the equivalent?</p> http://stackoverflow.com/questions/1446917/why-is-there-no-standardized-wiki-markup-language 3 Why is there no standardized wiki markup language? dacracot 2009-09-18T21:30:04Z 2009-10-14T22:30:01Z <p>For as many wiki tools as I have used, each time I must learn yet another markup language. Why doesn't wiki markup get standardized like HTML, XSLT, SVG, and other web languages?</p> http://stackoverflow.com/questions/1532340/what-is-the-complete-list-of-simile-exhibit-column-formats 0 What is the complete list of Simile Exhibit column formats? dacracot 2009-10-07T15:25:57Z 2009-10-14T19:00:18Z <p>In Simile Exhibit is an attribute called ex:columnFormats. After googling for a while, the best list of valid values I can find is from Simile's wiki...</p> <pre><code>ex:columnFormats list of format expressions comma separated list of format expressions, e.g., "list, image, date { mode: short }" </code></pre> <p>...So, list, image, and date are valid. I've discovered that url is valid.</p> <p>Where is it documented what the complete list is?</p> <p><hr /></p> <p>Wow... crickets... even got a tumbleweed badge for this one.</p> <p>Does no one use Simile? Maybe that is a sign.</p> http://stackoverflow.com/questions/1520733/does-pl-sql-have-an-equivalent-stringtokenizer-to-javas 1 Does PL/SQL have an equivalent StringTokenizer to Java's? dacracot 2009-10-05T15:20:14Z 2009-10-06T18:34:56Z <p>I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to use that. Anyone know of a pl/sql implementation? Some useful alternative?</p> http://stackoverflow.com/questions/1511174/where-to-get-flash-flex-coding-examples-a-timeline-example-in-particular 0 Where to get Flash/Flex coding examples, a timeline example in particular? dacracot 2009-10-02T18:41:17Z 2009-10-02T19:17:16Z <p>I'm in the process of learning Flex, but I learn best by example. Where can I find open source examples of Flex applets? In particular, I'm trying to reproduce the functionality of the JavaScript based Simile timeline, so a timeline example would be sweet.</p> http://stackoverflow.com/questions/1455513/can-javafx-read-and-distinguish-between-repeating-key-value-pairs 1 Can JavaFX read and distinguish between repeating key value pairs? dacracot 2009-09-21T16:43:19Z 2009-09-21T18:42:53Z <p>There seems to be multiple ways to pass parameters to a JavaFX application.</p> <p>This will make the key value pairs for arg_# and their value accessible.</p> <pre><code>&lt;script src="http://dl.javafx.com/1.1/dtfx.js"&gt;&lt;/script&gt; &lt;script&gt; javafx( { archive: "JavaFXApplication.jar", width: 1014, height: 1024, code: "javafxapplication.TestMain", name: "JavaFXApplication" arg_1: "value1", arg_2: "value2" } ); &lt;/script&gt; </code></pre> <p>The code above is valid. The code below provides the exact same functionality.</p> <pre><code>&lt;script src="http://dl.javafx.com/1.1/dtfx.js"&gt;&lt;/script&gt; &lt;script&gt; javafx( { archive: "JavaFXApplication.jar", width: 1014, height: 1024, code: "javafxapplication.TestMain", name: "JavaFXApplication" }, { arg_1: "value1", arg_2: "value2" } ); &lt;/script&gt; </code></pre> <p>But what do I get for bracketing the pairs.</p> <p>Will this work?</p> <pre><code>&lt;script src="http://dl.javafx.com/1.1/dtfx.js"&gt;&lt;/script&gt; &lt;script&gt; javafx( { archive: "JavaFXApplication.jar", width: 1014, height: 1024, code: "javafxapplication.TestMain", name: "JavaFXApplication" }, { arg_1: "value1", arg_2: "value2" }, { arg_1: "value3", arg_2: "value4" } ); </code></pre> <p>Can I distinguish between the repeating key value pairs?</p> http://stackoverflow.com/questions/1455513/can-javafx-read-and-distinguish-between-repeating-key-value-pairs/1456116#1456116 0 Answer by dacracot for Can JavaFX read and distinguish between repeating key value pairs? dacracot 2009-09-21T18:42:53Z 2009-09-21T18:42:53Z <p>Looks like this is the logical way to do this...</p> <pre><code>package readparam; import javafx.stage.Stage; import javafx.scene.Scene; import javafx.scene.text.Text; Stage { width: 250 height: 250 scene: Scene { content: [ Text { x: 10 y: 30 content: "param: xml:{FX.getArgument("xml")}" } ] } } </code></pre> <p>.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&gt; &lt;title&gt;readParam&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;script src="http://dl.javafx.com/1.2/dtfx.js"&gt;&lt;/script&gt; &lt;script&gt; javafx( { archive: "readParam.jar", width: 300, height: 300, code: "readparam.Main", name: "readParam" }, { xml: "&lt;a&gt;&lt;b/&gt;&lt;c id='1'&gt;blah&lt;/c&gt;&lt;/a&gt;" } ); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1455074/can-flash-read-child-xml-from-the-embed-tag 0 Can flash read child XML from the embed tag? dacracot 2009-09-21T15:23:01Z 2009-09-21T15:31:57Z <p>Say I have an flash object embedded in XHTML like so...</p> <pre><code>&lt;object width="600" height="400"&gt; &lt;param name="movie" value="somefilename.swf"&gt; &lt;param name="data" value="somefilename.xml"&gt; &lt;embed src="somefilename.swf" width="600" height="400"&gt; &lt;/embed&gt; &lt;/object&gt; </code></pre> <p>I know that there are methods to read, parse, and use the data in "somfilename.xml". But, in my case the XHTML and the XML are generated dynamically. I would rather generate both in one step.</p> <p>So if I embed the XML like this...</p> <pre><code>&lt;object width="600" height="400"&gt; &lt;param name="movie" value="somefilename.swf"&gt; &lt;embed src="somefilename.swf" width="600" height="400"&gt; &lt;data&gt; &lt;something id="0" whatever="foo bar"/&gt; &lt;something id="1" whatever="uff da"/&gt; &lt;something id="2" whatever="1ee7"/&gt; &lt;/data&gt; &lt;/embed&gt; &lt;/object&gt; </code></pre> <p>Can I get to the "/data/something/@whatever" from within my flash app?</p> http://stackoverflow.com/questions/1411369/anyone-else-hate-frameworks 2 Anyone else hate frameworks? [closed] dacracot 2009-09-11T14:51:36Z 2009-09-11T19:08:34Z <p>I generally hate frameworks. In the short term (if you ignore learning curve) you gain productivity. In the long term, the box they draw around you both limits what you can implement and abstracts you from bugs that may be your doing or theirs.</p> <p>It is the same argument I have against an IDE. When the IDE builds your application, do you truly know what it included. Would you have this problem if you were willing to write the code for make or ant?</p> <p>I know all the typical name callings... you have "not invented here" syndrome.</p> <p>And yes, I do use frameworks, but I tend to choose things that provide algorithms rather than features. Reason being that these are much more defined and therefore more easily tested.</p> <p>I have even written and published a framework, but it designed to provide maximum flexibility.</p> http://stackoverflow.com/questions/1371119/mvc-pass-model-model-data-to-a-view-from-a-controller/1401705#1401705 1 Answer by dacracot for MVC: pass model / model data to a view from a controller? dacracot 2009-09-09T19:47:35Z 2009-09-09T19:47:35Z <p>a) pass the model to the view</p> <p>Otherwise the controller is manipulating the view via screening the model. This is what would happen in "b) pass the data of the model to the view". The b) option doesn't really even make sense in the pure MVC pattern. After all, the model IS the data. If the model is changed for consumption, a view has been applied, whether you choose to do it in the controller and pass it off as a controller function. What happens when you have a different view? Does the controller screen its data differently? You soon have two views for model, the controller sub-view and the view itself.</p> http://stackoverflow.com/questions/467499/oracles-adf-faces-better-than-generic-jsf-smells-funny-to-me 0 Oracle's ADF-Faces better than generic JSF? ...smells funny to me. dacracot 2009-01-21T23:29:54Z 2009-09-09T12:57:00Z <p>My developers would like to use Oracle's ADF-Faces rather than generic JSF. The advantages of "drag and drop" programming smells funny to me. Reminds me too much of the 4GL application environments of the early 90's that collapsed when you tried to extend outside of the box that they had drawn around you. Great productivity inside the box, no productivity outside of it.</p> http://stackoverflow.com/questions/1822838/can-i-flush-the-event-stack-within-firefox-using-javascript/1823020#1823020 Comment by dacracot on Can I flush the event stack within Firefox using Javascript? dacracot 2009-11-30T23:14:48Z 2009-11-30T23:14:48Z Thank you... event.stopPropagation(); ...was the key. http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user/1798282#1798282 Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T17:32:15Z 2009-11-25T17:32:15Z Awesome, thank you. http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user/1798319#1798319 Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T17:17:43Z 2009-11-25T17:17:43Z @James - This works on the first iteration only. Select a word, execute the script, and you get bolding. Select a second word, execute the script, and the text is totally munged. http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user/1798319#1798319 Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T16:55:22Z 2009-11-25T16:55:22Z Good try... but on the second and subsequent calls to tagText the range.startContainer.textContent will become smaller as tags are added and only the text between them is returned. http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user/1798282#1798282 Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T16:53:47Z 2009-11-25T16:53:47Z I agree, it is silly. But I was trying to somehow force a re-rendering of the HTML. http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user/1798298#1798298 Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T16:53:05Z 2009-11-25T16:53:05Z I want to wrap a specific word, not the entire div. And the library comment isn't helpful. http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T16:49:32Z 2009-11-25T16:49:32Z @Yuliy... That's is what I thought too. I'm not holding out any details. http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML? dacracot 2009-11-25T16:47:44Z 2009-11-25T16:47:44Z The last two lines of the javascript where I re-submit the innerHTML, actually has no affect. http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767860#1767860 Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x. dacracot 2009-11-20T16:45:33Z 2009-11-20T16:45:33Z Posted the exception. http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767860#1767860 Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x. dacracot 2009-11-20T16:33:52Z 2009-11-20T16:33:52Z It is the former... the logging mechanism which should be part of tomcat is being reported as missing. But I'm still not clear as to what you mean by &quot;dirty&quot;. I've only three jars in my app's WEB-INF/lib. My jar is &quot;clean&quot;. I certainly trust the saxon9.jar. Perhaps the oracle orai18n.jar is the issue? http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767860#1767860 Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x. dacracot 2009-11-20T16:18:02Z 2009-11-20T16:18:02Z I am having the problem you describe, the &quot;unexplainable&quot; ClassNotFoundException. My /WEB-INF/lib consists of orai18n.jar, saxon9.jar, and my own tox.jar. Honestly can't remember why orai18n is there. Perhaps this is a starting point. Also, what do you mean by a &quot;clean&quot; webapp? http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767325#1767325 Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x. dacracot 2009-11-19T23:59:01Z 2009-11-19T23:59:01Z Oh, and the reason to migrate... We are considering using Liferay which is dependent upon 6.0.x apparently, and we don't want to maintain two versions of Tomcat. http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767325#1767325 Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x. dacracot 2009-11-19T23:54:45Z 2009-11-19T23:54:45Z I looked at the &quot;Migration Guide&quot;... and to be honest... its lame. Only 270 words and nothing said. http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767216#1767216 Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x. dacracot 2009-11-19T23:24:39Z 2009-11-19T23:24:39Z My application does not include any jars which include javax.* or java.*. http://stackoverflow.com/questions/1724847/what-is-the-jdbc-equivalent-to-query-an-ibm-domino-data-store/1724891#1724891 Comment by dacracot on What is the JDBC equivalent to query an IBM Domino data store? dacracot 2009-11-12T20:22:59Z 2009-11-12T20:22:59Z I originally marked yours as the accepted answer, but now I am withdrawing that. While it is informative to know that Domino does not support JDBC, I was asking for what their equivalent technology is.