Re: CF-Based Content Management Systems

2010-03-19 Thread Larry Lyons
/larryclyons -- The real problem is not whether machines think but whether men do. - B. F. Skinner - >Hands down... >http://www.getmura.com/ > >Good afternoon everyone, > >I just got off of the phone with a client that is considering using a >content management system (C

Re: CF-Based Content Management Systems

2010-03-18 Thread denstar
On Thu, Mar 18, 2010 at 6:46 PM, Dave Watts wrote: > >> I've never used farcry but I know it is the best CFCMS out there. > > How can you possibly know that? ESP? -- To dwell is to garden. Martin Heidegger ~| Want to reach the

Re: CF-Based Content Management Systems

2010-03-18 Thread Dave Watts
> I've never used farcry but I know it is the best CFCMS out there. How can you possibly know that? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest calibe

Re: CF-Based Content Management Systems

2010-03-18 Thread Dave Watts
>    I just got off of the phone with a client that is considering using a > content management system (CMS) to manage her Web site. The developer she > hired to redesign her pages suggested using an Adobe product to insure that > the CMS is robust and to be sure all features are a

Re: CF-Based Content Management Systems

2010-03-18 Thread Tony Bentley
What? You guys have never heard of iMIS before. Talk about overhead. They moved it onto a .NET platform recently and it was really too much overhead. I've never used farcry but I know it is the best CFCMS out there. ~| Want to

RE: CF-Based Content Management Systems

2010-03-18 Thread Sebastiaan GMC van Dijk
I guess FarCry is the biggest, meanest CF-CMS-machine out there, but also the most overhead. Mura can do a lot for you, but might also be overkill. Why not see of BlogCFC or MangoBlog can do the thing your client wishes? Anything Adobe might also mean "as long as it's a CFML-product", so any

Re: CF-Based Content Management Systems

2010-03-18 Thread Roger Austin
Peter Donahue wrote: > > Good afternoon everyone, > > I just got off of the phone with a client that is considering using a > content management system (CMS) to manage her Web site. The developer she > hired to redesign her pages suggested using an Adobe prod

RE: CF-Based Content Management Systems

2010-03-18 Thread Che Vilnonis
You can't go wrong with Farcry as well. -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: Thursday, March 18, 2010 4:42 PM To: cf-talk Subject: Re: CF-Based Content Management Systems Definitely go with Farcry. http://www.farcrycms.org. There is a blo

RE: CF-Based Content Management Systems

2010-03-18 Thread Che Vilnonis
Hands down... http://www.getmura.com/ -Original Message- From: Peter Donahue [mailto:pdonah...@sbcglobal.net] Sent: Thursday, March 18, 2010 4:30 PM To: cf-talk Subject: CF-Based Content Management Systems Good afternoon everyone, I just got off of the phone with a client that

Re: CF-Based Content Management Systems

2010-03-18 Thread Jake Churchill
Definitely go with Farcry. http://www.farcrycms.org. There is a blogging plugin for it as well. -Jake On Thu, Mar 18, 2010 at 3:29 PM, Peter Donahue wrote: > > Good afternoon everyone, > >I just got off of the phone with a client that is considering using a > content ma

CF-Based Content Management Systems

2010-03-18 Thread Peter Donahue
Good afternoon everyone, I just got off of the phone with a client that is considering using a content management system (CMS) to manage her Web site. The developer she hired to redesign her pages suggested using an Adobe product to insure that the CMS is robust and to be sure all

Re: Advertisment Content Management - problem with random image

2009-01-06 Thread Sin Tec
Ok I think I fixed it. I forgot to ORDER BY newID() Thank you. > New Problem. A have advertisements but want to assign them to > different pages. I guess im just new to it all and lack the thinking. > > > Im trying to set it all up to where you can put it in three locations > if you want.

Re: Advertisment Content Management - problem with random image

2009-01-06 Thread Sin Tec
New Problem. A have advertisements but want to assign them to different pages. I guess im just new to it all and lack the thinking. Im trying to set it all up to where you can put it in three locations if you want. Im using ORs but the ORs stop the query once it finds something. So if I have

Re: Advertisment Content Management - problem with random image

2008-12-09 Thread Mike Kear
Ah yes that will be because there is another variable somewhere in the request with the name ADID and it was using that instead of the one coming from your query. Thats why you should always scope your variables, unless there is a specific reason not to. If you scope them, the function isnt

Re: Advertisment Content Management - problem with random image

2008-12-09 Thread Sin Tec
It was pulling in the wrong ADID when showing an image... I had to put #GetAds.ADID# in the Where instead of just #ADID#. UPDATE dbo.banner_left SET views = #add# WHERE ADID = #GetAds.ADID# It seems to be working now. Thank you so much for all your help. ~

Re: Advertisment Content Management - problem with random image

2008-12-08 Thread Mike Kear
I would have thought the counting of views wouldnt have anything to do with how the banner is selected. They are two different db transactions. Are you sure that .val(GetADs.views) is giving you a numeric value? Are you sure that incrementvalue(val(GetADs.views)) is giving you a value 1 greater

Re: Advertisment Content Management - problem with random image

2008-12-08 Thread Sin Tec
Tried Isaac's and it doesnt count any of the views. SELECT * from dbo.banner_left SELECT * FROM getCachedAds WHERE ADID = #ADID# ORDER BY ADID UPDATE dbo.banner_left SET views = #add# WHERE ADID = #ADID# ~~

Re: Advertisment Content Management - problem with random image

2008-12-08 Thread Sin Tec
I tried Mikes code: SELECT top 1 * FROM dbo.banner_left ORDER BY newID() works great for the random but it screws up the views. UPDATE dbo.banner_left SET views = #add# WHERE ADID = #ADID# It either doesnt count it or it will pull the views from another record puts it in that

Re: Advertisment Content Management - problem with random image

2008-12-04 Thread s. isaac dealey
> Yea you're right Ike. Story of my life - I relax for once and make > a smart-alec comment and it whips around and bites me. Yer lucky you added the "my dad can beat up your dad" comment at the end, otherwise I might not have picked up on the fact that you were jokin' around. :) > But in my

Re: Advertisment Content Management - problem with random image

2008-12-04 Thread Mike Kear
Yea you're right Ike. Story of my life - I relax for once and make a smart-alec comment and it whips around and bites me. But in my own defence, mine takes less typing! LOL . Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebwork

Re: Advertisment Content Management - problem with random image

2008-12-03 Thread s. isaac dealey
Mike Kear said: > Ike, your query will still attempt to select records that have been > deleted The original problem was that the keys werent sequential > if some records have been deleted. That's going to happen as ads are > removed. Using the technique I use, it selects a random record

Re: Advertisment Content Management - problem with random image

2008-12-03 Thread Mike Kear
Ike, your query will still attempt to select records that have been deleted The original problem was that the keys werent sequential if some records have been deleted. That's going to happen as ads are removed. Using the technique I use, it selects a random record from the records that ex

Re: Advertisment Content Management - problem with random image

2008-12-03 Thread Mike Kear
slight correction - i had a redundancy - you dont need "maxrows="1" as well as SELECT top 1 so the query would be better written as SELECT top 1 * FROM dbo.banner_left WHERE lastdisplay <'whatever' ORDER BY newID() That way you're suing SQLServer's inbuilt randomiser, doing the whole

Re: Advertisment Content Management - problem with random image

2008-12-03 Thread s. isaac dealey
Here's my suggested modification SELECT * dbo.banner_left SELECT * FROM getCachedAds WHERE ADID = #ADID# ORDER BY ADID Not sure why there even was an order by in that query originally, since it will only return one record anyway. Probably won't affect performance, but you m

Re: Advertisment Content Management - problem with random image

2008-12-03 Thread s. isaac dealey
> > I am using a varent from sparty2809 on http://tutorial323.easycfm.com/ > > It works great but was created for ACCESS and uses an autonumber > > datatype. Its great when you just keep adding advertisments but when > > you delete one there is now a gap in the +one ADID (int - identity > > spe

Re: Advertisment Content Management - problem with random image

2008-12-03 Thread Mike Kear
Why not select out of the database using a random selection of the indexes that are there? Then you never have to worry about gaps. They dont matter. SELECT top 1 * FROM dbo.banner_left ORDER BY newID() That will select a random record from the table banner_left Cheers Mike Kear Windsor, N

Re: Advertisment Content Management - problem with random image

2008-12-03 Thread Will Tomlinson
> I am using a varent from sparty2809 on http://tutorial323.easycfm.com/ > It works great but was created for ACCESS and uses an autonumber > datatype. Its great when you just keep adding advertisments but when > you delete one there is now a gap in the +one ADID (int - identity > specification

Advertisment Content Management - problem with random image

2008-12-03 Thread Sin Tec
I am using a varent from sparty2809 on http://tutorial323.easycfm.com/ It works great but was created for ACCESS and uses an autonumber datatype. Its great when you just keep adding advertisments but when you delete one there is now a gap in the +one ADID (int - identity specification). When th

Re: ColdFusion Content Management Systems

2007-08-01 Thread Arnold Young
Hi Ron, I responded last night and this afternoon but it did not save - so I will try one more time. We purchased ShadoCMS/ZoomFlex mostly to do Flex development and use the generated code from ZoomFlex to drive the server-side functions CRUD etc. The generated code all follow the MVC framework

ColdFusion Content Management Systems

2007-07-31 Thread Ron G
I am looking for a ColdFusion based CMS for a fairly large corporation. After shopping around I have come across a product called ShadoCMS. I have not heard much mention of them within the community, and I was hoping someone might have some experience with the product. It looks like a pretty nic

Re: Multi-language Content Management

2007-04-05 Thread Grant Straker
Hi Mike, Our ShadoCMS (www.straker.co.nz) has comprehensive Multi-language support which enables client to run sites (very easily)in many sites and has integration with third party (human) translation management systems. We use a parallel multi-lingual architecture which makes it significantly

Re: Multi-language Content Management

2007-04-05 Thread Grant Straker
> We are developing our site to include translations into Hebrew, > Japanese, Russian, German, and later into French, and Spanish. > > Our pages are all static in so far as once written the content will > not change except maybe to correct some typos or prices. > > The pages have many pop-u

Re: Multi-language Content Management

2007-03-28 Thread Michael Falter
We are developing our site to include translations into Hebrew, Japanese, Russian, German, and later into French, and Spanish. Our pages are all static in so far as once written the content will not change except maybe to correct some typos or prices. The pages have many pop-ups. Please take

RE: Content Management Open Source

2007-01-15 Thread David Brown
I found it http://www.gerorama.com/gerobase/ It was in CF talk list on 1/6/2007. Boy I am getting old. I can't remember anything very long. -Original Message- From: David Brown [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 16, 2007 1:30 AM To: CF-Talk Subject: Content Manag

Content Management Open Source

2007-01-15 Thread David Brown
Hello, I seem to remember reading about a new CMS that was open source for Cold Fusion, but for the life me I can't remember what or where I read about it. I think I remember that it supported CF 7 features or some of them. It was not fare cry or Speck CMS Any help would be great. David

Re: Simple Content Management

2005-01-10 Thread Adam Churvis
2000 - Original Message - From: "Ben Rogers" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, January 07, 2005 11:47 AM Subject: SOT: Simple Content Management > We need a tool to collect and organize information in order to build > documentation for

RE: Simple Content Management

2005-01-10 Thread RADEMAKERS Tanguy
www.opensourcecms.com maintains a bunch of default installs of various solutions you can play with - mostly php/mysql. /t >-Original Message- >From: Ben Rogers [mailto:[EMAIL PROTECTED] >Sent: Friday, January 07, 2005 5:47 PM >To: CF-Talk >Subject: SOT: Simple Content M

Re: SOT: Simple Content Management

2005-01-07 Thread Matt Robertson
This one is free and has an installer. You can be up in a couple of minutes: http://mysecretbase.com/CMLite_Home.cfm version 4 of the for-pay version is hitting RC3 today; the last before release. Has Team Review (approval workflow) among many other items. -- --mattRobertson-- President, Jani

SOT: Simple Content Management

2005-01-07 Thread Ben Rogers
We need a tool to collect and organize information in order to build documentation for a project in a collaborative fashion. We've actually used blogs in the past to document the installation of software and such. A blog won't work in this case, however, as we need to be able organize information

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
> Don't you hate site that return you to the root but in the other language? frankly i've found hardly anybody works thru a website that way. normal folks come in, set their locale/language (or better yet their locale/language is silently delivered to them) & navigate thru the site. a good app rem

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
> Any ideas on what relationship the  &ArticleAction=language parameter is > doing to perform the translation ? same table, same ID, different language. probably just sets the new language as the opposite of the current language (as least that's how we did thai\english sites). it also doesn't appe

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
I think it depends on your business rules (rather than technology) The point I was trying to get across is that the user should not be limited to a repository of just that language as there might NOT be translations of that particular content (brand guidelines, Templates?) and the content should

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
> It should never happen, that a spanish website gets english content by > itself because the spanish version is missing. So if the spanish version > of a pdf is missing, throw an error, not get the english version :-) You > might give the client bad information. here here. [Todays Threads] [Th

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Micha Schopman
Content libraries in my system are not content items. It is a structurized way of sorting content, under categories and by meta labels. In my case, each language has it's own Content Library because the category labels could be multilingual as well. It is a bit hard to explain, but see it as a wind

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
> 1) Content library, this should be a  content item and assigned either > to multiple languages or a single language (e.g. english and spanish > versions both link to the english download as there is only one... > which we can then separate, or it defaults to english PDF if there is > no spanish v

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
gt; is > > doing to perform the translation ? > > > > As each article whether it is English or Welsh has the same articleid > > ??? > > > > Any ideas ? > > > > > > > > From: Mark Drew [mailto:[EMAIL PROTECT

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
- Original Message - From: "Ian Vaughan" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, September 20, 2004 3:46 PM Subject: RE: Content Management System (CMS) Wishlist (making a cms multlingual) > If for instance you have the follo

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Ian Vaughan
for Welsh From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 20 September 2004 12:02 To: CF-Talk Subject: Re: Content Management System (CMS) Wishlist (making a cms multlingual) Sounds to me that a single article can have translations (a standard way of dealing with content) I

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread CFDEV
PROTECTED] Sent: September 20, 2004 06:49 To: CF-Talk Subject: RE: Content Management System (CMS) Wishlist (making a cms multlingual) If you look at the following example website http://www.allwalesunit.gov.uk/index.cfm?articleid=5 and click on the Cymraeg link at the top of the page, which lo

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
leAction=language parameter is > doing to perform the translation ? > > As each article whether it is English or Welsh has the same articleid > ??? > > Any ideas ? > > > > From: Mark Drew [mailto:[EMAIL PROTECTED] > Sent: 20 Sept

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Ian Vaughan
ny ideas ? From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 20 September 2004 10:39 To: CF-Talk Subject: Re: Content Management System (CMS) Wishlist (making a cms multlingual) Depends on your requirements (or the clients!) 1) Content library, this should be a  content item and

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
Depends on your requirements (or the clients!) 1) Content library, this should be a  content item and assigned either to multiple languages or a single language (e.g. english and spanish versions both link to the english download as there is only one... which we can then separate, or it defaults to

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Micha Schopman
And does someone separate content library, file folders, accounts, workflow, approval queues, template libraries, etc. per language, or do all languages in the system use the same libraries? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377,

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
es ? > > > > From: Paul Hastings [mailto:[EMAIL PROTECTED] > Sent: 17 September 2004 16:16 > To: CF-Talk > Subject: Re: Content Management System (CMS) Wishlist > > > for multilingual content = not just creating a separate branche for >

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Ian Vaughan
above table ? And how would the relationship between the PRID's for example work for different languages ? From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: 17 September 2004 16:16 To: CF-Talk Subject: Re: Content Management System (CMS) Wishlist

RE: Content Management System (CMS) Wishlist

2004-09-19 Thread Micha Schopman
The issues with object based content management are for example, -  do you create a totally separate content repository based on that perticulair language? Or do all languages select content out of the same bin. So all languages get mixed. -  do all languages have the same

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Johan Steenkamp
What features are useful and which a waste of time? Depends on your target market for the solution. The requirements for corporate/enterprise are different to SME and membership based organizations. Johan www.assetnow.com [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Micha Schopman
I guess they still use seperate branches, according to some of the screenshots shown on the website. One of the screenshots show a treeview, and on top a dropdown box with "english" in it. My guess is changing this box changes the branch. >Well that's the million dollar question, when I asked and

RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Kola Oyedeji
lto:[EMAIL PROTECTED] Sent: 17 September 2004 17:30 To: CF-Talk Subject: Re: Content Management System (CMS) Wishlist How does one manage multilingual content in ShadoMX, I am interested in this specific feature. Do you have screens showing how it works?   _ [Todays Threads] [Th

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Micha Schopman
How does one manage multilingual content in ShadoMX, I am interested in this specific feature. Do you have screens showing how it works? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Tim Blair
> Ideally I'd want to work with a > language aware system such that I can change languages in > the cms to see the alternative version of the content in a > different language. ShadoMX has multilanguage support at object level, so you only have one site tree etc and can define multiple translati

RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Kola Oyedeji
I can change languages in the cms to see the alternative version of the content in a different language. Kola -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: 17 September 2004 16:16 To: CF-Talk Subject: Re: Content Management System (CMS) Wishlist > for mult

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Mark Drew
I have seen it in spectra just using Structs but the issue here is that you should get away from one record = one bit of content.. if you are doing versioning you will have an object that is a content and then another table with the versions and languages .. MD On Fri, 17 Sep 2004 22:15:33 +0700

RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Micha Schopman
I would suggest you set up a simple frame for the system first, .. if you want to implement all the mentioned features you may kiss you summer vacation goodbye. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoor

RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Micha Schopman
Including workflow editors, dynamic authoring rules on department and role and user level, and versioning of objects? .. I don't know how long it took you but It took me 3 months work in the evening hours. It is very difficult. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 382

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Paul Hastings
> for multilingual content = not just creating a separate branche for > other languages. yeah that was the first thing folks suggested when we started discussing this for farcry. i'm not for that technique (1 new language = 1 new site). we'll see how this plays out w/farcry. > Creating a system b

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Mark Drew
Tuesday's fine :) Also the other things that are requested are: 1) selective workflow (not everyone needs to follow it) 2) Dated publishing (make live on .. until) 3) Preview of content... in site content.. 4) Site Versioning  and Content Versioning 5) Content check out and check in 6) Managemen

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Mike Kear
My case for creating one is this I want to understand intimately the workings of one.  Every time in the past i've tried to get into the inner workings of an application, I've ended up saying "to hell with it, I can make one myself".  It's not a lower cost way ot doing it, definitely,  but I

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Douglas Knudsen
ading you know :) Doug - Original Message - From: Mike Kear <[EMAIL PROTECTED]> Date: Sat, 18 Sep 2004 00:56:27 +1000 Subject: Re: Content Management System (CMS) Wishlist To: CF-Talk <[EMAIL PROTECTED]> Piece of cake Mark!  Might not get it done tonight.  Will Monday do? Than

RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Micha Schopman
Multilingual, as in frontend support is still quite unique. Only bigger vendors in the medium, or enterprise level markets have builtin support for multilingual content = not just creating a separate branche for other languages. Creating a system being able to handle multilingual content, on obj

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Big Kev
You Could always start with the Old Spectra OPen Source :-) Or FarCry As starting points as these have the engines to build with Cheers BK - Original Message - From: Kola Oyedeji <[EMAIL PROTECTED]> Date: Fri, 17 Sep 2004 15:49:11 +0100 Subject: RE: Content Management Syste

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Paul Hastings
> which is still lacking in many of the cms systems I have come across is > *decent* support for multilingual content. I believe the latest version > of farcry may support this but I haven't played with it yet. define "decent". as a first step last year i guess, we made it unicode compliant. the

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Mike Kear
Piece of cake Mark!  Might not get it done tonight.  Will Monday do? Thanks a lot for your comments.  Given me food for thought. Cheers Mike Kear Cheers Mike Kear Windsor, NSW, Australia AFP Webworks http://afpwebworks.com .com,.net,.org domains from AUD$20/Year [Todays Threads] [This Messag

RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Kola Oyedeji
ssage- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: 17 September 2004 15:23 To: CF-Talk Subject: Content Management System (CMS) Wishlist I'm currently doing a spec for a new CMS I'm building for my own use. (I'll think about making it available commercially later). I'

Re: Content Management System (CMS) Wishlist

2004-09-17 Thread Mark Drew
Ohh many things i could add here.. but want to finish before nightfall! 1) Have you seen Aura (used by FarCry?) That is CSS and what have you. 2) Output content in XML and then apply a stylesheet to it? 3) Assetmanagement for images and documents and flash etc 4) Search engine 5) EASY type creatio

Content Management System (CMS) Wishlist

2004-09-17 Thread Mike Kear
I'm currently doing a spec for a new CMS I'm building for my own use. (I'll think about making it available commercially later). I'm making it for CFMX, and all the presentation stuff is going to be in CSS.    The CMS will output valid XHTML and because no layout code wiill be in the output from

Re: Homepage content management

2004-08-24 Thread Geoff Bowers
- Original Message - From: Hugo Ahlenius <[EMAIL PROTECTED]> Date: Mon, 23 Aug 2004 08:54:15 +0200 > Does anyone know if FarCry runs on BD? FarCry CMS does *not* run on BD at the moment.  However, there is an enthusiastic group  who are keen to make that a reality.  I think they're curr

Re: Homepage content management

2004-08-22 Thread Hugo Ahlenius
TED]> Sent: Monday, August 23, 2004 02:56 Subject: Re: Homepage content management | - Original Message - || From: Peter Tilbrook <[EMAIL PROTECTED]> || FarCry? || http://farcry.daemon.com.au/ || It's a bitch to install though and out of the question if hosted on || an ISP witho

Re: Homepage content management

2004-08-22 Thread Geoff Bowers
- Original Message - > From: Peter Tilbrook <[EMAIL PROTECTED]> > FarCry? > http://farcry.daemon.com.au/ > It's a bitch to install though and out of the question if hosted on an ISP without access to  > mappings. It seems good but gave up on it due to installation complexity on a standalone

Re: Homepage content management

2004-08-12 Thread Jim Louis
gt;Sent: Wednesday, August 11, 2004 1:57 PM >To: CF-Talk >Subject: Homepage content management > > >I need to find a solution already written in CF or get some ideas from >you all on an easy way to allow non-programmers to update the company's >web site homepage? > &

Re: Homepage content management

2004-08-11 Thread Peter Tilbrook
FarCry? http://farcry.daemon.com.au/ It's a bitch to install though and out of the question if hosted on an ISP without access to mappings. It seems good but gave up on it due to installation complexity on a standalone box even. [Todays Threads] [This Message] [Subscription] [Fast Unsubscr

RE: Homepage content management

2004-08-11 Thread Douglas Knudsen
o: CF-Talk Subject: Homepage content management I need to find a solution already written in CF or get some ideas from you all on an easy way to allow non-programmers to update the company's web site homepage? Thank you, Donna French   _ [Todays Threads] [This Message] [Subscriptio

Re: Homepage content management

2004-08-11 Thread Damien McKenna
On Aug 11, 2004, at 1:57 PM, Donna French wrote: > I need to find a solution already written in CF or get some ideas from > you all on an easy way to allow non-programmers to update the company's > web site homepage? Macromedia Contribute 3? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] T

Homepage content management

2004-08-11 Thread Donna French
I need to find a solution already written in CF or get some ideas from you all on an easy way to allow non-programmers to update the company's web site homepage? Thank you, Donna French [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Su

Re: Farcry Content Management 6.1 Standard

2004-04-04 Thread Geoff Bowers
David Brown wrote: > We are looking to upgrade to CF MX (6.1) from CF 5.0 professional. > We are also considering using FarCry CMS.  Does anyone know if Farcry > will work with CF MX 6.1 standard or do we need enterprise version? The team behind FarCry (http://farcry.daemon.com.au/) have worked ve

RE: Farcry Content Management 6.1 Standard

2004-04-02 Thread Robertson-Ravo, Neil (RX)
It runs on both.    _   From: David Brown [mailto:[EMAIL PROTECTED] Sent: 02 April 2004 16:39 To: CF-Talk Subject: Farcry Content Management 6.1 Standard We are looking to upgrade to CF MX (6.1) from CF 5.0 professional.  We are also considering using FarCry CMS.  Does anyone know if

Farcry Content Management 6.1 Standard

2004-04-02 Thread David Brown
We are looking to upgrade to CF MX (6.1) from CF 5.0 professional.  We are also considering using FarCry CMS.  Does anyone know if Farcry will work with CF MX 6.1 standard or do we need enterprise version? David   - Original Message -   From: Robertson-Ravo, Neil (RX)   To: CF-Talk   Se

Re: content management system db schema

2004-02-10 Thread Geoff Bowers
Daniel Farmer wrote: >  Does anyone have a database schema that they could share with me for >  a content management system for a small to medium size website? > >  I just need direction on how to go about setting up the tables etc... >  for links, content...etc It'll be a

RE: content management system db schema

2004-02-09 Thread Christian Martin
I seem to recall a content management database schema at http://www.databaseanswers.com .   Not sure how useful it is, but should be a start.  I think it's under "database models". Christian -Original Message- From: Daniel Farmer [mailto:[EMAIL PROTECTED] Sent: 09 Febr

RE: content management system db schema

2004-02-09 Thread Barney Boisvert
Daniel Farmer [mailto:[EMAIL PROTECTED] > Sent: Monday, February 09, 2004 2:27 PM > To: CF-Talk > Subject: content management system db schema > > Does anyone have a database schema that they could share with > me for a content management system for a small to medium size w

content management system db schema

2004-02-09 Thread Daniel Farmer
Does anyone have a database schema that they could share with me for a content management system for a small to medium size website? I just need direction on how to go about setting up the tables etc... for links, content...etc ~~ Daniel Farmer Coldfusion Developer

RE: OT Macromedia.com - What Content Management System does it us e ?

2003-10-08 Thread Philipp Cielen
I think they used the atomz search engine but have replaced it with google recently. Philipp Cielen -- cielen.com From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 07, 2003 5:21 PM To: CF-Talk I believe there's some atomz in there too: http://www.atomz.com/ > It uses a fe

RE: OT Macromedia.com - What Content Management System does it us e ?

2003-10-07 Thread S . Isaac Dealey
t; Subject: OT Macromedia.com - What Content Management > System does it use ? > Hi > Does any body know what cms Macromedia are using to manage > their site, from > the url's it is not Coldfusion based. > Any body have any ideas Interwoven, Stellent, ??? > Ian >   __

RE: OT Macromedia.com - What Content Management System does it us e ?

2003-10-07 Thread Robertson-Ravo, Neil (RX)
It uses a few.Spectra, RIA apps, ColdFusion custom built, Broadvision... -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: 07 October 2003 14:49 To: CF-Talk Subject: OT Macromedia.com - What Content Management System does it use ? Hi Does any body know what cms

OT Macromedia.com - What Content Management System does it use ?

2003-10-07 Thread Ian Vaughan
Hi Does any body know what cms Macromedia are using to manage their site, from the url's it is not Coldfusion based. Any body have any ideas Interwoven, Stellent, ??? Ian [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Content Management Systems - a short list...

2003-08-15 Thread Calvin Ward
I would install CFMX 6.1 from the get go on a new server - Calvin - Original Message - From: "Brian Meloche" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 14, 2003 3:29 PM Subject: Content Management Systems - a short

Content Management Systems - a short list...

2003-08-14 Thread Geoff Bowers
Brian, >I would be interested in hearing opinions on some good CF-based CMSs. >I need to develop a short list so that I can evaluate a few systems. I couldn't help weighing in with some real information about FarCry. It's open source so this is strictly not a sales pitch -- just some healthy

Content Management Systems - a short list...

2003-08-14 Thread Brian Meloche
Geoff: I am very happy you replied!!! I have been very interested in FarCry, and have checked out the website several times, and even played around in the demo. I joined the FarCry-dev list as well, and saw your e-mail last night about this post. I wasn't sure if FarCry's open source version

RE: Content Management Systems - a short list...

2003-08-01 Thread Jim Curran
director nylon technology [EMAIL PROTECTED] 212-691-1134 -Original Message- From: Brian Meloche [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 3:57 AM To: CF-Talk Subject: Content Management Systems - a short list... This looks interesting - but is there any non-shared hosting

Content Management Systems - a short list...

2003-08-01 Thread Brian Meloche
Isaac: I have seen from your postings that you have Tapestry CMS, but I haven't seen all that much about it. You can contact me on or off list. I would be curious to see a demo, if you have one. >Wish I could say that I'm not a sales person... :) Well that's not >true -- I say that all the t

  1   2   3   4   5   >