<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>OTC Intranet Site Map</TITLE>
<cfinclude template="/otcadmin/application.xfm">
</head>
<cfquery name="parent" datasource="otc_ss" username="otcdev"
password="otcdm">
Select * from menuitems
where itemid=#url.parentitemid# and system='#session.system#'
</cfquery>
<body bgcolor="#0080FF">
<center><table width="100%" cols="1">
<tr align="CENTER" valign="middle">
<td align="CENTER" valign="TOP" width="100%">
<font face="Verdana" size="3" color="White">
<b><strong><em><cfoutput>#session.description#</cfoutput></em></strong></b><
/font>
</td>
</tr>
</table></center>
<hr align="CENTER" size="+3" width="100%" color="Navy">
<cfquery name="menuitems" datasource="otc_ss" username="otcdev"
password="otcdm">
Select * from menuitems
where parentitemid=#url.parentitemid# and system='#session.system#' and
itemid<>#url.parentitemid#
order by itemid
</cfquery>
<table width="100%" cellspacing="0" cellpadding="1" bgcolor="#0080FF">
<cfoutput query="parent">
<tr>
<td>
<img src="/images/openfolder.gif" width=18 height=18 border=0>
</td>
<td>
<font face="verdana" size="3">
<a
href="http://otc.glaxo.com/otcadmin/menu.xfm?parentitemid=#parentitemid#"
target="" title="#alt#"
<cfif browserType is "NS" and version LT "4">
<em>#description#</em></a></font></td>
<cfelseif browserType is "MSIE" and version GE "4">
onmouseout="this.className= '';" onmouseover="this.className=
'over';">#description#</a><BR></font></td>
<cfelse>
>#description#</a><BR></font></td>
</cfif>
</tr>
</cfoutput>
<Cfloop query="menuitems">
<tr>
<td colspan="2" align="LEFT" valign="TOP" bordercolor="#0080FF"
bordercolorlight="#0080FF" bordercolordark="#0080FF">
<cfif browserType is "NS" and version LT "4">
<cfoutput><img src="/images/SmallKey.gif" border=0 width=16 height=16
alt=""><a href="#httplink#" target="#target#" title="#alt#"><font
face="verdana" size="-2" color="white">#description#</font></a></cfoutput>
</cfif>
<cfif browsertype is "NS" and version GE "4">
<cfoutput><img src="/images/SmallKey.gif" border=0 width=16 height=16
alt=""><a href="#httplink#" target="#target#" title="#alt#"><font
face="verdana" size="-2" color="white">#description#</font></a></cfoutput>
</cfif>
<cfif Browsertype is "MSIE" and version GE "4">
<cfoutput><img src="/images/SmallKey.gif" border=0 width=16 height=16
alt=""><a href="#httplink#" target="#target#" title="#alt#"
onmouseout="this.className= '';" onmouseover="this.className= 'over';"><font
face="Verdana" size="-2" color="White">#description#</font></a></cfoutput>
</cfif>
<cfif Browsertype is "MSIE" and version LT "4">
<cfoutput><img src="/images/SmallKey.gif" border=0 width=16 height=16
alt=""><a href="#httplink#" target="#target#" title="#alt#"><font
face="Verdana" size="-2" color="White">#description#</font></a></cfoutput>
</cfif>
</td>
</tr>
</cfloop>
</table>
</BODY>
</HTML>
-----Original Message-----
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 28, 2002 11:25 AM
To: CF_OpenSource
Subject: RE: doing a content mangement system, very simple need some
ideas
Well it's nice to have a system where I could have infinite levels, then I
could limit it myself to where I think the project will be headed. I don't
want to have to worry about redesigning a database structure if the scope of
the project changes and now they want 6 subcategorys and not 5.
Robert Everland III
Dixon Ticonderoga
Web Developer Extraordinaire
-----Original Message-----
From: Chris Combs [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 28, 2002 11:17 AM
To: CF_OpenSource
Subject: RE: doing a content mangement system, very simple need some
ideas
Content management system should be structured by organization levels. Some
organizations are structured functionally(Finance, Manufacturing, R&D,
Administration). Some Are structured by Geography. Some by Marketing
structure (prodcts, lines, markets, etc). This is my idea of how a CMS
should be organized. Define a finite set of structures, or make everything
dynamic like a bill of materials structure.
-----Original Message-----
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 28, 2002 10:43 AM
To: CF_OpenSource
Subject: RE: doing a content mangement system, very simple need some
ideas
Also what about adding a field called level. This would be used to display
the query in a format of
Category
subcategory
subsubcategory
Level would be a number like 0,1,2,3 then we would have a cfloop where it
would do something like level*1 to get the spacing.
Robert Everland III
Dixon Ticonderoga
Web Developer Extraordinaire
-----Original Message-----
From: Mike Craig [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 28, 2002 7:18 AM
To: CF_OpenSource
Subject: RE: doing a content mangement system, very simple need some
ideas
Categories and Sub-Categories (depending on how you want to customize
your upload/download directories and display pages for the uploaded
content) should probably have (or at least mine have in similar
situations):
Unique Id
Short Description (for display)
Long Description (for help)
Sub-Directory where any files may be stored
An Access "CODE", usually 20 characters in length tops that offers quick
identification for custom queries later (its easier to remember
BODPROFILE than Category 21).
A Bit field to turn the category/sub-category off for maintenance needs
(precautionary)
A Discontinue Date (so you can permanently disable the type of upload
document if it becomes obsolete but retain the linked information to
your master upload tables).
And Finally perhaps an administrative code or access level so that you
can integrate security (preventing some categories/sub-categories from
now showing as viable upload or download options when searching or view
the "board of directors" page).
There are a few of my ideas and how I have accomplished this in the
past. I'm sure there are plenty others.
-----Original Message-----
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 25, 2002 12:00 PM
To: CF_OpenSource
Subject: doing a content mangement system, very simple need some ideas
Ok I have a project that needs to content management solution. I figured
since i have CoSmoS i will release the code as GPL once I am done with
it,
but anyways here is my problemo.
I am doing a website for a home owners association and it has to be
easy.
They want a place to put board of directors, links, upload documents,
edit
the front page, stuff like that.
The problem I am having is this, should I have categories, then
subcategories, should the subcategories have a definition of what they
are,
like a link, a file, or directory?
Anyone have some insight they can give me. It's gonna start out simple
then
get complicated eventually.
Robert Everland III
Dixon Ticonderoga
______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists