images in email

2002-06-25 Thread peter
Hello, Does someone know how to include images in HTML formated emails that don't have an url in the src="" attribute, but points to an attched image. This way the receivers of the email can also look offline at the HTML formatted mail with images. TIA Peter ___

RE: Apache Xindice article

2002-06-25 Thread Matt Liotta
I went ahead and wrote a quick CFC just to show how easy it would be. You can now go to http://devilm.com/writing.html to download the Java class and its associated CFC wrapper. -Matt > -Original Message- > From: Matt Liotta [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 11:

DOH

2002-06-25 Thread Justin Scott
Sorry about the last message.. was not supposed to go to the list.. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com __ Get the mailserver that powers this list at http://www.coolfusion.c

Re: CF Programmer needed

2002-06-25 Thread Justin Scott
Hi there, I am interested in this offer. My resume is available at www.dtdns.com/resume.htm. I have extensive experience with online communities and membership systems and worked closely with the Ecobuilder (www.ecobuilder.com) development team while I was with a previous employer. I now head up

RE: Removing html tags stored with text in a database

2002-06-25 Thread Pascal Peters
ReReplace(data,"<[^>]*>","","ALL") -Original Message- From: BEN MORRIS [mailto:[EMAIL PROTECTED]] Sent: dinsdag 25 juni 2002 22:12 To: CF-Talk Subject: Re: Removing html tags stored with text in a database Should be easily done via a REReplace(), I'm not sure of the syntax for the regu

RE: set email timezone?

2002-06-25 Thread Peter Tilbrook
Yes it does. A program like DNS2GO (www.deerfield.com) is great for synching time (for free) - just don't abuse it. == Peter Tilbrook Macromedia ColdFusion Applications Developer 4/73 Tharwa Road Queanbeyan, NSW, 2620 AUSTRALIA Phone: (02) 6284 2727 Mobile: 0401 973 415 Email: [EMAIL PROTECTED]

RE: set email timezone?

2002-06-25 Thread Andrew Scott
The time comes from the mail server, doesn't it!! -Original Message- From: Mak Wing Lok [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 26 June 2002 11:36 AM To: CF-Talk Subject: set email timezone? how can i set the sent date/time to local time zone on cfmail/coldfusion? i have this probl

RE: RE :set email timezone?

2002-06-25 Thread Mak Wing Lok
mind to tell me how to check the zone please? thanks mak wl -Original Message- From: Brandon Harper [mailto:[EMAIL PROTECTED]] Sent: 26 June 2002 12:08 To: CF-Talk Subject: RE :set email timezone? > > At 09:36 AM 6/26/2002 +0800, you wrote: > >how can i set the sent date/time to loc

Re: Java-plugin technote

2002-06-25 Thread Paul Hastings
> p.s it also effects CFMX and the cfmx hotfix? --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.372 / Virus Database: 207 - Release Date: 20/6/2545 __ Structu

RE: Caching issues

2002-06-25 Thread Ryan Kime
Nevermindgot it. -Original Message- From: Ryan Kime [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 4:45 PM To: CF-Talk Subject: RE: Caching issues Thanks, I found the problem. In the class file for the custom tag (located at C:\CFusionMX\wwwroot\WEB-INF\cfclasses), the "So

Re: Caching issues

2002-06-25 Thread Paul Hastings
> Any MM people (or anyone else), how do I get MX to recompile and trash the > old incorrect class file? delete it. --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.372 / Virus Database: 207 - Release Date: 20/6/2545 ___

RE: Caching issues

2002-06-25 Thread Ryan Kime
Thanks, I found the problem. In the class file for the custom tag (located at C:\CFusionMX\wwwroot\WEB-INF\cfclasses), the "SourceFile" is pointing to the local directory instead of the custom tag directory. Any MM people (or anyone else), how do I get MX to recompile and trash the old incorrect

Re: cfcache and memory

2002-06-25 Thread Douglas Brown
Not that I am aware of, but you may gain some momentum by setting the template cache size in CF Admin to the size of all your templates combined. Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "SoW" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday,

Re: cfcache and memory

2002-06-25 Thread Bryan Stevenson
Does SoW = Spirit of Wolf (EQers will get it) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com --

Re: cfcache and memory

2002-06-25 Thread SoW
And if one of these static files is accessed a LOT, there is no way to force CF to keep that static file in memory to avoid needless disk accesses? - Original Message - From: "Douglas Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 2:31 PM Subject

WDDX Resources?

2002-06-25 Thread Shawn Grover
I'm looking for some resources on how to create a WDDX packet in javascript, then pass the WDDX packet to a Cold Fusion page for processing. I've always seen going from CF to JS... but not the other way - although I've seen passing a recordset between pages (but not creating it in JS). I'm curr

Re: CF Blogs?

2002-06-25 Thread Michael Dinowitz
This was mention on 4/10. A few useful links in the responses. http://www.houseoffusion.com/cf_lists/index.cfm?method=messages&forumid=4&threadid=11164 At 05:25 PM 6/25/02, you wrote: >I'm look for an awesome blog tool for a big online community. Can somebody >provide me with some links to some

Re: cfcache and memory

2002-06-25 Thread Douglas Brown
cfcache creates temp files of the static HTML that is outputted by a dynamic query, so yes it will be stored on disk and not in memory. It just avoids the re-quering of data until it is flushed or refreshed. Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "SoW" <[EMAI

RE: What is the best variable scope?

2002-06-25 Thread Jeffry Houser
At 04:31 PM 6/25/2002 -0400, you wrote: >Dear friends, > >Sorry for this stupid question but I really didn't find a consensus on >that. What is the best variable scope to be used on applications (not >using Fusebox or any other methodology) that need to be present on every >template. There is n

cfcache and memory

2002-06-25 Thread SoW
Hi folks, I am starting to a LOT of templates on my site (thousands -- MBs of HTML). My question is in regards to how CF handles these wrto memory. Are these stored in the "template cache"? If not, is there any way to tell CF to keep these in memory? I have tons of memory -- I just don'

CF Blogs?

2002-06-25 Thread Jon Block
I'm look for an awesome blog tool for a big online community. Can somebody provide me with some links to some free or commercial apps? I want to do it in CF since we are a CF shop. Thanks. Jon __ Structure your ColdFusion code w

RE: client variables changing?...

2002-06-25 Thread Dave Watts
> I thought about running a session var just for the repid, but > we are on clustered servers. As long as I enable "sticky > session variables" in cluster cats, am I safe to run the > session var for the repid in my app? Yes, you can do that, but then you lose two of the primary benefits of cl

ANN : Java-plugin technote

2002-06-25 Thread Neil Clark - =TMM=
For those suffering problems with IE6 (and other browsers) especially using CFTREE, there is a new tech note just published describing the problem and available workarounds / fixes. ColdFusion Server 5 : Hot Fix for Applets When Using Java Plug-in Versions Greater Than 1.3.1_01a http://www.macro

Re: Javascript/HTML Based Chat Tip to Jann

2002-06-25 Thread Jann VanOver
Thanks for the clarification. I hadn't seen mention of applets in your note so that last sentence got me confused! On 6/25/02 12:16 PM, "Phoeun Pha" <[EMAIL PROTECTED]> wrote: > Who said Javascript was Java? Sorry i should have been more clear. > > See, Java chat applets can do a whole lot mo

Re: CFPOP weirdness

2002-06-25 Thread Lewis Sellers
>If you delete a message, the other messages will be renumbered on the POP >server end, I think. So, you either have to track the message numbers >(either by re-fetching them, or by storing information on how they'd be >renumbered) or you have to delete messages in reverse order, from last to >fir

RE: Heavy CF Load

2002-06-25 Thread Jon Block
Heres a description of how I have scaled sites with CF. http://hotwired.lycos.com/webmonkey/02/26/index4a.html Cheers, Jon -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: Friday, June 21, 2002 6:00 PM To: CF-Talk Subject: Heavy CF Load I have a customer who is ru

RE: Javascript/HTML Based Chat Tip

2002-06-25 Thread Brad Roberts
... chat program -Brad > -Original Message- > From: Phoeun Pha [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 4:15 PM > To: CF-Talk > Subject: RE: Javascript/HTML Based Chat Tip > > > Brad, u are right! I forgot to talk about that annoying sound! > rarrarar!! > I guess u

RE: Browser Question

2002-06-25 Thread Eric Dawson
>>(Making this up as I go along) >Instead of making it up as you go along (generally not a good security >practice, oh boy, I'm hooped. That was my life mantra. >they could be summarized as "don't trust data from the browser, >only accept the data that can legitimately be provided by the user, >

Re: Caching issues

2002-06-25 Thread Douglas Brown
Have you tried deleting that custom tag path in CF admin and then re-creating it? I believe this happened to me before and that is what I had to do... Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Ryan Kime" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sen

Re: client variables changing?...

2002-06-25 Thread Douglas Brown
Gary, I am not real sure in that regard, I have not had the need of setting up a clustered enviornment myself, so my answer would not be that good. Maybe some others with clustering exp will chime in... Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Houk, Gary" <[EM

RE: Caching issues

2002-06-25 Thread Ryan Kime
OKI can get the correct custom tag to show up if I use cfmodule, but that still doesn't solve why my custom tag is using the phantom files. (Yes, cf admin setting for the custom tag path is C:\CFusionMX\CustomTags and is the only one) -Original Message- From: Ryan Kime [mailto:[EMA

RE: Caching issues

2002-06-25 Thread Ken Beard
intersting how this works.. cf caches the location of custom tags, i noticed that once before. it is probably looking at a copy of the tags you're not realizing is there, but i do not think it is executing a file that has been deleted. sounds like half coldfusion weirdness and half your confusio

RE: What is the best variable scope?

2002-06-25 Thread Ken Beard
i concur, the request scope is best for variables like dsn that will not change from page to page. ken beard tampa,fl -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 4:34 PM To: CF-Talk Subject: Re: What is the best variable scope? I prefe

RE: client variables changing?...

2002-06-25 Thread Houk, Gary
I thought about running a session var just for the repid, but we are on clustered servers. As long as I enable "sticky session variables" in cluster cats, am I safe to run the session var for the repid in my app? -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tu

Re: Removing html tags stored with text in a database THE CODE

2002-06-25 Thread Charlie
heythanks.this worksmuch appreciated! ",trim(temp),1)> - Original Message - From: "Phoeun Pha" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 4:30 PM Subject: RE: Removing html tags stored with text in a database THE CODE

Caching issues

2002-06-25 Thread Ryan Kime
Alright, having some problems and need help. Environment: ColdFusion MX, XP Pro, IE6 & N6.2 I used cfcache for some clientcache testing (low flush rate: 3 minutes), and it was having problems displaying changes to my custom tags that were called in the index.cfm file. So I moved some of the cust

RE: What is the best variable scope?

2002-06-25 Thread Chris Lofback
I prefer to use Request scope if the variable does not need to persist across requests. Request scope can be accessed from any template, even custom tags (which I believe was it's original purpose), and no locking is required since it's not a shared scope. I set several Request scope variables--

Re: What is the best variable scope?

2002-06-25 Thread Douglas Brown
I prefer doing like so blah blah blah Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Alex Hubner" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 1:29 PM Subject: What is the best variable scope? > Dear friends, > > Sorry f

RE: Removing html tags stored with text in a database THE CODE

2002-06-25 Thread Phoeun Pha
Here this works perfect. The final stuff will be in the variable called TEMP, so just cfoutput it somewhere. you owe me! :) Profile is the variable of the company profile, of course. change it to whatever you wish. dont change anything else ",trim(temp),1)> -Origina

Re: client variables changing?...

2002-06-25 Thread Douglas Brown
Could there be the possibility that the one you found being the problem? Possibly when you are setting the loggedIn value to no, but their session data is still persistent. Maybe do a structClear(session) along with it Douglas Brown Email: [EMAIL PROTECTED] - Original Message - Fro

What is the best variable scope?

2002-06-25 Thread Alex Hubner
Dear friends, Sorry for this stupid question but I really didn't find a consensus on that. What is the best variable scope to be used on applications (not using Fusebox or any other methodology) that need to be present on every template. Variables that we can use in the Application.cfm to set a d

RE: Pointing multiple sites to the same IP

2002-06-25 Thread Kris Pilles
Doug its simple You on iis>>??? If so, email me off list and I will walk you through it -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 4:15 PM To: CF-Talk Subject: Pointing multiple sites to the same IP I have heard that you can point

RE: client variables changing?...

2002-06-25 Thread Houk, Gary
Yeah, I did a search within my entire project and only found that one instance. - Gary -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 4:10 PM To: CF-Talk Subject: Re: client variables changing?... Also check where there is no default set

Pointing multiple sites to the same IP

2002-06-25 Thread Douglas Brown
I have heard that you can point several different sites to one IP using http headers, what exactly does the header need in order to do this? Douglas Brown Email: [EMAIL PROTECTED] __ Get the mailserver that powers this lis

Re: client variables changing?...

2002-06-25 Thread Douglas Brown
Also check where there is no default set for addToken, since it will default to "yes" if you do not specify "no" Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Houk, Gary" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 1:00 PM Su

Re: Removing html tags stored with text in a database

2002-06-25 Thread BEN MORRIS
Should be easily done via a REReplace(), I'm not sure of the syntax for the regular expression but a book or other resource should make it easy. >>> "Charlie" <[EMAIL PROTECTED]> 06/25/02 03:59PM >>> I have data ( company profile ) stored in a SQL Server data table (ntext) __

RE: Javascript/HTML Based Chat Tip

2002-06-25 Thread Phoeun Pha
Brad, u are right! I forgot to talk about that annoying sound! rarrarar!! I guess u can't have everything :) -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 2:54 PM To: CF-Talk Subject: RE: Javascript/HTML Based Chat Tip He's not referenci

RE: Javascript/HTML Based Chat Tip

2002-06-25 Thread Kris Pilles
Anyone seen any good instant messagning programs... Private ones I found a few examples but nothing that excites me... -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 3:54 PM To: CF-Talk Subject: RE: Javascript/HTML Based Chat Tip He's

RE: Removing html tags stored with text in a database

2002-06-25 Thread Phoeun Pha
use replace character functions -Original Message- From: Charlie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 2:59 PM To: CF-Talk Subject: Removing html tags stored with text in a database I have data ( company profile ) stored in a SQL Server data table (ntext). The inte

RE: Javascript/HTML Based Chat Tip

2002-06-25 Thread Brad Roberts
He's not referencing Java. He's talking about the CF Chat programs that refresh the page every second. As the page refreshes, it "flickers" (goes blank for a sec.). Sounds like a good implementation, but there's still the problem with the clicking sound when the page refreshes. IMHO, CF probab

RE: client variables changing?...

2002-06-25 Thread Houk, Gary
yes, only on the application page in this context: -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 3:53 P

RE: client variables changing?...

2002-06-25 Thread Dave Watts
> The cfid:cftoken values are not being passed in the url. This > seems to be happening during the session, after an order is > placed. I'm really kink of grabbing for straws here because I > haven't changed the app framework for at least 6 months, and > nothing internally changed recently. A

Removing html tags stored with text in a database

2002-06-25 Thread Charlie
I have data ( company profile ) stored in a SQL Server data table (ntext). The interface I built for my client uses a web editor interface allowing the to control formattingno problem works great... Client would now like to use the first 200 characters of the company profile on anothe

RE: Fusebox 3

2002-06-25 Thread Patrick McElhaney
> Robert wrote: > > There are a ton of us FB3 gurus over on the topica list. That > would be the best way to get something answered. > mailto:[EMAIL PROTECTED] http://www.topica.com/lists/fusebox/read Patrick __ Signup for

RE: client variables changing?...

2002-06-25 Thread David Schmidt
> -Original Message- > From: Houk, Gary [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 25, 2002 12:48 PM > To: CF-Talk > Subject: RE: client variables changing?... > > > The cfid:cftoken values are not being passed in the url. This > seems to be happening during the session, after an ord

Re: client variables changing?...

2002-06-25 Thread Douglas Brown
do you have any tags anywhere that might have a addtoken="yes" Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Houk, Gary" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 12:48 PM Subject: RE: client variables changing?... > The

RE: client variables changing?...

2002-06-25 Thread Houk, Gary
The cfid:cftoken values are not being passed in the url. This seems to be happening during the session, after an order is placed. I'm really kink of grabbing for straws here because I haven't changed the app framework for at least 6 months, and nothing internally changed recently. - Gary

RE: client variables changing?...

2002-06-25 Thread Timothy Heald
Make sure that they aren't book marking pages, or sending each other links. It would be possible to assume someone's session, and there by get there client variables as your own. I have heard of that happening before. Also two of the developers here have just accidentally assumed each others ses

RE: CFPOP weirdness

2002-06-25 Thread jon
Yup -- that's exactly what I'm doing... just creating a list and deleting them at the end... .. ran into that problem before. Putting locks on the app seems to have slowed things way down, though. -- jon -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tu

client variables changing?...

2002-06-25 Thread Houk, Gary
We have an app that has a login screen and the following code is ran on the action page: . The repid is displayed at the top of all the pages in an included header page. Some of the reps say that on the order confirmation screen, their repid changes to that of someone else in the office. The on

Re: test

2002-06-25 Thread Jochem van Dieten
Michael Dinowitz wrote: > change the search interface (which works now, but is ugly) Please make sure to use method="get" in the search form so we can link to search results if somebody asks a real RTFA question :) Jochem __ S

RE: Fusebox 3

2002-06-25 Thread Robert Everland
There are a ton of us FB3 gurus over on the topica list. That would be the best way to get something answered. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent:

RE: Fusebox 3

2002-06-25 Thread Timothy Heald
Sure, There are plenty of us here. I know there are at least a few council members and most of the other advisory committee members are here. If you want to mail me you can, or shoot me a mail off list and I can give you a number to call. Tim Heald ACP/CCFD :) Application Development www

RE: CFPOP weirdness

2002-06-25 Thread Dave Watts
> I'm trying to use CFPOP to delete some emails... but I > keep getting a "The specified message has been deleted" > message. > > Anyone else seen that? I am calling CFPOP a few times > previously in the application -- first to grab the headers, > then to grab the actual messages in specific

RE: Javascript/HTML Based Chat Tip to Jann

2002-06-25 Thread Phoeun Pha
Who said Javascript was Java? Sorry i should have been more clear. See, Java chat applets can do a whole lot more than a simple javascript/html chat. But taking off this primitive page refresh feeling from a javascript/html based chat, u can't tell if it's made out of java or javascript from th

Fusebox 3

2002-06-25 Thread Tangorre, Michael
Any Fusebox 3 Gurus out there?? Anyone at all? I would like to chat off list with any FB3 people reading today... I have some issues and I want to see if its me, the code, or the core files that is causing the problems. Michael Tangorre MillenniuM Information Systems 1101 Wilson Blvd, Suite 120

Re: Card Processors

2002-06-25 Thread Paul Giesenhagen
Free Script and Free Account setup with CDG Authorize http://www.quilldesign.com/cdg/index.cfm If your looking, it works great and implements in minutes. (If downloaded, you have access to the test account to test the script out) Paul Giesenhagen QuillDesign - Original Message - From:

Re: Javascript/HTML Based Chat Tip

2002-06-25 Thread Jann VanOver
Um I'm not sure of the point of your post, but ... Javascript is NOT Java Just doing my bit to educate the world On 6/25/02 11:06 AM, "Phoeun Pha" <[EMAIL PROTECTED]> wrote: > I noticed that some javascript/html based chats are made up of 2 frames (one > on top of the other)-one frame displ

CFPOP weirdness

2002-06-25 Thread jon
I'm trying to use CFPOP to delete some emails... but I keep getting a "The specified message has been deleted" message. Anyone else seen that? I am calling CFPOP a few times previously in the application -- first to grab the headers, then to grab the actual messages in specific instances. Could

Re: Card Processors

2002-06-25 Thread Jason Miller
sorry - never used as well - but authorize.net went pretty easy. Also tons of custom tags and sample CF source available for it. jay miller Matthew Friedman wrote: >We used payflow and they have a CF function for it. > >It works fine, with an ok management system > >-Original Message- >

Re: QueryAddColumn / QuerySetCell ??? Answer !!

2002-06-25 Thread Jason Miller
also - there are some articles at http://www.teratech.com on modifying tables - their code snips are so completely straightforward too.. good little resource to have although not a vast resource. jay Philip Arnold - ASP wrote: Much easier to create column in SQL stat

RE: Save the logs was RE: error messages sent to log

2002-06-25 Thread Cornillon, Matthieu
Mike, That is more or less exactly what I want to do, but your message doesn't exactly address the thrust of my question. The folks on the IT end, who have exclusive access to/control over CF Administrator, want only Error, Warning, and Fatal messages to come through, and are asking that no Info

Javascript/HTML Based Chat Tip

2002-06-25 Thread Phoeun Pha
I noticed that some javascript/html based chats are made up of 2 frames (one on top of the other)-one frame displaying the chat messages, and the other for message input. The frame displaying the chat messages would refresh at a specified interval to refresh messages. I find this quite annoy

RE: Julian Date Format output 0YYDDD

2002-06-25 Thread Matthew R. Small
When I was in the USMC we used a Julian date - it was the last two digits of the year followed by the cardinal number of the day of the year. Ex: 1 January 2000 = 1 1 February 1999 = 99032 - Matt Small -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Tue

Re: java books for cf

2002-06-25 Thread Massimo, Tiziana e Federica
"Paul Hastings" <[EMAIL PROTECTED]> wrote in message news:014e01c21c10$ebaccca0$[EMAIL PROTECTED]... > > I looked around and got: > > "got" as in bought & read? and these are good? Sorry, english is not my native language, I ordered both of them, hope I will read both sooner or later. I really t

RE: Julian Date Format output 0YYDDD

2002-06-25 Thread Jim Vosika
Missing an end quote in the second example -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 12:46 PM To: CF-Talk Subject: RE: Julian Date Format output 0YYDDD #julian(101001, "MM/dd/")# =01/01/2001 and #julian("01/01/2001)# = 1010

Save the logs was RE: error messages sent to log

2002-06-25 Thread Mike Brunt
I have one comment and I hope this is not seen as destructive it is not meant to. Firstly the log information is vital to any application and to be even more focused there should not be any information in the Application log as this is 100% error information. I hope no-one takes this the wrong wa

RE: Julian Date Format output 0YYDDD

2002-06-25 Thread Robert Everland
#julian(101001, "MM/dd/")# =01/01/2001 and #julian("01/01/2001)# = 101001 Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Charles Nahm [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 2:04 PM To: C

RE: Julian Date Format output 0YYDDD

2002-06-25 Thread Beau Harbin
Charles, I built a whole series of Julian Date Format functions that are available as UDFs at the www.cflib.org web site. JulianDayofWeek: Returns the day of the week for a date in the Julian calendar. Returns the day of the week for a date in the Julian. If no date is provided, defaults to th

RE: Julian Date Format output 0YYDDD

2002-06-25 Thread Charles Nahm
Thank you Robert. Could you provide a small usage sample for the function? Would it be like: JDate = '#Julian(Now(), '0YYDDD')#' Thanks, Charles Nahm >-Original Message- >From: Robert Everland [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, June 25, 2002 12:36 PM >To: CF-Talk >Subject: RE:

RE: test

2002-06-25 Thread Michael Dinowitz
Yes. The older posts (pre-2001) will be loaded in over time as I parse them out of my outlook. I'll also need copies from others who have posts back to the beginning as I've lost some email over time. At 01:15 PM 6/25/02, you wrote: >This means my comments are searchable through the net? eheh

Re: test

2002-06-25 Thread Michael Dinowitz
It's in beta at the moment, but moving along quite well. Almost all of the lists are in (fusebox going in now), the SQL server it set up for most of them and the whole threading and indexing is automatic. All that's needed is to move in the new graphics (which are great), change the search inte

RE: test

2002-06-25 Thread Phoeun Pha
This means my comments are searchable through the net? eheh Time to subscribe to a new account! -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 12:05 PM To: CF-Talk Subject: Re: test The easiest way to see if the lists are up is to look

RE: Devcon Volunteers

2002-06-25 Thread Phoeun Pha
That's Bob getting ready for a NADs infomercial :) -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 12:06 PM To: CF-Talk Subject: Re: Devcon Volunteers Isn't that Bob Vila? On Tuesday, June 25, 2002, at 09:50 AM, Phoeun Pha wrote: > Why

RE: Devcon Volunteers

2002-06-25 Thread Tangorre, Michael
LOL "It's good to have you home again"... haha -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 1:06 PM To: CF-Talk Subject: Re: Devcon Volunteers Isn't that Bob Vila? On Tuesday, June 25, 2002, at 09:50 AM, Phoeun Pha wrote: > Why st

Re: test

2002-06-25 Thread Paul Hastings
> The easiest way to see if the lists are up is to look at www.houseoffusion.com/cf_lists and see the time of the last post. Saves on the test messages. hey! where did that come from? very cool. __ Signup for the Fusion Authorit

Re: Devcon Volunteers

2002-06-25 Thread Dick Applebaum
Isn't that Bob Vila? On Tuesday, June 25, 2002, at 09:50 AM, Phoeun Pha wrote: > Why stop at a beard? http://www.snifflebear.com/woops.jpg Look like > that > and they'll never notice! > > haha :D > > > -Original Message- > From: Paul Ihrig [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, J

Re: test

2002-06-25 Thread Michael Dinowitz
The easiest way to see if the lists are up is to look at www.houseoffusion.com/cf_lists and see the time of the last post. Saves on the test messages. At 12:48 PM 6/25/02, you wrote: >Have not seen anything since yesterday, so testing > >Robert Bailey > > ___

test

2002-06-25 Thread Robert Bailey
Have not seen anything since yesterday, so testing Robert Bailey __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/

RE: security issues

2002-06-25 Thread Kris Pilles
Speakiung of snippets I just got a new machine and I lost all of my snippets along the way... (it dept took old machine before I had a chance to get them) Anyone know where I can find some on the web to replensih my gallery? -Original Message- From: Tony Carcieri [mailto:[EMAIL PROTE

security issues

2002-06-25 Thread Tony Carcieri
Hi all, Sorry for the cross post but last week there was a discussion about the old hacks of cfsnippets or cfdocs or something. I don't remember exactly and don't remember which forum it was on. Could you please email me off list and refresh my memory of what they were and if it is possible that

RE: Devcon Volunteers

2002-06-25 Thread Phoeun Pha
Why stop at a beard? http://www.snifflebear.com/woops.jpg Look like that and they'll never notice! haha :D -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 11:37 AM To: CF-Talk Subject: Devcon Volunteers any one know if MM has any programs f

Re: Julian Date Format output 0YYDDD

2002-06-25 Thread Stephen Moretti
Julian dates are pre-Gregorian calender (which is what we use now). Banks use them because they aren't affected by the like of the Y2K cock-up, because you just store an integer and convert it to a real date. I should point out that Julian dates are not in the format 0YYDDD Have a look at for a

RE: Julian Date Format output 0YYDDD

2002-06-25 Thread Kevin Miller
>From http://aa.usno.navy.mil/data/docs/JulianDate.html: Julian dates (abbreviated JD) are simply a continuous count of days and fractions since noon Universal Time on January 1, 4713 BCE (on the Julian calendar). Almost 2.5 million days have transpired since this date. Julian dates are widely

RE: Julian Date Format output 0YYDDD

2002-06-25 Thread Robert Everland
Here is what I have /** * Returns a gregorian date if a julian date is submitted, or returns a julian date if a gregorian date is submitted. * * @param date * @param outvar * @return Returns a date. * @author Robert Everland III ([EMAIL PROTECTED]) * @version 1, January 10, 2002

RE: Devcon Volunteers

2002-06-25 Thread Tangorre, Michael
Pose as a MM salesman, and put me in the duffle bag you carry in.. ill find my own way home :-) -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 12:37 PM To: CF-Talk Subject: Devcon Volunteers any one know if MM has any programs for volunteer

Devcon Volunteers

2002-06-25 Thread Paul Ihrig
any one know if MM has any programs for volunteers? for setting up/tearing down & such... looks like my Co. wont pay for any training or conferences.. so would like to figure out other options to get in & learn... maybe i can grow a beard by then & sneak in joke :] -paul _

RE: EXCEL COM Object

2002-06-25 Thread Philip Arnold - ASP
> Is there an Excel COM object that can be registered on the > server instead of installing the Excel application on the > server? COM requires an app to be on the server for it to call The problem is that if you want an "Excel-like" app on the server, then you might not have the same controls a

Re: Julian Date Format output 0YYDDD

2002-06-25 Thread Paul Hastings
> The Julian Calendar is named after Julius Caeser maybe ;-) either that or this calendar's inventor's dad: julius caesar scaliger. the calendar actually doesn't date from roman time. __ Your ad could be here. Monies from ads go

Re: Julian Date Format output 0YYDDD

2002-06-25 Thread Paul Hastings
"julian" day/calendar defined at: http://bcn.boulder.co.us/y2k/y2kbcalc.htm http://www.npl.co.uk/npl/ctm/time_scales.html and some calendar systems just for fun: http://webexhibits.org/calendars/calendar-ancient.html though i think what many people mean is the simpler system of the same name--be

  1   2   3   >