Re: Converting a Magazine to a Web Site with WebCat

This WebDNA talk-list message is from

1999


It keeps the original formatting.
numero = 23664
interpreted = N
texte = At 2:13 Uhr -0800 13.02.99, Mike_Davis wrote:>I'm just about to start designing a site for a magazine that is released >every two weeks. I know there must be a few of you out there that have done >this already...I have finished such a site two weeks ago. The site contains two magazines, one is weekly and one comes every three month. It is not a clone from the printed magazine but 10-15 selected articles are online, all with the same layout. For each article I have headline, picture, legend, intro, an unlimited number of subheadline/textblock-pairs and the possibility to change the textflow around the picture. There is no automatic conversion from print data to web, because our customer still uses Ventura Publisher and cannot export structured data for further processing (at least he told me so). The site is completely WebCat-driven, everything like adding new issues, archiving, adding articles and so on is done via web interface. Searchable archive is provided. >so I thought I'd ask the list for any advice from the trenches >before I start.Well, I won't tell everything in detail, but I can share some experience... >I'm unsure of whether I should keep all the content in the >database or if I should use [included] text files. This raises the issue of >whether the site could be indexed by the search robots vs whether I can >perform WebCat searches on the content. The client also wants to keep a >searchable archive of back issues as well.If you write files to disk you'll have to connect your own search engine to the site and the search results might not look like you or your client expect. And you have to deliver with [convertchars][include....][/convertchars] anyway, because once you have written the file the text is not easy to change for a person not familiar with HTML because you get all tags in your editing interface. I decided to have everything in the database (one database per magazine). Your decision depends on the amount of text and the server. Searching: our site has many frames, so we have a problem with search engines anyway. We plan to write each page into a directory, where spiders can find them (leaded by robots.txt). If the user calls such a page, there is a link to switch to the framed original site, maybe we switch automatically. This is not implemented yet. >At some point, with two per >month, the database size would become too large.Sure? Than you can write outdated issues into different databases and keep the search features of webcat. This depends on the type of search you provide for your archive - if you search all issues at any search request, splitting databases does not make much sense, if you search in single issues it does. >...Also, what method(s) of version >control have been successful with your clients. What I mean by that is >administrating the switching of new issues to the live site while retiring >the last issue.Since I have all issues of one magazine in one magazine, this is no problem. I have a status field with three possible states: old, online and new. The client can add one ore more new issues whenever he want and edit them online. If he wants to go online with a new issue, he simmply clicks a button, the online records are set to old and the new one is set to online. >Any other issues regarding this kind of site that could be >helpful would also be appreciated.The strucure of the database might be more complex than you expect at the beginning. You have to track issue numbers, article numbers to show the articles in the right order, maybe textblock numbers if you want editable subheads for paragraphs. If you have more magazines in one site (like we), think quite often about the hierarchy: Unlimited number of magazines Unlimited number of articles for each magazine Unlimited number of textblocks in each article This requires a solid numbering scheme, you should be able to renumber records if someone deletes an article. And you have to upload, display and delete related pictures automatically. The site I am talking about is already online, you can see it at http://www.aerztewoche.at It is german only, but you'll find your way. The two magazines are under Medien and called Aerztewoche and Praxis & Wirtschaft. Peter++++++++++++++++++++++++++++++++++++++++++++++++ Peter Ostry - Vienna/Austria - www.ostry.com Fon ++43-1-877 74 54 Fax ++43-1-877 74 54-21 ++++++++++++++++++++++++++++++++++++++++++++++++ Associated Messages, from the most recent to the oldest:

    
  1. Re: Converting a Magazine to a Web Site with WebCat (Peter Ostry 1999)
  2. Re: Converting a Magazine to a Web Site with WebCat (webcat 1999)
  3. Converting a Magazine to a Web Site with WebCat (Mike_Davis 1999)
At 2:13 Uhr -0800 13.02.99, Mike_Davis wrote:>I'm just about to start designing a site for a magazine that is released >every two weeks. I know there must be a few of you out there that have done >this already...I have finished such a site two weeks ago. The site contains two magazines, one is weekly and one comes every three month. It is not a clone from the printed magazine but 10-15 selected articles are online, all with the same layout. For each article I have headline, picture, legend, intro, an unlimited number of subheadline/textblock-pairs and the possibility to change the textflow around the picture. There is no automatic conversion from print data to web, because our customer still uses Ventura Publisher and cannot export structured data for further processing (at least he told me so). The site is completely WebCat-driven, everything like adding new issues, archiving, adding articles and so on is done via web interface. Searchable archive is provided. >so I thought I'd ask the list for any advice from the trenches >before I start.Well, I won't tell everything in detail, but I can share some experience... >I'm unsure of whether I should keep all the content in the >database or if I should use [included] text files. This raises the issue of >whether the site could be indexed by the search robots vs whether I can >perform WebCat searches on the content. The client also wants to keep a >searchable archive of back issues as well.If you write files to disk you'll have to connect your own search engine to the site and the search results might not look like you or your client expect. And you have to deliver with [convertchars][include....][/convertchars] anyway, because once you have written the file the text is not easy to change for a person not familiar with HTML because you get all tags in your editing interface. I decided to have everything in the database (one database per magazine). Your decision depends on the amount of text and the server. Searching: our site has many frames, so we have a problem with search engines anyway. We plan to write each page into a directory, where spiders can find them (leaded by robots.txt). If the user calls such a page, there is a link to switch to the framed original site, maybe we switch automatically. This is not implemented yet. >At some point, with two per >month, the database size would become too large.Sure? Than you can write outdated issues into different databases and keep the search features of webcat. This depends on the type of search you provide for your archive - if you search all issues at any search request, splitting databases does not make much sense, if you search in single issues it does. >...Also, what method(s) of version >control have been successful with your clients. What I mean by that is >administrating the switching of new issues to the live site while retiring >the last issue.Since I have all issues of one magazine in one magazine, this is no problem. I have a status field with three possible states: old, online and new. The client can add one ore more new issues whenever he want and edit them online. If he wants to go online with a new issue, he simmply clicks a button, the online records are set to old and the new one is set to online. >Any other issues regarding this kind of site that could be >helpful would also be appreciated.The strucure of the database might be more complex than you expect at the beginning. You have to track issue numbers, article numbers to show the articles in the right order, maybe textblock numbers if you want editable subheads for paragraphs. If you have more magazines in one site (like we), think quite often about the hierarchy: Unlimited number of magazines Unlimited number of articles for each magazine Unlimited number of textblocks in each article This requires a solid numbering scheme, you should be able to renumber records if someone deletes an article. And you have to upload, display and delete related pictures automatically. The site I am talking about is already online, you can see it at http://www.aerztewoche.at It is german only, but you'll find your way. The two magazines are under Medien and called Aerztewoche and Praxis & Wirtschaft. Peter++++++++++++++++++++++++++++++++++++++++++++++++ Peter Ostry - Vienna/Austria - www.ostry.com Fon ++43-1-877 74 54 Fax ++43-1-877 74 54-21 ++++++++++++++++++++++++++++++++++++++++++++++++ Peter Ostry

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

Troubles with Selection Drop Down List Search (1998) Nested tags count question (1997) shipcost (1997) Apache on windows and WebDNA (2004) apostrophe in search item (1997) Pithy questions on webcommerce & siteedit (1997) Triggers (2003) Emailer prefs in two places ... (1997) Content-type:... (2000) groups and [ShowNext] (1997) SQL db type (2006) WCS Newbie question (1997) Rhapsody? (1997) WCS Newbie question (1997) Error:Too many nested [xxx] contexts (1997) all records returned. (1997) WebCatalog 2.0 b 15 mac (1997) Help name our technology! (1997) WebCat editing, SiteGuard & SiteEdit (1997) WebCat2: Items xx to xx shown, etc. (1997)