Tomalak

37,324
reputation
3316 views

Registered User

name Tomalak
member for 1 year
seen 15 mins ago
website
location Frankfurt am Main, Germany
age 31

I know a bit about SQL, Regular Expressions, XSLT, ColdFusion, JavaScript, scripting in general.

23m
answered How do you remove illegal characters from an xml file?
3h
comment javascript regExp compatibility in IE
I'm sorry I couldn't help you better.
17h
comment Filtering xsl:value-of on attributes
Note that this is probably less efficient, but for small input documents it is academic.
19h
accepted Filtering xsl:value-of on attributes
1d
comment What can you do in ColdFusion in a single line?
I believe that IIf() requires the use of DE().
1d
comment XSL transformation and special XML entities escaping
It does not affect my answer, though. ;-) I can be more explicit: You probably can't get your desired result, and in any case - you should not care how single or double quotes are rendered in the XML file.
1d
answered XSL transformation and special XML entities escaping
1d
comment XPATH 1.0 : match not empty elements
I suggest reducing the question tags to "xpath" only. The others aren't really helpful. :)
1d
accepted XPATH 1.0 : match not empty elements
1d
answered XPATH 1.0 : match not empty elements
1d
accepted Generic Xml Document manipulation
1d
comment PHP SimpleXML with xpath
+1. One more up-vote and your first earned badge on Stack Overflow is [Self-Learner]. This would put you in a rather exclusive circle - currently, only 262 of more than 117,000 users have it. ;)
1d
revised PHP SimpleXML with xpath
format
1d
answered Removing elements based on child elements XSLT
1d
answered Filtering xsl:value-of on attributes
1d
comment XSL Ignore Empty Children Recursively
+1. P.S.: See @santiiiii's answer, he validly points out a few minor glitches in yours.
1d
comment Flattening a deeply nested structure in XSLT
Nice work. :) I would add a check for count(ancestor::section) < 7 to the second template to prevent the creation of <h7> elements.
1d
comment XPath Find full HTML element ID from partial ID
Be aware that this can fail. You might want to use //*[starts-with(@id, 'f41_txt')]/@id instead.
1d
accepted Clicking on a link that contains a certain string in VBS
1d
comment When is JavaScript’s eval() not evil?
Well, use HTTPS, then. OTOH: man-in-the-middle is not the typical attack scenario for the garden variety web app, whereas i.e. cross-site-scripting is.
1d
comment javascript regExp compatibility in IE
I'm on IE8, JScript 5.7. The IE version should not play a part in this, unless I'm much mistaken. All IE JavaScript handling is taken care of by the JScript engine installed on your system (correct me if I'm wrong). If it works in a .js file, it should work in IE.
2d
accepted MySQL join problem
2d
comment How Can I get the URL parameter & Value in Coldfusion?
This is the only clan way to do it. +1
2d
comment How Can I get the URL parameter & Value in Coldfusion?
This is wrong, since it will not URL-decode the value.
2d
comment How Can I get the URL parameter & Value in Coldfusion?
This is wrong, since it will not URL-decode the value.
2d
comment javascript regExp compatibility in IE
What JScript version do you have? If less than 5.6, update to the current version and see if this helps.
Dec
14
answered XSLT Global count of grouped items
Dec
14
answered Are these two styles of xpath logical ‘and’ equivalent?
Dec
14
comment javascript regExp compatibility in IE
I tried your test script in JScript on Windows XP (IE6 uses JScript 5.6) and it correctly returns 0 (=false) for the first and -1 (=true) for the two other tests. Can you save it to a .js file and try on its own?
Dec
14
answered Using XSL include statements with variables
Dec
14
answered javascript regExp compatibility in IE
Dec
14
comment XSLT - Accessing Key’s by index - For example, in Muenchian Grouping
Your second XPath sure does not make much sense, and you should not use it. To find the first city (or, more specifically, the city of the first property), use /listings/property[1]/city.
Dec
14
comment XSLT not working properly
@GrayWizardx: This is of course possible. This would also generate the output document in the respective default namespace.
Dec
14
comment What does this Apache FOP error mean?
@Ayrad: For example, it could be an fo:block with a hard-coded id in an xsl:for-each loop or an xsl:template that gets applied more than once.
Dec
14
revised XSLT not working properly
line breaks
Dec
12
accepted Multi grep to 1 grep? Should i change it and how do i?
Dec
12
revised MySQL join problem
deleted 29 characters in body
Dec
12
answered MySQL join problem
Dec
11
comment What is a good templating engine?
@cxfx: What a nonsensical statement.
Dec
11
revised How to pass the value to a user-defined function in XSLT
format, tags; edited title
Dec
11
revised XSL: How to test if the current node is a descendent of another node.
added 36 characters in body
Dec
11
answered XSL: How to test if the current node is a descendent of another node.
Dec
11
comment XSL: How to test if the current node is a descendent of another node.
You should point out that the is operator is not available in XPath 1.0, yet XPath 1.0 is by far the more common implementation.
Dec
11
revised How to generate a text file using XSLT
removed urgency reminder
Dec
11
revised Grouping problem in XSLT
format, tags
Dec
10
awarded  Good Answer
Dec
10
accepted C# parse XML Schema (SimpleType) question
Dec
10
answered C# parse XML Schema (SimpleType) question
Dec
10
revised C# parse XML Schema (SimpleType) question
title, tags, wording
Dec
10
comment How to transform xml and keep newlines?
@kaze: I guess you have some reading to do on HTML in general and CSS in particular. This question actually has nothing to do with XML or XSLT. You just happen to use them for creating sub-optimal HTML, they don't cause your problem.