Page 1 of 2

phpadsnew

Posted: Tue Dec 06, 2005 5:30 pm
by Luke
Anybody use phpadsnew?
I need to know where in the source code I can change onMouseOver to onmouseover so it doesn't cause my site to be non-xhtml complient.

Posted: Tue Dec 06, 2005 5:37 pm
by Burrito
do an extended find (case sensitive) for onMouseOver

Posted: Tue Dec 06, 2005 5:54 pm
by Luke
how do I do that?

Posted: Tue Dec 06, 2005 6:46 pm
by Burrito
that depends on what editor you use.

when you do a search, look for an option to "search directory" which will search all files / and subfolders for the terms you specify.

Posted: Tue Dec 06, 2005 6:52 pm
by Luke
cool thank you

Posted: Tue Dec 06, 2005 7:48 pm
by m3mn0n
I *LOVE* that feature in an editor :)

Posted: Tue Dec 06, 2005 7:52 pm
by Burrito
Sami wrote:I *LOVE* that feature in an editor :)
Indeed, it's a "must-have" in my book...

Posted: Tue Dec 06, 2005 8:22 pm
by Luke
Burrito wrote:
Sami wrote:I *LOVE* that feature in an editor :)
Indeed, it's a "must-have" in my book...
crimson editor's got it :)

Posted: Tue Dec 06, 2005 9:02 pm
by Ambush Commander
Or you could write a PHP script that does it for you. ;)

Posted: Wed Dec 07, 2005 11:22 am
by Luke
Ambush Commander wrote:Or you could write a PHP script that does it for you. ;)
kinda too tired.

Posted: Wed Dec 07, 2005 11:24 am
by m3mn0n
No need to reinvent the wheel. :wink:

Posted: Wed Dec 07, 2005 3:29 pm
by Ambush Commander
Well, I was thinking: since PHP is the ideal language for smart refactoring of code. For instance, you use PHP's tokenizer functions to do smart function renames globally across a project. I don't know if any free editors can do that.

Posted: Thu Dec 08, 2005 3:37 am
by Grim...
Textpad let's you write RegEx's :)

Posted: Thu Dec 08, 2005 10:06 pm
by trukfixer
SSH in , on unix command line

cd /var/www/html/location/phpadsnew
grep -ir onmouseover ./*.

simple :)

gotta love *nix

Posted: Fri Dec 09, 2005 2:11 am
by Luke
fixed that problem... now I need to close img tags... smurf it.