RE: BlogCFC templates

2008-04-14 Thread Andy Matthews
I decided to just design my own template. No way I'm going to be happy with
an off the shelf template. 

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 11, 2008 9:51 PM
To: CF-Talk
Subject: BlogCFC templates

I'm evaluating blog software and I think that I've narrowed it down to Mango
Blog or BlogCFC. I plan on designing the site myself, but think it might be
easiest to start from a pre-exising template to make it easier on myself.

Are there any sites out there that have premade templates specically for
BlogCFC? 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303286
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC Imports Not Showing

2007-11-14 Thread Brian Kotek
By default the main page will only show entries that were added in the last
30 days (I believe). This might have changed in a recent version but I know
it has been the case in the past. So if your imported entries are older than
30 days (you might confirm by looking at their dates in the database), that
might be it.

On Nov 14, 2007 12:48 PM, Matt Quackenbush <[EMAIL PROTECTED]> wrote:

> I have just done a fresh install of BlogCFC (v 5.9), but I have a ton of
> "posts" that I am importing from an old database (not a BlogCFC database).
> I wrote up a little script to pull the data and then insert it into
> BlogCFC's tblBlogEntries, and have assigned each post to a category by
> inserting into tblBlogEntriesCategories.  I then refreshed the cache.  All
> of that ran nice and smooth.
>
> The "new" posts show up in the post count for the category in the Archives
> By Subject pod.  They also show up on the calendar, meaning that the days
> with posts are now links to display that day's posts.  They also show up
> if
> I do a raw query/dump of the tblBlogEntries table.  However, nothing shows
> up in the posts section.  All I get is: "sorry, there are no blog entries
> available that match your criteria".  Same message on the home page, the
> day
> page, the month page, the category page.
>
> Any ideas as to what I am doing wrong?
>
>
> Thanks in advance,
>
> Matt
>
>
> 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293329
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: BlogCFC Imports Not Showing

2007-11-14 Thread houseoffusion
This happened to me before and believe it or not, a restart of services
sorted the issue!  I upgraded from a previous version, but also scripted
entries into the new database I had setup.

Niall.

-Original Message-
From: Matt Quackenbush [mailto:[EMAIL PROTECTED] 
Sent: 14 November 2007 17:48
To: CF-Talk
Subject: BlogCFC Imports Not Showing

I have just done a fresh install of BlogCFC (v 5.9), but I have a ton of
"posts" that I am importing from an old database (not a BlogCFC database).
I wrote up a little script to pull the data and then insert it into
BlogCFC's tblBlogEntries, and have assigned each post to a category by
inserting into tblBlogEntriesCategories.  I then refreshed the cache.  All
of that ran nice and smooth.

The "new" posts show up in the post count for the category in the Archives
By Subject pod.  They also show up on the calendar, meaning that the days
with posts are now links to display that day's posts.  They also show up if
I do a raw query/dump of the tblBlogEntries table.  However, nothing shows
up in the posts section.  All I get is: "sorry, there are no blog entries
available that match your criteria".  Same message on the home page, the day
page, the month page, the category page.

Any ideas as to what I am doing wrong?


Thanks in advance,

Matt




~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293317
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC Imports Not Showing

2007-11-14 Thread Matt Quackenbush
Thanks to ScottP, the issue has been resolved.

Here is what I did wrong...

tblBlogEntries.username = tblUsers.name

The correct scenario...

tblBlogEntries.username = tblUsers.username


Thanks ScottP!


Matt


On Nov 14, 2007 11:48 AM, Matt Quackenbush <[EMAIL PROTECTED]> wrote:

> I have just done a fresh install of BlogCFC (v 5.9), but I have a ton of
> "posts" that I am importing from an old database (not a BlogCFC database).
> I wrote up a little script to pull the data and then insert it into
> BlogCFC's tblBlogEntries, and have assigned each post to a category by
> inserting into tblBlogEntriesCategories.  I then refreshed the cache.  All
> of that ran nice and smooth.
>
> The "new" posts show up in the post count for the category in the Archives
> By Subject pod.  They also show up on the calendar, meaning that the days
> with posts are now links to display that day's posts.  They also show up if
> I do a raw query/dump of the tblBlogEntries table.  However, nothing shows
> up in the posts section.  All I get is: "sorry, there are no blog entries
> available that match your criteria".  Same message on the home page, the day
> page, the month page, the category page.
>
> Any ideas as to what I am doing wrong?
>
>
> Thanks in advance,
>
> Matt
>
>


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293314
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC Imports Not Showing

2007-11-14 Thread Charlie Griefer
On Nov 14, 2007 9:48 AM, Matt Quackenbush <[EMAIL PROTECTED]> wrote:
> I have just done a fresh install of BlogCFC (v 5.9), but I have a ton of
> "posts" that I am importing from an old database (not a BlogCFC database).
> I wrote up a little script to pull the data and then insert it into
> BlogCFC's tblBlogEntries, and have assigned each post to a category by
> inserting into tblBlogEntriesCategories.  I then refreshed the cache.  All
> of that ran nice and smooth.
>
> The "new" posts show up in the post count for the category in the Archives
> By Subject pod.  They also show up on the calendar, meaning that the days
> with posts are now links to display that day's posts.  They also show up if
> I do a raw query/dump of the tblBlogEntries table.  However, nothing shows
> up in the posts section.  All I get is: "sorry, there are no blog entries
> available that match your criteria".  Same message on the home page, the day
> page, the month page, the category page.

check tblblogentries.username = tblusers.username

-- 
Charlie Griefer


"...All the world shall be your enemy, Prince with a Thousand Enemies,
and whenever they catch you, they will kill you. But first they must catch
you, digger, listener, runner, prince with a swift warning.
Be cunning and full of tricks and your people shall never be destroyed."

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293320
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Blogcfc: feeling stupid

2007-09-16 Thread Raymond Camden
I should also point out - I don't read cf-talk everyday. You may wan
to consider using the BlogCFC forums here:

http://www.coldfusionjedi.com/forums/forums.cfm?conferenceid=CBD210FD-AB88-8875-EBDE545BF7B67269

On 9/15/07, Eric Hoffman <[EMAIL PROTECTED]> wrote:
> Okay, I am setting up a blog system at our site using this, with 5
> bloggers.
>
> I changed the app.cfm files per instructions, did the ini file per
> instructionsthe only blog that works is the default directory.
> If I goto the subdirectory of a bloggerit errors in app.cfm.  Org
> is mapped in CF 8.
>
> So, I have www.domain.com/blogs  which all works fine.
>
> When I copy the client files to a subdirectory, and edit the app.cfm
> line to name the blog the right way, it bombs.   so each bloggers url
> looks like:  www.domain.com/blogs/dude/index.cfm
>
> Am I pulling a stupid?   In any of these subdirectories, I get the
> error about a bad cfif in app.cfm
>
> Thanks for any pointers this weekend.  Gotta get it live by Monday or
> so.
>
>
> Eric
> 
>
>
>
>
>
>
>
> mail:
> www:
> tel:
> fax:
> mob:
> Adobe Solution Partner
> Sonicwall Security Partner
> Microsoft Certified Partner
>
> 
>
> This message contains confidential information and is intended only for 
> [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you should not 
> disseminate, distribute or copy this e-mail. Please notify [EMAIL PROTECTED] 
> immediately by e-mail if you have received this e-mail by mistake and delete 
> this e-mail from your system. E-mail transmission cannot be guaranteed to be 
> secure or error-free as information could be intercepted, corrupted, lost, 
> destroyed, arrive late or incomplete, or contain viruses.  therefore does not 
> accept liability for any errors or omissions in the contents of this message, 
> which arise as a result of e-mail transmission. If verification is required 
> please request a hard-copy version.
> 
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288547
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Blogcfc: feeling stupid

2007-09-16 Thread Raymond Camden
What kind of errors are you getting? Do you have any files in
domain.com/blog? If so - you don't need them. If your blogs are in the
sub dirs, then each of them have a copy of the CLIENT folder from the
zip.

Anyway - please post the error you are getting.

On 9/15/07, Eric Hoffman <[EMAIL PROTECTED]> wrote:
> Okay, I am setting up a blog system at our site using this, with 5
> bloggers.
>
> I changed the app.cfm files per instructions, did the ini file per
> instructionsthe only blog that works is the default directory.
> If I goto the subdirectory of a bloggerit errors in app.cfm.  Org
> is mapped in CF 8.
>
> So, I have www.domain.com/blogs  which all works fine.
>
> When I copy the client files to a subdirectory, and edit the app.cfm
> line to name the blog the right way, it bombs.   so each bloggers url
> looks like:  www.domain.com/blogs/dude/index.cfm
>
> Am I pulling a stupid?   In any of these subdirectories, I get the
> error about a bad cfif in app.cfm
>
> Thanks for any pointers this weekend.  Gotta get it live by Monday or
> so.
>
>
> Eric
> 
>
>
>
>
>
>
>
> mail:
> www:
> tel:
> fax:
> mob:
> Adobe Solution Partner
> Sonicwall Security Partner
> Microsoft Certified Partner
>
> 
>
> This message contains confidential information and is intended only for 
> [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you should not 
> disseminate, distribute or copy this e-mail. Please notify [EMAIL PROTECTED] 
> immediately by e-mail if you have received this e-mail by mistake and delete 
> this e-mail from your system. E-mail transmission cannot be guaranteed to be 
> secure or error-free as information could be intercepted, corrupted, lost, 
> destroyed, arrive late or incomplete, or contain viruses.  therefore does not 
> accept liability for any errors or omissions in the contents of this message, 
> which arise as a result of e-mail transmission. If verification is required 
> please request a hard-copy version.
> 
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288546
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC

2007-09-07 Thread Raymond Camden
As a general FYI, I don't read CF-Talk every day. The best way to
reach me specifically is the Contact tab on my web site. Thanks for
covering for me Brian. :)

On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
> Thanks...I thought it did for some reason...
>
> Eric
>
> -Original Message-
> From: Brian Kotek [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 06, 2007 7:53 PM
> To: CF-Talk
> Subject: Re: BlogCFC
>
> It does not.
>
> On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
> >
> > Got a question for you Ray...does BlogCFC make use of reactor?  I don't
> > remeber if it did or not.
> >
> > Eric
> >
> >
> >
>
>
>
> 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287972
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlogCFC

2007-09-06 Thread Eric Roberts
Thanks...I thought it did for some reason...

Eric

-Original Message-
From: Brian Kotek [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 06, 2007 7:53 PM
To: CF-Talk
Subject: Re: BlogCFC

It does not.

On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
>
> Got a question for you Ray...does BlogCFC make use of reactor?  I don't
> remeber if it did or not.
>
> Eric
>
>
> 



~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287943
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC

2007-09-06 Thread Brian Kotek
It does not.

On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote:
>
> Got a question for you Ray...does BlogCFC make use of reactor?  I don't
> remeber if it did or not.
>
> Eric
>
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287930
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: blogCFC?

2007-01-29 Thread Qasim Rasheed
Doug,

By any chance, do you have debugging turned on?

Thanks

Qasim

On 1/29/07, Raymond Camden <[EMAIL PROTECTED]> wrote:
>
> The front page shouldn't be _too_ slow. The caching is mainly meant to
> make the most viewed page quicker.  (Ok, maybe I'm being defensive now
> ;)
>
> On 1/29/07, Russ <[EMAIL PROTECTED]> wrote:
> > BlogCFC is a bit slow, which is why it has a caching mechanism for the
> home
> > page.  If you don't reinit it all the time, it should be fast enough.
> It
> > also might be some of the optional components.  We have it running on a
> > large site, with no performance issues, while on my personal site, it
> does
> > seem a bit slow.
> >
> > Russ
> >
> --
>
> ===
> Raymond Camden
>
> Email: [EMAIL PROTECTED]
> Blog  : ray.camdenfamily.com
> AOL IM : cfjedimaster
>
> Video game player? Have kids? Check out KidGamers.org
>
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: blogCFC?

2007-01-29 Thread Raymond Camden
The front page shouldn't be _too_ slow. The caching is mainly meant to
make the most viewed page quicker.  (Ok, maybe I'm being defensive now
;)

On 1/29/07, Russ <[EMAIL PROTECTED]> wrote:
> BlogCFC is a bit slow, which is why it has a caching mechanism for the home
> page.  If you don't reinit it all the time, it should be fast enough.   It
> also might be some of the optional components.  We have it running on a
> large site, with no performance issues, while on my personal site, it does
> seem a bit slow.
>
> Russ
>
-- 
===
Raymond Camden

Email: [EMAIL PROTECTED]
Blog  : ray.camdenfamily.com
AOL IM : cfjedimaster

Video game player? Have kids? Check out KidGamers.org

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267939
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: blogCFC?

2007-01-29 Thread Raymond Camden
Hi Doug. I don't typically read cf-talk every day. Please post blogcfc
bug reports here:

http://ray.camdenfamily.com/forums/threads.cfm?forumid=CBD2114B-C3E6-9905-6FF858C3679EAB34

So - lets fix Spry first. Go to your Add Entry page, view source, an d
examine the SCRIPT tags to see what URL they are using to load Spry.
Is the URL valid?

On 1/29/07, Doug Brown <[EMAIL PROTECTED]> wrote:
> Nope..I have other applications that run just fine. This is on my dev box.
>
> Doug B.
>
>
>
>
> - Original Message -
> From: "Tom Chiverton" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Monday, January 29, 2007 5:51 AM
> Subject: Re: blogCFC?
>
>
> > On Monday 29 January 2007 03:00, Doug Brown wrote:
> > > I just installed blogCFC v5.5.1 I installed according to the directions,
> > > but it is running damn slow.
> >
> > Maybe your database is strugerling ?
> >
> > --
> > Tom Chiverton
> > Helping to widespreadedly customize innovative applications
> >
> > 
> >
> > This email is sent for and on behalf of Halliwells LLP.
> >
> > Halliwells LLP is a limited liability partnership registered in England
> and Wales under registered number OC307980 whose registered office address
> is at St James's Court Brown Street Manchester M2 2JF.  A list of members is
> available for inspection at the registered office. Any reference to a
> partner in relation to Halliwells LLP means a member of Halliwells LLP.
> Regulated by the Law Society.
> >
> > CONFIDENTIALITY
> >
> > This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged.  If you are not the addressee you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents.  If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 8008.
> >
> > For more information about Halliwells LLP visit www.halliwells.com.
> >
> >
> >
>
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267936
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: blogCFC?

2007-01-29 Thread Russ
BlogCFC is a bit slow, which is why it has a caching mechanism for the home
page.  If you don't reinit it all the time, it should be fast enough.   It
also might be some of the optional components.  We have it running on a
large site, with no performance issues, while on my personal site, it does
seem a bit slow. 

Russ

> -Original Message-
> From: Doug Brown [mailto:[EMAIL PROTECTED]
> Sent: Monday, January 29, 2007 8:02 AM
> To: CF-Talk
> Subject: Re: blogCFC?
> 
> Nope..I have other applications that run just fine. This is on my dev box.
> 
> Doug B.
> 
> 
> 
> 
> - Original Message -
> From: "Tom Chiverton" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Monday, January 29, 2007 5:51 AM
> Subject: Re: blogCFC?
> 
> 
> > On Monday 29 January 2007 03:00, Doug Brown wrote:
> > > I just installed blogCFC v5.5.1 I installed according to the
> directions,
> > > but it is running damn slow.
> >
> > Maybe your database is strugerling ?
> >
> > --
> > Tom Chiverton
> > Helping to widespreadedly customize innovative applications
> >
> > 
> >
> > This email is sent for and on behalf of Halliwells LLP.
> >
> > Halliwells LLP is a limited liability partnership registered in England
> and Wales under registered number OC307980 whose registered office address
> is at St James's Court Brown Street Manchester M2 2JF.  A list of members
> is
> available for inspection at the registered office. Any reference to a
> partner in relation to Halliwells LLP means a member of Halliwells LLP.
> Regulated by the Law Society.
> >
> > CONFIDENTIALITY
> >
> > This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged.  If you are not the addressee
> you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents.  If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 8008.
> >
> > For more information about Halliwells LLP visit www.halliwells.com.
> >
> >
> >
> 
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267935
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: blogCFC?

2007-01-29 Thread Doug Brown
Nope..I have other applications that run just fine. This is on my dev box.

Doug B.




- Original Message - 
From: "Tom Chiverton" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, January 29, 2007 5:51 AM
Subject: Re: blogCFC?


> On Monday 29 January 2007 03:00, Doug Brown wrote:
> > I just installed blogCFC v5.5.1 I installed according to the directions,
> > but it is running damn slow.
>
> Maybe your database is strugerling ?
>
> -- 
> Tom Chiverton
> Helping to widespreadedly customize innovative applications
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England
and Wales under registered number OC307980 whose registered office address
is at St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and
may be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.
>
> For more information about Halliwells LLP visit www.halliwells.com.
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267925
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: blogCFC?

2007-01-29 Thread Tom Chiverton
On Monday 29 January 2007 03:00, Doug Brown wrote:
> I just installed blogCFC v5.5.1 I installed according to the directions,
> but it is running damn slow. 

Maybe your database is strugerling ?

-- 
Tom Chiverton
Helping to widespreadedly customize innovative applications



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267924
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlogCFC 5.1 Released

2006-07-15 Thread James Holmes
Damn, there goes my plan for world domination.

Seriously though, I just made all the replacements, in all the CFC's
and their calling code, to allow for dbusername and dbpassword
properties. Let me know if the code is useful to you.

On 7/15/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> Forgive the spam, but tonight I released BlogCFC 5.1:
>
> http://ray.camdenfamily.com/index.cfm/2006/7/14/BlogCFC-51-Released
>
> The biggest push in this release was the content management system.
> This allows you to flesh out the pages/content outside of the main
> blog application. Also included are a bunch of small changes, AJAX
> integration, Gravatar support, etc.
>
> This code is free and completely open source. You can use it for
> anything excluding hostile planetary takeovers.
>

-- 
CFAJAX docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246655
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC

2006-07-14 Thread Raymond Camden
You can run N blogs with one ORG install, but multiple "client" folder
installs.

On 7/15/06, Howard Owens <[EMAIL PROTECTED]> wrote:
> Also, if I'm understanding correctly, BlogCFC allows multiple different
> blogs under the same installation, correct?  Any limit on the number of
> blogs?
>
> H.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246652
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlogCFC

2006-07-14 Thread Raymond Camden
It's out now. Yes, you could do a global search and replace.

On 7/15/06, Howard Owens <[EMAIL PROTECTED]> wrote:
> I was just getting ready to play with this.
>
> Any reason I can't do a global search and replace on all table names to
> match the naming convention I use on my server?
>
> Also, I would like to know when 5.1 is out.
>
> Thanks, Raymond.
>
> H.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246651
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlogCFC

2006-07-14 Thread Howard Owens
Also, if I'm understanding correctly, BlogCFC allows multiple different
blogs under the same installation, correct?  Any limit on the number of
blogs?

H.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246650
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: BlogCFC

2006-07-14 Thread Howard Owens
I was just getting ready to play with this.

Any reason I can't do a global search and replace on all table names to
match the naming convention I use on my server?

Also, I would like to know when 5.1 is out.

Thanks, Raymond.

H.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246649
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlogCFC

2006-07-14 Thread Raymond Camden
I'll consider this post 5.1. The release is done, I'm just updated db
install scripts and documentation.

On 7/14/06, James Holmes <[EMAIL PROTECTED]> wrote:
> It works fine for me in Oracle.
>
> 
>   SELECT *
>   FROM SomeTable
> 
>
> returned the correct results; in this case the username and password
> are saved in the DSN.
>
> Just to test, I then did this:
>
> 
> 
>  password="#MyPW#">
> SELECT *
> FROM SomeTable
> 
>
> which worked as well. So you are able to do what I did - add
> dbusername and dbpassword properties to the ini file and make them
> part of the instance data.
>
> On 7/14/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> > No. Reason being, if I remember right, you can't do username="". If
> > I'm wrong, I could add that post release.
> >
> > On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> > > Since that release is coming soon, I'll wait.
> > >
> > > One thing I had to do in 5.0 was a global search/replace to add
> > > username and password attributes to the cfquery tags. Will this change
> > > in 5.1?
> > >
> > > On 7/14/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> > > > In the 5.1 release, Ive abstracted out the textarea call in the
> > > > editor. This will make it easier to use TinyMCE, or KTML, or whatever,
> > > > as it's just one file with a textarea (basically). You can get this
> > > > release from www.blogcfc.com and the Subversion service, but the
> > > > documentation has NOT been updated yet. Anyway, glad you like it.
> > > >
> > > > On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> > > > > After having played with BlogCFC for the last hour, I have to say 
> > > > > it's great.
> > > > >
> > > > > Thanks again Ray for all your work in helping to bring decent open
> > > > > source CF to the community.
> > > > >
> > > > > All it needs now is TinyMCE in the editor ;-) I'll add this myself.
> > >
> > > --
> > > CFAJAX docs and other useful articles:
> > > http://www.bifrost.com.au/blog/
> > >
> > >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246549
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC

2006-07-14 Thread Mingo Hagen
Hmm, strange I remember it not working for me as well... is that 
something that was fixed in CF>5

James Holmes wrote:
> It works fine for me in Oracle.
>   



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246547
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlogCFC

2006-07-14 Thread James Holmes
It works fine for me in Oracle.


  SELECT *
  FROM SomeTable


returned the correct results; in this case the username and password
are saved in the DSN.

Just to test, I then did this:




SELECT *
FROM SomeTable


which worked as well. So you are able to do what I did - add
dbusername and dbpassword properties to the ini file and make them
part of the instance data.

On 7/14/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> No. Reason being, if I remember right, you can't do username="". If
> I'm wrong, I could add that post release.
>
> On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> > Since that release is coming soon, I'll wait.
> >
> > One thing I had to do in 5.0 was a global search/replace to add
> > username and password attributes to the cfquery tags. Will this change
> > in 5.1?
> >
> > On 7/14/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> > > In the 5.1 release, Ive abstracted out the textarea call in the
> > > editor. This will make it easier to use TinyMCE, or KTML, or whatever,
> > > as it's just one file with a textarea (basically). You can get this
> > > release from www.blogcfc.com and the Subversion service, but the
> > > documentation has NOT been updated yet. Anyway, glad you like it.
> > >
> > > On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> > > > After having played with BlogCFC for the last hour, I have to say it's 
> > > > great.
> > > >
> > > > Thanks again Ray for all your work in helping to bring decent open
> > > > source CF to the community.
> > > >
> > > > All it needs now is TinyMCE in the editor ;-) I'll add this myself.
> >
> > --
> > CFAJAX docs and other useful articles:
> > http://www.bifrost.com.au/blog/
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246542
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlogCFC

2006-07-14 Thread Raymond Camden
No. Reason being, if I remember right, you can't do username="". If
I'm wrong, I could add that post release.

On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> Since that release is coming soon, I'll wait.
>
> One thing I had to do in 5.0 was a global search/replace to add
> username and password attributes to the cfquery tags. Will this change
> in 5.1?
>
> On 7/14/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> > In the 5.1 release, Ive abstracted out the textarea call in the
> > editor. This will make it easier to use TinyMCE, or KTML, or whatever,
> > as it's just one file with a textarea (basically). You can get this
> > release from www.blogcfc.com and the Subversion service, but the
> > documentation has NOT been updated yet. Anyway, glad you like it.
> >
> > On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> > > After having played with BlogCFC for the last hour, I have to say it's 
> > > great.
> > >
> > > Thanks again Ray for all your work in helping to bring decent open
> > > source CF to the community.
> > >
> > > All it needs now is TinyMCE in the editor ;-) I'll add this myself.
>
> --
> CFAJAX docs and other useful articles:
> http://www.bifrost.com.au/blog/
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246529
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlogCFC

2006-07-13 Thread James Holmes
Since that release is coming soon, I'll wait.

One thing I had to do in 5.0 was a global search/replace to add
username and password attributes to the cfquery tags. Will this change
in 5.1?

On 7/14/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> In the 5.1 release, Ive abstracted out the textarea call in the
> editor. This will make it easier to use TinyMCE, or KTML, or whatever,
> as it's just one file with a textarea (basically). You can get this
> release from www.blogcfc.com and the Subversion service, but the
> documentation has NOT been updated yet. Anyway, glad you like it.
>
> On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> > After having played with BlogCFC for the last hour, I have to say it's 
> > great.
> >
> > Thanks again Ray for all your work in helping to bring decent open
> > source CF to the community.
> >
> > All it needs now is TinyMCE in the editor ;-) I'll add this myself.

-- 
CFAJAX docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246497
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlogCFC

2006-07-13 Thread Raymond Camden
In the 5.1 release, Ive abstracted out the textarea call in the
editor. This will make it easier to use TinyMCE, or KTML, or whatever,
as it's just one file with a textarea (basically). You can get this
release from www.blogcfc.com and the Subversion service, but the
documentation has NOT been updated yet. Anyway, glad you like it.

On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
> After having played with BlogCFC for the last hour, I have to say it's great.
>
> Thanks again Ray for all your work in helping to bring decent open
> source CF to the community.
>
> All it needs now is TinyMCE in the editor ;-) I'll add this myself.
>
> --
> CFAJAX docs and other useful articles:
> http://www.bifrost.com.au/blog/
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246495
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlogCFC

2006-07-13 Thread B V
Wow, TinyMCE looks great! Talk about lots of goodies to integrate in
messages.
On 7/13/06, James Holmes <[EMAIL PROTECTED]> wrote:
>
> After having played with BlogCFC for the last hour, I have to say it's
> great.
>
> Thanks again Ray for all your work in helping to bring decent open
> source CF to the community.
>
> All it needs now is TinyMCE in the editor ;-) I'll add this myself.
>
> --
> CFAJAX docs and other useful articles:
> http://www.bifrost.com.au/blog/
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246494
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlogCFC v5 Released

2006-05-15 Thread Andy Matthews
The hair...duh!



-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Saturday, May 13, 2006 5:56 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released


Nope... question though.  How DID Adam Curry get that job?

Snake wrote:
> Tsk, I dunno, you guys obviously never watched headbeangers ball on MTV
:-)
>
> -Original Message-
> From: Rick Root [mailto:[EMAIL PROTECTED]
> Sent: 13 May 2006 19:07
> To: CF-Talk
> Subject: Re: BlogCFC v5 Released
>
> Don't worry about it, I'm 33 and I didn't know who he was, I just didn't
> listen to or care about Iron Maiden =)
>
> Mark A Kruger wrote:
>> 41 - but I completely missed the 70's and the 80's...
>>
>> -Original Message-
>> From: Snake [mailto:[EMAIL PROTECTED]
>> Sent: Saturday, May 13, 2006 4:29 AM
>> To: CF-Talk
>> Subject: RE: BlogCFC v5 Released
>>
>> Oh dear oh dear Mark, how old are you ?
>>
>> -----Original Message-
>> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
>> Sent: 12 May 2006 21:05
>> To: CF-Talk
>> Subject: RE: BlogCFC v5 Released
>>
>> Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson?
>>
>> -Original Message-
>> From: Rick Root [mailto:[EMAIL PROTECTED]
>> Sent: Friday, May 12, 2006 2:10 PM
>> To: CF-Talk
>> Subject: Re: BlogCFC v5 Released
>>
>> Mark A Kruger wrote:
>>> Ok, I watched this whole episode, and I have a sense of humor, but
>>> there has to be something I don't understand ... Some inside joke.
>>> It's funny  But
>> I think it's just the SNL style that you're not getting.  I think it's
>> pretty funny myself.
>>
>> Maybe the humor is in that we all know that the cowbell sounds like
>> crap, but BRUCE DICKINSON the all powerful producer loves it, and so it
> gets done.
>> Producers ruin albums all the time.
>>
>> Besides, it's Christopher Walken.  comic genius.  Love him!
>>
>> Rick
>>
>>
>>
>>
>>
>>
>>
>>
>
>
>
>



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240529
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


RE: BlogCFC v5 Released

2006-05-15 Thread Mike Klostermeyer
the hair, man...the hair

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Saturday, May 13, 2006 5:56 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released


Nope... question though.  How DID Adam Curry get that job?

Snake wrote:
> Tsk, I dunno, you guys obviously never watched headbeangers ball on MTV
:-)
>
> -Original Message-
> From: Rick Root [mailto:[EMAIL PROTECTED]
> Sent: 13 May 2006 19:07
> To: CF-Talk
> Subject: Re: BlogCFC v5 Released
>
> Don't worry about it, I'm 33 and I didn't know who he was, I just didn't
> listen to or care about Iron Maiden =)
>
> Mark A Kruger wrote:
>> 41 - but I completely missed the 70's and the 80's...
>>
>> -Original Message-
>> From: Snake [mailto:[EMAIL PROTECTED]
>> Sent: Saturday, May 13, 2006 4:29 AM
>> To: CF-Talk
>> Subject: RE: BlogCFC v5 Released
>>
>> Oh dear oh dear Mark, how old are you ?
>>
>> -----Original Message-
>> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
>> Sent: 12 May 2006 21:05
>> To: CF-Talk
>> Subject: RE: BlogCFC v5 Released
>>
>> Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson?
>>
>> -Original Message-
>> From: Rick Root [mailto:[EMAIL PROTECTED]
>> Sent: Friday, May 12, 2006 2:10 PM
>> To: CF-Talk
>> Subject: Re: BlogCFC v5 Released
>>
>> Mark A Kruger wrote:
>>> Ok, I watched this whole episode, and I have a sense of humor, but
>>> there has to be something I don't understand ... Some inside joke.
>>> It's funny  But
>> I think it's just the SNL style that you're not getting.  I think it's
>> pretty funny myself.
>>
>> Maybe the humor is in that we all know that the cowbell sounds like
>> crap, but BRUCE DICKINSON the all powerful producer loves it, and so it
> gets done.
>> Producers ruin albums all the time.
>>
>> Besides, it's Christopher Walken.  comic genius.  Love him!
>>
>> Rick
>>
>>
>>
>>
>>
>>
>>
>>
>
>
>
>



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240524
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC v5 Released

2006-05-13 Thread Rick Root
Nope... question though.  How DID Adam Curry get that job?

Snake wrote:
> Tsk, I dunno, you guys obviously never watched headbeangers ball on MTV :-) 
> 
> -Original Message-
> From: Rick Root [mailto:[EMAIL PROTECTED] 
> Sent: 13 May 2006 19:07
> To: CF-Talk
> Subject: Re: BlogCFC v5 Released
> 
> Don't worry about it, I'm 33 and I didn't know who he was, I just didn't
> listen to or care about Iron Maiden =)
> 
> Mark A Kruger wrote:
>> 41 - but I completely missed the 70's and the 80's...  
>>
>> -Original Message-
>> From: Snake [mailto:[EMAIL PROTECTED]
>> Sent: Saturday, May 13, 2006 4:29 AM
>> To: CF-Talk
>> Subject: RE: BlogCFC v5 Released
>>
>> Oh dear oh dear Mark, how old are you ? 
>>
>> -----Original Message-
>> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
>> Sent: 12 May 2006 21:05
>> To: CF-Talk
>> Subject: RE: BlogCFC v5 Released
>>
>> Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson? 
>>
>> -Original Message-
>> From: Rick Root [mailto:[EMAIL PROTECTED]
>> Sent: Friday, May 12, 2006 2:10 PM
>> To: CF-Talk
>> Subject: Re: BlogCFC v5 Released
>>
>> Mark A Kruger wrote:
>>> Ok, I watched this whole episode, and I have a sense of humor, but 
>>> there has to be something I don't understand ... Some inside joke.
>>> It's funny  But
>> I think it's just the SNL style that you're not getting.  I think it's 
>> pretty funny myself.
>>
>> Maybe the humor is in that we all know that the cowbell sounds like 
>> crap, but BRUCE DICKINSON the all powerful producer loves it, and so it
> gets done.
>> Producers ruin albums all the time.
>>
>> Besides, it's Christopher Walken.  comic genius.  Love him!
>>
>> Rick
>>
>>
>>
>>
>>
>>
>>
>>
> 
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240488
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


RE: BlogCFC v5 Released

2006-05-13 Thread Snake
Tsk, I dunno, you guys obviously never watched headbeangers ball on MTV :-) 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: 13 May 2006 19:07
To: CF-Talk
Subject: Re: BlogCFC v5 Released

Don't worry about it, I'm 33 and I didn't know who he was, I just didn't
listen to or care about Iron Maiden =)

Mark A Kruger wrote:
> 41 - but I completely missed the 70's and the 80's...  
> 
> -Original Message-
> From: Snake [mailto:[EMAIL PROTECTED]
> Sent: Saturday, May 13, 2006 4:29 AM
> To: CF-Talk
> Subject: RE: BlogCFC v5 Released
> 
> Oh dear oh dear Mark, how old are you ? 
> 
> -Original Message-
> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
> Sent: 12 May 2006 21:05
> To: CF-Talk
> Subject: RE: BlogCFC v5 Released
> 
> Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson? 
> 
> -Original Message-
> From: Rick Root [mailto:[EMAIL PROTECTED]
> Sent: Friday, May 12, 2006 2:10 PM
> To: CF-Talk
> Subject: Re: BlogCFC v5 Released
> 
> Mark A Kruger wrote:
>> Ok, I watched this whole episode, and I have a sense of humor, but 
>> there has to be something I don't understand ... Some inside joke.
>> It's funny  But
> 
> I think it's just the SNL style that you're not getting.  I think it's 
> pretty funny myself.
> 
> Maybe the humor is in that we all know that the cowbell sounds like 
> crap, but BRUCE DICKINSON the all powerful producer loves it, and so it
gets done.
> 
> Producers ruin albums all the time.
> 
> Besides, it's Christopher Walken.  comic genius.  Love him!
> 
> Rick
> 
> 
> 
> 
> 
> 
> 
> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240482
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


Re: BlogCFC v5 Released

2006-05-13 Thread Rick Root
Don't worry about it, I'm 33 and I didn't know who he was, I just didn't 
listen to or care about Iron Maiden =)

Mark A Kruger wrote:
> 41 - but I completely missed the 70's and the 80's...  
> 
> -Original Message-
> From: Snake [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, May 13, 2006 4:29 AM
> To: CF-Talk
> Subject: RE: BlogCFC v5 Released
> 
> Oh dear oh dear Mark, how old are you ? 
> 
> -Original Message-
> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
> Sent: 12 May 2006 21:05
> To: CF-Talk
> Subject: RE: BlogCFC v5 Released
> 
> Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson? 
> 
> -Original Message-
> From: Rick Root [mailto:[EMAIL PROTECTED]
> Sent: Friday, May 12, 2006 2:10 PM
> To: CF-Talk
> Subject: Re: BlogCFC v5 Released
> 
> Mark A Kruger wrote:
>> Ok, I watched this whole episode, and I have a sense of humor, but 
>> there has to be something I don't understand ... Some inside joke.
>> It's funny  But
> 
> I think it's just the SNL style that you're not getting.  I think it's
> pretty funny myself.
> 
> Maybe the humor is in that we all know that the cowbell sounds like crap,
> but BRUCE DICKINSON the all powerful producer loves it, and so it gets done.
> 
> Producers ruin albums all the time.
> 
> Besides, it's Christopher Walken.  comic genius.  Love him!
> 
> Rick
> 
> 
> 
> 
> 
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240481
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


RE: BlogCFC v5 Released

2006-05-13 Thread Mark A Kruger
41 - but I completely missed the 70's and the 80's...  

-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: Saturday, May 13, 2006 4:29 AM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Oh dear oh dear Mark, how old are you ? 

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: 12 May 2006 21:05
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson? 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 2:10 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released

Mark A Kruger wrote:
> Ok, I watched this whole episode, and I have a sense of humor, but 
> there has to be something I don't understand ... Some inside joke.
> It's funny  But

I think it's just the SNL style that you're not getting.  I think it's
pretty funny myself.

Maybe the humor is in that we all know that the cowbell sounds like crap,
but BRUCE DICKINSON the all powerful producer loves it, and so it gets done.

Producers ruin albums all the time.

Besides, it's Christopher Walken.  comic genius.  Love him!

Rick







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240470
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC v5 Released

2006-05-13 Thread Snake
Oh dear oh dear Mark, how old are you ? 

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED] 
Sent: 12 May 2006 21:05
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson? 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 2:10 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released

Mark A Kruger wrote:
> Ok, I watched this whole episode, and I have a sense of humor, but 
> there has to be something I don't understand ... Some inside joke.
> It's funny  But

I think it's just the SNL style that you're not getting.  I think it's
pretty funny myself.

Maybe the humor is in that we all know that the cowbell sounds like crap,
but BRUCE DICKINSON the all powerful producer loves it, and so it gets done.

Producers ruin albums all the time.

Besides, it's Christopher Walken.  comic genius.  Love him!

Rick





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240465
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC v5 Released

2006-05-12 Thread Rick Root
Che Vilnonis wrote:
> Iron Maiden dude.

hah, see I didn't know that and it was still funny, but it's even 
funnier now.

Rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240457
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


RE: BlogCFC v5 Released

2006-05-12 Thread Mark A Kruger
Ok but she will have to hold still 

-Original Message-
From: Che Vilnonis [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 12, 2006 3:16 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Iron Maiden dude.

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 4:05 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released


Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson?

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 2:10 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released

Mark A Kruger wrote:
> Ok, I watched this whole episode, and I have a sense of humor, but 
> there has to be something I don't understand ... Some inside joke.
> It's funny  But

I think it's just the SNL style that you're not getting.  I think it's
pretty funny myself.

Maybe the humor is in that we all know that the cowbell sounds like crap,
but BRUCE DICKINSON the all powerful producer loves it, and so it gets done.

Producers ruin albums all the time.

Besides, it's Christopher Walken.  comic genius.  Love him!

Rick







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240412
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC v5 Released

2006-05-12 Thread Che Vilnonis
Iron Maiden dude.

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 4:05 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released


Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson?

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 2:10 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released

Mark A Kruger wrote:
> Ok, I watched this whole episode, and I have a sense of humor, but
> there has to be something I don't understand ... Some inside joke.
> It's funny  But

I think it's just the SNL style that you're not getting.  I think it's
pretty funny myself.

Maybe the humor is in that we all know that the cowbell sounds like crap,
but BRUCE DICKINSON the all powerful producer loves it, and so it gets done.

Producers ruin albums all the time.

Besides, it's Christopher Walken.  comic genius.  Love him!

Rick





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240405
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


RE: BlogCFC v5 Released

2006-05-12 Thread Everett, Al \(NIH/NIGMS\) [C]
http://en.wikipedia.org/wiki/More_cowbell

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 12, 2006 4:05 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson? 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 2:10 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released

Mark A Kruger wrote:
> Ok, I watched this whole episode, and I have a sense of humor, but 
> there has to be something I don't understand ... Some inside joke.
> It's funny  But

I think it's just the SNL style that you're not getting.  I think it's
pretty funny myself.

Maybe the humor is in that we all know that the cowbell sounds like
crap, but BRUCE DICKINSON the all powerful producer loves it, and so it
gets done.

Producers ruin albums all the time.

Besides, it's Christopher Walken.  comic genius.  Love him!

Rick





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240404
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC v5 Released

2006-05-12 Thread Mark A Kruger
Ok I'll rethink it. Who in the ham sandwich is Bruce Dickinson? 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 12, 2006 2:10 PM
To: CF-Talk
Subject: Re: BlogCFC v5 Released

Mark A Kruger wrote:
> Ok, I watched this whole episode, and I have a sense of humor, but 
> there has to be something I don't understand ... Some inside joke. 
> It's funny  But

I think it's just the SNL style that you're not getting.  I think it's
pretty funny myself.

Maybe the humor is in that we all know that the cowbell sounds like crap,
but BRUCE DICKINSON the all powerful producer loves it, and so it gets done.

Producers ruin albums all the time.

Besides, it's Christopher Walken.  comic genius.  Love him!

Rick



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240402
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


Re: BlogCFC v5 Released

2006-05-12 Thread Rick Root
Mark A Kruger wrote:
> Ok, I watched this whole episode, and I have a sense of humor, but there has
> to be something I don't understand ... Some inside joke. It's funny  But

I think it's just the SNL style that you're not getting.  I think it's 
pretty funny myself.

Maybe the humor is in that we all know that the cowbell sounds like 
crap, but BRUCE DICKINSON the all powerful producer loves it, and so it 
gets done.

Producers ruin albums all the time.

Besides, it's Christopher Walken.  comic genius.  Love him!

Rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240383
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


RE: BlogCFC v5 Released

2006-05-12 Thread Andy Matthews
BOC used cowbell in a lot of their songs.

But I think it's more than that too. It's one of those things that's more
funny in the retelling and quoting than in the original episode.



-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 1:37 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released


Ok, I watched this whole episode, and I have a sense of humor, but there has
to be something I don't understand ... Some inside joke. It's funny  But
I'm not sure it's really really funny. Can someone fill me in on rock
history or something?  Was the cowbell worshipped by the "blue oyster" cult?
Is cowbell a euphimism for something?

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 1:17 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

http://www.youtube.com/watch?v=0SzusxVofHc

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 2:00 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Ray,

Looks great - but what is "cowbell support"?  I'm not sure most of your
users are rural enough for that - are they :)

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 12:56 PM
To: CF-Talk
Subject: ANN: BlogCFC v5 Released

The subject says it all, details, and free party favors, may be found
here:

http://ray.camdenfamily.com/index.cfm/2006/5/12/BlogCFC-v5-The-circle-is
-now
-complete

(The free party favor thing is a lie.)

Raymond Camden





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240381
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC v5 Released

2006-05-12 Thread Mark A Kruger
Ok, I watched this whole episode, and I have a sense of humor, but there has
to be something I don't understand ... Some inside joke. It's funny  But
I'm not sure it's really really funny. Can someone fill me in on rock
history or something?  Was the cowbell worshipped by the "blue oyster" cult?
Is cowbell a euphimism for something?  

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 12, 2006 1:17 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

http://www.youtube.com/watch?v=0SzusxVofHc

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 2:00 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Ray,

Looks great - but what is "cowbell support"?  I'm not sure most of your
users are rural enough for that - are they :) 

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 12:56 PM
To: CF-Talk
Subject: ANN: BlogCFC v5 Released

The subject says it all, details, and free party favors, may be found
here:

http://ray.camdenfamily.com/index.cfm/2006/5/12/BlogCFC-v5-The-circle-is
-now
-complete

(The free party favor thing is a lie.)

Raymond Camden



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240380
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC v5 Released

2006-05-12 Thread Everett, Al \(NIH/NIGMS\) [C]
http://www.youtube.com/watch?v=0SzusxVofHc

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 12, 2006 2:00 PM
To: CF-Talk
Subject: RE: BlogCFC v5 Released

Ray,

Looks great - but what is "cowbell support"?  I'm not sure most of your
users are rural enough for that - are they :) 

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, May 12, 2006 12:56 PM
To: CF-Talk
Subject: ANN: BlogCFC v5 Released

The subject says it all, details, and free party favors, may be found
here:

http://ray.camdenfamily.com/index.cfm/2006/5/12/BlogCFC-v5-The-circle-is
-now
-complete

(The free party favor thing is a lie.)

Raymond Camden

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240378
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


Re: BlogCFC v5 Released

2006-05-12 Thread Raymond Camden
Sorry, I keep thinking of that great SNL episode with Christopher Walken.

On 5/12/06, Mark A Kruger <[EMAIL PROTECTED]> wrote:
> Ray,
>
> Looks great - but what is "cowbell support"?  I'm not sure most of your
> users are rural enough for that - are they :)
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Friday, May 12, 2006 12:56 PM
> To: CF-Talk
> Subject: ANN: BlogCFC v5 Released
>

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240377
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC v5 Released

2006-05-12 Thread Mark A Kruger
Ray,

Looks great - but what is "cowbell support"?  I'm not sure most of your
users are rural enough for that - are they :) 

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 12, 2006 12:56 PM
To: CF-Talk
Subject: ANN: BlogCFC v5 Released

The subject says it all, details, and free party favors, may be found here:

http://ray.camdenfamily.com/index.cfm/2006/5/12/BlogCFC-v5-The-circle-is-now
-complete

(The free party favor thing is a lie.)

Raymond Camden



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240373
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 5 Beta - looking for testers

2006-04-28 Thread Raymond Camden
At THIS moment, zip == SVN. But I'd probably suggest SVN. The beta
"feels" stable, and of course the SVN may not always be so, but if you
always want the latest I'd recommend that.


On 4/28/06, Nick Tong - TalkWebSolutions.co.uk <[EMAIL PROTECTED]> wrote:
> Hi Ray
>
> Just wondering if it is it best to get if from your site or SVN?
>
> On 28/04/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> > Hope this isn't considered too spammy. ;)
> >
> > I've launched the beta for BlogCFC 5. I'd love any testers, feedback, etc.
> >
> > More info here:
> >
> > http://ray.camdenfamily.com/index.cfm/2006/4/28/BlogCFC-5-Beta-Announced
> >
> >
> > --
> > ===
> > Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)
> >
> > Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)
> >
> > Email: [EMAIL PROTECTED]
> > Blog : ray.camdenfamily.com
> > Yahoo IM : cfjedimaster
> >
> > "My ally is the Force, and a powerful ally it is." - Yoda
> >
> >
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239085
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 5 Beta - looking for testers

2006-04-28 Thread Nick Tong - TalkWebSolutions.co.uk
Whoops - just read this:

"The SVN repository will always have the latest code."

I really should read more b4 posting...

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239084
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


Re: BlogCFC 5 Beta - looking for testers

2006-04-28 Thread Nick Tong - TalkWebSolutions.co.uk
Hi Ray

Just wondering if it is it best to get if from your site or SVN?

On 28/04/06, Raymond Camden <[EMAIL PROTECTED]> wrote:
> Hope this isn't considered too spammy. ;)
>
> I've launched the beta for BlogCFC 5. I'd love any testers, feedback, etc.
>
> More info here:
>
> http://ray.camdenfamily.com/index.cfm/2006/4/28/BlogCFC-5-Beta-Announced
>
>
> --
> ===
> Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)
>
> Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)
>
> Email: [EMAIL PROTECTED]
> Blog : ray.camdenfamily.com
> Yahoo IM : cfjedimaster
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239083
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 5 Beta - looking for testers

2006-04-28 Thread Raymond Camden
Heh, talk about a trial by fire. Good luck, and please let me know. Be
sure to read the release notes on the forums.

-r

On 4/28/06, Andy Matthews <[EMAIL PROTECTED]> wrote:
> The Nashville CFUG is planning a group code-a-thon this evening to rebuild
> the ncfug.com site. We're going to be using BlogCFC as the basis for the
> site so can we ALL be beta testers?
>

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239082
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC 5 Beta - looking for testers

2006-04-28 Thread Andy Matthews
The Nashville CFUG is planning a group code-a-thon this evening to rebuild
the ncfug.com site. We're going to be using BlogCFC as the basis for the
site so can we ALL be beta testers?



-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, April 28, 2006 3:50 PM
To: CF-Talk
Subject: BlogCFC 5 Beta - looking for testers


Hope this isn't considered too spammy. ;)

I've launched the beta for BlogCFC 5. I'd love any testers, feedback, etc.

More info here:

http://ray.camdenfamily.com/index.cfm/2006/4/28/BlogCFC-5-Beta-Announced


--
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239081
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC 4.0 Released

2005-11-10 Thread Ken Ketsdever
Wah!

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 10, 2005 1:47 PM
To: CF-Talk
Subject: BlogCFC 4.0 Released

The subject says it all. I finally wrapped up the last few bits and
have released the 'official' (and final, seriously) release for
BlogCFC 4.0. BlogCFC is a blog application written in ColdFusion. It
runs on CFMX 6.1 and higher, and BD 6.2 and higher. It is in use in
close to 100 blogs. The software is free, but if you use I'll send
mental guilt-bombs to you to visit my Amazon wishlist. ;)

http://ray.camdenfamily.com/index.cfm/2005/11/10/BlogCFC-4-Released

--
===
Raymond Camden, Director of Development for Mindseye, Inc
(www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223880
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


Re: BlogCFC & XML-RPC

2005-10-25 Thread John Beynon
I did write one using Roger Beningfields (I think) XML-RPC CFC ages
ago which allowed me to post to BlogCFC from Newscrawler...not sure
where i put it though, I'll take a look

john.

On 10/24/05, Kay Smoljak <[EMAIL PROTECTED]> wrote:
> I'm in love with Wordpress, and am looking to revamp my CF blog with
> some similar features. I've looked at BlogCFC and am impressed with
> what it can do - almost everything I want is there already, and what's
> not is easily added (rich text editing, standards compliance).
>
> However, as far as I can tell it doesn't support an XML-RPC API that
> would allow me to use an offline blogging client, right? Is there a CF
> interface available (I'm sure there is) and is it possible to retrofit
> it to BlogCFC? Are there any CF blog engines out there that do support
> XML-RPC?
>
> Thanks!
>
> --
> Kay Smoljak
> http://kay.zombiecoder.com/
>
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:222159
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


RE: BlogCFC 3.9 Released

2005-08-16 Thread Rick Faircloth
Thanks, Jeff...

-Original Message-
From: Jeff Fleitz [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 16, 2005 9:52 PM
To: CF-Talk
Subject: Re: BlogCFC 3.9 Released


The Studio website says sometime in September.

http://www.macromedia.com/software/studio/productinfo/faq/#item-2-3

--
Jeff Fleitz



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215378
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-16 Thread Jeff Fleitz
The Studio website says sometime in September.

http://www.macromedia.com/software/studio/productinfo/faq/#item-2-3

-- 
Jeff Fleitz

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215377
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC 3.9 Released

2005-08-16 Thread Rick Faircloth
Speaking of DW 8...does anyone have any idea
when it *might* be released for production?

I'm considering starting to use DW, but realized it's
MX 2004 that's the current production version...how
long might I have to wait for DW 8 to be sold?

Rick

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 16, 2005 8:10 PM
To: CF-Talk
Subject: RE: BlogCFC 3.9 Released


> A bit extra work as fun makes BlogCFC cool! :)

> Here is my latest design for BlogCFC 3.9

> http://demirkapi.net/blogcfc/

> It is really a fun for me to make my designs. I just use
> new DW 8 for CSS
> support etc.

Interesting choice to have the middle column static...

Nice design overall. :)


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215374
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC 3.9 Released

2005-08-16 Thread S . Isaac Dealey
> A bit extra work as fun makes BlogCFC cool! :)

> Here is my latest design for BlogCFC 3.9

> http://demirkapi.net/blogcfc/

> It is really a fun for me to make my designs. I just use
> new DW 8 for CSS
> support etc.

Interesting choice to have the middle column static...

Nice design overall. :)


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215370
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-15 Thread Tony Weeg
thats a killer design man.

good stuff.

tony :)

On 8/15/05, Tarantor <[EMAIL PROTECTED]> wrote:
> A bit extra work as fun makes BlogCFC cool! :)
> 
> Here is my latest design for BlogCFC 3.9
> 
> http://demirkapi.net/blogcfc/
> 
> It is really a fun for me to make my designs. I just use new DW 8 for CSS
> support etc.
> 
> :)
> 
> Oguz Demirkapi
> 
> 
> 
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Dienstag, 16. August 2005 02:08
> To: CF-Talk
> Subject: Re: BlogCFC 3.9 Released
> 
> Skinning is not easy in BlogCFC. I'll definitely admit that. I'm
> hoping to make it a bit easier in 4.0. It's the Model-T approach - you
> can have it in any color as long as it's black. ;)
> 
> On 8/15/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> > I'll have to have a look at the way BlogCFC handles skinning, but I
> > suspect you may like the XSL approach in this one (based purely on
> > having heard that it's a bit of a challenge with blogCFC) -- might be
> > something you'd like to ste...borrow. :)
> >
> > > I know. How dare he compete against me? Doesn't he know
> > > I'm planning
> > > on becoming the Microsoft of ColdFusion Blogs!?!??
> > > Seriously though -
> > > nice to see more implementations out there. Gives me more
> > > to ste...
> > > borrow from. :>
> >
> > > On 8/15/05, Rick Root <[EMAIL PROTECTED]> wrote:
> > >> S. Isaac Dealey wrote:
> > >> >
> > >> > I haven't had a chance to install blogCFC yet to check
> > >> > it out, just
> > >> > been too busy... doing what? Why... creating a blog
> > >> > application of
> > >> > course! :)
> > >>
> > >> Hey Ray, can you send him the membership card? =)
> >
> > s. isaac dealey   954.522.6080
> > new epoch : isn't it time for a change?
> >
> > add features without fixtures with
> > the onTap open source framework
> >
> > http://www.fusiontap.com
> > http://coldfusion.sys-con.com/author/4806Dealey.htm
> >
> >
> >
> >
> >
> 
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215107
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


RE: BlogCFC 3.9 Released

2005-08-15 Thread Tarantor
A bit extra work as fun makes BlogCFC cool! :)

Here is my latest design for BlogCFC 3.9

http://demirkapi.net/blogcfc/

It is really a fun for me to make my designs. I just use new DW 8 for CSS
support etc.

:)

Oguz Demirkapi




-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Dienstag, 16. August 2005 02:08
To: CF-Talk
Subject: Re: BlogCFC 3.9 Released

Skinning is not easy in BlogCFC. I'll definitely admit that. I'm
hoping to make it a bit easier in 4.0. It's the Model-T approach - you
can have it in any color as long as it's black. ;)

On 8/15/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> I'll have to have a look at the way BlogCFC handles skinning, but I
> suspect you may like the XSL approach in this one (based purely on
> having heard that it's a bit of a challenge with blogCFC) -- might be
> something you'd like to ste...borrow. :)
> 
> > I know. How dare he compete against me? Doesn't he know
> > I'm planning
> > on becoming the Microsoft of ColdFusion Blogs!?!??
> > Seriously though -
> > nice to see more implementations out there. Gives me more
> > to ste...
> > borrow from. :>
> 
> > On 8/15/05, Rick Root <[EMAIL PROTECTED]> wrote:
> >> S. Isaac Dealey wrote:
> >> >
> >> > I haven't had a chance to install blogCFC yet to check
> >> > it out, just
> >> > been too busy... doing what? Why... creating a blog
> >> > application of
> >> > course! :)
> >>
> >> Hey Ray, can you send him the membership card? =)
> 
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 
> 
> 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215101
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-15 Thread Raymond Camden
Skinning is not easy in BlogCFC. I'll definitely admit that. I'm
hoping to make it a bit easier in 4.0. It's the Model-T approach - you
can have it in any color as long as it's black. ;)

On 8/15/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> I'll have to have a look at the way BlogCFC handles skinning, but I
> suspect you may like the XSL approach in this one (based purely on
> having heard that it's a bit of a challenge with blogCFC) -- might be
> something you'd like to ste...borrow. :)
> 
> > I know. How dare he compete against me? Doesn't he know
> > I'm planning
> > on becoming the Microsoft of ColdFusion Blogs!?!??
> > Seriously though -
> > nice to see more implementations out there. Gives me more
> > to ste...
> > borrow from. :>
> 
> > On 8/15/05, Rick Root <[EMAIL PROTECTED]> wrote:
> >> S. Isaac Dealey wrote:
> >> >
> >> > I haven't had a chance to install blogCFC yet to check
> >> > it out, just
> >> > been too busy... doing what? Why... creating a blog
> >> > application of
> >> > course! :)
> >>
> >> Hey Ray, can you send him the membership card? =)
> 
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215100
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-15 Thread S . Isaac Dealey
I'll have to have a look at the way BlogCFC handles skinning, but I
suspect you may like the XSL approach in this one (based purely on
having heard that it's a bit of a challenge with blogCFC) -- might be
something you'd like to ste...borrow. :)

> I know. How dare he compete against me? Doesn't he know
> I'm planning
> on becoming the Microsoft of ColdFusion Blogs!?!??
> Seriously though -
> nice to see more implementations out there. Gives me more
> to ste...
> borrow from. :>

> On 8/15/05, Rick Root <[EMAIL PROTECTED]> wrote:
>> S. Isaac Dealey wrote:
>> >
>> > I haven't had a chance to install blogCFC yet to check
>> > it out, just
>> > been too busy... doing what? Why... creating a blog
>> > application of
>> > course! :)
>>
>> Hey Ray, can you send him the membership card? =)

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215087
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-15 Thread S . Isaac Dealey
> S. Isaac Dealey wrote:
>>
>> I haven't had a chance to install blogCFC yet to
>> check it out, just been too busy... doing what?
>> Why... creating a blog application of course! :)

> Hey Ray, can you send him the membership card? =)

Heh... We need a revival of the webring concept...
"Next 5 ColdFusion Driven Blogs..."

Or is that what blogs are about? :P

Not to mention decoder rings and a complicated handshake. :)

"I saved your life Roy Tam. It now belongs to me... " bwahahahaha...

Who knows what evil lurks in the code of men...


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215071
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


Re: BlogCFC 3.9 Released

2005-08-15 Thread Paul Hastings
Raymond Camden wrote:
> I know. How dare he compete against me? Doesn't he know I'm planning

one cannot compete with the borg of blogs, one can only be assimilated. 
resistance *is* futile.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215055
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-15 Thread Raymond Camden
I know. How dare he compete against me? Doesn't he know I'm planning
on becoming the Microsoft of ColdFusion Blogs!?!?? Seriously though -
nice to see more implementations out there. Gives me more to ste...
borrow from. :>

On 8/15/05, Rick Root <[EMAIL PROTECTED]> wrote:
> S. Isaac Dealey wrote:
> >
> > I haven't had a chance to install blogCFC yet to check it out, just
> > been too busy... doing what? Why... creating a blog application of
> > course! :)
> 
> Hey Ray, can you send him the membership card? =)
> 


-- 
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215053
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-15 Thread Rick Root
S. Isaac Dealey wrote:
> 
> I haven't had a chance to install blogCFC yet to check it out, just
> been too busy... doing what? Why... creating a blog application of
> course! :)

Hey Ray, can you send him the membership card? =)

Rick


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215035
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


RE: BlogCFC 3.9 Released

2005-08-15 Thread S . Isaac Dealey
> Can't live without my iPod - cycling, running, on the
> Tube...


> **Time to either get back onto BlogCFC or move this to
> CF-Community..


Okay I'll bite...

I haven't had a chance to install blogCFC yet to check it out, just
been too busy... doing what? Why... creating a blog application of
course! :) And I'm sure no-one will be surprised that it's intended as
a "sample application" for the onTap framework.

It may be a little odd though because it's remarkably feature-rich for
a "sample app", including muliti-user, multi-blog, author graphics
(from the member plugin), XML/XSL skinning, extensions to the
framework's roles-based security suite which allow the owner of a blog
(and administrators) to assign additional arbitrary rules to determine
who can read/publish/moderate individual blogs (so each blog can have
its own access rules), multilingual support and easy translation of
articles into alternate languages (I've heard this is common amongst
European bloggers).

It did require a solid week to build, and while it sounds like that
may be really complex (for a blog), the majority of the time wasn't
spent with anything related to the framework specifically, but rather
wrestling with XSL. I'm of course still getting comfortable with XSL
as a whole, so a number of the things I wanted to accomplish with it
turned out to be more challenging than I'd expected, like using XSL to
scrub potential cross-site scripting (XSS) attacks from the posted
content of an article or comment.

It's not released yet of course... This is Blogs onTap 2.0 although
really it should be a 1.0 release (or maybe pre 1.0), because it's all
brand-new code, but there was already a Blogs onTap sample application
many many moons ago which was later taken off the framework site as
one of my small handfull of failed experiments (the use of text files
instead of a database turned out to be a bad idea).

For the time being I've not included any disk-based caching in the
application, although I may in a future release. I wasn't sure how
people would feel about the use of disk-based caching in this
application, but it could improve performance some, so... for now it's
in the air, although most of the content of the blog is cached in
memory.

I need to write up a quick page of plugin documentation (there's
really not much to say about the plugin outside the app since it won't
be integrated into other applications like the member plugin), and a
page of user-docs for the blog layouts which look like this:


%title



...



%article_title
%article_text

%article_author

%article_date
%article_time



...


The user-docs will give a brief explanation of the extra tags
(, , , etc) and text variables (%title,
%article_title, %article_text, etc).

I'll probably release the beta officially tonight or tomorrow, and
although I do plan to eventually install blogCFC for comparison, I'd
love to get some opinions from others. :)



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214977
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


Re: BlogCFC 3.9 Released

2005-08-15 Thread Adrocknaphobia
Ray,

You've made mention to Steven Erat's help with the RSS. Was this a
template based approach or a cfc approach? Although come to think of
it, I guess I could just DL the blog and find out myself.

-Adam

On 8/12/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> Not a huge update, but RSS 2.0 support has ben added, along with
> podcasting support. More info, and the feature list for 4.0, may be
> found here:
> 
> http://ray.camdenfamily.com/index.cfm/2005/8/12/BlogCFC-39-Released--BlogCFC-40-Specs
> 
> --
> ===
> Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)
> 
> Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)
> 
> Email: [EMAIL PROTECTED]
> Blog : ray.camdenfamily.com
> Yahoo IM : cfjedimaster
> 
> "My ally is the Force, and a powerful ally it is." - Yoda
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214976
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BlogCFC 3.9 Released

2005-08-15 Thread Robertson-Ravo, Neil (RX)
Can't live without my iPod - cycling, running, on the Tube...


**Time to either get back onto BlogCFC or move this to CF-Community..




-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED] 
Sent: 15 August 2005 14:53
To: CF-Talk
Subject: Re: BlogCFC 3.9 Released

On 8/15/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> Ah, I do love my ipod, but I don't travel much. ;)
> 

Try living in a city like New York where I do, not owning a car for 5
years, and having your only regular efficient means of transportation
be the subway (where you can't get any satellite radio reception if
you have the XM2go device). It starts to have some utility. That being
said, I still don't do it that much.

Regards,
Dave.



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214970
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-15 Thread Dave Carabetta
On 8/15/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> Ah, I do love my ipod, but I don't travel much. ;)
> 

Try living in a city like New York where I do, not owning a car for 5
years, and having your only regular efficient means of transportation
be the subway (where you can't get any satellite radio reception if
you have the XM2go device). It starts to have some utility. That being
said, I still don't do it that much.

Regards,
Dave.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214969
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


Re: BlogCFC 3.9 Released

2005-08-15 Thread Raymond Camden
Ah, I do love my ipod, but I don't travel much. ;)

On 8/14/05, Roger B. <[EMAIL PROTECTED]> wrote:
> > Frankly, I
> > just dont get the hype...
> 
> Ray: It's easy to miss if you're not a serious iPod user. My iPod
> mostly sits there until I take a road trip or something... it's not a
> part of my daily life. But if you take your iPod with you everywhere
> you go, then the simple machinery of podcasting seems like magic.
> 


-- 
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214964
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-14 Thread Roger B.
> Frankly, I
> just dont get the hype...

Ray: It's easy to miss if you're not a serious iPod user. My iPod
mostly sits there until I take a road trip or something... it's not a
part of my daily life. But if you take your iPod with you everywhere
you go, then the simple machinery of podcasting seems like magic.

It's an unwired, hands- and eyes-free version of the web for joggers,
travellers, and anyone else whose lives afford them the opportunity to
spend lots of time wearing earbuds. Not my thing, but if had a
different lifestyle, I could see it being the greatest thing since the
last greatest thing.

--
Roger Benningfield
JournURL
http://admin.support.journurl.com/
http://admin.mxblogspace.journurl.com/

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214961
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.9 Released

2005-08-14 Thread Raymond Camden
Heh, I suppose I could get all snooty and talk about new "Paradigms"
and "Internet 2.0", but yes, it is just a MP3 attachment. Frankly, I
just dont get the hype, but it was easy to add once I had the RSS 2.0
support done (which was written by Steve Erat, so it was VERY easy to
add).

On 8/14/05, Rick Root <[EMAIL PROTECTED]> wrote:
> Raymond Camden wrote:
> > Not a huge update, but RSS 2.0 support has ben added, along with
> > podcasting support. More info, and the feature list for 4.0, may be
> > found here:
> 
> Cool.  I'm gonna add podcasting support soon too after I saw Simon's
> blog. =)  Is "podcasting" just another term for mp3 file attachment? ;)
> 
> Rick
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214959
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


Re: BlogCFC 3.9 Released

2005-08-14 Thread Rick Root
Raymond Camden wrote:
> Not a huge update, but RSS 2.0 support has ben added, along with
> podcasting support. More info, and the feature list for 4.0, may be
> found here:

Cool.  I'm gonna add podcasting support soon too after I saw Simon's 
blog. =)  Is "podcasting" just another term for mp3 file attachment? ;)

Rick



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214958
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


Re: BlogCFC 3.9 Released

2005-08-13 Thread Raymond Camden
Thanks James, glad ya like it.

On 8/13/05, James Holmes <[EMAIL PROTECTED]> wrote:
> Yes, thanks again Master Ray for your continuing work on another fully
> featured, free Coldfusion script (which apparently doesn't exist ;-).
> 
> On a related topic, did I ever mention how useful ScopeCache is?
> 
> On 8/13/05, dave <[EMAIL PROTECTED]> wrote:
> > thanks Ray!! :)
> >

-- 
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214856
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


Re: BlogCFC 3.9 Released

2005-08-13 Thread James Holmes
Yes, thanks again Master Ray for your continuing work on another fully
featured, free Coldfusion script (which apparently doesn't exist ;-).

On a related topic, did I ever mention how useful ScopeCache is?

On 8/13/05, dave <[EMAIL PROTECTED]> wrote:
> thanks Ray!! :)
> 
> ~Dave the disruptor~
> "Some people just don't appreciate how difficult it is to dispense wisdom and 
> abuse at the same time."
> 
> 
> From: Raymond Camden <[EMAIL PROTECTED]>
> Sent: Friday, August 12, 2005 2:36 PM
> To: CF-Talk 
> Subject: BlogCFC 3.9 Released
> 
> Not a huge update, but RSS 2.0 support has ben added, along with
> podcasting support. More info, and the feature list for 4.0, may be
> found here:
> 
> http://ray.camdenfamily.com/index.cfm/2005/8/12/BlogCFC-39-Released--BlogCFC-40-Specs

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214851
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


re: BlogCFC 3.9 Released

2005-08-12 Thread dave
thanks Ray!! :)

~Dave the disruptor~
"Some people just don't appreciate how difficult it is to dispense wisdom and 
abuse at the same time." 


From: Raymond Camden <[EMAIL PROTECTED]>
Sent: Friday, August 12, 2005 2:36 PM
To: CF-Talk 
Subject: BlogCFC 3.9 Released 

Not a huge update, but RSS 2.0 support has ben added, along with
podcasting support. More info, and the feature list for 4.0, may be
found here:

http://ray.camdenfamily.com/index.cfm/2005/8/12/BlogCFC-39-Released--BlogCFC-40-Specs

-- 
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email : [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it is." - Yoda



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214835
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


Re: BlogCFC/Galleon updated

2005-07-30 Thread S . Isaac Dealey
Ahh okay... I never actually released the Forums onTap application,
but was calling them "Forum Categories". :) I designed it similarly --
if you only had one forum the forum list page would take you straight
to that forum.

> This is the way I organize content in Galleon:

> Conference: top level collection of forums, example: Star
> Wars Movies
> Forum: Specific area in a conference, example: Empire
> Strikes Back
> Thread: Specific topic: The Super Star Destroyer can
> slice, dice, and
> make bacon!
> Message: one post

> So for many sites, the conference level won't be
> necessary. What is
> cool though, is if you just set one conference, when you
> hit Galleon
> you auto load the forums for that conference. (Or I think
> it's cool
> anyway.)



s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213327
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC/Galleon updated

2005-07-30 Thread Raymond Camden
This is the way I organize content in Galleon:

Conference: top level collection of forums, example: Star Wars Movies
Forum: Specific area in a conference, example: Empire Strikes Back
Thread: Specific topic: The Super Star Destroyer can slice, dice, and
make bacon!
Message: one post

So for many sites, the conference level won't be necessary. What is
cool though, is if you just set one conference, when you hit Galleon
you auto load the forums for that conference. (Or I think it's cool
anyway.)


On 7/30/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> > Galleon has been updated. The only change here
> > is a new subscription model. It allows you to
> > subscribe now to a thread, forum, or conference.
> 
> Conference is what? A private thread/forum?
> 
> 
> s. isaac dealey 954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213324
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


Re: BlogCFC/Galleon updated

2005-07-30 Thread S . Isaac Dealey
> Galleon has been updated. The only change here
> is a new subscription model. It allows you to
> subscribe now to a thread, forum, or conference.

Conference is what? A private thread/forum?


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213321
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC/Galleon updated

2005-07-30 Thread James Holmes
Hehe, caught out by too much caching ;-) Scopecache is brilliant, by the way.

On 7/30/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> BlogCFC has been updated. 2 important bug fixes are in it - plus
> support for pinging Technorati (thanks to Steven Erat).
> 
> Galleon has been updated. The only change here is a new subscription
> model. It allows you to subscribe now to a thread, forum, or
> conference.
> 
> Any suggestions, problems, etc, feel free to email me or post to the
> support forums (ray.camdenfamily.com/forums).

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213316
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.8 Released

2005-07-22 Thread Paul Hastings
S. Isaac Dealey wrote:
> L10N or G11N ...

actually what we did was to make more bits more i18n. though it would be 
nice to know how many different l10n versions are out there to see how 
far ray's blog has been g11n ;-) and in case anyone else has forgotten, 
some of the more important i18n gang signs:

i18n = internationalization (what you do to s/w before you l10n)
l10n = localization (what you to do s/w for a given locale)
g11n = globalization (what you get after doing l10n across a bunch of 
locales)

and yes it's more or less common practice to grammatically abuse these 
acronyms (or what some folks are calling "alphanumerish"):

i18n abused as internationalized
l10n abused as localized
g11n abused as globalized

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212671
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


Re: BlogCFC 3.8 Released

2005-07-22 Thread Raymond Camden
Yep - Paul reminded me of this. THIS is why it was so important I had
help. :) Sorry for the mess up there folks.

On 7/22/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> > For those of you using BlogCFC, or looking for blogware,
> > the 3.8
> > version has been released. The majority of this update is
> > for better
> > URL and indexing by search engines, although some bug
> > fixes and L11N
> > changes are in as well. More details may be found here:
> 
> > http://ray.camdenfamily.com/index.cfm/2005/7/22/Blog-38-Re
> > leased
> 
> L10N or G11N ...
> 
> 
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212595
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: BlogCFC 3.8 Released

2005-07-22 Thread S . Isaac Dealey
> For those of you using BlogCFC, or looking for blogware,
> the 3.8
> version has been released. The majority of this update is
> for better
> URL and indexing by search engines, although some bug
> fixes and L11N
> changes are in as well. More details may be found here:

> http://ray.camdenfamily.com/index.cfm/2005/7/22/Blog-38-Re
> leased

L10N or G11N ...


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212593
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