Help cleaning up my code...

2007-10-23 Thread Jessica Kennedy
hi, I posted a while ago about an outofmemoryerror: java heap space problem. Anyway, it's looking like the only way to fix this problem is to re-write some programming. The program I wrote is for displaying a tree structure of people in a database based on the upline person. IE: i recruit

RE: Help cleaning up my code...

2007-10-23 Thread Andy Matthews
- From: Jessica Kennedy [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 23, 2007 1:11 PM To: CF-Talk Subject: Help cleaning up my code... hi, I posted a while ago about an outofmemoryerror: java heap space problem. Anyway, it's looking like the only way to fix this problem is to re-write some

RE: Help cleaning up my code...

2007-10-23 Thread Jason Durham
PROTECTED] Sent: Tuesday, October 23, 2007 1:11 PM To: CF-Talk Subject: Help cleaning up my code... hi, I posted a while ago about an outofmemoryerror: java heap space problem. Anyway, it's looking like the only way to fix this problem is to re-write some programming. The program I wrote

cleaning up

2004-07-28 Thread Simon Whittaker
Hi All, I have a page with lots of different queries being performed - essentially linking up multiple different databases. I have recently started to get an error like this: java.lang.OutOfMemoryError Essentially a select query is performed followed by various bits of processing and validation

Re: cleaning up

2004-07-28 Thread Thomas Chiverton
On Wednesday 28 Jul 2004 12:56 pm, Simon Whittaker wrote: java.lang.OutOfMemoryError use to me to increase the size of the JVM memory generation size as Almost certainly :-) Also, could I consider breaking up the huge page into smaller pages and including/linking to them? My guess would be

RE: cleaning up

2004-07-28 Thread Alistair Davidson
Hi Simon, If all else fails, you can use the System.gc() function to give the java garbage collector a nudge - it might not work, but it's worth a try. I blogged about this here : http://instantbadger.blogspot.com/2004/06/collecting-your-garbage-in-cfm x.html Hope that helps Alistair Alistair

Re: cleaning up

2004-07-28 Thread scott powell
Simon, It might help to cfset queryName = / at the point in the page where you no longer need the query named queryName. But I've been using CF since version 2 and never had that error.You have a REALLY big query (maybe the selection criteria could be more specific) or a really small JVM

Re: cleaning up a word file

2004-06-22 Thread Dick Applebaum
Copy pasting into what? If it is just a doc displayed in word into a text area, you don't need to do anything -- you are copying the text only, not the formatting info. HTH Dick On Jun 21, 2004, at 10:42 PM, Dave Lyons wrote: i have a user that will be using a mac and copying pasting code

RE: cleaning up a word file

2004-06-22 Thread Kola Oyedeji
Dave This may be of some help http://www.cflib.org/udf.cfm?ID=319 Reformats special chars typically found when copying and pasting from Word. HTH KOla -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: 22 June 2004 06:43 To: CF-Talk Subject: cleaning up

RE: cleaning up a word file

2004-06-22 Thread Peter Tilbrook
FGS! Let The Hobbit Happen!!! _ From: Kola Oyedeji [mailto:[EMAIL PROTECTED] Sent: Tuesday, 22 June 2004 6:35 PM To: CF-Talk Subject: RE: cleaning up a word file Dave This may be of some help http://www.cflib.org/udf.cfm?ID=319 Reformats special chars typically found when copying

Re: cleaning up a word file

2004-06-22 Thread dave
textarea field -- Original Message -- From: Dick Applebaum [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Tue, 22 Jun 2004 00:26:28 -0700 Copy pasting into what? If it is just a doc displayed in word into a text area, you don't need to do anything --

RE: cleaning up a word file

2004-06-22 Thread dave
[mailto:[EMAIL PROTECTED] Sent: 22 June 2004 06:43 To: CF-Talk Subject: cleaning up a word file i have a user that will be using a mac and copying pasting code from word files, any good tags to make sure that code is cleaned up good? I remember seeing something somewhere but cant remember where ty

RE: cleaning up a word file

2004-06-22 Thread dave
June 2004 6:35 PM To: CF-Talk Subject: RE: cleaning up a word file Dave This may be of some help http://www.cflib.org/udf.cfm?ID=319 Reformats special chars typically found when copying and pasting from Word. HTH KOla -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED

RE: cleaning up a word file

2004-06-22 Thread Pascal Peters
22 juni 2004 11:23 To: CF-Talk Subject: RE: cleaning up a word file i saw that but it looks like it doesnt do all the charachters, the ones im more interested in are the damn boxes, maybe the same though. maybe just need a regex to strip all but letters and #'s hint hint mr doom! haha

RE: cleaning up a word file

2004-06-22 Thread CFDEV
What about cleaning word html when someone copy/paste from a word file to an Iframe? Is there something to clean that code? Thanks Pat _ From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: June 22, 2004 06:02 To: CF-Talk Subject: RE: cleaning up a word file MX only!!! REReplace

RE: cleaning up a word file

2004-06-22 Thread Pascal Peters
What do you mean? Remove html or just clean up word html? -Original Message- From: CFDEV [mailto:[EMAIL PROTECTED] Sent: dinsdag 22 juni 2004 12:38 To: CF-Talk Subject: RE: cleaning up a word file What about cleaning word html when someone copy/paste from a word file

Re: cleaning up a word file

2004-06-22 Thread Stephen Moretti
CFDEV wrote: What about cleaning word html when someone copy/paste from a word file to an Iframe? Is there something to clean that code? You need Taz's patented MSClean tag. There is a URL, but I forget it and Taz isn't aroundIf you email me offline I'll send you a copy...

RE: cleaning up a word file

2004-06-22 Thread CFDEV
Remove the non necessary html/css tag that word html create... Thanks Pat _ From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: June 22, 2004 06:59 To: CF-Talk Subject: RE: cleaning up a word file What do you mean? Remove html or just clean up word html? -Original Message

Re: cleaning up a word file

2004-06-22 Thread Massimo Foti
Remove the non necessary html/css tag that word html create... I wrote an online editor with a limited set of features that does quite a decent job removing Word's garbage from HTML. You can get the custom tag here: http://www.cfmentor.com/code/index.cfm?action=""> The website is in italian,

Re: cleaning up a word file

2004-06-22 Thread Matt Robertson
FCKEditor seems to do a really good job of cleaning this up.It uses a series of regexes, although they are run in _javascript_.Shouldn't be too tough to convert. Download FCKEditor 1.6 from sourceforge, look in the /js/ folder for fck_actions.js.They're grouped together in their own commented

Re: cleaning up a word file

2004-06-22 Thread Dave Carabetta
On Tue, 22 Jun 2004 00:26:28 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: Copy pasting into what? If it is just a doc displayed in word into a text area, you don't need to do anything -- you are copying the text only, not the formatting info. This is not true, as I've run into this

Re: cleaning up a word file

2004-06-22 Thread Dick Applebaum
On Jun 22, 2004, at 7:05 AM, Dave Carabetta wrote: On Tue, 22 Jun 2004 00:26:28 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: Copy pasting into what? If it is just a doc displayed in word into a text area, you don't need to do anything -- you are copying the text only, not the

cleaning up a word file

2004-06-21 Thread Dave Lyons
i have a user that will be using a mac and copying pasting code from word files, any good tags to make sure that code is cleaned up good? I remember seeing something somewhere but cant remember where ty! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RegEx for cleaning up Word-exported HTML

2002-04-25 Thread Patric Stumpe
Hi list, is there any regex out for cleaning up html exported from ms-word on the fly? I know 'bout the Word-Addon from M$ but want to plug this regex into my page-processing... Tia -- Patric Stumpe mailto:[EMAIL PROTECTED

Re: RegEx for cleaning up Word-exported HTML

2002-04-25 Thread Jeff Garza
Message - From: Patric Stumpe [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 1:30 PM Subject: RegEx for cleaning up Word-exported HTML Hi list, is there any regex out for cleaning up html exported from ms-word on the fly? I know 'bout the Word-Addon from M

Re: RegEx for cleaning up Word-exported HTML

2002-04-25 Thread Jerry Johnson
/cleanwordhtml/index.html Josh Carrico [EMAIL PROTECTED] Jerry Johnson [EMAIL PROTECTED] 04/25/02 04:30PM Hi list, is there any regex out for cleaning up html exported from ms-word on the fly? I know 'bout the Word-Addon from M$ but want to plug this regex into my page-processing... Tia

Re[2]: RegEx for cleaning up Word-exported HTML

2002-04-25 Thread Patric Stumpe
of the page... HTH, Jeff Garza - Original Message - From: Patric Stumpe [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 1:30 PM Subject: RegEx for cleaning up Word-exported HTML Hi list, is there any regex out for cleaning up html exported from

Re[3]: RegEx for cleaning up Word-exported HTML

2002-04-25 Thread Patric Stumpe
:30 PM Subject: RegEx for cleaning up Word-exported HTML Hi list, is there any regex out for cleaning up html exported from ms-word on the fly? I know 'bout the Word-Addon from M$ but want to plug this regex into my page-processing... Tia -- Patric Stumpe mailto:[EMAIL PROTECTED

Re: Re[3]: RegEx for cleaning up Word-exported HTML

2002-04-25 Thread Jeff Garza
to remove all the junk using regexes HTH, Jeff - Original Message - From: Patric Stumpe [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 1:50 PM Subject: Re[3]: RegEx for cleaning up Word-exported HTML Well, a problem 'bout this approach is that i

Re: RegEx for cleaning up Word-exported HTML

2002-04-25 Thread Patric Stumpe
: Re[3]: RegEx for cleaning up Word-exported HTML Well, a problem 'bout this approach is that i can't register the Tidy DLL on my ISP server. Any other suggestions? Patric Thanks Jeff, I'll give it a try! Patric Try using the COM version of HTML-tidy. It should clean up the Word