weird cf_webstore rounding problem

2001-10-02 Thread Jon Tillman

Can anyone tell me why the following code from CFWebstore rounds numbers to 
the nearest 1?

INPUT:



ACTION:







-- 
Jon Tillman
www.smokingpipes.com
www.tobaccoreviews.com
www.eruditum.org
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Regex question

2001-04-12 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I need to write a regex to allow any non-alphanumeric chars before or after a 
word, stored as a variable, #word#.  I have no clue what I am doing here, can 
someone help out a bit?

- -- 
Jon Tillman
http://www.eruditum.org

Lottery (n): a tax on people who are bad at math.

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOtXnE9ga7tZtnIOtEQLPlgCg63owgwLO8SiZTtCYuSsDnRU5rFQAoLti
JZ+4XUEHvD8yEN+8YT//JCdV
=lMPh
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Regex and search results

2001-04-11 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I am attempting to refine a query to match a smaller number of records, and I 
believe that regular expressions are the way to go. However, I have very 
little experience with them, and could use some help figuring out where to 
insert my regex. I am doing the following to prepare a variable for the query:



  
  
  
  


  


  
  
  
  
  


  


  
  


the query that uses that is:



SELECTtblProduct.productId, 
  tblProduct.productName, 
  tblProduct.productSize, 
  tblProduct.productImg1URL, 
  tblProduct.productImg1Name,
  tblProduct.productRetailPrice,
  tblProduct.productCode
FROM tblProduct
WHERE   tblproduct.productInactive = false
  
AND #preservesinglequotes(Criteria)# 

ORDER BY tblProduct.productName;


so, should I replace the '%#word#%'  with a regex (i assume this would 
require regex support in the db (?)) or do I add some code after the query to 
use my regex on the results of the query?

The effect I am attempting to acheive is to allow the #word# variable to be:
[[:space:][:punct:]]#word#[[:space:][:punct:]], I believe (any space or 
punctuation character before or after, but no alpha-numeric chars.

any advice, sample code, etc would be much appreciated.

- -- 
Jon Tillman
http://www.eruditum.org

The original point and click interface was a Smith & Wesson.

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOtRu49ga7tZtnIOtEQKs0QCfbkjwQ6HH7DwYlk8K1M3mApO2e2gAoJZo
N7qchw2DF//q7W4ZoZUmsmb5
=Op/g
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Problem with logout

2001-04-09 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Try adding  to that and it should work.

On Monday 09 April 2001 05:26 am, you wrote:
> Source code logout page
>
> 
> 
> 
> 
> 
> 
>
> I use source code above to logout. But when I open
> browser to access my web page again, cfid, cftoken and
> session variable still exist. Can you help me?
>
> Thank you!!
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: query trouble

2001-03-28 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 28 March 2001 02:05 pm, you wrote:
> What type of field is the "ClientNew" field?  Some databases store "yes"
> values as 1's or 0's - maybe you are mixing data types.
>
> ~Becky

tis a yes/no field
using Access2000 if that helps (sigh)

- -- 
Jon Tillman
http://www.eruditum.org
Kill one man and you are a murderer. Kill millions and you are a conqueror. 
Kill everyone and you are God.
- --Jean Rostand

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOsI8Kdga7tZtnIOtEQJl6gCfdxv8DbbyxBIJvfQrddTqJ/sjkYQAn3kU
f0pekUQ+5I+zLcpC7GF+/kni
=5DKC
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



query trouble

2001-03-28 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I cannot for the life of me figure out what is wrong with this query. I am 
getting a Syntax Error or Access Violation Error:


INSERT INTO tblClient
(ClientTemplateID, ClientDomain, ClientDomainAction, 
ClientPackage, ClientTerms, ClientAddress_1,
ClientAddress_2, ClientCity, ClientState, ClientPostalCode,
ClientCountry, ClientPhone, ClientPhone_2, ClientEmail,
ClientFName, ClientMI, ClientLName, ClientCCNumber,
ClientCCExpire, ClientCCType, ClientComments,
ClientLogin, ClientPassword, ClientNew, ClientPrice)
VALUES (#session.TemplateID#, '#session.Domain#',
'#session.DomainAction#', #session.package#,
   '#session.terms#', '#session.Address_1#',
   '#session.Address_2#', '#session.City#',
   '#session.State#', #session.PostalCode#,
   '#session.Country#', #session.Phone#,
   #session.Phone2#, '#session.Email#',
   '#session.FName#', '#session.MI#',
   '#session.LName#', #Right(session.CCNumber, 4)#,
   #CreateODBCDateTime(CreateDate(session.CCexpYr,  
session.CCexpMo, 1))#,
   '#session.CCType#', '#session.Conmments#',
       '#session.Email#', '#password#',  'yes',
   #application.packageprice#)


Any help would be much appreciated.

- -- 
Jon Tillman
http://www.eruditum.org

Next thing they'll want is a word-processor that auto-updates quake 
mods, gets stock quotes, waters the office plants, walks their dog, 
orders a pizza, and is connected to a client/employee database.

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOsIwxtga7tZtnIOtEQK4ZQCeLwq7ZA3B8XpP+dvqLXeieDZO9eYAniLZ
LWIucx8XRxjBQUe3/rvimj22
=EKA8
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: selecting multiple records in a select box

2001-03-19 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

What it returns is something like:
get_tobacco.tobaccoId = 1
get_tobacco.tobaccoContents = '2, 4, 5, 7'

I am comparing get_tobacco.tobaccoContents and get_content.ContentsID, 
hopefully.

On Monday 19 March 2001 09:13 am, you wrote:
> Does get_tobacco contain an ID field?  If you're comparing two sets of
> ID's, my CF_Venn tag can do that:
>
> CF_Venn ListA="#ValueList(Contents.ContentsID)#"
> ListB="#ValueList(get_tobacco.theID)#" AandB="matches">
>
> The heart of the relevant code is simply:
>
>
> 
>     
> 
> 
>
> -David
>
> On Monday, March 19, 2001 5:35 AM, Jon Tillman
> [SMTP:[EMAIL PROTECTED]]
>
> wrote:
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> >
> > I have a string of numbers, seperated by commas, stored in a text field
> > in a table, call it tblItem.
> > These numbers each correspond to a primary key in tblContent.
> > I build a select box by looping over all the primary keys in tblContent,
> > like
> >
> > this:
> >
> > 
> > SELECT  *
> > FROMTblContent
> > 
> >
> > 
> > 
> > #ContentsName#
> > 
> > 
> > 
> >
> > Now, what I want to do is to add a bit of code to this that will check
> > for a match between the ContentsID from my option and any of the values
> > in the string from this query:
> >
> > 
> > SELECT  *
> > FROMtblItem
> > WHERE   ItemID = #url.ITEM#
> > 
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMail question

2001-03-19 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does anyone have an idea how to specify the number of cols to use in CFMail?

- -- 
Jon Tillman
http://www.eruditum.org
I tried to categorise my CD collection as well as order by artist, but
that would have needed a six-dimensional sparse matrix. This is a Hard
Problem, so I left it alphabetised.  -- jdh28 (paraphrased)

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOrYLv9ga7tZtnIOtEQI5UACeKlD3T4UlnCNxPOvd18d+GJyn4k4AoPr2
V0t8EpBPExQ1xgse43UF9xim
=4cVL
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



selecting multiple records in a select box

2001-03-19 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I have a string of numbers, seperated by commas, stored in a text field in a 
table, call it tblItem.
These numbers each correspond to a primary key in tblContent.
I build a select box by looping over all the primary keys in tblContent, like 
this:


SELECT  *
FROMTblContent




#ContentsName#




Now, what I want to do is to add a bit of code to this that will check for a 
match between the ContentsID from my option and any of the values in the 
string from this query:


SELECT  *
FROMtblItem
WHERE   ItemID = #url.ITEM#


any ideas?

- -- 
Jon Tillman - the perpetual newbie
http://www.eruditum.org

computeri non cogitant, ergo non sunt

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOrYK/Nga7tZtnIOtEQKnQgCgqxT7Eco8C+GbKcbtAPMIcinGbicAniRN
QDB3P18X8wgQBGtq/wsIlefF
=vhUV
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



parsing form submission into an html file?

2001-03-08 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

does anyone know of a way to create an html file from a form submission, or 
to insert the form fields into a template and save the result as an html file?
I can't find anything on the net, and cffile seems to not be what I need.

- -- 
Jon Tillman
http://www.eruditum.org
finger [EMAIL PROTECTED] to annoy the MPAA

To be yourself, in a world that tries, night and day, to make you just like 
everybody else - is to fight the greatest battle there ever is to fight, and 
never stop fighting. --e.e. cummings

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOqg2Vtga7tZtnIOtEQJKDACgq6xlHux9uAaJd8mXljcgylUGMcAAn0xj
K/bfzq+xEIRNVqU+6203y4Xs
=RuM9
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



interacting with domain registrars

2001-03-07 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does anyone know of a domain registrar that is easy to interface with? I have 
a look-up on a site I am building, and would like to transfer the user to 
register the domain if it comes back as available.

- -- 
Jon Tillman
http://www.eruditum.org
finger [EMAIL PROTECTED] to annoy the MPAA

If an infinite number of computer programmers programmed for an infinite 
number of years, they would eventually come up with a working operating 
system. Bill Gates, being impatient, gave them two days and took the first 
one that was finished.

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOqbU4dga7tZtnIOtEQL86ACcC8Jf2kA5bin0aV2OJ+0pL8DVjN0Aniel
ScFxBESFMjVe0MQI7uARriKE
=0oEb
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: windows client for postgreSQL

2001-03-06 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does anyone know of a decent windows client for PostgreSQL that isn't 
pgaccess? I thought I had seen one at one time, but I can't find it again 
now. The one I am thinking of also ran on Linux (?)

- -- 
Jon Tillman
http://www.eruditum.org

"VMS is a text-only adventure game. If you win you can use unix."

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOqUU49ga7tZtnIOtEQK38wCeMZhx9w1rDI2Zyjz3fJOL8KFwHmkAoP1G
nWAb9/kSrRCgAJOzGNdGtpMJ
=Xh03
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Link Checker/Bot

2001-02-27 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Has anyone written a CF link checker? I have searched around on allaire devex 
and can't find anything. I will probably attempt it myself, but wanted to 
make sure I wasn't duplicating anyone elses effort....

- -- 
Jon Tillman
http://www.eruditum.org

TCP/IP Illustrated... Is that the swimsuit edition?  -- rgh22

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOpu9qNga7tZtnIOtEQIwUQCeNvlCJLQvoPIn8rGH7iA3EWTlk/oAniOc
qs51pM5q7f7BmLdkZuGB7KEV
=4qYw
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Countries Table?

2001-02-23 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 23 February 2001 12:26, you wrote:
> Yes, I do.  I wonder why people don't check
> http://devex.allaire.com/developer/gallery/index.cfm
> first before emailing this list? Bunch of tags there for this.

I have been properly chastised. sorry.

>
> Further, nice web site you have.  I see you copied the background
> image from Slackware's site.
> I know slack is open sourced and all, but is their background gif?

hmm, good point. perhaps I should ask them.

> Oh, wait you are the Jon Tillman of The New Linux Myth Dispeller.
> Shove my
> foot in my mouth now!  That is a nice HOWTO.

either you are being nice, or sarcastic, but either way, I know it is in need 
on some major work, and will be receiving my attention soon. I have several 
hundred suggestions to go through for the next iteration of it, and a 
$BIG_NUM of errors to weed out, but it is coming along

- -- 
Jon Tillman
http://www.eruditum.org
WARNING: I cannot be help responsible for the above, as apparently my cats 
have learned how to type.

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOpaqT9ga7tZtnIOtEQLznQCgu5P11FGvl6u+SsTjPZ5FITVm81wAoM8v
6FuVg3ztuKq/tn1B0ouRjPk3
=9OmT
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Countries Table?

2001-02-23 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does anyone happen to know where one might find a table (or set thereof) of 
countries, perhaps in MS Access format?

- -- 
Jon Tillman
http://www.eruditum.org

Computers make very fast, very accurate mistakes.

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOpaRctga7tZtnIOtEQL8PQCg9pT6IGl21hktpprjqXZPQWMzex4AoL6k
KDRZB9wKI+J8QG208vEvcMn8
=rvBM
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



browsing records from a query

2001-02-19 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hello again,
I am building an application to allow users to read reviews stored in a 
database. I am trying to give them as many options as possible in regards to 
how they group the reviews.
My problem comes in making an alphabetical list. I would like to make a 
little table of the letters of the alphabet, and have links to pages for each 
letter that will contain only the records that begin with that letter. In 
addition, I would like to be able to have the links on the list active or 
incative based on whether or not there are matching results from a query.
Does anyone have any pointers as to how to go about this? either SQL or CF is 
fine as long as it gets the job done.

- -- 
Jon Tillman
http://www.eruditum.org

Move along, move along, nothing to see here, definitely no evil mind
control software here, move along, move along...  -- Thorf

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOpFYZdga7tZtnIOtEQJG5gCfe5tXcT7QSuTbkgBnSI2Dd2uTAUwAoMHm
N+1klVRxBii9xEIHSVDFe3ag
=qin+
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



International Date/Time functions

2001-02-16 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does anyone know of a good source of info or a tutorial on the LS functions 
in CF? I am having a lot of trouble setting my date and time functions up to 
work in the local time zone of the customer.

The server is in UTC - 5
and the client in UTC + 10

- -- 
Jon Tillman
http://www.eruditum.org

Why is it that love letters, business contracts and money due you always
arrive three weeks late, whereas junk mail arrives the day it was sent?

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOo1fC9ga7tZtnIOtEQKgOACdF8053Ql14WNd9/JQIK95hAxe4kYAoKuQ
rGt3ivrQ2vKbvBBU/LtlPc3g
=qPTp
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Job listings

2001-02-15 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does anyone know of a couple fo good places to look for CF contracts 
telecommuting?
If it matters, I have 1 year experience

- -- 
Jon Tillman
http://www.eruditum.org

How's my programming? Call 1-800-DEV-NULL!

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOowjbdga7tZtnIOtEQJ2vwCgkjWEacUYpeIaGoa00RmyMvqycXMAoKKi
0FyGMUKCxx4fXVlVT/Jsx/CP
=xVnu
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: New Virus,

2000-10-20 Thread Jon Tillman

And *NIX users everywhere yawn

On Fri, 20 Oct 2000, Will Ryan spake thusly:
> Beware of latest visual basic worm, UOEOGO.  One of our "Sales" folks got
> hit.
> 
> Beware!
>  Will
> 
> 
>
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
>with 'unsubscribe' in the body to [EMAIL PROTECTED]
-- 
#include 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Linux: Because rebooting is for adding 
new hardware.
***


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Jon Tillman

On Wed, 18 Oct 2000, Rob Keniger spake thusly:
> on 10/18/00 8:03 PM, Neil Clark at [EMAIL PROTECTED] wrote:
> 
> > Not sure what you mean - there is a unique key for every user... Also how
> > are you giving *every user* access the DB?  are you talking about when the
> > user is at the machine or via the web?
> 
> *IF* your site is hacked and someone gets full access to the database, if
> you store the key as well as the encrypted password then all the user
> passwords are there for the taking. If you encrypt then with a one-way hash
> instead the passwords are still secure and cannot be decrypted even to a
> user with full access.
> 
> Mind you, this probably doesn't matter because if someone gets access to the
> database they probably wouldn't care about the user passwords anyway.

thats why we are setting up a 'password' server seperate from all our hosting
servers, that will only store hashed passwords.

> 
> -- 
> 
> Rob Keniger
> 
> big bang solutions
> 
> <mailto:[EMAIL PROTECTED]>
> <http://www.bigbang.net.au>
> 
> 
>
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
>with 'unsubscribe' in the body to [EMAIL PROTECTED]
-- 
#include 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Jon Tillman

On Wed, 18 Oct 2000, Neil Clark spake thusly:
> Okay, hash-ing the password seems to be an overkill - why not simply
> generate a random key which you can use with encrypt(form.password, key)
> this value can then be placed in the db along with the key...  when it comes
> to it, simply decrypt the form.password with the given key and you're away.
> If they don't match - see ya, if they do - cool. ;-)

because i want them encrypted in the db.
It isn't overkill, there is nothing that is overkill, when it comes to
security. Remember, security isn't a product, it is a way of life :)

> 
> People 'peeking' in your DB should never be a problem if it is set up
> correctly with security et al.

'never' is not a word that exists in the security field...

-- 
#include 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Storing passwords in database as one way hash

2000-10-17 Thread Jon Tillman

Every time a particular string is encrypted, the hash will be the same
therefore, if you have the hash for 'password' stored, and the user types
'password' for their password, i can compare the resultant hash against the one
in the database, and if they match, then the user has typed the proper password.

On Tue, 17 Oct 2000, Robert Everland III spake thusly:
> But if it's a one way hash, why do you need to store it, you can't decrypt
> it. What is the purpose?
> 
> 
> Bob Everland
> 
> -Original Message-
> From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 4:39 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
> 
> 
> Who ever said it is going to be used one time?
> I need to securely store the passwords for several dozen competing users
> 
> On Tue, 17 Oct 2000, Robert Everland spake thusly:
> > Why even bother storing a password in a one way hash if it's only gonna be
> > used one time?
> >
> > Robert Everland III
> > Web Developer
> > Dixon Ticonderoga
> >
> >
> > -Original Message-
> > From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, October 17, 2000 2:32 PM
> > To: CF-Talk
> > Subject: RE: Storing passwords in database as one way hash
> >
> >
> > > anybody know of anything that does such?
> > > I am looking for pretty much the same functionality as a standard
> > > *NIX login
> >
> > Look up the function Hash().  I think it was introduced in CF 4.5.
> > Actually, I just looks at the online cfdocs and don't see it in there, but
> > it is... maybe introduced in 4.5.1?
> >
> > There's also a CFX_HASH in the tag gallery that give many more options of
> > hash types.
> >
> > -Cameron
> >
> > 
> > Cameron Childress
> > ElliptIQ Inc.
> > p.770.460.7277.232
> > f.770.460.0963
> >
> > --
> --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> > ----------
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> ***
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  http://www.eruditum.org
>  [EMAIL PROTECTED]
>  JAPH
> ***
> Be alert, the world needs more lerts
> ***
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
#include 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Storing passwords in database as one way hash

2000-10-17 Thread Jon Tillman

Who ever said it is going to be used one time?
I need to securely store the passwords for several dozen competing users

On Tue, 17 Oct 2000, Robert Everland spake thusly:
> Why even bother storing a password in a one way hash if it's only gonna be
> used one time? 
> 
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
> 
> 
> -Original Message-
> From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:32 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
> 
> 
> > anybody know of anything that does such?
> > I am looking for pretty much the same functionality as a standard
> > *NIX login
> 
> Look up the function Hash().  I think it was introduced in CF 4.5.
> Actually, I just looks at the online cfdocs and don't see it in there, but
> it is... maybe introduced in 4.5.1?
> 
> There's also a CFX_HASH in the tag gallery that give many more options of
> hash types.
> 
> -Cameron
> 
> 
> Cameron Childress
> ElliptIQ Inc.
> p.770.460.7277.232
> f.770.460.0963
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: [Storing passwords in database as one way hash]

2000-10-17 Thread Jon Tillman

Access

On Sat, 22 Nov 2036, [EMAIL PROTECTED] spake thusly:
> what database? MySQL has a password() function that encrypts
> 
> Jon Tillman <[EMAIL PROTECTED]> wrote:
> anybody know of anything that does such?
> I am looking for pretty much the same functionality as a standard *NIX login

-- 
*******
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Storing passwords in database as one way hash

2000-10-17 Thread Jon Tillman

anybody know of anything that does such?
I am looking for pretty much the same functionality as a standard *NIX login

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: dynamically filling out a calendar redux

2000-10-16 Thread Jon Tillman

Thanks.
I can be so dense sometimes...
sheesh

On Mon, 16 Oct 2000, Pete Freitag spake thusly:
> This may work, I am assuming that you are using this as a custom tag...
> 
> Replace:
> 
> 
> With:
> 
> 
> Then if you want to use a different date, say:
> 
> 
> __
> Pete Freitag ([EMAIL PROTECTED])
> CFDEV.COM / NETDesign Inc.
> ColdFusion Developer Resources
> http://www.cfdev.com/
> 
> -Original Message-
> From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 16, 2000 10:15 PM
> To: CF-Talk
> Subject: dynamically filling out a calendar redux
> 
> 
> At the beginning of this month, I asked about dynamically filling in a
> calendar
> with the days of the current monthor any month for that matter, and
> Jeremy
> Allen was kind enough to provide some code.
> 
> I have now gotten around to looking at it, and as it was presented, it fills
> everything out the same way. I am a bit dense about date functions in Cf, so
> if
> you could be so kind Jeremy, as to point out what has to be modified in
> order
> to set it up right, as I would like it to display the current month, unless
> another is passed to it.
> 
> I include the original snippet below:
> 
> ---snippet-
>
>  
>   CreateDateTime(Year(Attributes.dateCurrent),
>  Month(Attributes.dateCurrent), 1, 0, 0, 0)>
>   CreateDateTime(Year(Attributes.dateCurrent),
>  Month(Attributes.dateCurrent), DaysInMonth(Attributes.dateCurrent),
> 0, 0,
>  0)>
>  
>  
>   INDEX="i">
>  
>  
>  
>  
>   INDEX="j">
>  
>   SIZE="2"> 
>  
>  
>  
>   VALIGN="TOP">
>   SIZE="1">#i#
>  
>  
>  
>  
>  
>   SIZE="2"> 
>  
>          
>  
>  
>  
>  
>  
>  
>  
> --end snippet---
> 
>  --
> ***
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  http://www.eruditum.org
>  [EMAIL PROTECTED]
>  JAPH
> ***
> Be alert, the world needs more lerts
> ***
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



dynamically filling out a calendar redux

2000-10-16 Thread Jon Tillman

At the beginning of this month, I asked about dynamically filling in a calendar
with the days of the current monthor any month for that matter, and Jeremy
Allen was kind enough to provide some code.

I have now gotten around to looking at it, and as it was presented, it fills
everything out the same way. I am a bit dense about date functions in Cf, so if
you could be so kind Jeremy, as to point out what has to be modified in order
to set it up right, as I would like it to display the current month, unless
another is passed to it.

I include the original snippet below:

---snippet-
   
 
 
 
 
 
 
 
 
 
 
 
 
  
 
 
 
 
 #i#
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
--end snippet---

 -- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Checking URL validity

2000-10-15 Thread Jon Tillman

On Sun, 15 Oct 2000, Peter Theobald spake thusly:
> Geez.. you guys with your NT-only CFX's are almost enough to make me switch from 
>Linux to NT...

Be strong in the force, and turn not to the dark side...

> 
> At 07:49 PM 10/15/00 +0200, richard ten barge wrote:
> 
> >I would do this with CFX_HTTP from the custom gallery, and then check for
> >error- info, if some 4.04 or other errors occur, you could disable the URL
> >and/or give it some other color..
> >
> >richard ten Barge
> >1MB
> >
> >
> >At 10:36 15-10-2000 -0700, you wrote:
> >>From: "Dick Applebaum" <[EMAIL PROTECTED]>
> >>
> >>
> >>> I think you can check if a file exists with CFFTP
> >>>
> >>
> >>That's work (or just FileExists() ) if the calling template was
> >>on the same server as the stored files. Unfortunately, it
> >>appears that the downloads are elsewhere so the point about
> >> only producing http headers after transfer of the
> >>file remains.
> >>
> >>What I'd do (other than looking for a http tool that GETs just
> >>response headers) is check a stored value  based on the last
> >>attempt to get the file. I.E., the very first time the file is
> >>downloaded by calling the local template store the value of the
> >>header. The next time, and in all subsequent calls, check that
> >>variable before getting. If the last attempt showed that the
> >>call failed - give the user the choice of continuing or not.
> >>Give them the info as to when the last successful download
> >>occurred. The availabiity info will be stale according to the
> >>datetime of the last successful attempt.
> >>
> >>Alternatively - maybe contacting the hosts of the large files
> >>and requesting they make file availabioty data easily accessible
> >>would solve the problem. Much easier to  a page that
> >>is checking its own downloads and then proceed based on
> >>that kind of return.
> >>
> >>Until a tool that returns just headers is found, either of the
> >>above will work 
> >>
> >>Pan "off to look for that tool"
> >>
> >>
> >>>
> >>> At 1:43 PM +1000 10/15/00, Rob Keniger wrote:
> >>> >Hi,
> >>> >
> >>> >I have a client who has several links to largish (up to 100MB) downloads
> >>> >which are hosted on other people's servers. He wants my CF app to
> >>> >automatically check all these URLs to ensure they are still valid (i.e.
> >not
> >>> >giving 404's).
> >>> >
> >>> >I thought about using CFHTTP but from what I know of it you would have to
> >>> >download the entire linked file before you could determine whether or not
> >>> >the link was valid. If the client has, say, several hundred downloads at
> >>> >10-100MB apiece then this is obviously not feasible in terms of time, disk
> >>> >space and bandwidth. Is there any way to use CF to do this? If CFHTTP
> >won't
> >>> >do the job, is there an alternative?
> >>> >
> >>> >Thanks for any input.
> >>> >
> >>> >--
> >>> >
> >>> >Rob Keniger
> >>>
> >--
> >>> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >>> To Unsubscribe visit
> >>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> >send
> >>a message to [EMAIL PROTECTED] with 'unsubscribe' in the
> >body.
> >>>
> >>
> >>---
> >---
> >>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >>To Unsubscribe visit
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> >send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> >the body.
> >>
> >--
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 
> 
> 
> ---
> Pete

Re: OT: RE: Developer Directory?

2000-10-11 Thread Jon Tillman

If the thread in question was so off-topic as to "go to new heights/lows" how
much more so this thread about the thread that left the topic?

And anyway, the CF-Talk guidelines say:
"The CF-Talk Mailing List provides an email based forum in which members can
read and post about ColdFusion and related topics."
"Please DO post your succinct questions and answers, announcements about
events, products, and job opportunities and your input on discussions of
workplace issues. As long as the topic is ColdFusion-related, and your TOPIC
clearly defined in your SUBJECT line, it is acceptable (exceptions noted
below). "

Since this thread is pertinent to both "workplace issues" and the ColdFusion
language itself, as well as a large group of its developers/users, I would deem
it to be on-topic.

Note that this list is CF-Talk, not CF-Code-Help.




On Wed, 11 Oct 2000, paul smith spake thusly:
> I chose to receive messages about CF.
> Not about totally different topics.
> 
> OT messages are one thing, and I almost always simply tolerate them and hit 
> delete, but this thread goes to new heights/lows.
> 
> I simply make the observation that those who feel so strongly about those 
> who inflict unwanted unwanted messages on them chose to express their 
> feelings on the subject by inflicting unwanted messages on others.
> 
> Don't you think that's a bit odd?  Don't you think they could have instead 
> simply corresponded directly with the person they consider a SPAMMER?
> 
> best,  paul
> 
> At 04:24 PM 10/11/00 -0700, you wrote:
> >We're not spamming the list.  You choose to receive these messages.
> >
> >--K
> >
> > > -Original Message-
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, October 11, 2000 2:51 PM
> > > To: CF-Talk
> > > Subject: RE: Developer Directory?
> > >
> > >
> > > I find it curious that those who are so sensitive about
> > > SPAM express it by SPAMMING this list with OT messages ;-)
> > >
> > > best,  paul
> > >
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Developer Directory?

2000-10-11 Thread Jon Tillman
> > All great things are realized great until the "flack" is at
> > > > it's worst
> > > > > Most Recently.
> > > > > Napster, NetAppliance, WAP, Cicso, NDS..
> > > > >
> > > > >
> > > > > We'll see guys... I promise no spam... Our group came from a email
> > > > marketing
> > > > > company we sold out to double click. optinemail.com...
> > > > >
> > > > > We inatied the AOL hell thread because of the way AOL reparses
> > > > doublequoted
> > > > > links in all email so they have exclusive linking in emails.
> > > > >
> > > > > Our goal. To be directory for other developers doing there
> > > > own thing to
> > > > > focus on their expertise.. Cold Fusion, Spectra whatever.
> > > > The lets say a
> > > > > flash developer need function There you go
> > > > >
> > > > > Later,
> > > > > Talk to you later...
> > > > > -brian
> > > > >
> > > > > - Original Message -
> > > > > From: Michael Dinowitz <[EMAIL PROTECTED]>
> > > > > To: CF-Talk <[EMAIL PROTECTED]>
> > > > > Sent: Wednesday, October 11, 2000 2:02 PM
> > > > > Subject: Re: Developer Directory?
> > > > >
> > > > >
> > > > > > I think there's one active already. I've got one in beta
> > > > at FA but it
> > > > > isn't
> > > > > > up yet.
> > > > > > Personally, I feel that the approach your taking is not
> > > > the best as many
> > > > > > feel like they're being dragged into something they
> > > > didn't want to be
> > > > part
> > > > > > of. Posting a request to a public place and saying for
> > > > people to come
> > > > > visit
> > > > > > is one thing, but scanning their email addresses and then
> > > > emailing them
> > > > > > directly to do so doesn't feel right. Someone else did
> > > > something very
> > > > > > similar and got a LOT of flack for it.
> > > > > >
> > > > > >
> > > > > > > We've created a directory of about 1200 developers from
> > > > talk graoups,
> > > > > > > confrences, and what not, does anyone see any major
> > > > issues emailing
> > > > > > everyone
> > > > > > > to ask to modify a profile we have setup and make live
> > > > on a site that
> > > > > > rates
> > > > > > > each one based on customer satisifaction and developer
> > > > strengths like
> > > > > > > Spectra, CF, Database skills. All on a opt in procedure
> > > > currently.
> > > > > > >
> > > > > > > Are there any existing directories?
> > > > > > >
> > > > > > >
> > > > > > > Thanks,
> > > > > > > Brian
> > > > > > >
> > > > > >
> > > > >
> > > > >
> > > > ----------
> > > > 
> > > > > > 
> > > > > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > > > > To Unsubscribe visit
> > > > > >
> > > > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
> > > s/cf_talk
> > > or
> > > > > send a message to [EMAIL PROTECTED] with
> 'unsubscribe'
> > > in
> > > > > the body.
> > > > > >
> > > > >
> > > >
> > >
> > --
> > > > 
> > > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > > To Unsubscribe visit
> > > >
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> > > > the body.
> > > > >
> > > >
> > >
> > --
> > > -

RE: Developer Directory?

2000-10-11 Thread Jon Tillman
ubject: Re: Developer Directory?
> > >
> > >
> > > > I think there's one active already. I've got one in beta 
> > at FA but it
> > > isn't
> > > > up yet.
> > > > Personally, I feel that the approach your taking is not 
> > the best as many
> > > > feel like they're being dragged into something they 
> > didn't want to be
> > part
> > > > of. Posting a request to a public place and saying for 
> > people to come
> > > visit
> > > > is one thing, but scanning their email addresses and then 
> > emailing them
> > > > directly to do so doesn't feel right. Someone else did 
> > something very
> > > > similar and got a LOT of flack for it.
> > > >
> > > >
> > > > > We've created a directory of about 1200 developers from 
> > talk graoups,
> > > > > confrences, and what not, does anyone see any major 
> > issues emailing
> > > > everyone
> > > > > to ask to modify a profile we have setup and make live 
> > on a site that
> > > > rates
> > > > > each one based on customer satisifaction and developer 
> > strengths like
> > > > > Spectra, CF, Database skills. All on a opt in procedure 
> > currently.
> > > > >
> > > > > Are there any existing directories?
> > > > >
> > > > >
> > > > > Thanks,
> > > > > Brian
> > > > >
> > > >
> > >
> > > 
> > --
> > 
> > > > 
> > > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > > To Unsubscribe visit
> > > > 
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
> s/cf_talk
> or
> > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> > > the body.
> > > >
> > >
> >
> > --
> > 
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> > >
> >
> > --
> --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> >
> > --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Developer Directory?

2000-10-11 Thread Jon Tillman
 PROTECTED] with 'unsubscribe'
> in
> > > the body.
> > > >
> > >
> >
> > --
> > 
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> > >
> >
> > --
> --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> >
> > --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: dynamically filling a calendar

2000-10-06 Thread Jon Tillman

Thanks guys, that hit the spot

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Commenting on multiple lines

2000-10-06 Thread Jon Tillman

I have had no trouble using
<---
comment
--->



On Fri, 06 Oct 2000, Jon Gage spake thusly:
> I've found that when I comment something like this:
> 
> 
> 
> As opposed to this:
> 
> 
> 
> 
> My programs seem to bomb.  It sometimes "forgets" which lines of code are
> comments etc.
> 
> I was wondering if anybody knows if this is a common occurence in CF?
> 
> Thanks,
> Jon Gage
> Videoflicks.com
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: dynamically filling a calendar

2000-10-06 Thread Jon Tillman

Please doalso, is there somewhere i can view the article?

On Fri, 06 Oct 2000, Kevin Schmidt spake thusly:
> Jon,
> 
> I just finished writing an article for CFDJ on this very thing.  I would be
> more than willing to send you the code that generates the calendar as well
> as populates it from a Database of events.
> 
> Kevin
> - Original Message -----
> From: "Jon Tillman" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, October 06, 2000 9:24 AM
> Subject: dynamically filling a calendar
> 
> 
> > Hey folks,
> > I have a calendar(as part of a scheduling app) that I need to fill in
> > dynamically.
> > What I am trying to do is to allow the user to select any month in any
> year and
> > have the table filled out with the correct "month view" layuot.
> > Is there a way to compare the results of the DateFormat() function OR a
> > variable to the position of the table cell (both row and column) so as to
> > determine where the individual dates should be?
> >
> > Any help would be greatly appreciated.
> >
> > --
> > ***
> >  Jon Tillman
> >  LINUX USER: #141163
> >  ICQ: 4015362
> >  http://www.eruditum.org
> >  [EMAIL PROTECTED]
> > ***
> > Be alert, the world needs more lerts
> > ***
> >
> > --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



dynamically filling a calendar

2000-10-06 Thread Jon Tillman

Hey folks,
I have a calendar(as part of a scheduling app) that I need to fill in
dynamically. 
What I am trying to do is to allow the user to select any month in any year and
have the table filled out with the correct "month view" layuot.
Is there a way to compare the results of the DateFormat() function OR a
variable to the position of the table cell (both row and column) so as to
determine where the individual dates should be?

Any help would be greatly appreciated.

-- 
*******
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Get the structures list

2000-10-05 Thread Jon Tillman

On Thu, 05 Oct 2000, Christian Labrecque spake thusly:
> Hi,
> 
> I want the list of structures on a page?
> Is it possible to get it with cf?

there is a tag called cf_structdump that wi;; do that for ya, you just pass it
the name of the structure and it outputs a table with everything in it

> 
> Thanks
> 
> --
> FILAMENT COMMUNICATIONS
> Bright ideas for a new economy
>  
> Christian Labrecque
> Web Developer
>  
> http://www.filamentinc.com
>  
> 126 York St., Suite 500, Ottawa, Ontario K1N 5T5
> (t) 613-241-7200   (f) 613-241-7157
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Jon Tillman

On Tue, 03 Oct 2000, BORKMAN Lee spake thusly:
> Hey guys,
> 
> Don't you foreigners have your own lists for talking politics? ;-)

nah, were rude and uncouth, and like to air our laundry right out where
everyone has to deal with it :)

> 
> Sometimes from Estonia, sometimes from Australia, rarely interested in
> America,
> Lee (Bjork) Borkman
> http://bjork.net ColdFusion Tags by Bjork
> 
> 
> -Original Message-
> From: Peter Theobald [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 04, 2000 12:48 PM
> To: CF-Talk
> Subject: Re: OT BUT CRITICALLY IMPORTANT...
> 
> 
> *OPINIONS FOLLOW* YOU MAY DISAGREE* THAT IS YOUR PEROGATIVE*
> 
> Traditionally there is not an IT union for several reasons:
> 
> 1) Unions began when exploited workers attempted to organize to fight the
> their exploitation. IT workers have never been exploited, as a matter of
> fact we enjoy some of the highest wages and most flexible working conditions
> in any industry. There is currently much more demand for skilled IT workers
> than there is supply of those workers. IT workers are a class that hardly
> need the protection of an organization.
> 
> 2) IT workers have always had a grass-roots "meritocracy" philosophy. In
> other words we have felt that the best opportunities should go to the most
> skilled workers regardless of other factors such as 'tenure', 'nationality',
> 'race', 'age', 'sex', or 'membership in a union'. Perhaps this is an
> outgrowth of the nature of what we do. We spend all our time looking for the
> most efficient solutions to problems, so perhaps we naturally feel that
> "jobs" should also be granted to the most efficient worker for a given task,
> and not to the one who has paid his or her union dues the longest.
> 
> 
> At 06:28 PM 10/3/00 -0400, Jon Tillman wrote:
> >While I may not take such a hard-line position about this issue, it does
> raise
> >a question to me:
> >Is there an IT union? if so, does anyone have contact info?
> >if not, why not?
> >
> >-- 
> >***
> > Jon Tillman
> > LINUX USER: #141163
> > ICQ: 4015362
> > http://www.eruditum.org
> > [EMAIL PROTECTED]
> >***
> >Be alert, the world needs more lerts
> >***
> >
> >---
> ---
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body. 
> 
> 
> ---
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Jon Tillman

You dont seem to have too high an opinion of Unions, any particular reason?

On Tue, 03 Oct 2000, Peter Theobald spake thusly:
> *OPINIONS FOLLOW* YOU MAY DISAGREE* THAT IS YOUR PEROGATIVE*
> 
> Traditionally there is not an IT union for several reasons:
> 
> 1) Unions began when exploited workers attempted to organize to fight the their 
>exploitation. IT workers have never been exploited, as a matter of fact we enjoy some 
>of the highest wages and most flexible working conditions in any industry. There is 
>currently much more demand for skilled IT workers than there is supply of those 
>workers. IT workers are a class that hardly need the protection of an organization.
> 
> 2) IT workers have always had a grass-roots "meritocracy" philosophy. In other words 
>we have felt that the best opportunities should go to the most skilled workers 
>regardless of other factors such as 'tenure', 'nationality', 'race', 'age', 'sex', or 
>'membership in a union'. Perhaps this is an outgrowth of the nature of what we do. We 
>spend all our time looking for the most efficient solutions to problems, so perhaps 
>we naturally feel that "jobs" should also be granted to the most efficient worker for 
>a given task, and not to the one who has paid his or her union dues the longest.
> 
> 
> At 06:28 PM 10/3/00 -0400, Jon Tillman wrote:
> >While I may not take such a hard-line position about this issue, it does raise
> >a question to me:
> >Is there an IT union? if so, does anyone have contact info?
> >if not, why not?
> >
> >-- 
> >***
> > Jon Tillman
> > LINUX USER: #141163
> > ICQ: 4015362
> > http://www.eruditum.org
> > [EMAIL PROTECTED]
> >***
> >Be alert, the world needs more lerts
> >***
> >
> >--
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 
> 
> 
> ---
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
> 
> ------
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Jon Tillman
; >Let's not be fools and misunderstand my simple scenario
> > > >that is not as accurate as it could be but clearly shows
> > > >the implications and furthermore it is highly likely
> > > >this will never be recinded as it will be tagged as a
> > > >   'success'
> > > >
> > > >Think about this my peers. After all, we've been smart
> > > >enough and motivated to keep this nation running and
> > > >prosperous for the last ten  years and now we're all
> > > >getting flushed down the toilet by the neo-nazi fascist
> > > >scum politicians who are obviously getting paid off
> > > >with 'soft money'.
> > > >
> > > >Did your employer contribute to the corruption fund?
> > > >
> > > >I would not ordinarily spam the Usenet but this sh!t is
> > > >unreal. What's the matter with us? Why can't we organize
> > > >and resist this effort to destroy our lives, our careers
> > > >and any opportunity to have families and a life of
> > > >prosperity as a result of our merits?
> > > >
> > > >Don't forget this tonight when you listen to those
> > > >two neo-nazi fascist bastards Gore & Bush.
> > > >
> > > ><%= Clinton Gallagher
> > > >http://www.MetroMilwaukee.com/ClintonGallagher/
> > >
> > >---
> >---
> > > >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > >To Unsubscribe visit
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> >send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> >the body.
> > >
> > >
> > > 
> >--
> >-
> > > Peter Theobald, Chief Technology Officer
> > > LiquidStreaming http://www.liquidstreaming.com
> > > [EMAIL PROTECTED]
> > > Phone 1.212.545.1232 x204 Fax 1.212.545.0938
> > >
> > > 
> >--
> >
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> >send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> >the body.
> > >
> >
> >--
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit 
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
> >send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
> >the body.
> 
> _
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
> 
> Share information about yourself, create your own public profile at 
> http://profiles.msn.com.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-03 Thread Jon Tillman

While I may not take such a hard-line position about this issue, it does raise
a question to me:
Is there an IT union? if so, does anyone have contact info?
if not, why not?

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: #Timeformat(Now())#

2000-10-03 Thread Jon Tillman

Try:





-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Page hanging in netscape

2000-10-03 Thread Jon Tillman

On Tue, 03 Oct 2000, Mark Adams spake thusly:
> Ok GURU's
> 
> I can't seem to locate the problem can someone take a look at this page and
> see why netscape hangs on it?
> 
> Thanks for any hints on this.
> 
> http://www.madronalinks.com/rates.cfm

without looking at it my guess is malformed javascript or Java, does it every
time

> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Allaire statement on law suits

2000-09-29 Thread Jon Tillman

I was sure that iD was the most powerful :)

On Fri, 29 Sep 2000, Steve Bernard spake thusly:
> It's all nice and good that, "The company believes that the lawsuits are
> without merit and will vigorously contest these lawsuits and expects to seek
> dismissal at the appropriate time.", but the cash situation being what it
> is, defending even the most trivial of lawsuits only sucks more money out of
> the coffers and creates distractions throughout the company. Although the MS
> case is different, look at how that affected the most powerful software
> company in the world.
> 
> Steve
> 
> -Original Message-
> From: Adrian Cooper [mailto:[EMAIL PROTECTED]]
> Sent: Friday, September 29, 2000 12:47 PM
> To: CF-Talk
> Cc: [EMAIL PROTECTED]
> Subject: Allaire statement on law suits
> 
> 
> Copied to CF-Talk on the basis that people here will want to know what
> Allaire
> is saying and doing about the the allegements by some shareholders.
> 
> FWIW - having studied this entire situation closely for a few days now, I
> conclude, (and this is entirely my own opinion), that these class action law
> suits are a result of:
> 
> 1) Sour grapes on the part of shareholders who can't accept the fact that
> the
> value of stocks can go down as well as up.
> 
> 2) Opportunism on the part of lawyers - some of whom apparently specialise
> in
> this sort of thing.
> 
> Aside from the sell-off today caused by Apple Computer announcements,
> Allaire
> stock has now stablised in a massively oversold state at around $8
> 
> Adrian Cooper.
> 
> Allaire statement follows
> 
> Allaire Says Securities Class Action Lawsuits Without Merit
> 
> NEWTON, Mass., Sep 29, 2000 /PRNewswire via COMTEX/ -- Allaire Corporation
> (Nasdaq: ALLR) confirmed that several purported shareholder class action
> complaints have been filed against Allaire and certain of its officers in
> the
> United States District Court for the District of Massachusetts. In the
> complaints that the company has received, the plaintiffs claim to represent
> purchasers of Allaire's common stock during the period from July 20, 2000 to
> September 18, 2000 (the "purported Class Period"), and seek unspecified
> damages.
> The complaints contain allegations that the defendants allegedly made
> misleading
> statements or omissions concerning the company's performance during the
> purported Class Period. The company believes that the lawsuits are without
> merit
> and will vigorously contest these lawsuits and expects to seek dismissal at
> the
> appropriate time.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ...list...array

2000-09-29 Thread Jon Tillman

On Fri, 29 Sep 2000, Gavin Myers spake thusly:
> okay, i've been getting into lists and arrays but i cant find very much good
> reference
> 
> 1: is a list just a 1d array?

list are variables, and are created as such:


> 2: how do you carry a list/array through pages? Is the only way to do it via
> application.cfm and locking the list/array?

see above

> 3: i can figgure out how to make a new array, pretty tough arraynew(1) ;),
> but how do you make a new list? couldnt find the function for it...

see above

> 
> I'm pretty famaliar with arrays, they arent a very tough concept, my main
> problem is syntax, wich i can put togethor via developin web applications
> (the cf standard book). How to compare them to another when done, how to add
> the person picked the letter b on the third question... most of this stuff i
> can figgure out by looking at the functions.. my main problem is question
> #2.
> 
> 
> when i do this:
> 
> 
> 
> 
> It bascially does this:
> myarray = [1,2,3]
> 
> right?
> 
> a list really looks & seems to act like a 1d array
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ...array

2000-09-29 Thread Jon Tillman

Can't you just use a list and compare the two?

On Fri, 29 Sep 2000, Gavin Myers spake thusly:
> I have a little project, i'm thinking I should use an array, but i've never
> used an array in cold fusion. I have in other langs though.
> 
> If you check out
> http://collab.lightrodsoft.com/lrscheck/
> (you dont have to enter in real information, it doesnt write to a db)
> 
> it is a series of questionairs.
> 
> This is what I'm thinking
> each time someone guesses an answer it goes into an array
> 
> myguesses = [a,b,a,c,d]
> 
> at the end it gets compared to the list of answeres in the db
> 
> theansweres = [a,b,c,a,b]
> 
> Now i need to compare these two to see how many match.
> 
> How do i go about doing this in cold fusion?
> 
> Does anyone have any good examples of doing questionares in CF and have some
> suggestions to how to store the q/a in the db?
> 
> Thanks,
> Gavin
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: HeadHunters?

2000-09-28 Thread Jon Tillman

Oh great, the slave-traders are trolling the list?

On Thu, 28 Sep 2000, Robert Everland spake thusly:
> Is anyone else magically getting job offers from headhunters who
> know your name or is it just me?
> 
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***********
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: [CF-Talk] Get back

2000-09-18 Thread Jon Tillman

On Tue, 19 Sep 2000, Parker, Kevin spake thusly:
> Can someone help me with this little puzzle.
> 
> I have a three page process structured as follows.
> 
> 1. Menu page (test_id.cfm)
> 2. Form (CF)
> 3. Thank you and confirmation page (and processing template)
> 
> When the user gets to the Thank you page I want to trap instances of hitting
> the Back button in the browser and send them back to the Menu Page, not the
> Form. I've tried this but for reasons unclear to me it sends the user back
> to the Form, not the menu page. Can anyone help please? (code below) 

Why use Java? I have recently done this in CF.
You set a session variable called 'location' or whatever, init it to "" and
then have the menu page set it to itself. Then any other page can cal la link
to 

not too elegant, but it works even if someone has java turned off :)

> 
> 
> 
> <!--
> history.back('test_id.cfm');
> //-->
> 
> 
> 
> Kevin Parker
> Service and Communication
> WorkCover Corporation
> 
> [EMAIL PROTECTED]
> 
> ph:  +61 8 82332548
> fax: +61 8 82332000
> 
> 
> 
> 
> 
> 
> This e-mail is intended for the use of the addressee only. It may contain
> information that is protected by legislated confidentiality and/or is
> legally privileged. If you are not the intended recipient you are prohibited
> from disseminating, distributing or copying this e-mail. Any opinion
> expressed in this e-mail may not necessarily be that of the WorkCover
> Corporation of South Australia. Although precautions have been taken, the
> sender cannot warrant that this e-mail or any files transmitted with it are
> free of viruses or any other defect.
> If you have received this e-mail in error, please notify the sender
> immediately by return e-mail and destroy the original e-mail and any copies.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ???????????

2000-09-15 Thread Jon Tillman
--
> > > 
> > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > To Unsubscribe visit
> > > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> > > the body.
> > > >
> > >
> > --
> > > 
> > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > To Unsubscribe visit
> > > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> > > the body.
> > >
> >
> > --
> 
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> > >
> >
> > --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



No Subject

2000-09-14 Thread Jon Tillman

Hey Y'all!

Does anyone have experience tying into the US Postal Service computers?  We
have a client who does most of their shipping via USPS and would like to have
their site automatically calculate the amount to charge for this shipping. I
would like to do this with a tag if at all possible.

Any ideas?

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Web servers

2000-09-12 Thread Jon Tillman

On Tue, 12 Sep 2000, paul smith spake thusly:
> Except that WS has the best documentation of any software, anywhere,
> and the best support from users and developers.  This TOTALLY
> overshadows any cost advantage IIS purports to have.

I would have to disagree on both points, those accolades belong to Apache,
nuff' said

> 
> best,  paul
> 
> At 10:50 AM 9/7/00 -0700, you wrote:
> >The only winning point I'd have for IIS would be the interface, granted I 
> >spend more time changing features (so it seems) in website than I am in 
> >IIS.  Other than that nothing terribly significant between the 2.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
"There are two major products that come out of 
Berkeley: LSD and UNIX. We don't believe this 
to be a coincidence." - Jeremy S. Anderson
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



More structure questions

2000-09-10 Thread Jon Tillman

Okay, so I have a working structure that I can put data into, and show the
results of pretty-like. However (being the slow learner that I am) I cannot
figure out how to delete specific key pairs in a structure. Does anyone know of
a decent reference to structures or how ot do this?

 -- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: how to store a movie file?

2000-09-09 Thread Jon Tillman

On Sun, 10 Sep 2000, JF spake thusly:
> >can you please tell me how to store the images/movie files in the database
> >so that if i click on the image later ,  i should able to run that file to
> >watch the movie. Is there any way in the cf to do this??
> >I'm using sql server7 database with cold fusion 4.5
> 
> I wouldn't store your .mpeg's/.avi's or whatever huge blob's in the 
> database - just store a path to the file in the database and retrieve the 
> file via an url.  The performance hit of making SQL Server drag that huge 
> file out of the table and across the wire isn't worth it.
> 
> ...Jay
> 
As a matter of fact, only store the name of the file. Set the path to it in
Application.cfm, that way if you have to move the directory structure around
later, no worries...

 --  
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Setting structure values

2000-09-09 Thread Jon Tillman

Let me try again, and see if I dont confuse you this time:








Now, I need to take another FORM.productID, see if a record with the same ID
exists, and if so, add FORM.quantity to the second column in the structure,
given that ProductID is the first

In your example below, it would be searching for the record "Chris" and if it
existed, adding something to the record "Cortes".

Thank you for all of your help

On Sat, 09 Sep 2000, Chris Cortes spake thusly:
> Jon,
> 
> I am sorry, I made some incorrect assumptions about what you were trying to
> do. I think what you want to do is check to see if an Item exists in the
> Structure and then update its' value if it does. If this is correct the
> following code should help you out.
> 
> 
> 
>  // Create your structure...
>  MyStruct = StructNew();
> 
>  MyStruct.FName = "Chris";
>  MyStruct.LName = "Cortes";
> 
> 
> 
> Before the update:
> 
> 
> MyStruct.#i# = #evaluate("MyStruct.
> #i#")#
> 
> 
> 
> 
>  // Lets find the key and make the update if it exists...
>  Form.Field = "Fname";
> 
>  if(StructKeyExists(MyStruct,Form.Field)){
> 
>   "MyStruct.#Form.Field#" = "Christopher";
> 
>  }
> 
> 
> 
> After the update:
> 
> 
> MyStruct.#i# = #evaluate("MyStruct.
> #i#")#
> 
> 
> 
> PS I think that there is no function named StructFindNoCase(). There really
> is no need for it, because in ColdFusion, variable names are not
> CaseSensitive...
> 
> Chris Cortes
> Consultant
> [EMAIL PROTECTED]
> Direct 713-985-6244
> Cell 832-723-6485
> 
> Stonebridge Technologies
> ...The Fast Track to e-Business.
> vvisit us at www.sbti.com
> 
> 
> 
> - Original Message -
> From: "Jon Tillman" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, September 08, 2000 10:31 PM
> Subject: Re: Setting structure values
> 
> 
> > On Fri, 08 Sep 2000, Chris Cortes spake thusly:
> > > 
> > >
> > > 
> > >
> > > 
> > >
> > > All you need to do is set the structure key to the new value.
> >
> > So to update the found record to the form record would go something like:
> >
> > 
> >
> > ??
> >
> > --
> > ***
> >  Jon Tillman
> >  LINUX USER: #141163
> >  ICQ: 4015362
> >  http://www.eruditum.org
> >  [EMAIL PROTECTED]
> > ***
> > Help Jon build a network!
> > Looking for giveaway computers & parts
> > Current Need: Tape Drive & PI/PII processors
> > Email me to find out how you can help
> > ***
> >
> > --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Setting structure values

2000-09-08 Thread Jon Tillman

On Fri, 08 Sep 2000, Chris Cortes spake thusly:
> 
> 
> 
> 
> 
> 
> All you need to do is set the structure key to the new value.

So to update the found record to the form record would go something like:



??

-- 
*******
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Setting structure values

2000-09-08 Thread Jon Tillman

Hey, I have a new problem.
I have need to change a value in a structure based on the following:



How do I go about changing the returned value and updating the structure?

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Trouble with CFLOOP output

2000-09-08 Thread Jon Tillman

Thank you so much

On Fri, 08 Sep 2000, Dana Larose spake thusly:
> > 
> >  > href="aroma_prod_all.cfm?categoryId=#categoryID#">#categoryCategory#
> 
> You need a  around your href.  Stuff inside a 
> won't automatically be parsed as though they were ColdFusion.
> 
> Dana Larose
> ColdFusion Monkey
> Canadian Web Design & Consulting Inc.
> 
> A: 701-281 McDermot Avenue (McDermot & King)
> P: 204.946.5155
> C: 204.228.0477
> F: 204.946.5156
> E: [EMAIL PROTECTED]
> W: http://www.cdnwebdesign.com
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Daslweb - How do I get off of the mailing list?

2000-09-08 Thread Jon Tillman

On Fri, 08 Sep 2000, Daslweb - Greg spake thusly:
> This is a multi-part message in MIME format.
> 
> --=_NextPart_000_00C1_01C0198C.1BCCDB20
> Content-Type: text/plain;
>   charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
> 
> I do not have time to read 200 messages  a day anymore, because I have =
> started school and work part time. How would I get off the list for the =
> time being.

You could always read the footer attched to every one of those two hundred
messages :)

> 
> Gregory Pekofsky
> 
> --=_NextPart_000_00C1_01C0198C.1BCCDB20
> Content-Type: text/html;
>   charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
> 
> 
> 
>  charset=3Dwindows-1252">
> 
> 
> 
> 
> I do not have time to read 200 =
> messages  a day=20
> anymore, because I have started school and work part time. How would I =
> get off=20
> the list for the time being.
>  
> Gregory =
> Pekofsky
> 
> --=_NextPart_000_00C1_01C0198C.1BCCDB20--
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Trouble with CFLOOP output

2000-09-08 Thread Jon Tillman

Anyone care to help figure out why the  line just after the start of
the cfloop isnot getting parsed?

 
SELECT  *
FROMtblCategory
WHERE   categoryTopcategoryID=2


#categoryCategory#

SELECT *
FROM   tblProduct
WHERE  productCategoryID = #categoryID#



#productName#




-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: checking for tables?

2000-08-24 Thread Jon Tillman

On Thu, 24 Aug 2000, Andy Ewings spake thusly:
> What you want to do is test to see if the table is there.  If it is Insert
> data into it, if not create it first and then insert into it right?  What
> Nick has done is to provide you with the first line of code you need.  If
> the test succeeds then you want to only perform an Insert, if it fails (i.e.
> the ELSE part) then you want to do a create.  Even better I'd do nothing if
> it does succeed and a create if the test fails and then perform an insert
> whatever.  This make sense?
> 
Along the lines of:

IF EXISTS(  SELECT *
FROMMSysObjects
WHERE   ParentID = (   SELECT   Id
   FROM MSysObjects
   WHEREName = 'productID')
   AND Name = '#CFTOKEN#')
ELSE(   CREATE TABLE #CFTOKEN# (
productID number,
productQty number);)

Maybe?
-- 
*******
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: checking for tables?

2000-08-24 Thread Jon Tillman

On Thu, 24 Aug 2000, Neil Middleton spake thusly:
> All,
> 
> Do any of you lot know of any custom tags that will build the [1-10][11-20]
> style navigation at the bottom of a long list of results, the sort of thing
> that appears a LOT on search engines?

the "LAST 5" "NEXT 5" ?

go here:

http://www.cftutorials.com/index.cfm?mode=DisplayTutorial&TuUUID=CA3C99A0-EC34-11D3-85030050DABEAE1B

> --
> Neil Middleton
> Technical Director
> Stez Media
> 
> 
> Neil Middleton studied ancient Greek and Roman warfare with the aim of world
> domination.
> He's now a ColdFusion programmer.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: checking for tables?

2000-08-24 Thread Jon Tillman

On Thu, 24 Aug 2000, DeVoil, Nick spake thusly:
> Access!
> Good point!
> 
> Try
> 
> IF EXISTS(SELECT * FROM MSysObjects WHERE ParentID = (SELECT Id FROM
> MSysObjects WHERE Name = 'Tables') AND Name = '')

I hate to be a pest, but do you happen to know how thta would work with an
INSERT INTO, instead of SELECT FROM?

> 
> Nick
> 
> 
> **
> Information in this email is confidential and may be privileged. 
> It is intended for the addressee only. If you have received it in error,
> please notify the sender immediately and delete it from your system. 
> You should not otherwise copy it, retransmit it or use or disclose its
> contents to anyone. 
> Thank you for your co-operation.
> **
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: checking for tables?

2000-08-24 Thread Jon Tillman

On Thu, 24 Aug 2000, Andy Ewings spake thusly:
> Thats because you are using Access..the suyntax I sent is for SQL
> Server.never done it with Access

I wonder if it is even possible with Access

> 
> -Original Message-----
> From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> Sent: 24 August 2000 11:20
> To: [EMAIL PROTECTED]
> Subject: RE: checking for tables?
> 
> 
> Oh no, I spoke too soon:
> 
> [Microsoft][ODBC Microsoft Access Driver] Invalid SQL statement; expected
> 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.
> 
>  Data Source = "health-horizons"
> 
>  SQL = "IF EXISTS(INSERT INTO 96961133 (productID, productQty) VALUES(54,
> 1);)"
> 
> 
> On Thu, 24 Aug 2000, Andy Ewings spake thusly:
> > Yupif you are using SQL server the syntax is.
> > 
> > 
> > IF EXISTS (SELECT * FROM sysobjects WHERE name = "" AND type =
> > "U")
> > BEGIN
> > PRINT "Table Exists!."
> > END
> > 
> > 
> > -Original Message-
> > From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> > Sent: 24 August 2000 11:09
> > To: [EMAIL PROTECTED]
> > Subject: checking for tables?
> > 
> > 
> > quick question:
> > is there any way to check to see if a table exists without querying it,
> and
> > throwing an error if it does not? I want to either CREATE or INSERT a
> table
> > depending on whether or not it already exists
> > 
> > -- 
> > ***
> >  Jon Tillman
> >  LINUX USER: #141163
> >  ICQ: 4015362
> >  http://www.eruditum.org
> >  [EMAIL PROTECTED]
> > ***
> > Help Jon build a network!
> > Looking for giveaway computers & parts
> > Current Need: Tape Drive & PI/PII processors
> > Email me to find out how you can help
> > ***
> > 
> >
> 
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> >
> 
> --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> -- 
> ***
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  http://www.eruditum.org
>  [EMAIL PROTECTED]
> ***
> Help Jon build a network!
> Looking for giveaway computers & parts
> Current Need: Tape Drive & PI/PII processors
> Email me to find out how you can help
> ***
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: checking for tables?

2000-08-24 Thread Jon Tillman

Oh no, I spoke too soon:

[Microsoft][ODBC Microsoft Access Driver] Invalid SQL statement; expected 'DELETE', 
'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.

 Data Source = "health-horizons"

 SQL = "IF EXISTS(INSERT INTO 96961133 (productID, productQty) VALUES(54, 1);)"


On Thu, 24 Aug 2000, Andy Ewings spake thusly:
> Yupif you are using SQL server the syntax is.
> 
> 
> IF EXISTS (SELECT * FROM sysobjects WHERE name = "" AND type =
> "U")
> BEGIN
>   PRINT "Table Exists!."
> END
> 
> 
> -Original Message-
> From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> Sent: 24 August 2000 11:09
> To: [EMAIL PROTECTED]
> Subject: checking for tables?
> 
> 
> quick question:
> is there any way to check to see if a table exists without querying it, and
> throwing an error if it does not? I want to either CREATE or INSERT a table
> depending on whether or not it already exists
> 
> -- 
> ***
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  http://www.eruditum.org
>  [EMAIL PROTECTED]
> ***
> Help Jon build a network!
> Looking for giveaway computers & parts
> Current Need: Tape Drive & PI/PII processors
> Email me to find out how you can help
> ***
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: checking for tables?

2000-08-24 Thread Jon Tillman

You sir, are a hero, a true hero of the revolution

On Thu, 24 Aug 2000, Andy Ewings spake thusly:
> Yupif you are using SQL server the syntax is.
> 
> 
> IF EXISTS (SELECT * FROM sysobjects WHERE name = "" AND type =
> "U")
> BEGIN
>   PRINT "Table Exists!."
> END
> 
> 
> -Original Message-
> From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> Sent: 24 August 2000 11:09
> To: [EMAIL PROTECTED]
> Subject: checking for tables?
> 
> 
> quick question:
> is there any way to check to see if a table exists without querying it, and
> throwing an error if it does not? I want to either CREATE or INSERT a table
> depending on whether or not it already exists
> 
> -- 
> ***
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  http://www.eruditum.org
>  [EMAIL PROTECTED]
> ***
> Help Jon build a network!
> Looking for giveaway computers & parts
> Current Need: Tape Drive & PI/PII processors
> Email me to find out how you can help
> ***
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



checking for tables?

2000-08-24 Thread Jon Tillman

quick question:
is there any way to check to see if a table exists without querying it, and
throwing an error if it does not? I want to either CREATE or INSERT a table
depending on whether or not it already exists

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFSCRIPT question

2000-08-24 Thread Jon Tillman

I have the following as cfscript:

if (not(structKeyExists(session.cart, attributes.name)))

I would like to use it as a CFIF statement. Any ideas how to go about
constructing said cfif?

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: How much can CF handle?

2000-08-23 Thread Jon Tillman

On Thu, 24 Aug 2000, Michael Sheldon spake thusly:
> On a sturdy enough box, CF might handle the load, it depends on how complex
> the code is.
> 
> MySQL *won't*. If you're really going to get that kind of traffic, don't
> mess around with the small-fry, go to Sybase, Oracle, or at least
> PostgreSQL.
> 
> A dual P3 is not the most important issue, and in fact, Allaire specifically
> recommends NOT using an SMP Linux kernel until kernel 2.4 is released. 

IMO: Unless you use a backport of the SMP code form 2.4, such as in the SuSE 6.4
and 7.0 kernel series' Works pretty much flawlessly

-- 
***********
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



help with function?

2000-08-23 Thread Jon Tillman

Perhaps this?

































-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Help with function

2000-08-23 Thread Jon Tillman

hey guys,
I find myself in need of a new function added into a CF_Application that I
inherited along with this project/job.

I need to add a function that will allow for the updating of the quantity of
items in a cart.

I have the following:

















































































Knowing that, how would I go about making an "update" or "recalculate" function?

-- 
***********
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



decent shopping cart?

2000-08-22 Thread Jon Tillman

Is there a decent shopping cart that I can grab to build mine off of?

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



question about joined tables in query

2000-08-22 Thread Jon Tillman

Anybody know how to make this work:

SELECT  tblProduct.*,
tblCategory.*,
tblCollection.*,
tblLine.*,
tblProductSize.*,
tblProductWeight.*,
tblProductColor.*
FROM(tblProduct
LEFT JOIN tblCategory
ON tblProduct.productCategoryId = tblCategory.categoryId)
LEFT JOIN tblCollection
ON tblProduct.productCollectionID = tblCollection.collectionId)
LEFT JOIN tblLine
ON tblProduct.productLineId = tblLine.lineId)
LEFT JOIN tblProductColor
ON tblProduct.productId = tblProductColor.productcolorProductId)
LEFT JOIN tblProductSize
ON tblProduct.productId = tblProductSize.productsizeProductId)
LEFT JOIN tblProductWeight
ON tblProduct.productId = tblProductWeight.productweightProductId
WHERE   tblCategory.categoryCategory=#FORM.category#

I know the problem is in the WHERE statement, but I can't figure out how ot
make it work...

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Is this a new HTML embedded virus?

2000-08-22 Thread Jon Tillman

On Tue, 22 Aug 2000, Robert Everland spake thusly:
> Hope this doesn't screw up anyones HTML mail, that's why I am taking
> out the scriopt in it, but it was just surrounded by a script tag. Someone
> sent this to me and I just happened to be checking this with web based
> email.
> 
> 
> Robert Everland III
> Web Developer
> Dixon Ticonderoga

Linux says: nah, just looks like some bad Outlook code to me :)

-- 
*******
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



dynamically serving images

2000-08-21 Thread Jon Tillman

Okay, so I have a directory full of images that are all the same size, and I
want to display them in some pseudo-random order, so that you don't see the
same one every time you hit the page containing them...

Heres what I have figured out: 
make a series of includes to point to each image

http://www.blah.com">blah.jpg

Now i need to figure out how to loop through the list of available
includes and pick one at random. Any ideas?

 -- 
*******
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive & PI/PII processors
Email me to find out how you can help
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Newbie Question - Testing for Cookie Acceptance and BrowserHawk

2000-08-16 Thread Jon Tillman

On Thu, 17 Aug 2000, Dave Watts spewed forth into the void:
> > How can I test to make sure that a client has cookies enabled in both
> > Netscape AND IE?
> 
> You can't! The user is only going to visit with one at a time, and you won't
> be able to "see" the settings for the other one. However, if you're tracking
> somebody, you can force them to log into your system, so that no matter what
> browser they use they still have to log in with it.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
> 

Do you mean test for cookies enabled no matter what kind of browser someone is
using? If so, just send them a cookie and then immediately check to see if it
is there

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
Current Need: Tape Drive and network cards
Will pay postage
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



javascript error in IE5.0

2000-08-15 Thread Jon Tillman

hi gang,
does anyone know why the following will throw an error in IE, but not in
Netscape?

onClick="document.purchase.action='purchase.cfm';document.purchase.submit();"

Also, any idea how to mke it not do so.

-- 
***********
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
I want whatever you have
Will pay postage
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



password protection

2000-08-11 Thread Jon Tillman

'lo all,
I have a directory that holds administrative pages for my client database, and
need to secure it (obviously). What is the best way to go about doing that so
that one cannot call the modules in that directly, circumventing and /login
module...

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
I want whatever you have
Will pay postage
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Quick Poll - What d you want in a host?

2000-08-07 Thread Jon Tillman

Okay guys,
I would like to know what everyone considers important in a CF hosting
environment.
Are you looking for a development environment, or a place to host things for
your customers? or both?
what other requirements do you have for a host?

In case you couldn't tell, we are considering opening our servers up to outside
developers
 -- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
***
Help Jon build a network!
Looking for giveaway computers & parts
I want whatever you have
Will pay postage
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



JavaScript error in IE5.00.2920.00

2000-08-03 Thread Jon Tillman

Hello list,
Does anyone have any insight into why the following would throw a java error
(292) when clicked in IE, but not in any other browser?



Thanks for your help.
-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Allaire security problem - anyone know solution?

2000-08-03 Thread Jon Tillman

On Thu, 03 Aug 2000, Dan O'Keefe spewed forth into the void:
> http://support.allaire.com/application.cfm+.htr
> 
> It also appears to only be in IE.

nope, works in Netscape too, but you have to "view source"

> 
> --
> Dan O'Keefe
> TriPoint Technologies
> [EMAIL PROTECTED]
> 954.501.3113
> 
> -> -Original Message-
> -> From: Dave Wilson [mailto:[EMAIL PROTECTED]]
> -> Sent: Thursday, August 03, 2000 11:27 AM
> -> To: [EMAIL PROTECTED]
> -> Subject: Allaire security problem - anyone know solution?
> ->
> ->
> -> Hi all,
> ->
> -> One of my hosting clients has just made me aware of this major security
> -> problem and I'm wondering if anyone knows how to eliminate it?
> ->
> -> Try calling the application.cfm template on any CF site with
> -> +.htr appended
> -> to the end of the url. You'll first see a blank page. Now hit
> -> refresh/reload
> -> and you'll see the full code of said application.cfm
> ->
> -> e.g. http://www.support.alllaire.com/application.cfm+.htr
> ->
> -> Can someone please tell me there is a patch for this. It seems
> -> to happen on
> -> all CFserver versions 4.x + running IS4.0 with Service pack 5
> ->
> -> Dave
> ->
> -> Dave Wilson
> -> Internet Technology Manager,
> -> BizNet Solutions
> ->
> -> 
> -> Co-Founder CFUG Ireland
> -> http://www.cfug.ie
> ->
> -> 224, Lisburn Road
> -> Belfast BT9 6GE
> ->
> -> Tel: 02890 225 776
> -> Fax: 02890 223 223
> -> web: http://www.biznet-solutions.com
> ->
> -> email: [EMAIL PROTECTED]
> ->
> -> -
> -> -
> -> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> -> To Unsubscribe visit
> -> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/c
> f_talk or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
> 
> ----------
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Allaire security problem - anyone know solution?

2000-08-03 Thread Jon Tillman

On Thu, 03 Aug 2000, Dave Wilson spewed forth into the void:
> Hi all,
> 
> One of my hosting clients has just made me aware of this major security
> problem and I'm wondering if anyone knows how to eliminate it?
> 
> Try calling the application.cfm template on any CF site with +.htr appended
> to the end of the url. You'll first see a blank page. Now hit refresh/reload
> and you'll see the full code of said application.cfm
> 
> e.g. http://www.support.alllaire.com/application.cfm+.htr
> 
> Can someone please tell me there is a patch for this. It seems to happen on
> all CFserver versions 4.x + running IS4.0 with Service pack 5
> 
> Dave
> 

When I tried it, it didnt work exactly as stated, but I could view the source
using the Netscape "View Source" option.
A problem indeed

-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT:MS SQL vs Oracle

2000-08-03 Thread Jon Tillman

On Thu, 03 Aug 2000, Olson, Kelly spewed forth into the void:
> Any comments would be helpful., Thanks to all.
> 
> I have noticed several notes on configuring w/ Oracle and SQL.  What I
> am wondering is what is driving these decisions.
> 
> If one was building a fast Database server, which would be a Better
> system.  Better being from the standpoint of Speed, Reliability and/or
> ease of configuration.   Assume that all of the computers are dual
> processor 500 w/ 512 MB Ram.  Web is also running on a separate CPU w/
> the same configuration
> 
> MS NT running MS SQL
> MS NT running Pervasive SQL
> Novell running Oracle
> Novell running Pervasive SQL
> 
> or other configurations may be suggested.
> 

Linux with Oracle 8i
On a dual 500 it will break windows as it goes past :)
-- 
:::::::::::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFStudio: really really bad?

2000-08-03 Thread Jon Tillman
 > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> > 
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> > the body.
> > 
> **
>  This email and any attachments are confidential and solely
>  for the use of the intended recipient.  They may contain
>  material protected by legal professional or other privilege.
>  If you are not the intended recipient or the person responsible
>  for delivering to the intended recipient, you are not authorised
>  to and must not disclose, copy, distribute or retain this email
>  or its attachments.  Although this email and its attachments
>  are believed to be free of any virus or other defect, it is the
>  responsibility of the recipient to ensure that they are virus free
>  and no responsibility is accepted by the company for any
>  loss or damage arising from receipt or use thereof.
> 
> **
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



javascript question

2000-08-02 Thread Jon Tillman

any idea why this doesn't load  credcard.cfm?


-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Hacker on a budget (Solicitation)

2000-08-02 Thread Jon Tillman

On Wed, 02 Aug 2000, Paul Ihrig spewed forth into the void:
> Jon.
> Becoming a PAC rat is not a hard thing to achieve.
> 
> With a little help from corporate America,
> you should have no trouble in filling you living space with computers of
> yesteryear that will rattle happy to perform.
> 
> My suggestion it to just start calling the large business around you.
> We have a 3 year cycle here at work & still manage to toss out 10 or so
> computers a month.
> 
> We have some guy, like yourself come buy every now & then to pick up the
> stuff.

well good for him, and for me, by proxy :)

> 
> -Original Message-
> From: Jon Tillman [SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, August 02, 2000 2:50 AM
> To:   [EMAIL PROTECTED]
> Subject:  OT: Hacker on a budget (Solicitation)
> 
> Hey folks,
> I am making a proposition here that may or may not interest you. I am an
> aspiring hacker (per the New Hackers Dictionary definition, not the lame
> media
> electronic-trespass definition) who has a strong interest in Linux and
> networking. To further my studies, I want to build a private network to
> learn
> about networking, and security on. The rub is that I have almost no budget
> to
> speak of. So I am asking for donations. I do not accept money. I only want
> old
> hardware you are not using anymore, and/or old manuals on just about any
> computer topic. If you have a bunch of crud sitting around that you don't
> need/want/use, I would like to have it. If you are interested, please
> contact
> me via email so I can arrange to pick it up (if you are within reasonable
> distance from Little River, SC, USA) or pay postage/shipping. Any help at
> all
> would be appreciated. I would also like information on other ways/places I
> could go about securing hardware from in this manner.
> Thanks for your time.
> 
> PS: Nothing I receive from this will ever be sold for profit, I just want
> stuff
> for my own use
> 
> -- 
> :::
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  [EMAIL PROTECTED]
>  http://tillman.freehosting.net
> :::
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: Hacker on a budget (Solicitation)

2000-08-01 Thread Jon Tillman

Hey folks,
I am making a proposition here that may or may not interest you. I am an
aspiring hacker (per the New Hackers Dictionary definition, not the lame media
electronic-trespass definition) who has a strong interest in Linux and
networking. To further my studies, I want to build a private network to learn
about networking, and security on. The rub is that I have almost no budget to
speak of. So I am asking for donations. I do not accept money. I only want old
hardware you are not using anymore, and/or old manuals on just about any
computer topic. If you have a bunch of crud sitting around that you don't
need/want/use, I would like to have it. If you are interested, please contact
me via email so I can arrange to pick it up (if you are within reasonable
distance from Little River, SC, USA) or pay postage/shipping. Any help at all
would be appreciated. I would also like information on other ways/places I
could go about securing hardware from in this manner.
Thanks for your time.

PS: Nothing I receive from this will ever be sold for profit, I just want stuff
for my own use

-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: need help calculating total order price

2000-08-01 Thread Jon Tillman

On Tue, 01 Aug 2000, DJMixes.Com spewed forth into the void:
> You could put all the calculated prices into an array then use arraysum() to
> add them up and get the total.

any idea how to get the  from the original query to populate the
array?

> 
> 
> 
> 
> etc..
> 
> 
> #TheTotal#
> 
> 
> If this is not correct, please feel free to correct it. :)
> 
> Derek
> 
> 
> "Jon Tillman" <[EMAIL PROTECTED]> wrote in message
> news:<0008012041130Q.10197@ghosttribe>...
> > I have a shopping cart that does the following:
> >
> > 1) takes a productID and finds (among other things) its price
> >
> > 2) reads the quantity of that item selected
> >
> > 3) multiplies the quantity by the price
> >
> > 4) displays it with the following:
> >
> #DollarFormat("#ListGetAt(ShoppingCart_Qty,ListFind(ShoppingCart_Product,pro
> ductId))#"*"#productPrice#")#
> >
> > What I need it to do is to take multiple instances of the calculated price
> and
> > add them together to produce a grand total for the order. Any ideas how to
> do
> > that? I am getting desperate!
> >
> > --
> > :::
> >  Jon Tillman
> >  LINUX USER: #141163
> >  ICQ: 4015362
> >  [EMAIL PROTECTED]
> >  http://tillman.freehosting.net
> > :::
> > --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



need help calculating total order price

2000-08-01 Thread Jon Tillman

I have a shopping cart that does the following:

1) takes a productID and finds (among other things) its price

2) reads the quantity of that item selected

3) multiplies the quantity by the price

4) displays it with the following:
#DollarFormat("#ListGetAt(ShoppingCart_Qty,ListFind(ShoppingCart_Product,productId))#"*"#productPrice#")#

What I need it to do is to take multiple instances of the calculated price and
add them together to produce a grand total for the order. Any ideas how to do
that? I am getting desperate!

-- 
:::::::::::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



more questions from an obvious newbie

2000-08-01 Thread Jon Tillman

I need a bit more help (suprise).

I am wondering how I would go about adding together the output of a dynamic
number of the following statement:
#DollarFormat("#ListGetAt(ShoppingCart_Qty,ListFind(ShoppingCart_Product,productId))#"*"#productPrice#")#

Basically, the above is the unit price * the quantity, giving a line price. I
now need to take all of the line prices and create a total of them. Any ideas?

-- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::::::::::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Looping through lists

2000-08-01 Thread Jon Tillman

On Tue, 01 Aug 2000, JustinMacCarthy spewed forth into the void:
> Assuming you have
> 
> 
> namelist = "tom,dick,harry"
> IDlist = "1,2,3"
> 
> and you want to
> 
> select id, some_col from table where id in (#idlist#)
> 
> 
> output is
> 
> id some_col
> 2  textorsomething
> 3  textorsomething
> 
> then you chould do
> 
> 
> 
> #listgetat(namelist,listfind(idlist,id,))# #some_col#
> 
> 
> 
> ugly but ...
> 
> ~justin
> 

I have:
productlist = "1,2,3,4"
quantitylist = "2,1,1,1"

and i want to

SELECT  tblProduct.*,
tblProductSize.productsizeSize,
tblProductWeight.productweightWeight,
tblProductColor.productcolorColor
FROM((tblProduct
LEFT JOIN tblProductColor
ON tblProduct.productId = tblProductColor.productcolorProductId)
LEFT JOIN tblProductSize
ON tblProduct.productId = tblProductSize.productsizeProductId)
LEFT JOIN tblProductWeight
ON tblProduct.productId = tblProductWeight.productweightProductId
where tblProduct.productId IN (#ShoppingCart_Product#);

and then to output:



 #productname# 
 #productDesc# 
etc...
 QUANTITY GOES HERE 



I want to add a  to the  table row that include the quantity of
the product, as contained in quantitylist

:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Looping through lists

2000-08-01 Thread Jon Tillman

So, what if I wanted to do the following:
create a loop that would take two lists, perform the query on all the values
in one of them, output the formatted results of those queries, but insert the
values from the second list, one for each query returned?

On Tue, 01 Aug 2000, Anthony Geoghegan spewed forth into the void:
> Hi Jon,
> 
> Jon Wrote:
> |Hey, I need to figure out how to loop though a list and 
> |perform a query for
> |each value returned in the list. Any ideas?
> 
> You can get a query to select all the records with an entry contained in a
> comma delimited list so:
> 
> 
> SELECT stuff FROM stuff_list
> WHERE stuff_id IN (#stuff_id_list#)
> 
> 
> Regards,
> Anthony Geoghegan
> Lead Developer
> Ireland Film and Television Net
> 26 South Frederick Street
> Dublin 2
> Ireland
> Tel: +353 1 671 3664
> Fax: +353 1 671 0763
> Web: www.iftn.ie www.wow.ie
> mailto:[EMAIL PROTECTED]
> 
> NOTICE:
> This communication is confidential.  The copyright in this communication
> belongs to Ireland Film & Television Net (IFTN) or a third party.
> 
> If you are not the intended recipient of this communication please delete
> and destroy all copies and telephone IFTN on +353 1 671 3664 immediately.
> If you are the intended recipient of this communication you should not copy,
> disclose or distribute this communication without the authority of IFTN.
> 
> Any views expressed in this communication are those of the individual sender
> except where the sender specifically states those are of view of IFTN.
> 
> Except as required by law IFTN does not represent, warrant, and/guarantee
> that the integrity of this communication has been maintained or that the
> communication is free of virus, interception or interference.
> 
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Looping through lists

2000-08-01 Thread Jon Tillman

On Tue, 01 Aug 2000, peter spewed forth into the void:
> 
> 
> select *
> from stillAtWork
> where somevalue = #currItemInList#
> and salary < #peanuts#
> order by salary
> 
> 
> 
> #xyz#
> 
> 
> 
> 

Thanks, that works well. I have one more question (for the time being). It has
to do with displaying the output of the above.

I have two lists, listProducts and listQuantity. I want to do the following:

For each productID in listProducts, do a search that returns all the relevant
info about the product, display it in a table, and add the quantity listed in
listQuantity. What I need to know is how to make sure that listQuantity returns
only one value for each iteration of the CFOUTPUT loop. any ideas? If this
makes no sense at all, let me know and I will email you what I have so far, by
way of explanation.

-- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::::::::::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Looping through lists

2000-07-31 Thread Jon Tillman

Hey, I need to figure out how to loop though a list and perform a query for
each value returned in the list. Any ideas?

-- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Need help with delete function

2000-07-29 Thread Jon Tillman

On Sat, 29 Jul 2000, Chris Evans spewed forth into the void:
> Oops.  Should be  ListDeleteAt(session.productId,ListPosition)>
> 
> 
> Chris Evans
> [EMAIL PROTECTED]
> http://www.fuseware.com
> 
> 
Thanks, now it works. one more question though: how would I create a button
that did that? As it stands now, it deletes a new product every time the module
is reloaded.

-- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::::::::::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Need help with delete function

2000-07-29 Thread Jon Tillman

On Sat, 29 Jul 2000, Chris Evans spewed forth into the void:
> 
> 

It throws an error as follows:
There is no ColdFusion function named ListDelete. Check the spelling of the 
function name in the ColdFusion documentation

> 
> 
> Chris Evans
> [EMAIL PROTECTED]
> http://www.fuseware.com
> 
> 
> 
> -----Original Message-
> From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, July 29, 2000 9:07 AM
> To: [EMAIL PROTECTED]
> Subject: Need help with delete function
> 
> 
> I am at a loss here. I have a catalog I am building, and in the shopping
> cart
> part of it, I need to be able to delete individual items from it. They are
> stored in a variable (session.productId) as a list of numbers (1,55,34,44).
> What I need my delete function to do is remove one of the numbers from that
> list. I cannot figure out how to do this at all. Anyone feel like showing me
> how it could be done?
> 
> 
> --
> This Email is 100% Virus Free! How do I know?
> Because no Microsoft products were used to
> generate it!
> 
> :::
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  [EMAIL PROTECTED]
>  http://tillman.freehosting.net
> :::
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



More shopping cart questions

2000-07-29 Thread Jon Tillman

Thanks Chris, for the delete function.

I have another quandry though:
I would like to create a session.variable for the quantity of product the
customer is ordering, and pass it to my purchase module. How do I create a
session.variable from either an  or  tag?

 -- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Need help with delete function

2000-07-29 Thread Jon Tillman

I am at a loss here. I have a catalog I am building, and in the shopping cart
part of it, I need to be able to delete individual items from it. They are
stored in a variable (session.productId) as a list of numbers (1,55,34,44).
What I need my delete function to do is remove one of the numbers from that
list. I cannot figure out how to do this at all. Anyone feel like showing me
how it could be done?


-- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Reading List Ideas

2000-07-29 Thread Jon Tillman

Hi all,
I am relatively new to ColdFusion, and was wondering:
Does anyone here have a list of books that would be considered
recommended/required reading for someone learning ColdFusion, who is coming
from a HTML/XML background, and knows very little about databases and such?

Thanks

 -- 
This Email is 100% Virus Free! How do I know?
Because no Microsoft products were used to 
generate it!

:::
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 [EMAIL PROTECTED]
 http://tillman.freehosting.net
:::
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.