User dacracot - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T00:08:49Zhttp://stackoverflow.com/feeds/user/13930http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1822838/can-i-flush-the-event-stack-within-firefox-using-javascript1Can I flush the event stack within Firefox using Javascript?dacracot2009-11-30T22:24:48Z2009-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> <ul>
<li onclick="nada('1');"><a href="#1">1</a></li>
<li onclick="nada('2');"><a href="#2">2</a>
<ul>
<li onclick="nada('2.1');"><a href="#2.1">2.1</a></li>
<li onclick="nada('2.2');"><a href="#2.2">2.2</a></li>
<li onclick="nada('2.3');"><a href="#2.3">2.3</a></li>
</ul>
</li>
<li onclick="nada('4');"><a href="#4">4</a></li>
<li onclick="nada('5');"><a href="#5">5</a></li>
</ul>
</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#18228981Answer by dacracot for XML schema/format for representing a generic file format?dacracot2009-11-30T22:35:13Z2009-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-user1How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T16:31:02Z2009-11-25T17:22:54Z
<p>I'm allowing the user to select text contained within <code><div></div></code> and change it to bolded text. In other words from <code><div>this is some text</div></code> to <code><div>this is <b>some</b> text</div></code>. All is working except that when I change the div.innerHTML to <code>this is <b>some</b> text</code>, the <code><b>some</b></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><div id="blob">
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.
</div>
</code></pre>
<p>Javascript...</p>
<pre><code>tagText(document.getElementById("blob"),"<b>","</b>");
</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>&lt;b&gt;</code> rather than <code><b></code>.</p>
http://stackoverflow.com/questions/1791526/can-i-get-a-javascript-event-from-the-selection-of-text-outside-of-text-or-textar0Can I get a Javascript event from the selection of text outside of text or textarea?dacracot2009-11-24T17:11:51Z2009-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><textarea></code> and <code><input type="TEXT"></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-firefox0Non framework implementation of a hierarchical drop down for Firefox.dacracot2009-11-20T23:05:25Z2009-11-23T17:05:11Z
<p>I need a hierarchical drop down <code><select><option/></select></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#17845400Answer by dacracot for Non framework implementation of a hierarchical drop down for Firefox.dacracot2009-11-23T17:05:11Z2009-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-request0What is the query string of a BlazeDS request?dacracot2009-09-29T18:18:31Z2009-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#17738420Answer by dacracot for Non framework implementation of a hierarchical drop down for Firefox.dacracot2009-11-20T23:22:16Z2009-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#1410645Answer by dacracot for If your software development team is not following any design methodology, what is that called?dacracot2008-09-26T18:13:45Z2009-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-x1Migrating from Tomcat 5.5.x to 6.0.x.dacracot2009-11-19T21:08:08Z2009-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.<clinit>(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.<clinit>(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-store0What is the JDBC equivalent to query an IBM Domino data store?dacracot2009-11-12T19:42:46Z2009-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-javascript0Highlighted text popup widget... What to call it and where to find the Javascript?dacracot2009-11-13T22:50:51Z2009-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-container0Preferred OS for hosting Tomcat servlet container.dacracot2009-11-11T19:32:41Z2009-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-it0Need to use body onload event, but third party JavaScript library has hijacked it.dacracot2009-11-09T21:35:09Z2009-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><body onload="initComments('myID')">
</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#1599625Answer by dacracot for CSS/JavaScript Use Div to grey out section of pagedacracot2008-10-01T22:02:13Z2009-11-09T22:16:28Z<p>Add this to your HTML:</p>
<pre><code><div id="darkLayer" class="darkClass" display="none"></div>
</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-page0Can I embed a Silverlight applet in my JSP (java server page)?dacracot2009-11-05T20:26:11Z2009-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><object width="300" height="300"
data="data:application/x-silverlight-2,"
type="application/x-silverlight-2" >
<param name="source" value="SomeSilverlightApplet.xap"/>
</object>
</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-possibilities2How to increment a java String through all the possibilities?dacracot2008-12-04T21:02:24Z2009-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#16375911Answer by dacracot for Does Mac OS X have a better installation story than Windows?dacracot2009-10-28T14:26:45Z2009-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-java3Tool to visualize code flow in Java?dacracot2008-09-30T14:55:30Z2009-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-clause6Does java have a using clause?dacracot2008-09-26T18:52:28Z2009-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-language3Why is there no standardized wiki markup language?dacracot2009-09-18T21:30:04Z2009-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-formats0What is the complete list of Simile Exhibit column formats?dacracot2009-10-07T15:25:57Z2009-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-javas1Does PL/SQL have an equivalent StringTokenizer to Java's?dacracot2009-10-05T15:20:14Z2009-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-particular0Where to get Flash/Flex coding examples, a timeline example in particular?dacracot2009-10-02T18:41:17Z2009-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-pairs1Can JavaFX read and distinguish between repeating key value pairs?dacracot2009-09-21T16:43:19Z2009-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><script src="http://dl.javafx.com/1.1/dtfx.js"></script>
<script>
javafx(
{
archive: "JavaFXApplication.jar",
width: 1014,
height: 1024,
code: "javafxapplication.TestMain",
name: "JavaFXApplication"
arg_1: "value1",
arg_2: "value2"
}
);
</script>
</code></pre>
<p>The code above is valid. The code below provides the exact same functionality.</p>
<pre><code><script src="http://dl.javafx.com/1.1/dtfx.js"></script>
<script>
javafx(
{
archive: "JavaFXApplication.jar",
width: 1014,
height: 1024,
code: "javafxapplication.TestMain",
name: "JavaFXApplication"
},
{
arg_1: "value1",
arg_2: "value2"
}
);
</script>
</code></pre>
<p>But what do I get for bracketing the pairs.</p>
<p>Will this work?</p>
<pre><code><script src="http://dl.javafx.com/1.1/dtfx.js"></script>
<script>
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#14561160Answer by dacracot for Can JavaFX read and distinguish between repeating key value pairs?dacracot2009-09-21T18:42:53Z2009-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><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>readParam</title>
</head>
<body>
<script src="http://dl.javafx.com/1.2/dtfx.js"></script>
<script>
javafx(
{
archive: "readParam.jar",
width: 300,
height: 300,
code: "readparam.Main",
name: "readParam"
},
{
xml: "<a><b/><c id='1'>blah</c></a>"
}
);
</script>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1455074/can-flash-read-child-xml-from-the-embed-tag0Can flash read child XML from the embed tag?dacracot2009-09-21T15:23:01Z2009-09-21T15:31:57Z
<p>Say I have an flash object embedded in XHTML like so...</p>
<pre><code><object width="600" height="400">
<param name="movie" value="somefilename.swf">
<param name="data" value="somefilename.xml">
<embed src="somefilename.swf" width="600" height="400">
</embed>
</object>
</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><object width="600" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="600" height="400">
<data>
<something id="0" whatever="foo bar"/>
<something id="1" whatever="uff da"/>
<something id="2" whatever="1ee7"/>
</data>
</embed>
</object>
</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-frameworks2Anyone else hate frameworks? [closed]dacracot2009-09-11T14:51:36Z2009-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#14017051Answer by dacracot for MVC: pass model / model data to a view from a controller?dacracot2009-09-09T19:47:35Z2009-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-me0Oracle's ADF-Faces better than generic JSF? ...smells funny to me.dacracot2009-01-21T23:29:54Z2009-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#1823020Comment by dacracot on Can I flush the event stack within Firefox using Javascript?dacracot2009-11-30T23:14:48Z2009-11-30T23:14:48ZThank 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#1798282Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T17:32:15Z2009-11-25T17:32:15ZAwesome, 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#1798319Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T17:17:43Z2009-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#1798319Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T16:55:22Z2009-11-25T16:55:22ZGood 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#1798282Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T16:53:47Z2009-11-25T16:53:47ZI 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#1798298Comment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T16:53:05Z2009-11-25T16:53:05ZI 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-userComment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T16:49:32Z2009-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-userComment by dacracot on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T16:47:44Z2009-11-25T16:47:44ZThe 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#1767860Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x.dacracot2009-11-20T16:45:33Z2009-11-20T16:45:33ZPosted the exception.http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767860#1767860Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x.dacracot2009-11-20T16:33:52Z2009-11-20T16:33:52ZIt 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 "dirty". I've only three jars in my app's WEB-INF/lib. My jar is "clean". 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#1767860Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x.dacracot2009-11-20T16:18:02Z2009-11-20T16:18:02ZI am having the problem you describe, the "unexplainable" 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 "clean" webapp?http://stackoverflow.com/questions/1766560/migrating-from-tomcat-5-5-x-to-6-0-x/1767325#1767325Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x.dacracot2009-11-19T23:59:01Z2009-11-19T23:59:01ZOh, 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#1767325Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x.dacracot2009-11-19T23:54:45Z2009-11-19T23:54:45ZI looked at the "Migration Guide"... 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#1767216Comment by dacracot on Migrating from Tomcat 5.5.x to 6.0.x.dacracot2009-11-19T23:24:39Z2009-11-19T23:24:39ZMy 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#1724891Comment by dacracot on What is the JDBC equivalent to query an IBM Domino data store?dacracot2009-11-12T20:22:59Z2009-11-12T20:22:59ZI 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.