[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-20 Thread shib71
http://stylizedweb.com/2008/04/26/website-screenshots-services/ On 9/20/08, Dale Fraser <[EMAIL PROTECTED]> wrote: > > Sounds Good, > > I think it would be popular. > > Regards > Dale Fraser > > -Original Message- > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf > Of

[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-17 Thread shib71
I can't remember any offhand, but there are also various command line tools and web-services that will create an image from a url. Probably for PDF too, if your CSS is too much for CFDocument. Blair On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote: > > No no > > The client wants a function for

[cfaussie] Re: cfinclude and parent document variables

2008-07-03 Thread shib71
You would get this issue if head.cfm is included with cfmodule or as a tag instead of cfinclude. Except for a change in scope I'm not sure how this could happen. Blair On 7/3/08, David Heacock <[EMAIL PROTECTED]> wrote: > > I've got the strangest problem... I'm using a cheap CF hosting company >

[cfaussie] Re: CFC Design Patterns

2008-06-24 Thread shib71
I see you point that they (tools and frameworks) fill many of the same needs. That is probably true of every language. But I disagree with the implication that a good tool is inherently better than a good framework. The choice is much more pragmatic than that: which option offers the best feature

[cfaussie] Re: Converting HTML to PDF an retaining anchors

2006-04-04 Thread Shib71
Maybe a pdf printer driver? pdf995 looks like it could do the job. BlairOn 4/4/06, Steve Onnis <[EMAIL PROTECTED]> wrote: Hey guys   This is pretty urgent and I have come up with nothing really.  I have tried a number of product and none seem to work as I want them.   I have a HTML docume

[cfaussie] Re: Next QLD CFUG meeting Tomorrow, Tuesday 4th April in the Brisbane CBD

2006-04-02 Thread Shib71
see you there.blairOn 4/3/06, Barry Beattie <[EMAIL PROTECTED]> wrote: >> If you haven't already, then please RSVP by noon Wednesday, 4th of April,you mean tuesday, yes?if so I'll be therebOn 4/3/06, Darren Tracey < [EMAIL PROTECTED]> wrote:>> Details:>> When  : 6:30 pm, Tuesday, 4th of April 2006

[cfaussie] Re: Date Checker

2006-03-26 Thread Shib71
Use a regular _expression_. There are heaps of patterns available on the net.BlairOn 3/27/06, KNOTT, Brian < [EMAIL PROTECTED]> wrote: I have a _javascript_ date checker that I use to check forms.  Problem is that it wants the date in the format of dd/mm/, thus is thinks 1/3/2006

[cfaussie] Re: Dealing with a random number of images

2006-03-22 Thread Shib71
Would it be practical to store the image ids as a list and use that?BlairOn 3/23/06, Seona Bellamy <[EMAIL PROTECTED] > wrote:On 23/03/06, Shib71 <[EMAIL PROTECTED]> wrote: This is a situation where the group property of cfoutput comes in very handy: CheersBlair Okay, so how woul

[cfaussie] Re: Dealing with a random number of images

2006-03-22 Thread Shib71
This is a situation where the group property of cfoutput comes in very handy: CheersBlair On 3/22/06, Brett Payne-Rhodes <[EMAIL PROTECTED]> wrote: In fact this should work too...select * from re_property prop, re_agent agent left outer join re_image image on image.imageid = (select max(imageId) f

[cfaussie] Re: DB field with a space in it

2006-03-21 Thread Shib71
#qContacts["First Name"][currentRow]#On 3/21/06, Dale Fraser <[EMAIL PROTECTED]> wrote: How aboutFirst_Name> -Original Message-> From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com ] On> Behalf Of Ryan Sabir> Sent: Tuesday, 21 March 2006 6:20 PM> To: 'cfaussie@googlegroups.co

[cfaussie] Re: Call Java Class (Java Code Attached)

2006-03-20 Thread Shib71
n in english.Regards Dale Fraser> -Original Message-> From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com ] On> Behalf Of Shib71> Sent: Tuesday, 21 March 2006 14:07 PM> To: cfaussie@googlegroups.com> Subject: [cfaussie] Re: Call Java Class (Java Code Attached) &g

[cfaussie] Re: Call Java Class (Java Code Attached)

2006-03-20 Thread Shib71
That's because the class doesn't have a no-arguments constructor. You need to provide an int argument "level".BlairOn 3/21/06, Dale Fraser <[EMAIL PROTECTED]> wrote:This Gives this Error Occurred While Processing RequestUnable to find a constructor for class IceKey that accepts parameters oftype (

[cfaussie] Re: Problem creating PDF from CFMX7 output

2006-03-13 Thread Shib71
Possibly conflict with other software? I reckon this is a problem you'll need to go to Adobe support for.BlairOn 3/14/06, Mike Kear < [EMAIL PROTECTED]> wrote:I didnt phrase that last message well.    I assumed the problem was with my code, but before I started searching through my code, I wanted t

[cfaussie] Re: Problem creating PDF from CFMX7 output

2006-03-13 Thread Shib71
If you've tried all those pdf generation and access methods, then presumably the problem is with the code that actually generates the content. Have you been able to narrow the problem down to the first line of code that can cause a problem by itself? Or conversely, incrementally built up the pdf un

[cfaussie] Re: Installer 4 ColdFusion

2006-03-07 Thread Shib71
What is .car?BlairOn 3/8/06, Andrew Scott <[EMAIL PROTECTED]> wrote: Well I am sorry but .car is the way to go, but if you can't do that then Iwould suggest Install Wizard or something like that, or is that installshield can't recall the name of the top of my head, they do have an option available

[cfaussie] Re: JS brain drain

2006-03-07 Thread Shib71
Day should probably be last, not in the middle.BlairOn 3/8/06, Andrew Scott <[EMAIL PROTECTED] > wrote:Steve,I had something similar but was using the setDate, setMonth etc and figured out that the setMonth was the problem, but then I figured that I would tryyour way and I have the comparison incor

[cfaussie] Re: Controlling output in word format

2006-03-05 Thread Shib71
There is a CSS way of creating page breaks. Don't know if Word will respect it though.BlairOn 3/6/06, Kym Kovan <[EMAIL PROTECTED]> wrote: Hi Mike,you wrote:> Thanks Pat.I get different results when I call my page in IE than> when I call it in Firefox.  (now THERE'S a surprise!)>> I'm outputti

[cfaussie] Re: Application.cfc refresh

2006-02-21 Thread Shib71
OnApplicationStart only runs the first time a page with that application name is run. You should only put stuff that will never change, or needs to be initialized there. If you're playing with those settings for development, maybe you should put them in onrequest, then move them back for production

[cfaussie] Re: CFDIRECTORY dateModified accuracy

2006-02-19 Thread Shib71
You could look into using java objects.BlairOn 2/20/06, Ryan Sabir <[EMAIL PROTECTED]> wrote: Heya,   I'm checking the modified date of a file using CFDIRECTORY, and its returning the mod date down to the minute. But I need it more accurate than this, I need to know the actual second the f

[cfaussie] Re: [OT] Detect duplicate ID

2006-02-14 Thread Shib71
Regular expressions. If two elements have the same id, this should return them and the text between them, and if they don't it should return null. I think. docstring.match(/id=("|')([^"']*)$1.*id=("|')$2$3/)Blair On 2/15/06, Taco Fleur <[EMAIL PROTECTED]> wrote: Is there a way to detect duplicate I

[cfaussie] Re: Reg Ex or other

2006-02-05 Thread Shib71
You could try wrapping the replacement string in an evaluate(). BlairOn 2/6/06, Carl Vanderpal <[EMAIL PROTECTED]> wrote: mmm am I missing something? it just outputs #SESSION[User].FirstName# to the page and does not take from the session structure and output the actual namefor example if I just d

[cfaussie] Re: Reg Ex or other

2006-02-05 Thread Shib71
That's a great trick Robin. I might use that myself. BlairOn 2/6/06, Robin Hilliard <[EMAIL PROTECTED]> wrote: On 04/02/2006, at 10:13 PM, Carl Vanderpal wrote:> Just wondering if there is a better way of doing this..>> I have a site that that customizes documents with about 5-10 (could> expand la

[cfaussie] Re: Reg Ex or other

2006-02-05 Thread Shib71
Is there any reason you couldn't put the pairs in a struct and loop through the keys? BlairOn 2/4/06, David Grubb <[EMAIL PROTECTED]> wrote: Hi Carl, This may be overkill for what you need, but I've recently been playing with FreeMarker (freemarker.org) - a fairly powerful Java-based templat

[cfaussie] Re: What Defines an Application

2006-02-01 Thread Shib71
Are they the same app with different domains or completely separate structures? BlairOn 2/2/06, Dale Fraser <[EMAIL PROTECTED]> wrote: Hi,Have a problem, have two apps.http://server.com/app1/oandhttp://server.com/app2/When I browse one it works fine, when I browse the second, it thinks it's the fi

[cfaussie] Re: [OT] select

2006-01-30 Thread Shib71
Put an iframe behind the layer. Apparantly the layering of iframes works with select boxes where divs don't, and the iframe blocks out the box properly. BlairOn 1/31/06, Taco Fleur <[EMAIL PROTECTED]> wrote: Thats easy enough to do, but surely thats not the option. It wouldlook a bit weird having

[cfaussie] Re: [OT] select

2006-01-30 Thread Shib71
I thought it was putting an iframe exactly where the upper layer would be. BlairOn 1/31/06, Dale Fraser <[EMAIL PROTECTED]> wrote: I believe the solution is to put them into a div.RegardsDale Fraser> -Original Message-> From: cfaussie@googlegroups.com [mailto: cfaussie@googlegroups.com] On

[cfaussie] Re: Invoking a web service

2006-01-29 Thread Shib71
I changed to normal http and I get the same problem. BlairOn 1/30/06, Andrew Mercer <[EMAIL PROTECTED]> wrote: This is using HTTPS - might require a login or certificate

[cfaussie] Invoking a web service

2006-01-29 Thread Shib71
I'm trying to set up a web service (https://www.workingwonders.com.au/webservices/test.cfc?wsdl), and the wsdl seems fine, but when I try to invoke it I get these errors: Here is the fault returned when invoking the web service operation: AxisFault faultCode: {http://schemas.xmlsoap.

[cfaussie] Re: application.cfc prblems

2006-01-26 Thread Shib71
need it anymore with application.cfcThat's what all the this. Variables do?RegardsDale Fraser> -Original Message-> From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On> Behalf Of Shib71> Sent: Friday, 27 January 2006 2:13 PM> To: cfaussie@googlegroups.com

[cfaussie] Re: application.cfc prblems

2006-01-26 Thread Shib71
If you're using session or client variables you need to enable them using the cfapplication tag. You probably had that in the origonal file but forgot to move it over. BlairOn 1/27/06, Dale Fraser <[EMAIL PROTECTED]> wrote: Converting an application to use application.cfc from .cfmCan't get it to