User AnSGri - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T06:01:41Z http://stackoverflow.com/feeds/user/1764 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/366502/do-you-write-interactive-console-applications 4 Do you write interactive console applications? AnSGri 2008-12-14T12:45:03Z 2009-11-24T03:10:43Z <p>I believe people still write a lot of console applications, including interactive ones, especially small utilities and administrative interfaces. Mostly for sake of simplicity.</p> <p>Do you write interactive console applications? Do you think it should be even easier than already is?</p> <p><strong>U:</strong> for clarity, let's define 'interactive console application' an any application running in terminal listening to user's commands. I.e. some command shell.</p> <p><em>Java and .NET suggestions especially welcome.</em></p> <p>I do have a very simple solution: <a href="http://cliche.sourceforge.net/" rel="nofollow">cliche.sourceforge.net</a>.</p> <pre> package asg.cliche.sample; import asg.cliche.Command; import asg.cliche.ShellFactory; import java.io.IOException; public class HelloWorld { @Command // One, public String hello() { return "Hello, World!"; } @Command // two, public int add(int a, int b) { return a + b; } public static void main(String[] args) throws IOException { ShellFactory.createConsoleShell("hello", "", new HelloWorld()) .commandLoop(); // and three. } } </pre> <p>Three additional lines of code aren't bad, I think...</p> http://stackoverflow.com/questions/1524272/how-to-deal-with-look-and-feel-differences-between-standard-dialogs-and-wpf 1 How to deal with look-and-feel differences between standard dialogs and WPF? AnSGri 2009-10-06T08:23:16Z 2009-10-06T08:30:43Z <p>Hello everybody, please help resolving one look-and-feel inconsistency issue in WPF.</p> <p>Look at the picture from <a href="http://msdn.microsoft.com/en-us/magazine/cc785480.aspx" rel="nofollow">MSDN Magazine article on Advanced WPF</a>:</p> <p><img src="http://i.msdn.microsoft.com/cc785480.fig08%28en-us%29.gif" alt="Different button appearance" /></p> <p><code>MessageBox.Show(message)</code> is called, and why the button on it looks different than buttons on the main window?</p> <p>The Open File standard WPF dialog has the same problem, only worse: on Vista it looks like old XP (if not win2k) dialog, when all other apps use new cool Vista dialogs.</p> <p>So,</p> <ul> <li>What explains such strange behavior of PresentationFramework?</li> <li>How can I make my app use default system dialogs, with system styles, that don't look like win2k?</li> </ul> http://stackoverflow.com/questions/445899/is-there-a-library-that-generates-uis-based-on-metadata-declarations-like-this 2 Is there a library that generates UIs based on metadata declarations like this>>? AnSGri 2009-01-15T07:06:56Z 2009-10-04T13:37:07Z <p>Hello,<br /> Do you know about a library that allows us to generate UI by just stating that it should be generated?</p> <p>I think there must be a person who have implemented a mechanism allowing us to transform code like this:</p> <pre><code>class Main { @Command int add(int a, int b) { return a+b; } } </code></pre> <p>into, say, a dialog with 2 text fields and a button? Or into a webform? You've got the idea, right?</p> <p>The type of UI and the language doesn't matter, if it allows us to simply say, "This should be a command" without those lots of XML files scattered all over the application.</p> <p>And, btw, what do you think about this kind of meta-programming?</p> http://stackoverflow.com/questions/454937/the-future-of-naked-objects-pattern-and-ui-auto-generation 4 The future of Naked Objects pattern (and UI auto-generation) AnSGri 2009-01-18T10:34:05Z 2009-10-04T13:36:24Z <p>I ask about the <a href="http://en.wikipedia.org/wiki/Naked_objects" rel="nofollow">pattern</a>, not <a href="http://nakedobjects.org" rel="nofollow">framework</a>. This is kind of follow-up to a question on <a href="http://stackoverflow.com/questions/445899/is-there-a-library-that-generates-uis-based-on-metadata-declarations-like-this">UI auto-generation</a>.</p> <ol> <li><p>Do you believe in the concept of UI auto-generation from metadata?</p></li> <li><p>What kind of problems can be approached this way?</p></li> </ol> <p>The question arose when I've created a <a href="http://cliche.sourceforge.net" rel="nofollow">small library</a> to support my student projects, which generates interactive CLI in runtime based on object's metadata. And I think CLI it generates is quite decent.</p> <p>On the other extreme is the <a href="http://nakedobjects.org" rel="nofollow">Naked Objects Framework</a>, which is rather universal, but UI it generates is horrible, IMO.</p> <p>It's clear, every problem is specific and needs specific UI, but maybe there are several classes of problems where auto-generation is acceptable?</p> http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme 1 How do you properly compute pairwise differences in Scheme? AnSGri 2009-03-12T14:46:16Z 2009-04-06T12:43:48Z <p>Hello,</p> <p>Given a list of numbers, say, <code>(1 3 6 10 0)</code>, how do you compute differences (x<sub>i</sub> - x<sub>i-1</sub>), provided that you have x<sub>-1</sub> = 0 ?</p> <p>(the result in this example should be <code>(1 2 3 4 -10)</code>)</p> <p>I've found this solution to be correct:</p> <pre> (define (pairwise-2 f init l) (first (foldl (λ (x acc-data) (let ([result-list (first acc-data)] [prev-x (second acc-data)]) (list (append result-list (list(f x prev-x))) x))) (list empty 0) l))) (pairwise-2 - 0 '(1 3 6 10 0)) ;; => (1 2 3 4 -10) </pre> <p>However, I think there should be more elegant though no less flexible solution. It's just ugly.</p> <p>I'm new to functional programming and would like to hear any suggestions on the code.</p> <p>Thanks.</p> http://stackoverflow.com/questions/381502/is-there-a-way-to-obtain-names-of-method-parameters-in-java 5 Is there a way to obtain names of method parameters in Java? AnSGri 2008-12-19T16:50:24Z 2009-03-30T22:33:32Z <p>Hello,<br /> I'm writing small and very <a href="http://en.wikipedia.org/wiki/DRY" rel="nofollow">DRY</a> framework, which heavily relies on metadata. I'd like to know if there is a way to obtain method parameter names, i.e. given some method</p> <pre><code>public void a(int myIntParam, String theString) { ... } </code></pre> <p>get the strings <code>"myIntParam"</code> and <code>"theString"</code>.</p> <p>I know I could annotate parameters, but that wouldn't be nice...</p> <pre><code>public void a( @Param("myIntParam") int myIntParam, @Param("theString") String theString ) { ... } </code></pre> http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/639253#639253 1 Answer by AnSGri for How do you properly compute pairwise differences in Scheme? AnSGri 2009-03-12T15:49:01Z 2009-03-12T15:49:01Z <p>After refining and adapting to PLT Scheme <a href="http://stackoverflow.com/users/20481/plinth">plinth</a>'s <a href="http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/639081#639081">code</a>, I think nearly-perfect solution would be: </p> <pre> (define (pairwise-apply f l0 l) (if (empty? l) '() (let ([l1 (first l)]) (cons (f l1 l0) (pairwise-apply f l1 (rest l)))))) </pre> http://stackoverflow.com/questions/199177/what-are-the-good-free-programming-text-editors-for-windows/622094#622094 1 Answer by AnSGri for What are the good free programming text editors for Windows? AnSGri 2009-03-07T16:35:38Z 2009-03-07T16:35:38Z <p><a href="http://ourcomments.org/Emacs/EmacsW32.html" rel="nofollow">One True Editor</a></p> http://stackoverflow.com/questions/515996/java-for-intermediate-net-developer/516270#516270 0 Answer by AnSGri for Java for intermediate .NET Developer AnSGri 2009-02-05T15:09:18Z 2009-02-05T15:09:18Z <p>Whatever your level is, <a href="http://www.ibm.com/developerworks/library/j-jsf1/" rel="nofollow">JSF for Nonbelievers</a> is the best introduction to JSP/JSF.</p> http://stackoverflow.com/questions/477502/what-is-good-online-documentation/477973#477973 1 Answer by AnSGri for What is Good Online Documentation? AnSGri 2009-01-25T17:42:55Z 2009-01-25T17:42:55Z <p><em>Real</em> code examples, as well as minimal.</p> <p>Hello-world&ndash;style examples are great, but we need to know all the caveats that should be taken into account in the production code, i.e. security implications, thread unsafety, etc.</p> http://stackoverflow.com/questions/469799/what-are-the-appropriate-uses-for-ms-access/469834#469834 0 Answer by AnSGri for What are the appropriate uses for MS Access? AnSGri 2009-01-22T16:26:42Z 2009-01-22T16:26:42Z <p>I think Access is somewhat different from other Office apps in a way that to be <em>somehow</em> productive with it you should know a lot of things, i.e. database basics.</p> <p>In my limited experience I've never met a person who <em>really</em> knows how to use Word or Excel effectively, who knows how to use every obscure feature. So most people use Office when they need something quick and dirty but decent-looking.</p> http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti/460185#460185 6 Answer by AnSGri for Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions? AnSGri 2009-01-20T05:14:41Z 2009-01-20T05:14:41Z <p>As Dmitriy <a href="http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti#458860">pointed out</a>, developers don't know SQL. More precisely, the majority <em>know</em> SQL, but don't <em>understand</em> it and definitely don't like, so they tend to search for the magic bullet, creating the demand for things like Linq to make the illusion (hm, abstraction) that they don't use anything different than their beloved classes.</p> <p>That's very bad, as <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">the law of leaky abstractions</a> always holds true.</p> <p>Some ORM solutions are definite good (e.g. JPA/Hibernate), not because using them you don't have to worry about SQL. In fact, to use JPA effectively you need very deep understanding of the DB in general, querying abilities in particular. The good point is that they <em>make the machine do the boring work</em>, to the point where it autogenerates entire database from scratch.</p> <p>Linq to SQL, as I think, doesn't solve real problem. It's kind of other presentation, nothing more. It might be good, though it overcomplicates the already complex language. On the other hand, Linq to Objects is very interesting concept, because it's kind of sql-querying the collections.</p> http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458873#458873 0 Answer by AnSGri for What are the things Java got right? AnSGri 2009-01-19T19:40:42Z 2009-01-19T19:40:42Z <p>The most important thing after GC is reflection. It isn't new, but sould be everywhere from now on.</p> http://stackoverflow.com/questions/366453/best-practices-for-debugging/366471#366471 5 Answer by AnSGri for Best practices for debugging AnSGri 2008-12-14T12:15:57Z 2008-12-14T12:15:57Z <p>One very best practice is not diving into debugger immediately but look at the code and <em>think hard</em> for some time.</p> http://stackoverflow.com/questions/366225/where-is-ada-used-apart-from-safety-critical-software/366468#366468 1 Answer by AnSGri for Where is Ada used (apart from safety-critical software)? AnSGri 2008-12-14T12:14:05Z 2008-12-14T12:14:05Z <p>I don't know for sure, but, having read a lot about Ada, I considered it to be perfectly appropriate for every physics-related computational/automation tasks, because of all these compile-time and runtime checks (one tasty thing is that you can make two incompatible floating-point types, e.g. Length and Mass).</p> http://stackoverflow.com/questions/366295/is-programming-for-the-elite-or-can-everybody-learn-to-program/366464#366464 0 Answer by AnSGri for Is programming for the elite or can everybody learn to program AnSGri 2008-12-14T12:07:44Z 2008-12-14T12:07:44Z <p>The statement that some people just can't program makes sense to me. However, today's programming languages are mostly imperative ones (Java, C, whatever you name). And there are completely different programming — functional programming. These may be more appropriate for some people, I think — and these people will be Great Developers, because so few today realize the potential of functional programming.</p> <p>I can't explain better because I haven't got the functional paradigm yet...</p> http://stackoverflow.com/questions/256910/jstl-foreach-tag-problems-with-enumeration-and-with-understanding-how-it-should 1 JSTL forEach tag: problems with enumeration, and with understanding how it should work AnSGri 2008-11-02T14:15:20Z 2008-11-02T16:35:26Z <p>Hello,<br /> I've experienced rather strange behavior of JSTL forEach tag.</p> <p>I have some bean called SessionBean:</p> <pre><code>public class SessionBean { private Collection&lt;MyObject&gt; objects; public Collection&lt;MyObject&gt; getObjects() {return objects;} ... } </code></pre> <p>And a simple JSP page like that:</p> <pre><code>&lt;%@page contentType="text/html"%&gt; &lt;%@page pageEncoding="UTF-8"%&gt; &lt;%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%&gt; &lt;%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%&gt; &lt;%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %&gt; &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt; &lt;body&gt; &lt;f:view&gt; &lt;h:form&gt; &lt;c:forEach var="myObject" items="#{SessionBean.objects}"&gt; &lt;h:outputText value="#{myObject}" /&gt; &lt;br /&gt; &lt;/c:forEach&gt; &lt;/h:form&gt; &lt;/f:view&gt; &lt;/body&gt; </code></pre> <p>And, it doesn't work. Exeption thrown is</p> <pre> javax.servlet.jsp.JspTagException: Don't know how to iterate over supplied "items" in &lt;forEach&gt; at org.apache.taglibs.standard.tag.common.core.ForEachSupport.toForEachIterator(ForEachSupport.java:255) at org.apache.taglibs.standard.tag.common.core.ForEachSupport.supportedTypeForEachIterator(ForEachSupport.java:219) .... </pre> <p><em>Why?</em><br /> And then I change <code>items="#{SessionBean.objects}"</code> to items=<code>"${SessionBean.objects}"</code>, and there's no exception. Except for MyObjects aren't printed.</p> <p>Then, I make the same change to <code>&lt;h:outputText value="#{myObject}" /&gt;</code>, and it's invalid value for this attribute.</p> <p>Finally, replacing JSF <code>outputText</code> tag with just <code>${myObject}</code> works as expected.</p> <p>Could somebody explain, what happens here on each phase, please?</p> <p><strong>U:</strong> SessionBean is managed by JSF, and surely was created, for it performs some actions in the header.</p> <p><strong>RESOLUTION:</strong> The problem proved to be due to incompatibility between JSTL and JSF in J2EE 1.4. Switching to J2EE 5 made the first variant work just fine.</p> <p>Thanks!</p> http://stackoverflow.com/questions/221277/jtidy-node-findbody-how-to-use/221402#221402 0 Answer by AnSGri for JTidy Node.findBody() — How to use? AnSGri 2008-10-21T10:30:38Z 2008-10-21T10:30:38Z <p>I found there's <em>much</em> simpler method to extract the body:</p> <pre> tidy = new Tidy(); tidy.setXHTML(true); <b>tidy.setPrintBodyOnly(true);</b> </pre> <p>And then use tidy on the Reader-Writer pair.</p> <p>Simple as it should be.</p> http://stackoverflow.com/questions/221277/jtidy-node-findbody-how-to-use 0 JTidy Node.findBody() — How to use? AnSGri 2008-10-21T09:18:52Z 2008-10-21T10:30:38Z <p>Hello,<br /> I'm trying to do XHTML DOM parsing with JTidy, and it seems to be rather counterintuitive task. In particular, there's a method to parse HTML:</p> <pre><code>Node Tidy.parse(Reader, Writer) </code></pre> <p>And to get the &lt;body /&gt; of that Node, I assume, I should use</p> <pre><code>Node Node.findBody(TagTable) </code></pre> <p>Where should I get an instance of that TagTable? (Constructor is protected, and I haven't found a factory to produce it.)</p> <p>I use JTidy 8.0-SNAPSHOT.</p> http://stackoverflow.com/questions/194349/what-is-the-proper-way-to-store-apps-conf-data-in-java 3 What is the proper way to store app's conf data in Java? AnSGri 2008-10-11T17:29:38Z 2008-10-18T02:45:28Z <p>Hello, colleagues,<br /> where do you store <em>user-specific</em> and <em>machine-specific</em> <strong>runtime</strong> configuration data for J2SE application?</p> <p>(For example, <em>C:\Users\USERNAME\AppData\Roaming\</em> on Windows and <em>/home/username</em> on Unix)</p> <p>How do you get these locations in the filesystem in platform-independent way?</p> <p>Thanks for your advice!</p> http://stackoverflow.com/questions/138999/how-to-output-html-from-jsp-block 0 How to output HTML from JSP <%! ... %> block? AnSGri 2008-09-26T12:03:10Z 2008-09-26T17:04:19Z <p>I just started learning JSP technology, and came across a wall.</p> <p><em>How do you output HTML from a method in &lt;%! ... %> JSP declaration block?</em></p> <p>This doesn't work:</p> <pre><code>&lt;%! void someOutput() { out.println("Some Output"); } %&gt; ... &lt;% someOutput(); %&gt; </code></pre> <p>Server says there's no &ldquo;out&rdquo;.</p> <p><strong>U:</strong> I do know how to rewrite code with this method returning a string, but is there a way to do this inside &lt;%! void () { } %> ? Though it may be non-optimal, it's still interesting.</p> http://stackoverflow.com/questions/70762/what-is-the-license-for-unlicensed-material 3 What is the license for unlicensed material? AnSGri 2008-09-16T09:38:30Z 2008-09-16T15:42:12Z <p>Suppose I've found a &ldquo;text&rdquo; somewhere in open access (say, on public network share). I have no means to contact the author, I even don't know who is the author.</p> <p>What can I legally do with such &ldquo;text&rdquo;?</p> <p><strong>Update:</strong> I am not going to publish that &ldquo;text&rdquo;, but rather learn from it myself.</p> <p><strong>Update:</strong> So, if I ever see an anonymous code, article, whatever, shouldn't I even open it, because otherwise I'd copy its contents to my brain?</p> http://stackoverflow.com/questions/71491/how-do-you-grab-a-text-from-webpage-java 1 How do you grab a text from webpage (Java)? AnSGri 2008-09-16T11:48:33Z 2008-09-16T13:38:40Z <p>I'm planning to write a simple J2SE application to aggregate information from multiple web sources.</p> <p>The most difficult part, I think, is extraction of meaningful information from web pages, if it isn't available as RSS or Atom feeds. For example, I might want to extract a list of questions from stackoverflow, but I absolutely don't need that huge tag cloud or navbar.</p> <p>What technique/library would you advice?</p> <p><strong>Updates/Remarks</strong></p> <ul> <li>Speed doesn't matter — as long as it can parse about 5MB of HTML in less than 10 minutes.</li> <li>It sould be really simple.</li> </ul> http://stackoverflow.com/questions/2658/version-control-getting-started/14729#14729 0 Answer by AnSGri for Version Control. Getting started... AnSGri 2008-08-18T14:47:18Z 2008-08-18T14:47:18Z <p>Just use TortoiseSVN, and you can live even without knowing actual Subversion commands... But that's bad. Luckily there will always be a “great opportunity” to learn them by heart — when your priceless repository first gets corrupted.</p> <p>Yes, it happens.</p> http://stackoverflow.com/questions/1524272/how-to-deal-with-look-and-feel-differences-between-standard-dialogs-and-wpf/1524286#1524286 Comment by AnSGri on How to deal with look-and-feel differences between standard dialogs and WPF? AnSGri 2009-10-06T08:36:42Z 2009-10-06T08:36:42Z In fact, this three-part series answers all my questions. Thanks! http://stackoverflow.com/questions/381502/is-there-a-way-to-obtain-names-of-method-parameters-in-java/699302#699302 Comment by AnSGri on Is there a way to obtain names of method parameters in Java? AnSGri 2009-03-31T18:50:25Z 2009-03-31T18:50:25Z Very good idea! I'll definitely convert all those @Param to single @Params. http://stackoverflow.com/questions/661758/when-will-you-switch-to-ie8/661812#661812 Comment by AnSGri on When will you switch to IE8? AnSGri 2009-03-20T07:32:24Z 2009-03-20T07:32:24Z Strange.. It seems IE8 finally got all the neat features of both Firefox and Chrome, except performance, but with those colored tabs. http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/639081#639081 Comment by AnSGri on How do you properly compute pairwise differences in Scheme? AnSGri 2009-03-13T17:13:22Z 2009-03-13T17:13:22Z Surprisingly, the code works, if you remove ((atom? list) list) http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/642996#642996 Comment by AnSGri on How do you properly compute pairwise differences in Scheme? AnSGri 2009-03-13T17:12:07Z 2009-03-13T17:12:07Z Yes, this is the obvious solution, but I want an effective approach: the code will be called several thousand times. http://stackoverflow.com/questions/386854/how-do-you-type-lisp-efficiently-with-so-many-parentheses/387950#387950 Comment by AnSGri on How do you type lisp efficiently, with so many parentheses? AnSGri 2009-02-06T14:35:35Z 2009-02-06T14:35:35Z I heard this thing is already implemented in Scheme. http://stackoverflow.com/questions/256985/who-is-the-community-user/256986#256986 Comment by AnSGri on Who is the community user? AnSGri 2009-01-22T19:38:34Z 2009-01-22T19:38:34Z &quot;Source&quot; link is broken. http://stackoverflow.com/questions/467532/would-rich-text-help-comment-code/467552#467552 Comment by AnSGri on Would rich-text help comment code? AnSGri 2009-01-22T11:26:18Z 2009-01-22T11:26:18Z XHTML is also too hard to write---my brain doesn't want to resolve &lt;s and &gt;s in math formulae. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/156731#156731 Comment by AnSGri on What's your favorite "programmer" cartoon? AnSGri 2009-01-18T11:18:20Z 2009-01-18T11:18:20Z What a sad tendency. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406788#406788 Comment by AnSGri on What's your most controversial programming opinion? AnSGri 2009-01-16T15:43:46Z 2009-01-16T15:43:46Z I agree that every student should learn C, but in school Pascal is probably better---as it has much better(clear?) structure. http://stackoverflow.com/questions/445899/is-there-a-library-that-generates-uis-based-on-metadata-declarations-like-this/445970#445970 Comment by AnSGri on Is there a library that generates UIs based on metadata declarations like this>>? AnSGri 2009-01-15T13:34:33Z 2009-01-15T13:34:33Z Thanks, it seems to be exactly the thing I'm looking for. http://stackoverflow.com/questions/381502/is-there-a-way-to-obtain-names-of-method-parameters-in-java/381556#381556 Comment by AnSGri on Is there a way to obtain names of method parameters in Java? AnSGri 2008-12-19T17:22:59Z 2008-12-19T17:22:59Z Very interesting thing.. But I don't want to introduce any dependences, and the way it operates is rather complicated. http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1727#1727 Comment by AnSGri on What is the single most influential book every programmer should read? AnSGri 2008-12-14T11:56:11Z 2008-12-14T11:56:11Z The book every engeneer should read, not only programmer! http://stackoverflow.com/questions/256910/jstl-foreach-tag-problems-with-enumeration-and-with-understanding-how-it-should/256914#256914 Comment by AnSGri on JSTL forEach tag: problems with enumeration, and with understanding how it should work AnSGri 2008-11-02T14:29:56Z 2008-11-02T14:29:56Z Thanks, updated the question that SessionBean was created. http://stackoverflow.com/questions/138999/how-to-output-html-from-jsp-block/139018#139018 Comment by AnSGri on How to output HTML from JSP <%! ... %> block? AnSGri 2008-09-26T16:48:32Z 2008-09-26T16:48:32Z Thank you for your nice answer, though it isn't what I'm looking for.