Computer system for supporting a website
Abstract
A computer system for supporting a website, comprises a navigation object table defining a number of navigation objects, representing a tree-like navigational structure, and an object handler which uses the table dynamically to construct menus allowing a user to navigate through the navigational structure. Whenever the object handler is called, it is passed a tag identifying an object. It then searches the navigation object table to find objects whose parent object in the tree structure is the object identified by this tag, using these objects to construct the menu. The navigation objects include menu objects specifying subsidiary menus in the tree structure, and selection of one of the menu objects causes a recursive call to the object handler, passing it the tag of the menu object. The system also includes an access control table indicating which users may access which navigation objects, and the object handler uses this access control table to tailor the menus for particular users.

Term
Term ended
Projected expiry passed 30 September 2018, 8 years ago.
- Priority
- Filed
- Published
- Projected expiry
- Today
10 claims: 2 independent, 8 dependent
- 1A computer system for supporting a website, characterised by:(a) a navigation object table (109) defining a plurality of navigation objects representing a navigational structure for navigating around the website;and (b) an object handler (51-58) for using said navigation object table dynamically to construct menus allowing a user to navigate through said navigational structure.
- 7A method of operating a computer system to support a website, the method comprising:(a) creating a navigation object table defining a plurality of navigation objects representing a navigational structure for navigating around the website;and (b) using said navigation object table dynamically to construct menus allowing a user to navigate through the navigational structure.
Independent claims2
71 paragraphs, as filed
Background to the Invention
This invention relates to a computer system for supporting a website on the Internet or on an intranet.
Normally, a website consists of a number of pages, linked together by means of hyperlinks, allowing a user to navigate around from one page to another. However, a problem with this is that, when pages are created or updated, it is very difficult to ensure that all the necessary links are correctly updated in a consistent manner. For example, if a file is moved to a different location, all links to the file must be changed so that they now point to the new location. The object of the present invention is to provide a way of overcoming or alleviating this problem.
Websites are frequently used to provide information and services to employees of an organisation, to enable them to carry out their jobs more effectively. However, if a website is large, and contains a large amount of information not relevant to a particular employee's job, it can be difficult for the employee to locate the information he or she requires. An object of a preferred form of the present invention is to provide a way of overcoming or alleviating this problem.
Summary of the Invention
According to the invention there is provided a computer system for supporting a website, characterised by: <ul id="ul0001" list-style="none" compact="compact"><li>(a) a navigation object table defining a plurality of navigation objects representing a navigational structure for navigating around the website; and</li><li>(b) an object handler for using said navigation table dynamically to construct menus allowing a user to navigate through said navigational structure.</li></ul>
As will be shown, the invention enables the structure of the website to be modified, simply by altering the contents of the navigation object table, without having to alter links in the website pages.
In a preferred form of the invention, the system also includes an access control table indicating which users may access which navigation objects, and wherein the object handler uses this access control table to tailor the menus for particular users.
Brief Description of the Drawings
Figure 1 is a block diagram of an intranet, including a computer system in accordance with the present invention.
Figure 2 is a schematic diagram showing the structure of a set of object tables used in the computer system.
Figure 3 is a schematic diagram showing the tree structure of navigational objects defined by the object tables.
Figure 4 is a diagram illustrating the format of a home page screen display produced by the system.
Figure 5 is a flow chart showing the operation of an object handler forming part of the website.
Figure 6 is a diagram showing a screen display containing a menu dynamically constructed by the object handler.
Description of an Embodiment of the Invention
One embodiment of the invention will now be described by way of example with reference to the accompanying drawings.
Overview
Figure 1 shows an intranet system, comprising a server computer 101, and a number of client computers 102, interconnected by means of a network 103.
The server computer 101 runs a server manager 104, and includes a file store 105 and a database 106. In this example, the server computer runs under the Microsoft Windows NT Version 4 operating system, the server manager is Microsoft Internet Information Server (IIS) version 3.00, while the database is provided by Microsoft SQL Server version 6.5.
The server computer maintains a website, comprising a large number of pages, held in the file store 105. These pages include HTML (Hypertext Markup Language) files 107, and ASP (Active Server Page) files 108. An ASP file is an example of a script file, running under an interpreter, which can perform various functions when called. For example, an ASP file may contain embedded SQL queries, for accessing the database.
Each of the client computers 102 includes a web browser 115 which, in this example, is Microsoft Internet Explorer.
The navigational structure of the website is represented by a number of navigation objects, arranged in a tree structure. These objects are defined by a set of object tables, held in the database 106. These object tables comprise: Navigation Object Table 109, ASP Object Table 110, Link Object Table 111, and HTML Object Table 112. Figure 2 shows a simplified example of these tables, while Figure 3 shows the corresponding tree structure.
Navigation object table
The navigation object table 109 holds an entry for each navigation object. Each entry contains the following fields: <dl id="dl0001" compact="compact"><dt>TAG</dt><dd>An identifying tag value. The TAG field of each object is formed by adding three digits to the tag value of its parent object in the tree structure. For example, the object TEC001 is the parent of objects TEC001001 and TEC001002.</dd><dt>NAME</dt><dd>Text for display on a link.</dd><dt>TYPE</dt><dd>In the present example, the following object types are defined, although it should be appreciated that other types may also be defined: MENU Menu. ASP ASP (Active Server Page). LINK A link to another website. HTML HTML (Hypertext Markup Language).</dd><dt>ACTIVE</dt><dd>"True" if the object is currently active.</dd><dt>PARENT</dt><dd>The tag of the parent object in the tree structure. (This field is not strictly necessary, since it can be deduced from the TAG value).</dd></dl>
ASP Object Table
The ASP Object Table 110 holds an entry for each ASP file that can be accessed via the navigational structure. Each entry contains the following fields: <dl id="dl0002" compact="compact"><dt>TAG</dt><dd>A tag value which relates the entry to an ASP object in the Navigation Object Table.</dd><dt>FILENAME</dt><dd>The file name of the ASP file.</dd></dl>
Link Object Table
The Link Object Table 111 holds an entry for each remote website that can be accessed via the navigational structure. Each entry contains the following fields: <dl id="dl0003" compact="compact"><dt>TAG</dt><dd>A tag value which relates the entry to a LINK object in the Navigation Object Table.</dd><dt>ADDRESS</dt><dd>The full HTTP address of the remote website.</dd></dl>
HTML Object Table
The HTML Object Table 112 holds an entry for each HTML file that can be accessed via the navigational structure. Each entry contains the following fields: <dl id="dl0004" compact="compact"><dt>PARENT</dt><dd>A tag value which relates the entry to an HTML object in the Navigation Object Table.</dd><dt>FILENAME</dt><dd>The file name of the HTML file.</dd><dt>NAME</dt><dd>Text for display on a link.</dd></dl>
It should be noted that several entries in the HTML Object Table may share the same PARENT value. This allows a group of HTML files to be represented by a single entry in the Navigation Object Table.
Access control tables
The database also holds two access control tables: NavNTGroup table 113, and NTGroup Table 114. These tables are used to control the way in which individual users can access given navigation objects.
The NavNTGroup table 113 associates navigation objects with groups which are permitted to access those objects. This table contains the following fields; <dl id="dl0005" compact="compact"><dt>TAG</dt><dd>A tag value, identifying a navigation object.</dd><dt>NTGROUP</dt><dd>An NT group name.</dd></dl>
A given tag value may be associated with more than one NT group, allowing more than one group of users to access a particular navigation object.
By default, if no entry appears for a particular tag value, the corresponding navigation object can be accessed by any group.
The NTGroup table 114 associates users with specific groups. This table contains the following fields: <dl id="dl0006" compact="compact"><dt>USERNAME</dt><dd>A username.</dd><dt>NTGROUP</dt><dd>An NT group name.</dd></dl>
A given username may be associated with several different groups.
User attachment to the website
A user can attach to the website by entering the web address of the website into the browser 115. The browser will then contact the server manager 104, to inform it that the user is attaching to the website.
When the user attaches to the website, a file DEFAULT.HTM is automatically loaded by the server manager. This is a static HTML file which sets up two frames on the user's screen. As shown in Figure 4, these two frames comprise a navigation bar 41 and a main window 42. The navigation bar 41 consists of an area running horizontally across the top of the screen, while the main window consists of the remainder of the screen. DEFAULT.HTM simply composes these two frames; the content of the frames is built by calling two further files NAVBAR.HTM and MAINHARD.ASP.
NAVBAR.HTM is a static HTML file. It paints the navigation bar 41, setting up a number of navigation buttons 43 in this bar.
MAINHARD.ASP paints the main window 42 for the home page of the website. As shown in Figure 4, this includes a number of zone buttons 44, representing the top-level zones of the site. The main window may also include a graphic 45, such as a company logo.
The home page also includes a button which activates a script which performs a user log-in procedure with the server, allowing the server to obtain the user's username.
Zone buttons
Each of the zone buttons has a tag associated with it. For example, the following zone buttons may be provided, with tags as shown: <tables id="tabl0001" num="0001"><table frame="all"><tgroup cols="2" colsep="1" rowsep="0"><colspec colnum="1" colname="col1" colwidth="78.75mm" /><colspec colnum="2" colname="col2" colwidth="78.75mm" /><thead valign="top"><row rowsep="1"><entry namest="col1" nameend="col1" align="left">Zone</entry><entry namest="col2" nameend="col2" align="left">Tag</entry></row></thead><tbody valign="top"><row><entry namest="col1" nameend="col1" align="left">Knowledge Modules</entry><entry namest="col2" nameend="col2" align="left">KNO</entry></row><row><entry namest="col1" nameend="col1" align="left">Operational support</entry><entry namest="col2" nameend="col2" align="left">OPS</entry></row><row><entry namest="col1" nameend="col1" align="left">Technical Support</entry><entry namest="col2" nameend="col2" align="left">TEC</entry></row><row><entry namest="col1" nameend="col1" align="left">Management Information</entry><entry namest="col2" nameend="col2" align="left">MAN</entry></row><row><entry namest="col1" nameend="col1" align="left">Personnel and Development</entry><entry namest="col2" nameend="col2" align="left">PDI</entry></row><row><entry namest="col1" nameend="col1" align="left">Sales and Marketing</entry><entry namest="col2" nameend="col2" align="left">SAM</entry></row><row><entry namest="col1" nameend="col1" align="left">Policy</entry><entry namest="col2" nameend="col2" align="left">POL</entry></row><row rowsep="1"><entry namest="col1" nameend="col1" align="left">Webmaster</entry><entry namest="col2" nameend="col2" align="left">WEB</entry></row></tbody></tgroup></table></tables>
The zone buttons 44 form the highest level of the navigational tree, and are the parents of the top-level objects in the Navigation Object table. For example, it can be seen that in Figure 2, the "Technical support" zone button (TEC) is the parent of the first three items in the Navigation Object table.
Whenever one of the zone buttons is selected by the user, MAINHARD.ASP calls an object handler, HANDLE_OBJECT.ASP, passing it the tag associated with that button.
Object handler
Figure 5 shows the operation of the object handler when it is called from MAINHARD.ASP, or recursively called by itself.
(Step 51) The object handler accesses the navigation object table in the database.
(Step 52) The object handler searches for the next navigation object in the navigation object table whose PARENT field matches the tag value passed to the object handler when it was called. If no matching object can be found, the object handler terminates.
(Step 53) If a matching object is found, the object handler then consults the access control tables NavNTGroup and NTGroup, to check whether the current user is a member of a group which is permitted to access this navigation object. If access is not permitted, the object handler returns to step 52 above.
(Step 54) Assuming that access is permitted, the object handler then branches according to the TYPE field of the navigation object.
(Step 55) If the navigation object is of the MENU type, the object handler creates a link in the main window 42, using the NAME field of the navigation object as the label for the link, and associating the TAG value of the navigation object with this link. If this link is selected by the user, the object handler will recursively call itself, passing itself the associated TAG value.
(Step 56) If the navigation object is of the ASP type, the object handler accesses the ASP Object Table, to find the entry whose TAG matches that of the navigation object, and reads the FILENAME field of this entry. The object handler then creates a link to this FILENAME in the main window 42 , using the NAME field of the navigation object as the label for the link.
(Step 57) If the navigation object is of the LINK type, the object handler accesses the Link Object Table, to find the entry whose TAG matches that of the navigation object, and reads the ADDRESS field of this entry. The object handler then creates a link to this ADDRESS in the main window 42, using the NAME field of the navigation object as the label for the link.
(Step 58) If the navigation object is of the HTML type, the object handler accesses the HTML Object Table, and searches for each entry whose PARENT field matches the TAG value of the navigation object. For each matching entry in the HTML Object Table, the object handler reads the FILENAME field, and then creates a link to this FILENAME in the main window 42, using the NAME field from the HTML Object Table entry as the label for the link.
In each of the steps 55-58, if the navigation object has its ACTIVE field equal to "true", the link is displayed as an active link, conventionally in blue. On the other hand, if the navigation object has its ACTIVE field equal to "false", the link is displayed as an inactive link, conventionally in grey.
After performing any of steps 55-58, the object handler returns to step 52 above. The loop (steps 52-58) is then repeated until all matching objects have been processed.
It can be seen that, when called, the object handler dynamically builds a menu, consisting of a set of links, using the information contained in the object tables in the database. The links may provide access to particular files or websites, or may lead to a lower level menu.
For example, if the user selects the "Technical Support" zone button from the home page, the object handler will search the Navigation Object Table to find all entries whose PARENT field matches the tag value TEC of this button. In the example shown in Figure 2, the first entry matches, and so the object handler will create a link with the text "useful websites", and the tag value TEC001. Similarly, the second entry matches, and so the object handler will also create a link to the file skills.asp with the text "skills database". The third entry also matches, and in this case the object handler will create two more links, one for each of the HTML files whose PARENT field matches the tag TEC003. Thus, the object handler builds a menu with four items, as shown in Figure 6.
The user can then select any of the links in the menu. For example, if the user selects the "useful websites" link, the object handler will call itself recursively, passing itself the tag value TEC001. In response to this call, the object handler builds a further menu containing a set of links to remote websites. Alternatively, if the "skills database" link is selected, the skills.asp file is called, or if any of the HTML links is selected, the corresponding HTML file is called.
Discussion
It has been shown that the object handler, when called, dynamically builds a menu, using the information contained in the object tables in the database. The structure of the website can therefore easily be modified, simply by altering the contents of the object tables in the database. It is not necessary to alter links within the files themselves. This greatly eases the task of updating the website.
Each menu can be individually tailored to the user, by means of the access control tables, so as to contain only those items that are relevant to the particular user's job. However the user still has the ability gain access to resources in the conventional manner, by using the GO function of the browser, bypassing the navigational structure provided by the object tables. This is useful in cases where the user normally works within a fixed set of information, but may occasionally require to access other resources.
As described above, the server obtains the user's username through a log-in procedure. If this procedure is not performed, a default username is assumed. This default username allows access only to a default subset of resources.
Some possible modifications
It will be appreciated that many modifications may be made to the system described above without departing from the scope of the present invention. For example, other types of navigation object may be defined. Also, although the above example was described in the context of an intranet, it will be appreciated that the invention could also be employed for Internet access.
Although the embodiment of the invention described above was implemented using Microsoft technology, it will be appreciated that this is not essential to the invention, and other embodiments of the invention may be implemented using different technology.
6 sheets
Sheet 1 Sheet 2 Sheet 3 Sheet 4 Sheet 5 Sheet 6
Every citation, both ways
| Document | Relation | Office | Cited during |
|---|---|---|---|
| EP1441294A1 | Cited by | European Patent Office (EPO) | Search report |
| US7870155B2 | Cited by | United States of America | Applicant |
| US9286363B2 | Cited by | United States of America | Applicant |
| DE19933986A1 | Cited by | Germany | Search report |
| US8751545B1 | Cited by | United States of America | Applicant |
| US9741060B2 | Cited by | United States of America | Search report |
| WO0133425A3 | Cited by | World Intellectual Property Organization (WIPO) | International search |
| WO0133425A2 | Cited by | World Intellectual Property Organization (WIPO) | International search |
| US8185549B1 | Cited by | United States of America | Applicant |
| US2012124163A1 | Cited by | United States of America | Pre-grant |
| US7660810B2 | Cited by | United States of America | Applicant |
| FR2850184A1 | Cited by | France | Search report |
| WO0125986A2 | Cited by | World Intellectual Property Organization (WIPO) | International search |
| US7039860B1 | Cited by | United States of America | Applicant |
| US7139771B2 | Cited by | United States of America | Applicant |
| WO0125986A3 | Cited by | World Intellectual Property Organization (WIPO) | International search |
| EP0774722A2 | Cites | European Patent Office (EPO) | Search report |
3 members in 2 offices
Priority claims4
| Document | Office | Kind | Date |
|---|---|---|---|
| 9721502 | United Kingdom | A | |
| 9721502 | United Kingdom | – | |
| 9721502 | – | – | – |
| GB19970021502 | – | – | – |
Members3
| Document | Office | Kind | |
|---|---|---|---|
| EP0908833A2This record | European Patent Office (EPO) | A2 | |
| US6411999B1 | United States of America | B1 | |
| EP0908833A3 | European Patent Office (EPO) | A3 |
16 legal events, as the office reported them to INPADOC
Over the term
Point at a mark for the eventEvents
| Event | Code | |
|---|---|---|
| Application withdrawnWithdrawn18W | 18W | |
| Information on the status of an ep patent application or granted ep patentGrantedSTATUS: THE APPLICATION HAS BEEN WITHDRAWNSTAA | STAA | |
| Appeal procedure closedAppealORIGINAL CODE: EPIDOSNNOA9EAPBT | APBT | |
| Appeal reference modifiedAppealORIGINAL CODE: EPIDOSCREFNEAPAF | APAF | |
| Date of receipt of statement of grounds of appeal recordedAppealORIGINAL CODE: EPIDOSNNOA3EAPBR | APBR | |
| Date of receipt of notice of appeal recordedAppealORIGINAL CODE: EPIDOSNNOA2EAPBN | APBN | |
| First examination report despatched17Q | 17Q | |
| Designation fees paidAKX | AKX | |
| Request for examination filed17P | 17P | |
| Designated contracting statesAK | AK | |
| Request for extension of the european patentAX | AX | |
| Search report despatchedORIGINAL CODE: 0009013PUAL | PUAL | |
| Party data changed (applicant data changed or rights of an application transferred)RAP1 | RAP1 | |
| Designated contracting statesAK | AK | |
| Request for extension of the european patentAL;LT;LV;MK;RO;SIAX | AX | |
| Public reference made under article 153(3) epc to a published international application that has entered the european phaseORIGINAL CODE: 0009012PUAI | PUAI |
Numbers
- Publication
- 0908833
- Publication, DOCDB
- 0908833
- Publication, EPODOC
- EP0908833
- Application
- 98307994
- Application, DOCDB
- 98307994
- Application, EPODOC
- EP19980307994
Titles3
- German
- Rechnersystem zum Unterstützen eines Web-Sites
- English
- Computer system for supporting a website
- French
- Système informatique de support d'un site de la toile
Classification
- CPC, 4
- G06F17/3089
- G06F16/9558
- G06F17/30882
- G06F16/958
- IPC, 1
- G06F17 30
Designated states2
- Contracting states, 1
- Sweden
- Extension states, 1
- Slovenia