Shel,

Your're right the crappy tft screen I first saw your picture on did not do it justice but I agree with Paul think a little judicious burning in on the clouds would really help the sky.

In any case it is a great shot pity you did not have more time to "work it" I'm sure you would have come up with a few more killer images.

Patrick

[EMAIL PROTECTED] wrote:

The sky is filled with clouds.  They are obvious on my monitor.  Do you not
see them?

Shel




[Original Message]
From: Patrick Genovese <[EMAIL PROTECTED]>





Nice, I like the sepia toning effect it suits the subject. One suggestion, given that the sky is a little bit flat I would consider cropping some of it out.

Patrick






http://home.earthlink.net/~my-pics/911.html






From jeff Sat Dec 11 14:12:33 2004
Return-Path: [EMAIL PROTECTED]
Delivery-Date: Sat Dec 11 06:12:33 2004
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [email protected]
Delivery-date: Sat, 11 Dec 2004 06:12:33 -0800
Received: from exprod5mx31.postini.com ([64.18.0.186] helo=psmtp.com)
by toko.jab.org with smtp (Exim 3.36 #1 (Debian))
id 1Cd7z7-0006dj-00
for <[email protected]>; Sat, 11 Dec 2004 06:12:33 -0800
Received: from source ([207.36.15.228]) by exprod5mx31.postini.com ([64.18.4.10]) with SMTP;
Sat, 11 Dec 2004 08:15:04 CST
Received: from www.runrev.com (localhost [127.0.0.1])
by mail.runrev.com (Postfix) with ESMTP
id C9D3193009C; Sat, 11 Dec 2004 09:10:01 -0500 (EST)
Delivered-To: [EMAIL PROTECTED]
Received: from smtp804.mail.ukl.yahoo.com (smtp804.mail.ukl.yahoo.com
[217.12.12.141])
by mail.runrev.com (Postfix) with SMTP id 75B4D930060
for <[EMAIL PROTECTED]>;
Sat, 11 Dec 2004 09:09:59 -0500 (EST)
Received: from unknown (HELO ALEX-LAPTOP.tweedly.net)
([EMAIL PROTECTED] with login)
by smtp804.mail.ukl.yahoo.com with SMTP; 11 Dec 2004 14:15:00 -0000
Message-Id: <[EMAIL PROTECTED]>
X-Sender: [EMAIL PROTECTED]
X-Mailer: QUALCOMM Windows Eudora Version 5.1
Date: Sat, 11 Dec 2004 14:17:54 +0000
To: How to use Revolution <[EMAIL PROTECTED]>
From: Alex Tweedly <[EMAIL PROTECTED]>
In-Reply-To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; x-avg-checked=avg-ok-3C0641D5;
boundary="=======24F07418======="
Subject: Re: Arrays in Rev
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.1.1
Precedence: list
Reply-To: How to use Revolution <[EMAIL PROTECTED]>
List-Id: How to use Revolution <use-revolution.lists.runrev.com>
List-Unsubscribe: <http://lists.runrev.com/mailman/listinfo/use-revolution>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://lists.runrev.com/pipermail/use-revolution>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <http://lists.runrev.com/mailman/listinfo/use-revolution>,
<mailto:[EMAIL PROTECTED]>
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 )
X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org
X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64


--=======24F07418=======
Content-Type: text/plain; x-avg-checked=avg-ok-3C0641D5; charset=us-ascii;
        format=flowed
Content-Transfer-Encoding: 8bit

At 00:50 11/12/2004 -0600, Ken Ray wrote:
For more information, we had a long thread about arrays in Rev back in July
(I put out a small "dissertation" on arrays at that time:
http://lists.runrev.com/pipermail/use-revolution/2004-July/039379.html)

Thank you - I found it useful then (I was new to Rev at the time), and found it even more useful to go back and re-read it now, with a slightly better understanding of the different ways to do things in Rev. It should, IMHO, be in a FAQ or Wiki or some such place, not just in the mail archives.


(Wasn't someone starting a community FAQ ? )

I do have one question about it ....

Revolution:
  put "1,Troy,Ken,Richard"&cr&"2,Kevin,Jan,Judy" into myList
  split myList by CR and ","
  put myList[2] into tempArray
  --> Kevin,Jan,Judy
  split tempArray by ","
  put tempArray[1]
  --> Kevin

But note that this is NOT usually something you'd do in Rev... Director is
designed to be able to make arrays of arrays, and although Rev can simulate
this, it is not the most efficient, nor is it the best approach. One reason
is that if you'll notice, I had to add line numbers before each line in
myList so that when I used 'split' I could reference the array by number.
Why? Because remember that no matter what it may appear to be, Rev uses
associative arrays ONLY - myList[1] is NOT numeric... it is creating a
*string* called "1" that is associated with the value that you give it.

I don't get it. You need the second "split" to split up the entries Kevin and Jan and Judy - so why use the second delimiter in the first split. Couldn't you just do ....


Revolution:
  put "Troy,Ken,Richard"&cr&"Kevin,Jan,Judy" into myList   -- NB no numbers !!
  split myList by CR     -- note - no second delimiter
  put myList[2] into tempArray
  --> Kevin,Jan,Judy
  split tempArray by ","
  put tempArray[1]
  --> Kevin

In any event, we really do need better array manipulation for
multidimensional arrays (or simulated ones). Personally, I'd rather have the
real thing if we can get it; if not, I'd accept simulated ones as long as we
have accessor functions to get at the embeded data more easily.

I agree - though I'm not sure it's possible to get a good enough simulation to satisfy what I'd like.
I want to be able to do things like
put "here's the string" into myArray1["asdf"]
put myArray1 into myArray2[3]
put myArray2[3] into tVar


and have tVar now be an array.

While I'm talking about what I'd like regarding arrays, I'd love to have the multi-assignment form of a repeat structure as in PHP or Python. I know it doesn't, strictly speaking, add functionality, but I think it's a huge gain in readability. What I mean is to be able to say something like

  repeat for each keyvalue  K,V in myArray
    -- K takes each key in turn
    -- V takes the corresponding value from the array

so it's equivalent to
   repeat for each line K in the keys of myArray
       put myArray[K] into V
but is (IMHO) much more readable (and probably a bit more efficient).

-- Alex.

--=======24F07418=======
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

--=======24F07418=======--
From jeff Sat Dec 11 14:12:42 2004
Return-Path: [EMAIL PROTECTED]
Delivery-Date: Sat Dec 11 06:12:42 2004
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [email protected]
Delivery-date: Sat, 11 Dec 2004 06:12:42 -0800
Received: from exprod5mx51.postini.com ([64.18.0.218] helo=psmtp.com)
by toko.jab.org with smtp (Exim 3.36 #1 (Debian))
id 1Cd7zG-0006dy-00
for <[email protected]>; Sat, 11 Dec 2004 06:12:42 -0800
Received: from source ([64.118.64.245]) by exprod5mx51.postini.com ([64.18.4.10]) with SMTP;
Sat, 11 Dec 2004 06:15:11 PST
Received: from LOCALHOST by LOCALHOST
with ESMTP id 551AD8282362A74FA906EFB4B83EDE47
Sat, 11 Dec 2004 09:16:17 -0500
Content-Type: text/plain
Date: Sun, 12 Dec 2004 01:14:29 +1100
From: Mike Kear <[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
Precedence: bulk
References: <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Subject: Re: fck editor 2.0 RC
To: CF-Talk <[EMAIL PROTECTED]>
X-pstn-levels: (S:64.80846/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 )
X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> forward (good recip) [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org
X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=no version=2.64


Thanks Joe.  All the other comments I'd seen about it said it included
the upload. I dont want that  - I want to use CFFILE and CFX_Image to
process images and prevent non-images.

Does anyone else find these gadgets slow to load?   I just went to the
FCKEditor's site and found it took 48 seconds to finish loading the
page with the basic editor in it.   I tried FCKEditor about 18 months
ago and gave up on it for the same reason.   I ended up using SPAW-CF
on one site and I'm disappointed with that too because (amongst other
things) it takes to long to load. I find i have users trying to enter
stuff before it's finished loading all teh toolbars and gettting
annoyed because it makes a mess of their data unless they wait the
whole 40-60 seconds for it to load.

Is this just me?   I'm on a 512KB ADSL line - not the fastest that
exists, but faster than a lot of the users.


Cheers Mike Kear Windsor, NSW, Australia AFP Webworks http://afpwebworks.com .com,.net,.org domains from AUD$20/Year


On Sat, 11 Dec 2004 05:33:41 -0800, Joe Rinehart <[EMAIL PROTECTED]> wrote:
Mike,

FCKEditor includes an image picker, but pretty much leaves the
"uploader" part up to you to code for yourself.  It really is a great,
well thought-out tool.

-Joe




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Special thanks to the CF Community Suite Silver Sponsor - New Atlanta http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187195
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
From jeff Sat Dec 11 14:12:53 2004
Return-Path: [EMAIL PROTECTED]
Delivery-Date: Sat Dec 11 06:12:53 2004
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [email protected]
Delivery-date: Sat, 11 Dec 2004 06:12:53 -0800
Received: from exprod5mx89.postini.com ([64.18.0.77] helo=psmtp.com)
by toko.jab.org with smtp (Exim 3.36 #1 (Debian))
id 1Cd7zR-0006eB-00
for <[email protected]>; Sat, 11 Dec 2004 06:12:53 -0800
Received: from source ([66.98.138.60]) (using TLSv1) by exprod5mx89.postini.com ([64.18.4.10]) with SMTP;
Sat, 11 Dec 2004 06:15:25 PST
Received: from secure1.company-hosting.net ([EMAIL PROTECTED])
by fesim.org (8.12.10/8.12.10) with ESMTP id iBBE9Vhh019430
for <[EMAIL PROTECTED]>; Sat, 11 Dec 2004 07:09:31 -0700
X-ClientAddr: 209.152.174.160
Received: from mail.zoneedit.com (mail.zoneedit.com [209.152.174.160])
by secure1.company-hosting.net (8.12.10/8.12.10) with ESMTP id iBBE9Sx5019419
for <[EMAIL PROTECTED]>; Sat, 11 Dec 2004 07:09:28 -0700
Received: from mail210.autocontactor.com (mail210.autocontactor.com [66.70.75.210])
by mail.zoneedit.com (Postfix) with SMTP id 94BB93FBE7
for <[EMAIL PROTECTED]>; Sat, 11 Dec 2004 09:11:24 -0500 (EST)
X-VirtualServer: Default, mail210.autocontactor.com, 66.70.75.210
Message-ID: <[EMAIL PROTECTED]>
To: "Nelayan" <[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
From: "John Di Lemme - FindYourWhy.com" <[EMAIL PROTECTED]>
x-1scdbg: mc:brt:31111:287897:24418433
X-SentTo: "Nelayan" <[EMAIL PROTECTED]>
Subject: *Truthfully* I thought it was going to be just another motivational CD
Date: Sat, 11 Dec 2004 09:11:39 -0500
MIME-Version: 1.0
Content-type: text/plain; charset=iso-8859-1
X-DBHostingEnsim4.1-MailScanner-Information: Please contact the ISP for more information
X-DBHostingEnsim4.1-MailScanner: Found to be clean
X-MailScanner-From: [EMAIL PROTECTED]
X-pstn-levels: (S:12.97319/99.76651 R:95.9108 P:95.9108 M:84.2861 C:99.7951 )
X-pstn-settings: 1 (0.1500:0.2250) gt3 gt2 gt1 r p M c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org
X-Spam-Level: X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,EXCUSE_14 autolearn=no version=2.64



Hey Success Friend,

You'll enjoy the *Hot off the Press* testimonial about the "Find Your Why" CD I just received around 9:00 p.m. EST. Friday evening...

Testimonial (came in exactly at 8:47 p.m.)

WOW, WOW and WOW again, John I did not know what to expect.
Truthfully I thought it was going to be just another
motivational CD but let me tell you it was like you made it just for me.


I have been blaming everyone else for my failures in life when it really has been me not knowing my *WHY*...I can't Thank You enough!
I've listened to it over 5 times already today since I opened it up in my mailbox (thanks a lot for the WHY card Gift!)
John you have changed another life here in Dallas, TX
Your Thankful Success Student,
Steve Y.


From the bottom of my Heart, I want to say Thanks!

Why?

Because so many of you who took advantage of the *Find Your Why* CD special sent in such remarkable emotional e-mails saying how much you loved the "Find Your Why" CD that I was really moved!

The following 3 testimonials *Truly* moved me:

Testimonial #1:

All I have to say is Thank you for kicking me in the butt.
As my wife said, I needed it. Since your Find Your Why CD
hit my mailbox my business has grown 35%.
Thank you so much and the chains are off my ankles!
Chris T.

Testimonial #2:

John,
I had to pull over while I was driving to work just this morning
and cry, because after hearing the power behind knowing *Your Why*.
I realized I have been living a life of total confusion and frustration.

Thanks for giving your all in the Find Your Why CD and changing my
life forever!

You are a Blessing,
Steve D.

Testimonial #3:

Before I was able to get my hands on your Find Your Why CD,
I was wondering WHY setting goals never worked for me.
Thanks for sharing with such Life-Changing Passion
the Power behind finally Finding my WHY and FLYING!

Thanks again for making me realize I need not be dead anymore!
Dawn G.

Well Guess What?

That's not all for you!

After receiving over 32 testimonials, I've decided to allow *5* more *Find Your Why* CD's to be shipped out today at the *Rock Bottom* price of $17 in order to impact more lives!
To own your copy today cli.ck below:
http://tinyurl.com/5zczp


Last but not least...

In case you missed the reason WHY I was driven so *Mad*
to allow these Find Your Why CD's to be discounted at a sensational price, here's the reason.


As you know I am an...

�Ex-Clinically Diagnosed Stutterer now one of the World�s Leading Motivational Expert that *shocks millions globally* by exposing the truth they�ve been searching for in order to achieve
monumental life success through my award winning live
Seminars, power packed Training Programs, Live Tele Classes,
Motivational Club and weekly E-zine�.


A couple of weeks ago, I had a great workout along with an intense fired up hour of personal development.

It suddenly hit me like a ton of bricks as I was walking around the grocery store and looking around at 50+ people.

They all looked like they were wandering aimlessly through life,
while I was excited about life and completely focused on my WHY.

Then I said to myself...

Could this be true?

In my hands I have the answer to their disappointing misery,
which is simply to *Find Your Why and FLY*!

To continue with WHY I was so mad, I then proceeded to ask 10 people "How are you doing this Great Day?"

I was shocked by the answers...10 out of 10 were negative!

I left the store so mad and saying to myself
"I need to do something about this".

I hope you don't mind, but I am giving you a gift.

Here's my gift to the world!

For the next 5 people, you'll be able to steal right from under my feet.

I want you to look right now in your *Success Library* to make sure you own a copy of the world renowned dynamic CD training program,

"Find Your Why"!

Go ahead, take look right now.

Do you own it? (I hope you do)

For those of you who do, pop it in right now and re-listen to the wisdom.

Please do it, because you need to impact this *goal-less* world!

Pay attention now...

If you do not own your personal copy,
you are in for a once in a lifetime opportunity.

I am making the Award Winning 'Find Your Why' CD
available to you at a rock bottom steal of an investment.

As it states above, shocks millions globally*!

You see I feel I have a responsibility to shock the world by letting them in on the secret to massive success, which is to Find Your Why and FLY!

It disgusts me that people are like the *walking dead*!

As you know the regular price for the CD program is $47,
but because I feel I have not done a good enough job impacting the world after seeing the *walking dead* in the grocery store.


The CD will be available for only $17 to the first 5 people who reply by investing right now by cl.icking below:
http://tinyurl.com/5zczp


One thing's for sure, I know the secret to massive success is to Find Your Why and Fly which means you can't blame anyone but YOU
if you continue to aimlessly wonder through life.


Simply stated the world needs you to be a *shining example of prosperity*!

Go for it.
Take action today and own your own personal copy of Find Your Why!

My business partner will only allow 5 more of them to literally *walk out our door* at the $17 Rock Bottom Price!

Creating Millionaires.

Changing Lives,

John Di Lemme

P.S. In case you missed it...

The next 5 people can get a steal of a deal!
The CD will be available for only $17 to the first
9 people who reply by investing right now by cli.cking below:
http://tinyurl.com/5zczp

P.P.S. With all of this said,
Can I bribe you to impact the world?
cl.ick below - go ahead, I beg you to take the CD from me:
http://tinyurl.com/5zczp

P.P.P.S. Warning: Owning This CD will Change Your LIFE!
http://tinyurl.com/5zczp

































If you no longer wish to receive communication from us:
http://www.1automationwiz.com/app/r.asp?ID=24418433&ARID=0

To update your contact information:
http://www.1automationwiz.com/app/r.asp?c=1&ID=24418433
From jeff Sat Dec 11 14:18:46 2004
Return-Path: [EMAIL PROTECTED]
Delivery-Date: Sat Dec 11 06:18:46 2004
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [email protected]
Delivery-date: Sat, 11 Dec 2004 06:18:46 -0800
Received: from exprod5mx119.postini.com ([64.18.0.33] helo=psmtp.com)
by toko.jab.org with smtp (Exim 3.36 #1 (Debian))
id 1Cd858-0006ga-00
for <[email protected]>; Sat, 11 Dec 2004 06:18:46 -0800
Received: from source ([194.109.24.34]) by exprod5mx119.postini.com ([64.18.4.10]) with SMTP;
Sat, 11 Dec 2004 06:21:17 PST
Received: from bag.python.org (bag.python.org [194.109.207.14])
by smtp-vbr14.xs4all.nl (8.12.11/8.12.11) with ESMTP id iBBEIZMI005911;
Sat, 11 Dec 2004 15:18:35 +0100 (CET)
(envelope-from [EMAIL PROTECTED])
Received: from bag.python.org (bag [127.0.0.1])
by bag.python.org (Postfix) with ESMTP id AD92D1E400C;
Sat, 11 Dec 2004 15:18:33 +0100 (CET)
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from bag.python.org (bag [127.0.0.1])
by bag.python.org (Postfix) with ESMTP id E41BE1E400A
for <[EMAIL PROTECTED]>; Sat, 11 Dec 2004 15:18:31 +0100 (CET)
Received: from bag (HELO bag.python.org) (127.0.0.1)
by bag.python.org with SMTP; 11 Dec 2004 15:18:31 +0100
Received: from web53303.mail.yahoo.com (web53303.mail.yahoo.com
[206.190.39.232]) by bag.python.org (Postfix) with SMTP
for <[EMAIL PROTECTED]>; Sat, 11 Dec 2004 15:18:31 +0100 (CET)
Received: (qmail 65949 invoked by uid 60001); 11 Dec 2004 14:18:30 -0000
Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com;
b=uy4RyjMN3Rfu3fa7+fZYPq6Zd3ReMmzwvVtN21vBrDsPryrULKjbypDpma8xHgUxUt23I85eWGjqCrdRYYo0CHAzEMzXSP8s6GaVSc2AJplnC8AzxADm/Nel7bE+rgxIGGEcLXwhyGeMyRY/uwoGB3W9QaPtjnheX6b6IuQrm4U=
; Message-ID: <[EMAIL PROTECTED]>
Received: from [61.11.18.247] by web53303.mail.yahoo.com via HTTP;
Sat, 11 Dec 2004 06:18:30 PST
Date: Sat, 11 Dec 2004 06:18:30 -0800 (PST)
From: Aztech Guy <[EMAIL PROTECTED]>
Subject: Re: [Tutor] PDF and Python
To: Jason Child <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Cc: X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Discussion for learning programming with Python <tutor.python.org>
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/tutor>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://mail.python.org/pipermail/tutor>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <http://mail.python.org/mailman/listinfo/tutor>,
<mailto:[EMAIL PROTECTED]>
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-Virus-Scanned: by XS4ALL Virus Scanner
X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 )
X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org
X-Spam-Level: X-Spam-Status: No, hits=-3.9 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS autolearn=no version=2.64



Hi,

If you only want to convert text files, this tool I
wrote may be even easier than using ReportLab:

http://sourceforge.net/projects/xtopdf

It is based on ReportLab. You can use it both as a
standalone command-line tool, to convert a single text
file to PDF. Run PDFWriter.py.

You can easily modify the code to convert more than
one file, or just write a shell script / .BAT/.CMD
file to call it in a loop).

You can also use it progammatically from your Python
programs. Both procedural and object-oriented versions
are available. Look at WritePDF.py and PDFWriter.py.

Look at PDFBook.py for an example of usage of this
tool to create a simple PDF book from a set of text
files representing chapters.

HTH
Az

--- Jason Child <[EMAIL PROTECTED]> wrote:

Hey there. Does anyone know of a way to output PDFs
with python? I have some
data that I have processed from a series of
textfiles that I would like to
provide PDF format reports for..

Jason Christopher Child

Computer Network Services Professionals
Tech Support
505-986-1669
1-877-321-9165
[EMAIL PROTECTED]

VOZ Online
VOIP Install Tech
505-428-7500
1-877-428-7550

_______________________________________________
Tutor maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/tutor



__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com _______________________________________________
Tutor maillist - [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/tutor
From jeff Sat Dec 11 14:18:52 2004
Return-Path: [EMAIL PROTECTED]
Delivery-Date: Sat Dec 11 06:18:52 2004
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [email protected]
Delivery-date: Sat, 11 Dec 2004 06:18:52 -0800
Received: from exprod5mx121.postini.com ([64.18.0.35] helo=psmtp.com)
by toko.jab.org with smtp (Exim 3.36 #1 (Debian))
id 1Cd85E-0006gj-00
for <[email protected]>; Sat, 11 Dec 2004 06:18:52 -0800
Received: from source ([66.94.237.50]) by exprod5mx121.postini.com ([64.18.4.10]) with SMTP;
Sat, 11 Dec 2004 06:21:24 PST
Received: from [66.218.69.3] by n21.bulk.scd.yahoo.com with NNFMP; 11 Dec 2004 14:21:24 -0000
Received: from [66.218.66.30] by mailer3.bulk.scd.yahoo.com with NNFMP; 11 Dec 2004 14:21:24 -0000
X-Yahoo-Newman-Property: groups-email
X-Sender: [EMAIL PROTECTED]
X-Apparently-To: [EMAIL PROTECTED]
Received: (qmail 7145 invoked from network); 11 Dec 2004 14:21:23 -0000
Received: from unknown (66.218.66.217)
by m24.grp.scd.yahoo.com with QMQP; 11 Dec 2004 14:21:23 -0000
Received: from unknown (HELO n8a.bulk.scd.yahoo.com) (66.94.237.42)
by mta2.grp.scd.yahoo.com with SMTP; 11 Dec 2004 14:21:23 -0000
Received: from [66.218.69.3] by n8.bulk.scd.yahoo.com with NNFMP; 11 Dec 2004 14:19:14 -0000
Received: from [66.218.67.251] by mailer3.bulk.scd.yahoo.com with NNFMP; 11 Dec 2004 14:19:14 -0000
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
In-Reply-To: <[EMAIL PROTECTED]>
User-Agent: eGroups-EW/0.82
X-Mailer: Yahoo Groups Message Poster
X-eGroups-Remote-IP: 66.94.237.42
From: [EMAIL PROTECTED]
X-Originating-IP: 68.194.72.225
X-Yahoo-Profile: scottbusy
MIME-Version: 1.0
Mailing-List: list [EMAIL PROTECTED]; contact [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
Date: Sat, 11 Dec 2004 14:19:14 -0000
Subject: Re: [ HDTV in the NYC Area ] HDTV add-on price for TWC tier
Reply-To: [EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 )
X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org
X-Spam-Level: X-Spam-Status: No, hits=-4.7 required=4.0 tests=BAYES_00,NO_REAL_NAME autolearn=no version=2.64




Amazing. The in studio shows look great. They are full 1080i and shot with HD cameras. Crystal clear. Nikki looks great including every clearly defined feature.

Scott

- In [EMAIL PROTECTED], Paul Chiu <[EMAIL PROTECTED]> wrote:
So Scott,
How does Niki Nova look in Playboy-HD ?



[EMAIL PROTECTED] wrote:

Paul,

I don't know because I do not have a D-VHS deck, but I don't see
why
not I think people have recorded off VOOM with these decks.

Scott
--- In [EMAIL PROTECTED], Paul Chiu <[EMAIL PROTECTED]> wrote:
> Scott,
> > Can I invite myself over to watch your VOOM!
> Can you record Playboy-HD with D-VHS ? Firewire ?
> > Paul
> > > > [EMAIL PROTECTED] wrote:
> > Just to set the record straight Cablevision offers 15 HD
channels
> and one HD ON Demand channel. I have Playboy-HD on VOOM and I love > it. :-)
> > Scott
> > > --- In [EMAIL PROTECTED], Paul Chiu <[EMAIL PROTECTED]> > wrote:
> > Unlike some of you, like Bruce that can mount a radiation
center
> on top of his bedroom to get VOOM and Playboy-HD, I don't have that > choice. My co-op board with it's 90 year old president does not > permit anything other than cable.
> > > > So I am stuck with my $160 bill for everything plus Playboy-SD for > now. I do have to say, having the ability to record in HD 1080i on > 701 and 703 with my JVC D-VHS recorder is a major plus with
TWC.
> VOOM, cablevision, and RCN does not allow for HD recording, as
far
> as I know. So, at least TWC gives me that.
> > > > Once they give me MAX, TMC, and Playboy in HD, I will really
be
> happy paying them $180 a month. Now, we're talking almost
garage
> spot money.......!
> > > > Paul
> > > > > > > > > > PF <[EMAIL PROTECTED]> wrote:
> > I hear you. I'll probably give in eventually (undoubtedly
right
> before the > > next HD NFL broadcast Sunday night on ESPN), but for now, I turned > them down > > last night when they called soliciting.
> > > > It does bug me that Cablevision in some parts offers 19 or 20
HD
> channels > > for the same or less pricing with high speed internet
service.
I > understand > > that NYC is more expensive, but I'm getting less content for
far
> more money > > in effect.
> > > > And what about the next round? Assuming they add Cinemax HD, > Starz HD, MSG > > (oh please, oh please), etc., what will THAT cost then?
> > > > > > ----- Original Message ----- > > From: "giles_kelly" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Wednesday, December 08, 2004 8:37 PM
> > Subject: Re: [ HDTV in the NYC Area ] HDTV add-on price for
TWC
> tier
> > > > > > >
> > >
> > > I can't say I'm excited about the extra fee, but given that
I'm
> > > paying as much as I am for cable, I kind of see it as not
much
> more
> > > money for a lot more content. Also if you have the HD-DVR they > give
> > > you a small price break if you get both. Whereas each
service
is
> > > $8.95 individually, the bundle is $15 I think. So if you already
> > > had the HD-DVR then the extra channels are really only $6.05 or > so.
> > > Also, most of the other channels aren't even close to being
HD
> full
> > > time and on this tier we get four full-time HD channels and ESPN
> > > HD. So I think it's not that bad.
> > >
> > > --- In [EMAIL PROTECTED], "PF" <[EMAIL PROTECTED]> wrote:
> > >> I'm with you. I am at well over $140 now with an HD box,
an
HD
> > > DVR box, and
> > >> internet service with the second tier HD charge. At some point,
> > > it just
> > >> becomes too much.
> > >>
> > >> If I was running TWC, I'd have added the stations at no charge > or
> > > a small
> > >> charge -- say, $2.95 or $3.95. I'd bet my bottom dollar
that
> not
> > > many have
> > >> signed up for these additional 5-channels because of the
too
> high
> > > cost.
> > >>
> > >>
> > >> ----- Original Message ----- > > >> From: "jondalar1945" <[EMAIL PROTECTED]>
> > >> To: <[EMAIL PROTECTED]>
> > >> Sent: Wednesday, December 08, 2004 2:50 PM
> > >> Subject: [ HDTV in the NYC Area ] HDTV add-on price for TWC tier
> > >>
> > >>
> > >> >
> > >> >
> > >> > I don't know about anyone else, but I am annoyed about
TWC's
> > >> > additional price for the tier 2 HDTV stations. I
understand
> they
> > > are
> > >> > charging for what other cable services do not and I am > thinking
> > > of
> > >> > jumping ship at this point and going over to Voom satellite. > I am
> > >> > curious if you folks feel like I do or am I wrong somewhere ?
> > > Also,
> > >> > anyone know how Voom works in real world use here in Queens, > NY.
> > >> >
> > >> > I suggest going to twcnyc.com and sending e-mail to complain
> > > about
> > >> > this screwing we are getting. It's bull**** that we
should
> pay
> > > for
> > >> > this when other companies can present it at no additional cost
> > > or in
> > >> > the case of Voom will offer 30 HDTV stations.
> > >> >
> > >> > Jondalar
> > >> >
> > >> >
> > >> >
> > >> >
> > >> >
> > >> >
> > >> > ========================================================
> > >> >
> > >> > Community email addresses:
> > >> > Post message: [EMAIL PROTECTED]
> > >> > Subscribe: [EMAIL PROTECTED]
> > >> > Unsubscribe: [EMAIL PROTECTED]
> > >> > List owner (Keith Knipschild): [EMAIL PROTECTED]
> > >> >
> > >> > Shortcut URL to this page:
> > >> > http://www.yahoogroups.com/community/HDTV-in-NYC
> > >> > ========================================================
> > >> > Yahoo! Groups Links
> > >> >
> > >> >
> > >> >
> > >> >
> > >> >
> > >> >
> > >> >
> > >
> > >
> > >
> > >
> > >
> > >
> > > ========================================================
> > >
> > > Community email addresses:
> > > Post message: [EMAIL PROTECTED]
> > > Subscribe: [EMAIL PROTECTED]
> > > Unsubscribe: [EMAIL PROTECTED]
> > > List owner (Keith Knipschild): [EMAIL PROTECTED]
> > >
> > > Shortcut URL to this page:
> > > http://www.yahoogroups.com/community/HDTV-in-NYC
> > > ========================================================
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> > >
> > > > > > > > > > > ========================================================
> > > > Community email addresses:
> > Post message: [EMAIL PROTECTED]
> > Subscribe: [EMAIL PROTECTED]
> > Unsubscribe: [EMAIL PROTECTED]
> > List owner (Keith Knipschild): [EMAIL PROTECTED]
> > > > Shortcut URL to this page:
> > http://www.yahoogroups.com/community/HDTV-in-NYC
> > ======================================================== > > > > > > Yahoo! Groups SponsorADVERTISEMENT
> > > > > > ---------------------------------
> > Yahoo! Groups Links
> > > > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/HDTV-in-NYC/
> > > > To unsubscribe from this group, send an email to:
> > [EMAIL PROTECTED]
> > > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of > Service. > > > > > > __________________________________________________
> > Do You Yahoo!?
> > Tired of spam? Yahoo! Mail has the best spam protection
around
> > http://mail.yahoo.com
> > > > > > ========================================================
> > Community email addresses:
> Post message: [EMAIL PROTECTED]
> Subscribe: [EMAIL PROTECTED]
> Unsubscribe: [EMAIL PROTECTED]
> List owner (Keith Knipschild): [EMAIL PROTECTED]
> > Shortcut URL to this page:
> http://www.yahoogroups.com/community/HDTV-in-NYC
> ======================================================== > > > Yahoo! Groups Sponsor > Get unlimited calls to
> > U.S./Canada
> > > ---------------------------------
> Yahoo! Groups Links
> > To visit your group on the web, go to:
> http://groups.yahoo.com/group/HDTV-in-NYC/
> > To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. > > > > ---------------------------------
> Do you Yahoo!?
> Yahoo! Mail - Easier than ever with enhanced search. Learn more.






========================================================

Community email addresses:
  Post message: [EMAIL PROTECTED]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner (Keith Knipschild): [EMAIL PROTECTED]

Shortcut URL to this page:
http://www.yahoogroups.com/community/HDTV-in-NYC
========================================================



Yahoo! Groups SponsorADVERTISEMENT


--------------------------------- Yahoo! Groups Links

To visit your group on the web, go to:
http://groups.yahoo.com/group/HDTV-in-NYC/
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com





------------------------ Yahoo! Groups Sponsor --------------------~--> $4.98 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/Q7_YsB/neXJAA/yQLSAA/F03olB/TM
--------------------------------------------------------------------~->


========================================================

Community email addresses:
 Post message: [EMAIL PROTECTED]
 Subscribe:    [EMAIL PROTECTED]
 Unsubscribe:  [EMAIL PROTECTED]
 List owner (Keith Knipschild): [EMAIL PROTECTED]

Shortcut URL to this page:
http://www.yahoogroups.com/community/HDTV-in-NYC
======================================================== Yahoo! Groups Links


<*> To visit your group on the web, go to:
   http://groups.yahoo.com/group/HDTV-in-NYC/

<*> To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
   http://docs.yahoo.com/info/terms/




Reply via email to