The 'magical' function (a beautiful one-liner I never even though of) is great for most JavaScript code, but there is an exception I noticed going through my 400K of code...
If the Javascript contains an anonymous function, the regex will fail... Here's a function that contains multiple anonymous (non-named) functions:
function InitializeTree (objTree, strRootID, strRootLabel, strRootURL,
+ strRootImage) {
var objNewNode;
objTree.Target = null;
objTree.className = "TreeView";
objNewNode = AddTreeItem (objTree, "", strRootID, strRootLabel, st
+rRootURL, strRootImage, true, "");
// Set up the event handling.
with (objTree) {
onmouseup = function () { mouseupTreeItem(this); };
onmousedown = function () { mousedownTreeItem(this); };
onmouseover = function () { mouseoverTreeItem(this); };
onmouseout = function () { mouseoutTreeItem(this);};
onclick = function () { onclickTreeItem(this); };
ondblclick = function () { dblclickTreeItem(this); };
onresize = function () { onresizeTree(this); };
onselectstart = function () { window.event.returnValue=false;
+};
}
return (0);
}
For all other cases, I think it works fine... Again, I don't know where to start when a regex (or split, or whatever) that will handle this, but I feel we're almost there...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.