RE: [Blogcfc-develop] well, that was easy
Brought to you by:
cfjedimaster
From: Raymond C. <jed...@mi...> - 2003-11-13 14:42:43
|
One thing I was considering was support for easy urls, so, if you write a nice blog post on locking, you could share the link as <your host>/<your blog root>/locking Of course, that won't help you know. If you really want to use the new blog, I'd just modify the migration script so that it creates a translation table, ie oldid newid 1 88888888 2 329344399 etc Then in your application.cfm, any request for url.id where id is NOT a UUID will do a quick call to the translation table. Not the speediest thing in the world, but it would be one quick db query, and you could cache the result. You could also output a simple msg on top (Please update your bookmarks to....) ======================================================================== === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email : jed...@mi... Blog : www.camdenfamily.com/morpheus/blog Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda > -----Original Message----- > From: blo...@li... > [mailto:blo...@li...] On > Behalf Of Ben Forta > Sent: Thursday, November 13, 2003 8:35 AM > To: blo...@li... > Subject: RE: [Blogcfc-develop] well, that was easy > > > Works in the old version I am using :-) > > Incidentally, the reason I am not using any newer versions is > that the change from numeric ID to UUID would break way too > many links for me. Has anyone else addressed this, or have > you decided to just let it be? > > > > > -----Original Message----- > From: blo...@li... > [mailto:blo...@li...] On > Behalf Of Raymond Camden > Sent: Thursday, November 13, 2003 9:28 AM > To: blo...@li... > Subject: [Blogcfc-develop] well, that was easy > > > In RSS.cfm, modify lines 27-31 to be: > > <cfelseif url.mode2 is "cat" and isDefined("url.catid")> > <cfset params.byCat = url.catid> > <cfelseif url.mode2 is "entry"> > <cfset params.byEntry = url.entry> > </cfif> > > I'm going to update the zip online. > > ============================================================== > ========== > === > Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc > (www.mindseye.com) > Member of Team Macromedia > (http://www.macromedia.com/go/teammacromedia) > > Email : > jed...@mi... > Blog : www.camdenfamily.com/morpheus/blog > Yahoo IM : morpheus > > "My ally is the Force, and a powerful ally it is." - Yoda > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, WebDAV, > and more! http://www.apachecon.com/ > _______________________________________________ > Blogcfc-develop mailing list Blo...@li... > https://lists.sourceforge.net/lists/listinfo/blogcfc-develop > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, WebDAV, > and more! http://www.apachecon.com/ > _______________________________________________ > Blogcfc-develop mailing list Blo...@li... > https://lists.sourceforge.net/lists/listinfo/blogcfc-develop > > |