User Jos&#233; Leal - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:06:34Z http://stackoverflow.com/feeds/user/37190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/288867/how-to-code-a-javascript-modal-popup-to-replace-ajax/289028#289028 2 Answer by José Leal for How to code a JavaScript modal popup (to replace Ajax)? José Leal 2008-11-14T02:00:32Z 2009-11-19T21:54:09Z <p>I can provide you the code. Do your modifications as necessary, OK?</p> <p>Page JavaScript: </p> <pre><code>function myPop() { this.square = null; this.overdiv = null; this.popOut = function(msgtxt) { //filter:alpha(opacity=25);-moz-opacity:.25;opacity:.25; this.overdiv = document.createElement("div"); this.overdiv.className = "overdiv"; this.square = document.createElement("div"); this.square.className = "square"; this.square.Code = this; var msg = document.createElement("div"); msg.className = "msg"; msg.innerHTML = msgtxt; this.square.appendChild(msg); var closebtn = document.createElement("button"); closebtn.onclick = function() { this.parentNode.Code.popIn(); } closebtn.innerHTML = "Close"; this.square.appendChild(closebtn); document.body.appendChild(this.overdiv); document.body.appendChild(this.square); } this.popIn = function() { if (this.square != null) { document.body.removeChild(this.square); this.square = null; } if (this.overdiv != null) { document.body.removeChild(this.overdiv); this.overdiv = null; } } } </code></pre> <p>Now the HTML page, using the JavaScript file: </p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="NAME OF THE PAGE!.js"&gt;&lt;/script&gt; &lt;style&gt; div.overdiv { filter: alpha(opacity=75); -moz-opacity: .75; opacity: .75; background-color: #c0c0c0; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; } div.square { position: absolute; top: 200px; left: 200px; background-color: Menu; border: #f9f9f9; height: 200px; width: 300px; } div.square div.msg { color: #3e6bc2; font-size: 15px; padding: 15px; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div style="background-color: red; width: 200px; height: 300px; padding: 20px; margin: 20px;"&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; var pop = new myPop(); pop.popOut("Jose leal"); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Hope that this can help.</p> http://stackoverflow.com/questions/503381/how-do-online-text-editors-work 7 How do online text editors work? José Leal 2009-02-02T14:30:37Z 2009-10-22T18:59:13Z <p>I am trying to develop an Online editor (like FCKEditor/etc) but I have no idea how they work. I know that the WYSIWYG ones have Javascript and IFrames, but how do they actually work?</p> <p>I'm especially curious about having a real-time preview of what's being typed into the editor.</p> http://stackoverflow.com/questions/935127/how-to-access-parent-iframe-from-javascript 0 How to access parent Iframe from javascript José Leal 2009-06-01T14:43:07Z 2009-06-01T17:15:54Z <p>Well, I have an IFrame, which calls a same domain page. My problem is that I want to access some information from this parent Iframe from this called page (from javascript). How can I access this Iframe?</p> <p>Details: There are severals Iframes just like this one, that can have the same page loaded, because I am programming a windows environment. I intend to close this Iframe, that's why I need to know which I should close from inside him. I have an array keeping references to these Iframes</p> <p>EDIT: There iframes are generated dynamically</p> http://stackoverflow.com/questions/927807/how-can-i-detect-a-sql-tables-existence-in-java/927814#927814 -3 Answer by José Leal for How can I detect a SQL table's existence in Java? José Leal 2009-05-29T19:49:50Z 2009-05-29T19:49:50Z <p>Maybe catch the exception if a simple query to it fail?</p> http://stackoverflow.com/questions/911023/how-do-you-associate-each-collections-item-to-another-ones/911083#911083 0 Answer by José Leal for How do you associate each Collection's item to another one's? José Leal 2009-05-26T14:45:04Z 2009-05-26T14:45:04Z <p>Well, since I don't know if you will need to search for both of them having only one, the HashMap won't work.</p> <p>I would create a class that receives a Pair.. sort of:</p> <pre><code>private static class Pair&lt;K, T&gt; { private K one; private T two; public Pair(K one, T two) { this.one = one; this.two = two; } /** * @return the one */ public K getOne() { return one; } /** * @return the two */ public T getTwo() { return two; } } </code></pre> <p>And create a List with them.</p> http://stackoverflow.com/questions/906530/using-json-to-return-a-java-map/906552#906552 0 Answer by José Leal for Using JSON to return a Java Map José Leal 2009-05-25T12:31:28Z 2009-05-25T12:31:28Z <pre><code>String myJson = "{ "; for (String key : myMap.keySet()) myJson += key + " : " + "'" + myMap.get(key) + "',"; myJson += " } "; </code></pre> <p>I leave the last comma because it wont give us many problems. The javascript just ignores it.</p> <p>Well, this respond your question but I guess that won't help much. Try posting a more specific one.</p> http://stackoverflow.com/questions/906503/how-to-select-just-the-top-element-text/906519#906519 0 Answer by José Leal for how to select just the top element text? José Leal 2009-05-25T12:18:34Z 2009-05-25T12:18:34Z <p>I don't know jQuery, but just to pseudo-respond your question, you can do this by:</p> <pre><code>var elem = document.getElementById('yourid'); // or document.getElementsByTagName('span')[0]; var text = elem.innerHTML; text = text.substr(0, (text.indexOf('&lt;') &gt; -1 ? text.indexOf('&lt;') : text.length)); </code></pre> http://stackoverflow.com/questions/900241/closing-a-popup-window-in-firefox-2-within-an-ajax-response-handler/900315#900315 0 Answer by José Leal for Closing a popup window in Firefox 2 within an AJAX response handler José Leal 2009-05-22T22:43:23Z 2009-05-22T22:43:23Z <p>I would not use a regular Window for this. I would use an Iframe inside a div, simulating a window, having total control over it.</p> http://stackoverflow.com/questions/887296/submitting-multiple-forms-with-javascript/887320#887320 -1 Answer by José Leal for submitting multiple forms with javascript José Leal 2009-05-20T11:05:15Z 2009-05-20T11:16:36Z <p>Build several links like</p> <pre><code>&lt;form action="act1"&gt; &lt;a href="#" onclick="goForm(this.parentNode); return false;"&gt;Play 1&lt;/a&gt; &lt;/form&gt; &lt;form action="act2"&gt; &lt;a href="#" onclick="goForm(this.parentNode); return false;"&gt;Play 2&lt;/a&gt; &lt;/form&gt; &lt;form action="act3"&gt; &lt;a href="#" onclick="goForm(this.parentNode); return false;"&gt;Play 3&lt;/a&gt; &lt;/form&gt; &lt;form action="act4"&gt; &lt;a href="#" onclick="goForm(this.parentNode); return false;"&gt;Play 4&lt;/a&gt; &lt;/form&gt; &lt;form action="act5"&gt; &lt;a href="#" onclick="goForm(this.parentNode); return false;"&gt;Play 5&lt;/a&gt; &lt;/form&gt; </code></pre> <p>And make a js:</p> <pre><code>function goForm(frm) { if (frm != null) frm.submit(); } </code></pre> <p>There you go! =´p</p> http://stackoverflow.com/questions/887316/how-do-i-get-clientx-and-clienty-to-work-inside-my-drag-event-handler-on-firefo/887357#887357 1 Answer by José Leal for How do I get clientX and clientY to work inside my "drag" event handler on Firefox? José Leal 2009-05-20T11:14:56Z 2009-05-20T11:14:56Z <p>The drag event in HTML 5 is not fully functional in todays browsers. To simulate a drag n drop situation you should use: </p> <ol> <li>Add a onmousedown event, setting a var true.</li> <li>Add a onmouseup event, setting that var false.</li> <li>Add a onmousemove event, checking if that var is true, and if it is, move your div according to the coordinates.</li> </ol> <p>This always worked for me. If you face any problems, get in touch again, I can provide some examples.</p> <p>good luck!</p> http://stackoverflow.com/questions/887307/getting-href-value-of-from-a-tag/887337#887337 0 Answer by José Leal for getting href value of from <a> tag José Leal 2009-05-20T11:10:38Z 2009-05-20T11:10:38Z <p>You can use: </p> <pre><code>var txtLink = document.getElementById('txtLink'); var a = txtLink.getElementsByTagName('a'); if (a != null &amp;&amp; a.length &gt; 0) { var setLink = txtLink.parentNode.getElementsByTagName('a'); if (setLink != null &amp;&amp; setLink.length &gt; 0) { setLink[0].href = a[0].href; } } </code></pre> <p>I think that this should work..</p> http://stackoverflow.com/questions/880512/prevent-text-selection-after-double-click/880536#880536 1 Answer by José Leal for Prevent text selection after double click José Leal 2009-05-19T01:06:24Z 2009-05-19T01:06:24Z <p>or, on mozilla: </p> <pre><code>document.body.onselectstart = function() { return false; } // Or any html object </code></pre> <p>On IE,</p> <pre><code>document.body.onmousedown = function() { return false; } // valid for any html object as well </code></pre> http://stackoverflow.com/questions/880490/jquery-submitted-values-for-checkboxes-are-undefined/880525#880525 1 Answer by José Leal for JQuery submitted values for checkboxes are undefined José Leal 2009-05-19T01:02:39Z 2009-05-19T01:02:39Z <p>Actually both..</p> <p>the checkboxes don't have value, so if you try to alert() their values it will lead to "undefined", but if you are facing this on alerting the checkbox itself you are probably doing something wrong.</p> <p>Setting their values to true, won't lead to anything, as @Soviut said, most properties repeat their names on setting. So your input will get like: </p> <pre><code>&lt;input type="checkbox" checked="checked" value="1" name="myCheck" /&gt; </code></pre> <p>So, try the above and give us some feedback =´p</p> http://stackoverflow.com/questions/866589/array-merge-replace/866605#866605 2 Answer by José Leal for Array Merge/Replace José Leal 2009-05-15T00:59:42Z 2009-05-15T15:23:13Z <p>Well, <a href="http://br2.php.net/array%5Fmerge" rel="nofollow">array merge</a> wont work because it has numeric keys, we should build a new function for this..</p> <pre><code>function combine($a1, $a2) foreach ($a2 as $k =&gt; $v) { $a1[$k] = $v; } return $a1; } </code></pre> <p>There you go.</p> http://stackoverflow.com/questions/866619/how-to-force-ie-to-reload-javascript/866635#866635 0 Answer by José Leal for How to force IE to reload javascript? José Leal 2009-05-15T01:16:25Z 2009-05-15T01:16:25Z <p>In javascript I think that it is not possible, because modern browsers have a <a href="http://www.devarticles.com/c/a/JavaScript/JavaScript-Security/" rel="nofollow">policy on security</a> in javascripts.. and clearing the cache is a very violating one.</p> <p>You can try to add </p> <pre><code>&lt;META HTTP-EQUIV="Pragma" CONTENT="no-cache"&gt; </code></pre> <p>In your header, but you will have performance loss.</p> http://stackoverflow.com/questions/866522/transform-array/866530#866530 5 Answer by José Leal for Transform Array José Leal 2009-05-15T00:27:12Z 2009-05-15T00:27:12Z <pre><code>$result = array(); foreach($array as $v) { $result[$v['year']] = $v['max']; } </code></pre> <p>There you go.</p> http://stackoverflow.com/questions/866482/beginner-javascript-working-with-json-and-objects-in-javascript/866502#866502 4 Answer by José Leal for Beginner Javascript: Working with JSON and Objects in Javascript José Leal 2009-05-15T00:14:23Z 2009-05-15T00:14:23Z <p>Simple, if I got it,</p> <pre><code>var json = { "Title": "School Bag", "Image": "/images/school-bag.jpg" } function Product(json) { this.img = document.createElement('img'); this.img.alt = json.Title; this.img.src = json.Image; this.toHTMLImage = function() { return this.img; } } var obj = new Product(json); // this is your object =D </code></pre> http://stackoverflow.com/questions/858765/how-do-i-store-a-binary-file-in-an-sql-database/858780#858780 0 Answer by José Leal for How do I store a binary file in an sql database? José Leal 2009-05-13T15:55:25Z 2009-05-13T15:55:25Z <p><a href="http://www.tech-faq.com/blob.shtml" rel="nofollow">Blob fields</a></p> http://stackoverflow.com/questions/849710/error-in-velocity-and-log4j 0 Error in velocity and log4J José Leal 2009-05-11T19:41:03Z 2009-05-11T19:50:50Z <p>Hello,</p> <p>I built a webapp that works perfectly fine in my localhost (tomcat). But when I tried to deploy, velocity crashes in init(), leaving me with this strange stack trace here (sorry for the size):</p> <pre> <code> ERROR [main] (VelocityConfigurator.java:62) - Error initializing Velocity! org.apache.velocity.exception.VelocityException: Failed to initialize an instance of org.apache.velocity.runtime.log.Log4JLogChute with the current runtime configuration. at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:206) at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:255) at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:795) at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:250) at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:589) at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:229) at org.apache.velocity.app.Velocity.init(Velocity.java:107) at com.webcodei.velociraptor.velocity.VelocityConfigurator.initVelocity(VelocityConfigurator.java:57) at com.webcodei.velociraptor.velocity.VelocityConfigurator.configure(VelocityConfigurator.java:42) at com.webcodei.velociraptor.VelociListener.contextInitialized(VelociListener.java:26) at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3827) at org.apache.catalina.core.StandardContext.start(StandardContext.java:4336) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:761) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:741) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525) at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:626) at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553) at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488) at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138) at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1023) at org.apache.catalina.core.StandardHost.start(StandardHost.java:719) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1015) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443) at org.apache.catalina.core.StandardService.start(StandardService.java:448) at org.apache.catalina.core.StandardServer.start(StandardServer.java:710) at org.apache.catalina.startup.Catalina.start(Catalina.java:552) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413) Caused by: java.lang.RuntimeException: Error configuring Log4JLogChute : at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at org.apache.velocity.util.ExceptionUtils.createWithCause(ExceptionUtils.java:67) at org.apache.velocity.util.ExceptionUtils.createRuntimeException(ExceptionUtils.java:45) at org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:133) at org.apache.velocity.runtime.log.Log4JLogChute.init(Log4JLogChute.java:85) at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:157) ... 33 more Caused by: java.io.FileNotFoundException: velocity.log (Permission denied) at java.io.FileOutputStream.openAppend(Native Method) at java.io.FileOutputStream.(FileOutputStream.java:177) at java.io.FileOutputStream.(FileOutputStream.java:102) at org.apache.log4j.FileAppender.setFile(FileAppender.java:290) at org.apache.log4j.RollingFileAppender.setFile(RollingFileAppender.java:194) at org.apache.log4j.FileAppender.(FileAppender.java:109) at org.apache.log4j.RollingFileAppender.(RollingFileAppender.java:72) at org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:118) ... 35 more ERROR [main] (VelocityConfigurator.java:63) - java.lang.RuntimeException: Error configuring Log4JLogChute : org.apache.velocity.exception.VelocityException: Failed to initialize an instance of org.apache.velocity.runtime.log.Log4JLogChute with the current runtime configuration. at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:206) at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:255) at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:795) at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:250) at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:589) at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:229) at org.apache.velocity.app.Velocity.init(Velocity.java:107) at com.webcodei.velociraptor.velocity.VelocityConfigurator.initVelocity(VelocityConfigurator.java:57) at com.webcodei.velociraptor.velocity.VelocityConfigurator.configure(VelocityConfigurator.java:42) at com.webcodei.velociraptor.VelociListener.contextInitialized(VelociListener.java:26) at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3827) at org.apache.catalina.core.StandardContext.start(StandardContext.java:4336) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:761) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:741) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525) at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:626) at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553) at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488) at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138) at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1023) at org.apache.catalina.core.StandardHost.start(StandardHost.java:719) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1015) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443) at org.apache.catalina.core.StandardService.start(StandardService.java:448) at org.apache.catalina.core.StandardServer.start(StandardServer.java:710) at org.apache.catalina.startup.Catalina.start(Catalina.java:552) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413) Caused by: java.lang.RuntimeException: Error configuring Log4JLogChute : at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at org.apache.velocity.util.ExceptionUtils.createWithCause(ExceptionUtils.java:67) at org.apache.velocity.util.ExceptionUtils.createRuntimeException(ExceptionUtils.java:45) at org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:133) at org.apache.velocity.runtime.log.Log4JLogChute.init(Log4JLogChute.java:85) at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:157) ... 33 more Caused by: java.io.FileNotFoundException: velocity.log (Permission denied) at java.io.FileOutputStream.openAppend(Native Method) at java.io.FileOutputStream.(FileOutputStream.java:177) at java.io.FileOutputStream.(FileOutputStream.java:102) at org.apache.log4j.FileAppender.setFile(FileAppender.java:290) at org.apache.log4j.RollingFileAppender.setFile(RollingFileAppender.java:194) at org.apache.log4j.FileAppender.(FileAppender.java:109) at org.apache.log4j.RollingFileAppender.(RollingFileAppender.java:72) at org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:118) ... 35 more ERROR [main] (VelocityConfigurator.java:64) - Failed to initialize an instance of org.apache.velocity.runtime.log.Log4JLogChute with the current runtime configuration. org.apache.velocity.exception.VelocityException: Failed to initialize an instance of org.apache.velocity.runtime.log.Log4JLogChute with the current runtime configuration. at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:206) at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:255) at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:795) at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:250) at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:589) at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:229) at org.apache.velocity.app.Velocity.init(Velocity.java:107) at com.webcodei.velociraptor.velocity.VelocityConfigurator.initVelocity(VelocityConfigurator.java:57) at com.webcodei.velociraptor.velocity.VelocityConfigurator.configure(VelocityConfigurator.java:42) at com.webcodei.velociraptor.VelociListener.contextInitialized(VelociListener.java:26) at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3827) at org.apache.catalina.core.StandardContext.start(StandardContext.java:4336) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:761) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:741) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525) at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:626) at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553) at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488) at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138) at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1023) at org.apache.catalina.core.StandardHost.start(StandardHost.java:719) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1015) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443) at org.apache.catalina.core.StandardService.start(StandardService.java:448) at org.apache.catalina.core.StandardServer.start(StandardServer.java:710) at org.apache.catalina.startup.Catalina.start(Catalina.java:552) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413) Caused by: java.lang.RuntimeException: Error configuring Log4JLogChute : at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at org.apache.velocity.util.ExceptionUtils.createWithCause(ExceptionUtils.java:67) at org.apache.velocity.util.ExceptionUtils.createRuntimeException(ExceptionUtils.java:45) at org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:133) at org.apache.velocity.runtime.log.Log4JLogChute.init(Log4JLogChute.java:85) at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:157) ... 33 more Caused by: java.io.FileNotFoundException: velocity.log (Permission denied) at java.io.FileOutputStream.openAppend(Native Method) at java.io.FileOutputStream.(FileOutputStream.java:177) at java.io.FileOutputStream.(FileOutputStream.java:102) at org.apache.log4j.FileAppender.setFile(FileAppender.java:290) at org.apache.log4j.RollingFileAppender.setFile(RollingFileAppender.java:194) at org.apache.log4j.FileAppender.(FileAppender.java:109) at org.apache.log4j.RollingFileAppender.(RollingFileAppender.java:72) at org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:118) ... 35 more </code></pre> <p>Does anyone knows the workaround? Or at least understood the error? I've done some googling but no clues.. only this <a href="http://www.nabble.com/org.apache.velocity.runtime.log.Log4JLogChute-initialization-failed-td22099662.html" rel="nofollow">page</a> facing the same problem but no solution..</p> http://stackoverflow.com/questions/827361/pushing-every-html-element-out-of-the-way-regardless-of-their-positioning/827373#827373 0 Answer by José Leal for Pushing every HTML element out of the way regardless of their positioning José Leal 2009-05-05T23:23:57Z 2009-05-05T23:23:57Z <p>You must continue using the positioning of your widged absolute, and the put a div for the content and add a margin-bottom equal or more the height of your widged.</p> <p>That would work, I guess.</p> http://stackoverflow.com/questions/386383/is-java-incomplete 10 Is Java incomplete? José Leal 2008-12-22T14:38:15Z 2009-04-15T13:35:18Z <p>Why do I always feel that Java never worried about growing its own API (the one that comes with it)?</p> <p>I've got several examples.. </p> <ol> <li>File upload. Servlet API does not handle it. </li> <li>Easy XML reading </li> <li>Connection pooling </li> <li>HttpClient support</li> <li>Good logging </li> <li>Encoders </li> </ol> <p>And so goes on... several lacks that we have to look for third party APIs and its requirements and etc.</p> <p><b>Why?</b> I came from C#, and I am feeling a bit disappointed. Do Java developers have an explanation?</p> http://stackoverflow.com/questions/294699/strip-images-css-and-js-from-servlet-mapping 1 Strip Images, CSS and JS from servlet-mapping José Leal 2008-11-17T01:33:59Z 2009-02-18T23:41:27Z <p>I am using the following servlet-mapping in my <code>web.xml</code> file:</p> <pre><code>&lt;servlet&gt; &lt;servlet-name&gt;PostController&lt;/servlet-name&gt; &lt;servlet-class&gt;com.webcodei.controller.PostController&lt;/servlet-class&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;PostController&lt;/servlet-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; </code></pre> <p>To do some kind of a search. ex: <pre><code> <a href="http://www.myweb.com/The" rel="nofollow">http://www.myweb.com/The</a> search string here </code></pre></p> <p>But the problem is that CSS, JS and Images are treated like a search request. </p> <p><b>There are any patterns that strip out *.css, *.js, *.gif and etc, so the requests don't need to pass through my controller?</b></p> <p>Thank you so much, bye bye!</p> http://stackoverflow.com/questions/546433/regular-expression-to-match-outer-brackets/546469#546469 0 Answer by José Leal for Regular Expression to match outer brackets José Leal 2009-02-13T15:57:42Z 2009-02-13T15:57:42Z <p>try this:</p> <pre><code>(?&lt;=(?:[^(]|^))(.*)(?=[^)]|$) </code></pre> <p>group 1</p> http://stackoverflow.com/questions/536515/regexp-pattern-matching-ip-and-useragent-in-an-huge-file/536545#536545 0 Answer by José Leal for Regexp pattern matching IP and UserAgent in an Huge File José Leal 2009-02-11T12:22:38Z 2009-02-11T12:22:38Z <p>You can use:</p> <pre><code>^ip=((?:[0-9]{1,3}\.){3}[0-9]{1,3})$ </code></pre> <p>And</p> <pre><code>^userAgent=(.*)$ </code></pre> <p>Get the group 1 for both and you will have the desired data.</p> http://stackoverflow.com/questions/535980/how-did-you-get-your-first-programming-job/536521#536521 1 Answer by José Leal for How did you get your first programming job? José Leal 2009-02-11T12:15:19Z 2009-02-11T12:15:19Z <p>I got my first job when I entered the first year of CS.</p> <p>It was at my father's company, working with help desk and overall structure of the network. After 6 months I sent a CV to a building administration company and got the job to work with Delphi/ASP and C#.</p> <p>After another 6 months I sent a few CV and got a job in a real small local software house, where I learned a lot! Worked there with PHP, C#, Mysql. </p> <p>Since then I waited more 6 months and started my own business, now I build only web-interface systems by my own, and growing my financial part.</p> <p><b>Conclusion</b>: Do not settle down with your regular job. Fools are the ones who are satisfied. Search always for the best. Be the best (to bad that i'm not =/ ).</p> http://stackoverflow.com/questions/516364/database-framework-developing 0 Database framework developing José Leal 2009-02-05T15:28:47Z 2009-02-05T15:51:43Z <p>Hello everyone,</p> <p>I'm developing (another) java web framework for personal use, and in addition to that I also want to develop somekind of persistence framework.</p> <p>I have already developed and engine that in order to access the table, you must only extend a class and create your fields with the same type and name of those in the table. Ex:</p> <pre><code>private int id; private String nome; </code></pre> <p>So you only need now to build the query and execute. The engine put the values on the right fields.</p> <p>Recently I've had a quite good experience with Django, wich in order to update, create and filter the table you just need to call .save(), .create(field1=field, field2=213) and, .filter(filterfield=value).</p> <p>I want to build this to, but I am having some trouble, because the extending class would actually have to write more, fact that I don't want to force. I have had the idea to the extending class write an enum implementing an Interface. So the super class get those fields, along with a private HashMap (the key is the enum) and keep the values, so the client just calls: </p> <pre><code>String nome = Usuarios.get(Usuarios.fields.name); </code></pre> <p>To retrieve the value. </p> <pre><code>Usuarios.update(new Pair(Usuarios.fields.name, "José Leal"), new Pair(Usuarios.fields.sobrenome, "Domingues")); </code></pre> <p>To update and so on.</p> <p>Anyone have a better idea? I also use velocity framework, so I would like my field to be accessible by its getter. </p> <p>ps: I know the existence of hibernate and etc.</p> http://stackoverflow.com/questions/509931/do-you-have-any-recommended-plugins-for-netbeans 5 Do you have any recommended plugins for Netbeans? José Leal 2009-02-04T03:10:25Z 2009-02-04T15:11:11Z <p>This is a copy of the question : <a href="http://stackoverflow.com/questions/2826/do-you-have-any-recommended-plugins-for-eclipse">http://stackoverflow.com/questions/2826/do-you-have-any-recommended-plugins-for-eclipse</a></p> <p>But now is for netbeans (I'm not a eclipse lover. CTRL+TAB does not change pages.)</p> <p>Please, I'm very curious.</p> http://stackoverflow.com/questions/511309/regular-expression-to-find-a-line-containing-certain-characters-and-remove-that-l/511331#511331 0 Answer by José Leal for Regular expression to find a line containing certain characters and remove that line José Leal 2009-02-04T13:24:08Z 2009-02-04T13:26:50Z <p>Simple as: </p> <pre><code>^:: </code></pre> http://stackoverflow.com/questions/509931/do-you-have-any-recommended-plugins-for-netbeans/511188#511188 0 Answer by José Leal for Do you have any recommended plugins for Netbeans? José Leal 2009-02-04T12:42:33Z 2009-02-04T12:42:33Z <p>Groovy plugin is great to! <a href="http://groovy.codehaus.org/NetBeans+Plugin" rel="nofollow">http://groovy.codehaus.org/NetBeans+Plugin</a></p> http://stackoverflow.com/questions/504771/disable-html-element-in-the-client-side-javascript/504821#504821 0 Answer by José Leal for Disable HTML element in the client side (javascript) José Leal 2009-02-02T20:46:19Z 2009-02-02T20:46:19Z <p>What about a div over the disabled div?</p> <pre><code>&lt;style&gt; div.disableall { filter:alpha(opacity=25);-moz-opacity:.25;opacity:.25; background-color: black; height: 100%; width: 100%; position: absolute; top: 0px; left: 0px; z-index: 500; /* just preventing */ } &lt;/style&gt; </code></pre> <p>And add to the div that you want to disable:</p> <pre><code>&lt;script type="text/javascript"&gt; var disable = document.createElement("div"); disable.className = 'disableall'; document.getElementById('mydiv').appendChild(disable); &lt;/script&gt; </code></pre> <p>This, i guess, should work.</p> <p>ps: You should fix the z-index according to your needs</p> http://stackoverflow.com/questions/1010120/maximum-number-of-groups-in-java-regex Comment by José Leal on Maximum number of groups in Java Regex José Leal 2009-06-18T00:47:31Z 2009-06-18T00:47:31Z is there a maximum? http://stackoverflow.com/questions/935127/how-to-access-parent-iframe-from-javascript/935483#935483 Comment by José Leal on How to access parent Iframe from javascript José Leal 2009-06-01T22:11:12Z 2009-06-01T22:11:12Z but I would have to mind this in every request. http://stackoverflow.com/questions/935127/how-to-access-parent-iframe-from-javascript/935414#935414 Comment by José Leal on How to access parent Iframe from javascript José Leal 2009-06-01T17:14:43Z 2009-06-01T17:14:43Z @Aaron, exactly! http://stackoverflow.com/questions/935127/how-to-access-parent-iframe-from-javascript/935483#935483 Comment by José Leal on How to access parent Iframe from javascript José Leal 2009-06-01T17:14:18Z 2009-06-01T17:14:18Z Yes, this would be the most logical solution, but sometimes I need to change the src of the iframe.. and passing this hash or GET parameter each request is not good.. http://stackoverflow.com/questions/935127/how-to-access-parent-iframe-from-javascript/935143#935143 Comment by José Leal on How to access parent Iframe from javascript José Leal 2009-06-01T14:53:19Z 2009-06-01T14:53:19Z Kevin, the problem is to KNOW the id. I have several Iframes, and I want to access them from the code inside http://stackoverflow.com/questions/927807/how-can-i-detect-a-sql-tables-existence-in-java/927814#927814 Comment by José Leal on How can I detect a SQL table's existence in Java? José Leal 2009-05-29T20:07:48Z 2009-05-29T20:07:48Z =D aeuhae, not if the query is &quot;select * from table&quot; and you catch only a SQLException http://stackoverflow.com/questions/920549/unknown-directory-shortcut-file-or-mount/920574#920574 Comment by José Leal on Unknown Directory Shortcut File or Mount José Leal 2009-05-28T12:24:56Z 2009-05-28T12:24:56Z I don't think that this is a serverfault question neither http://stackoverflow.com/questions/920549/unknown-directory-shortcut-file-or-mount Comment by José Leal on Unknown Directory Shortcut File or Mount José Leal 2009-05-28T12:21:29Z 2009-05-28T12:21:29Z not programming related http://stackoverflow.com/questions/911104/return-generic-type-from-generic-function Comment by José Leal on return generic type from generic function José Leal 2009-05-26T14:56:19Z 2009-05-26T14:56:19Z Interface is not a reserved word? http://stackoverflow.com/questions/911023/how-do-you-associate-each-collections-item-to-another-ones/911043#911043 Comment by José Leal on How do you associate each Collection's item to another one's? José Leal 2009-05-26T14:46:18Z 2009-05-26T14:46:18Z Please, always use the interface, never the class.. giving: Map map = new HashMap(); The raw form is discouraged to http://stackoverflow.com/questions/906486/javascript-can-i-programmatically-invoke-a-onclick-event-from-a-anchor-tag-wh/906529#906529 Comment by José Leal on Javascript: Can I programmatically invoke a onClick() event from a Anchor tag (while keeping 'this' reference in onclick function) José Leal 2009-05-25T12:25:04Z 2009-05-25T12:25:04Z evnt.onclick() would actualy work as well http://stackoverflow.com/questions/887296/submitting-multiple-forms-with-javascript/887320#887320 Comment by José Leal on submitting multiple forms with javascript José Leal 2009-05-20T11:16:20Z 2009-05-20T11:16:20Z Hmm, you are right, will fix http://stackoverflow.com/questions/880490/jquery-submitted-values-for-checkboxes-are-undefined/880525#880525 Comment by José Leal on JQuery submitted values for checkboxes are undefined José Leal 2009-05-19T01:19:15Z 2009-05-19T01:19:15Z Wait, so use the radio, instead of checkboxes! &lt;input type=&quot;radio&quot; value=&quot;1&quot; name=&quot;myName&quot; /&gt;, just use the same name for all of them changing their values, and check their content by document.getElementsByName('myName').value http://stackoverflow.com/questions/880490/jquery-submitted-values-for-checkboxes-are-undefined/880525#880525 Comment by José Leal on JQuery submitted values for checkboxes are undefined José Leal 2009-05-19T01:17:21Z 2009-05-19T01:17:21Z Ok, put the entire page in your question, so we can help you. http://stackoverflow.com/questions/880490/jquery-submitted-values-for-checkboxes-are-undefined/880525#880525 Comment by José Leal on JQuery submitted values for checkboxes are undefined José Leal 2009-05-19T01:14:13Z 2009-05-19T01:14:13Z Wait, why are you using checkboxes if you only need to get 1 value at the time? If you want to check if they are checked or not, use document.getElementById('yourCheckboxId').checked which will give you a bool value if yes or no