I have not seen or heard any official word but look at http://www.adobe.com/products/coldfusion/ and see for yourself. If you have not done so, go grab your copy and try out the new stuff. It is well worth it.
Dan Denett’s talk questions some of western culture’s fundamental assumptions
by Razuna on July 29, 2007 in Uncategorized
This is a talk from Dan Dennett that he gave in 2002 during the TED conference. His words and explanations are very much still valid today. when you watch this then pay close attention to the last 5 minutes of his talk.
In the last part of his speech he questions and at the same time appreciates the technology that helps spread the news. Point is that we are all individuals and take upon a news, religion, philosophy and alike in different way. I guess, this is what humans beings with their free minds are made off.
Write strict HTML code with ColdFusion 8 and using AJAX
by Razuna on July 19, 2007 in CFML
The other day I was struggling with a combination of a form with AJAX parts (using the new cfdiv) in ColdFusion 8. After going trough the code a couple of times I could not see what was wrong and that drove me almost nuts. Here is the code I was having problems with (trimmed for this post):
<table>
<cfform name=”mycfform1″ >
<cfdiv bind=”url:test.cfm” id=”test” tagname=”div”>
</cfdiv>
<cfinput type=”text” name=”text2″/>
<cfinput type=”submit” name=”submit”>
</table>
</cfform>
and this is the test.cfm content:
<input type=”text” name=”test” />
The problem here is that the value of the text field within the <cfdiv> are not submitted at all. How come, you might ask? Apparently it is such that you will need to write “proper” HTML code when you use ColdFusion 8 along with the new AJAX tags. Thus, the above code is male formed, since the nested tags are not closing properly. Actually, just a little thing, but ending </table> and </cfform> are not correctly placed. The working code should be:
<table>
<cfform name=”mycfform1″ >
<cfdiv bind=”url:test.cfm” id=”test” tagname=”div”>
</cfdiv>
<cfinput type=”text” name=”text2″/>
<cfinput type=”submit” name=”submit”>
</cfform> <—–
</table> <—–
I have talked to Ashwin Mathew (from Adobe) about this and here is what he had to say on this issue:
“The table and form tags are not nested properly. When the browser gets this bit of code, it tries to reform it to make a valid HTML DOM tree for rendering, and, depending on the browser implementation, will open and close extra table and form tags to get a valid HTML DOM.
As a result, the form may no longer have any child input fields, since they may have been nested in another form tag inserted by the browser. Unfortunately, I’m not sure that there is much that can be done about this from the CF side of things – developers will have to be aware that they must nest tags properly.”
On the question why this is more strict in ColdFusion 8 then it is/was in ColdFusion 7 he said that “CF7 is easier on it since there was no AJAX magic being weaved in between. With AJAX functionality you do need to be a little more aware of the structure of your HTML”.
Oracle Database 11g: The Top New Features for DBAs and Developers
by Razuna on July 14, 2007 in Oracle
There is a great series of “The Top New Features for DBAs and Developers” over at Oracles Website from Arup Nanda. This is a must read for everybody who has to do something with the Oracle Database.
Follow us on Twitter
Follow @razunahq on Twitter
Find
Recent Posts
- Coming up in Razuna 1.4.8: Add assets from your custom path
- Coming up in Razuna 1.4.8: Export & Import of Metadata
- Razuna 1.4.7 is here – Labels and other improvements
- Introducing Labels in Razuna – Open Source Digital Asset Management System
- Become an influencer of Razuna and get access to early releases
- Razuna 1.4.6 and Razuna Desktop 1.2.1 released
- Razuna 1.4.6 Release Candidate 3 is now available
- VMWare Open BlueDragon image made available May 11, 2008
- Installing the latest JRE 6 on CentOS 5 February 12, 2008
- Apple forgot the – disable Trackpad settings – for the new MacBooks and a workaround November 10, 2008
- Small Guide for eMail Security and Encryption January 5, 2008
- Deploy Razuna in a virtualized environment or in the cloud December 9, 2009
- Coming up in Razuna 1.4.8: Add assets from your custom path December 31, 2011
- Coming up in Razuna 1.4.8: Export & Import of Metadata December 30, 2011
- Razuna 1.4.7 is here – Labels and other improvements November 17, 2011
- Introducing Labels in Razuna – Open Source Digital Asset Management System November 7, 2011
- Become an influencer of Razuna and get access to early releases October 18, 2011
-
Peter Bell: Hi Nital, Thanks for keeping this conversatio...
-
SixSigns: Here is a follow up for getting this to work on II...
-
Neel: Hey, really great. Thanks a lot. ...
-
my author: Hi RossThank you for your comment. Do you hapen to...

