Skip to main content

ColdFusion to Sails.js Conversion : Find/Replace Tips/Tricks

Use your IDE of choice, I prefer Sublime Text because it uses the Perl Compatible Regular Expressions (PCRE) engine from the Boost library and I love me some regex. I will show examples for .js syntax, but if you need this in .ejs format just add <% to the beginning and %> to the end like in the first example below.  I always have the case sensitive button off in Sublime, so if you are using a different editor make sure you use the proper ignore case flag or you may get mixed results. These examples are meant to speed up the conversion, some additional refactoring may also be necessary.

CFIF:
Find :</cfif>
Replace while in js files : }
Replace while in ejs files : <% } %>
Find : <cfif(.*?)>
Replace while in js files : if($1){
Replace while in ejs files : <% if($1) { %>
Find : <cfelse>
Replace while in js files : } else {
Replace while in ejs files : <% } else { %>
CFSET:
Find : <cfset(.*?)>
Replace while in js files : $1;
Replace while in ejs files : <% $1 %>
LEN(TRIM()):
Find : Len\(Trim\((.*?)\)\)
Replace while in js files : $1.trim().length
EQ Decision Operator:
Find : eq
Replace : ==
& String concatenation:
Find : &
Replace : +
AND Boolean Operator :
Find : AND
Replace : &&
OR Boolean Operator:
Find : OR
Replace : ||
CFOUTPUT
Find : </?cfoutput>
Replace : < --left empty intentionally, yes you can get rid of all of those cfoutput tags!
CFSAVECONTENT
Find : </?cfsavecontent.*?>
Replace : < --left empty intentionally, yes you can get rid of all of those cfsavecontent tags!
STRUCTKEYEXISTS
Find : StructKeyExists\((.*?), "(.*?)"\)
Replace : typeof $1.$2 != 'undefined'
view raw gistfile1.txt hosted with ❤ by GitHub


more to come...



Comments

Popular posts from this blog

Dyson AM09 Fan & Heater H2 Error

No idea what the actual error is and I couldn't find anything useful on the web, so hopefully this will help someone else. I assumed that the H2 error meant that something was dirty, clogged up or that it was overheating because it was dirty or clogged up because the error only showed up when it was in Heater mode. The heater would run for about 30 seconds, then it would show the error and switch over to the high speed fan , I assume to try to blow out the dust. I proceeded to open it up to give it a deep clean because the Dyson instructions for cleaning this thing are ridiculous and don't help at all. Gently wiping down the outside and vacuuming the intake holes....really Dyson, really?! I used cotton swabs and 91% alcohol to clean everything I could get to, starting at the base (in hindsight, this part may not be necessary at all). Then I got to the top of the device where the actual air comes out of and noticed that there was a lot of build up on the heater coils. I could...

ColdFusion Invalid Image Format Solution

For those who have gotten the following error: "java.awt.color.CMMException: Invalid image format" and tried the solutions posted here with no avail. We are going to use the power of Java's JAI (Java Advanced Imaging) library to tackle this one. <cfscript> //path to image imagePath = "pathToImage"; //create java file object, passing in path to image imageFile = createObject("java","java.io.File").init(imagePath); //create a FileSeekableStream, passing in the image file we created fss = createObject("java","com.sun.media.jai.codec.FileSeekableStream").init(imageFile); //create ParameterBlock object and initialize it (call constructor) pb = createObject("java","java.awt.image.renderable.ParameterBlock").init(); //pass in FileSeekableStream pb.add(fss); //create JAI object that will ultimately do the magic we need JAI = createObject("java","javax.media.jai.JAI"); //...

Fixing DNS issue on MacBook Pro

This may be an issue with 10.6(Snow Leopard) altogether or just with the MacBook Pros, but every once in a while the internal DNS settings get hung up or crap out or just stop working! You're connected to the internet, you've checked the connections, you've got on other devices , you've asked co-workers if they are having issues with the internet, you've pulled your hair out, banged your head against the wall, you get my drift. Whatever you do or try your $2000 MacBook Pro will not do one simple thing CONNECT TO THE INTERNET!! Hopefully this solution will work for some of you and save the hair on your head. Run these commands from terminal(copy command from sudo to plist): sudo launchctl unload /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist THEN sudo launchctl load /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist and bingo bango everything is just peachy again!