Information delivery system and method including restriction processing5940843Abstract The electronic distribution of research documents over the world wide web or other network to investors. A repository server receives research documents from contributors. A restriction subsystem server is selectively coupled to the contributor workstation. The restriction subsystem server which includes manages and stores "restriction" and "review" information of companies, relative to contributors. A contributor identifies (via electronic communication or otherwise) to the restriction subsystem server a "restriction" and/or "review" status of a company relative to the contributor. A particular company may be identified as "RESTRICTED" if the contributor has a current banking or financial interest in the company. Additionally, a company may be identified as "UNDER REVIEW" if the contributor believes its opinion about the company may change based on a news event. Moreover, a company may be identified as "UNDER EXTENDED REVIEW," if, for example, the contributor is not presently "covering" that company. Each time the repository server is queried for a list of reports or documents (i.e., document titles or headlines), the repository server determines whether to provide a particular title to the viewer workstation (via a viewer server or web server) to the user based on the restriction status of the contributor of the document relative to the restriction status of the company or companies associated with the document. Claims What is claimed is: Description FIELD OF THE INVENTION
______________________________________
for (all the groups in the investor's allowed group list) do
begin
if (group is in the query contributor restriction)
and group is in database)
then add group to the allowed list
end
for (all the groups in the database) do
begin
if (group is in the query's contributor restriction)
and group is not in the investor's allowed list)
then add group to the disallowed list
end
if (allowed groups list is empty)
then deny request
else if (disallowed groups list is empty)
then no restriction
else if (decisionFunction (allowed list, disallowed list))
then restrict to groups in allowed list
else restrict to groups not in disallowed list
______________________________________
The "decisionFunction" selects the shorter of the two lists, namely, allowed list and disallowed list. This optimization is more efficient when the database's content is close to the investor authorization, since it works by trimming the unnecessary restrictions for groups without reports in the database. To improve the efficiency of this optimization when the number of groups in the database grows, the records could be dispatched to different tables based on groups and the same optimization algorithm could be used to select the appropriate table and generate a different restriction clause for every table targeted. 2. Optimization of sorted queries The purpose of the sorted queries optimizer is to provide the investor with a fast answer even when the number of elements to sort is substantial. Unlike other applications used in memory sorting, database sorting can rely on a buffer being swapped in and out to disk from the main memory. When the number of items to sort becomes significant, these I/O operation can consume a lot of time. When an investor submits a query via the Internet, the repository server 2 via the web server 4 returns the first hundred rows by default, the most recent reports being displayed first. The actual query result may contain thousands of reports. Thus, to display the hundred most recent reports, the database has to sort the whole result set before returning any answer. In order to provide the investor with a quick answer, the sorted queries optimizer will try to run multiple queries, each for a smaller subset of the query. If the query has to be sorted by the report's date, the sorted queries optimizer divides the requested time period of the query definition into multiple chunks and executes the same query restricted to every chunk. Accordingly, the sorted queries optimizer does not disturb the sorting order. Based upon tests of real data sets, it was found that it was more efficient to perform only two queries, rather than a lot of them. The first query is performed on the first 10th of the time period, the second one on the remainder period. For some typical queries, the second subquery execution is unnecessary since the first query had already returned the number of rows requested by the investor. For database 13, the retrieving of a count is orders of magnitude faster than retrieving the full result set. The present invention takes advantage of this characteristic to give an immediate feedback to the investor. As soon as a query is submitted, a count is performed and this information is sent to the web server 4. The web server 4 can take advantage of this feature to return that information to the Internet browser by flushing it's internal buffers. That way, even when the retrieval of the result set takes tens of seconds, the investor gets some feedback in seconds. Ideally, the sorted queries optimizer is used only for sorted queries and when the number of rows is above a given threshold. The present invention uses the result of the count to trigger the sorted query optimization. The following pseudo code describes the code used to implement the sorted queries optimizer:
______________________________________
Retrieve the count
if (Query is sorted by a time) and (count > = threshold) then
begin
if (query definition contains a time range)
then get the time range from the query definition
else use an appropriate default value
add the restriction for 1/10.sup.th of the time range
retrieve the first rows
rows.sub.-- still.sub.-- to.sub.-- fetch = rows.sub.-- requested -
rows.sub.-- already.sub.-- fetched
if (rows.sub.-- still.sub.-- to.sub.-- fetch > 0)
begin
add the restriction for remainder of the time
range
retrieve rows.sub.-- still.sub.-- to.sub.-- fetch rows
end
end
______________________________________
This optimization significantly improves the response time when the time to perform the additional query is egligible compared to the time necessary to sort the full set. The communication delay inherent in the connection between the Internet browser and the web server 4 may also introduce additional delays hiding some of the optimization benefits. Templates According to the exemplary embodiment, the web server 4 executes a research access program. The research access program provides a mechanism that enables an investor to access the information in the databases 11, 13. The research access program can also be implemented as an Internet CGI, which accepts input parameters from HTML forms, and then using templates forms, generates HTML pages comprising information retrieved from the databases 11, 13. The template forms are written in a novel computer language, called herein a "research access language" (or RAL) that describes how to integrate the information retrieved from the databases 11, 13 into this form. The template forms include RAL elements, as discussed in detail below. In the exemplary embodiment, investors submit queries and receive, in response thereto, a list of reports that satisfy the queries. The queries are constructed from one or more search parameters, including: which contributing company published the report; which stock symbols figure prominently in the report; when the report was published; what industries are featured in the report; keyword search parameters; as well as subjects (e.g., countries, currencies, regions, document class, and docmument type). An investor may enter search parameters at a user computer 6, 8 via a web page provided by the web server 4. When the investor selects the "submit" button on the web page, the search parameters are forwarded by the Internet browser to the web server 4. The search parameters are used to form a query. The query is submitted to the appropriate database 11, 13 and a list of matching documents is generated. This list is formatted on the web server 4 into HTML form, and sent to the investor at the user computer 6, 8, where the investor's Internet browser displays the list to the investor. The input to the research access program of the present invention comes from HTML forms completed by investors. The fields that can be searched on for document queries (and the expected values of such fields) include: date: A date range from "today" backwards, matching a document's official release date. Possible values include:
______________________________________
0 Today
1 Last 2 Days
2 ThisWeek
3 Last 7 Days
5 Last 14 Days
7 This Month
8 Last 30 Days
10 All Dates
12 Last 60 Days
13 Last 90 Days
______________________________________
ticker: A field for ticker symbols. query: A field for "free text" for searches of the document text. Logical expressions can be used, including the ampersand (`&`) for a logical `and`, and the pipe character (`.vertline.`) for a logical `or`. Parenthesis can be used for grouping expressions, and double quotes can be used to group words into phrases. All free text searches are not case sensitive. For example:
______________________________________
microsoft Find documents with
`microsoft` in their text.
ibm & microsoft Find documents with `ibm` and
`microsoft` in their text.
ibm .vertline. microsoft
Find documents with either
`ibm` or `microsoft` in their
text.
ibm & Find documents with `ibm`,
( microsoft and either `microsoft` or
.vertline. apple )
`apple` in their text.
"earnings report"
Find documents with the phrase
`earnings report` in their
text.
______________________________________
contributors: A field for a comma separated list of contributor ID's. industries: A field for a comma separated list of industry ID's. There are a number of options for displaying information to an investor. Some of these options are based on technical limitations (such as line speed), while others are based on the preferences of the investor (e.g., tabular output, prose, etc.). In order to react quickly to changes in display requirements, the research access program of the present invention utilizes template forms to format HTML pages comprising search results. According to the present invention, information retrieved from the databases 11, 13 is placed in HTML page format according to changeable template forms for said HTML pages. Thus, input (included in the HTML forms completed by investor) to the research access program of the exemplary embodiment from an investor can include view mode parameters relating to the format in which the investor wishes to receive the search results and other information. By supplying view mode parameters, the investor can indicate to the web server 4 the desired format of information, including how many records of information are displayed. View mode parameters (and expected values) include: FT: Form Type. Expected values are `L` for `list format`, `T` for `table format`, and `D` for double line format. viewmode: This field indicates whether all records that are returned by a query should be displayed (within reason--in the representative embodiment, there is a display limit of 1000 records), or whether the number of records displayed should be limited to a predetermined number. If the `viewmode` value is set to `all`, then all records will be displayed. Otherwise, the number of records displayed will be limited to the predetermined number. To submit a query, the user completes the fields discussed above and then selects a "submit" button. When an investor submits a query, the name and value of the HTML form `submit` button selected are treated as input. In the representative embodiment, if the following strings appear in the `name` of the submit button, they are treated in the following manner: submit: Make a query according to the parameters listed above. bboard: Same as submit, except that the query formulated includes the requirement that only documents recently received at the repository server 2, e.g. since midnight, be returned. long: Change the view mode to a double line format. short: Change the view mode to a list format. table: Change the view mode to a table format. summary: Same as submit, but also requests generation of a summary list, breaking down the number of documents that match the query by submitting contributor, and the document type (research document, or morning call note). In addition, generates stored HTML files for each contributor in the summary, with one listing of the individual research documents, and another for the individual morning call notes. In the summary list, generates links to the stored HTML files. notes: Same as summary. all: Change the view mode to view all documents. last: Change the view mode to view the 100 most recent documents. query: Generate a query form for the user. count only: Display the number of documents that match the query that matches the current parameters. company search: Generate a list of companies (named symbols), and place the list in a form from which the user can choose a company to perform a search upon. choose symbol: Generate a query form for the user, presetting the ticker input item to the value selected from a symbol list. The program output, of course, depends upon the input including which `submit` button was selected by the user. The user's choice of a submit button determines which template will be chosen for output. Additionally, templates may be preset for a user or a group of users. Thus, all users from a particular company or geographic area may be assigned one group of templates and all users from another company or geographic area may be assigned another group of templates. Once a template file is opened, the characters in it are passed directly through to standard output (the normal CGI output channel), until an RAL element is encountered. In that case, the RAL element is processed according to the rules set forth below, and the output from the RAL element is also sent to standard output, inserted into the stream of characters in the template. The following are examples of templates that may be used:
______________________________________
resultrl.tpl:
List form output for a query.
resultrd.tpl:
Double line output for a query.
resultrt.tpl:
Table form output for a query.
resultcl.tpl
List form output for a query, broken
down by contributor and document type
during a summary.
resultcd.tpl
Double line output for a query, broken
down by contributor and document type
during a summary.
resultct.tpl
Table form output for a query, broken
down by contributor and document type
during a summary.
resultq.tpl
Query form.
resultx.tpl
Query count.
resulti.tpl
Symbol Guide form.
resultt.tpl
Standard HTTP header prepended to each
of these templates.
bboardrl.tpl:
List form output for a bulletin board.
bboardrd.tpl:
Double line output for a bulletin board.
bboardrt.tpl:
Table form output for a bulletin board.
bboardcl.tpl
List form output for a bulletin board,
broken down by contributor and document
type during a summary.
bboardcd.tpl
Double line output for a bulletin board,
broken down by contributor and document
type during a summary.
bboardct.tpl
Table form output for a bulletin board,
broken down by contributor and document
type during a summary.
______________________________________
If a query is submitted with no parameters filled in, the query is termed a bulletin board query and requests the most recently available documents on all subjects. Research Access Language The following is a description of the RAL of the present invention. RAL elements begin with a start token, finish with an end token, and contain attributes in between. The start token is followed by a "white space" character. Attributes are indicated by the name of the attribute, followed by an equals sign ("="), followed by the value of the attribute. An attribute name consists of consecutive alphabetic characters. An attribute value consists of consecutive non-white space characters, unless it is enclosed by double quotes, in which case it consists of all characters enclosed in a pair of double quotes. An end token contained within a non-quoted attribute value will truncate the attribute value, and the language element. The following is a syntax description of an RAL element:
______________________________________
start-token
:= "{mx" <white-space>
white-space
:= (any ASCII character value between 1 and 32,
inclusive)
end-token
:= "}"
attribute := <attribute-name> "=" <attribute-value>
attribute-name
:= "end" .vertline. "name" .vertline. "true" .vertline. "width"
.vertline. "align" .vertline.
"start" .vertline. "false" .vertline. "empty" .vertline. "match"
.vertline. "format" .vertline.
"select" .vertline. "quotes"
attribute-value
:= <double-quotes> <any-characters> <double-quotes> .vertline.
<any-non-white-characters (except end-token)>
Examples:
{mx name=headline align=left width=50}
{mx start=documents}
{mx name=synopsis match=1 true=Yes false=""}
______________________________________
Attribute Names align The `align` attribute specifies the alignment of the output from the current element, within the width indicated by the `width` attribute in the element. Possible values left (default) center right See also width empty The `empty` attribute specifies what should be displayed as output for the current element, if the evaluated output for the element (before padding or alignment) is an empty string. This attribute is different from others, in that it remains in effect for all following language elements, until its value is changed. Possible values (Any string. Use "" to indicate an empty string.) end The `end` attribute marks the end of a loop. The attribute value indicates which type of loop the current element marks the end of. Possible values document contributorlist industrylist symbollist See also start false The `false` attribute specifies a string value to be displayed as output for the current element if the evaluated value for the `name` attribute does NOT match the value of the `match` attribute. This string may also use the `%s` feature described under `format`. Possible values (Any string. Use "" to indicate an empty string.) See also match, true, format format The `format` attribute specifies simple output formatting for output of the current element. Its format is the same as a C language printf () format string, but allows only string formatting (%s), and only one occurrence of that within the format string. The evaluated value of the element, as a string, is used as the value to fill the `%s` in the formatting string. Some examples are:
______________________________________
Format string
Element Value
Output Result
______________________________________
"%s" "ABC Corp." "ABC Corp."
"%15s" "ABC Corp." "ABC Corp. "
"%-15s" "ABC Corp." " ABC Corp."
"%5.5s" "ABC Corp." "ABC C"
"%s Documents"
"ABC Corp." "ABC Corp. Documents"
______________________________________
Possible values (Any valid C printf () formatting string.) See also align, width match The `match` attribute specifies a value which the RAL processor will compare to the evaluated result from the `name` attribute. If the two values match exactly, then the output from the current element will be the string specified by the `true` attribute, otherwise the output will be the string specified by the `false` attribute. Some examples are:
______________________________________
Match True False Element Value
Output
______________________________________
"1" "Synopsis" "" "0" ""
"1" "Synopsis" "" "1" "Synopsis"
______________________________________
Possible values (Any valid string. Use "" for an empty string.) See Also true, false, name name The `name` attribute specifies a data field to be used as the output for the current element. The data field name given as the value for this attribute is the name of a field in a research document description, a contributor description, an industry description, or a stock symbol description. A list of data fields supported is given in the "Data Fields" sections below. The field name can also specify any CGI input field (for CGI programs using RAL) by prepending an underscore character to the input field name, or it can specify any .INI file entry or environment variable by prepending a dollar sign to the entry/variable name. Possible values (Any valid data field name, or .sub.-- cgi-input-name, or $ini-entry-name, or $environment-variable-name.) See also match, Data Fields quotes The `quotes` attribute indicates whether output from the current element should be surrounded by double quotes. If this attribute is set to "1", the `width` and `align` attributes are ignored. Possible values "1" to surround output by quotes "0" to not surround output by quotes (default) start The `start` attribute indicates the beginning point of a loop, with each iteration of the loop enumerating the data items specified by the value of this attribute. See the section "Data Enumeration" below for details. Possible values documents contributorlist industrylist symbollist See also end, Data Enumeration true The `true` attribute specifies a string value to be displayed as output for the current element if the evaluated value for the `name` attribute matches the value of the `match` attribute. This string may also use the `% s` feature described under `format`. Possible values (Any string. Use "" to indicate an empty string.) See also match, false, format width The `width` attribute specifies a number which gives the desired width, in characters, of the output for the current element. If the currently evaluated output is shorter than the `width` value, then the output is padded with spaces on the left, right, or both, according to the value of the `align` attribute. If the output is longer than the `width` attribute, the output is truncated on the right, and the last three characters are replaced with periods (` . . . `) to indicate a truncated value. Possible values (Any valid integer.) See also align Data Enumeration The RAL attributes `start` and `end` are used to mark elements that are to be repeated during the enumeration of data objects. For example, {mx start=documents}{mx name=headline} {mx end=documents} would cause RAL to enumerate all documents that match the current query, outputting the headline of each one. (By placing the `end` element on the next line, it also causes the headlines to be separated by an end-of-line character). The available enumerations are listed below. All enumerations are filtered so as only to include documents the user that is making the enumeration is authorized to access. That is, not all users see the same results when making enumerations, according to their level of authorization. documents The `documents` enumeration loops through the result set of a query on the database of research documents. In the current implementation, the input parameters to the query are taken from CGI input items from an HTML page. They are: daterange: An integer from 0 to 12 specifying a date range for the release date of a document. The possible values are:
______________________________________
0 Today
1 Last 2 Days
2 ThisWeek
3 Last 7 Days
5 Last 14 Days
7 This Month
8 Last 30 Days
10 All Dates
12 Last 60 Days
13 Last 90 Days
______________________________________
ticker: A field for ticker symbols. query: A field for "free text" for searches of the document text. Logical expressions can be used. contributors: A list of contributor ID numbers which identify the contributors. industries: A list of industry ID numbers relating to the document. The following fields are available within a `documents` enumeration, listed with the data they output:
______________________________________
Analysts Names of the analysts that compiled the document.
AnalystIDs
Numeric ID's of the analysts that compiled the
document.
ByteCount
Size of the document (in PDF form) in kilobytes or
megabytes.
Contributor
Name of the company that compiled the document.
ContributorID
Numeric ID of the company that compiled the document.
DocID The internal system document ID number.
DocType `R` for a research document; `M` for a morning
call note; `N` for a news document.
Headline The headline of the document. The system of the
representative embodiment also surrounds the output
from a element that displays this field with an HTML
"anchor" to a CGI that downloads the PDF file for
the document, or generates an HTML page for
documents with no PDF form.
PageCount
The number of pages in the document.
ReleaseDate
The official release date of the document.
Relevance
A number from 0 to 1000 that indicates the
relevance of the document to the free text that
was used in the query. The higher the number, the
more matches on the free text.
SubmitDate
The date the document was submitted by the contributing
company to the repository server 2.
Symbols A list of ticker symbols that the contributor listed as
relevant in the document.
Synopsis A "1"/"0" flag that indicates whether a synopsis is
available for the document. By default, the value "Yes"
is output if the synopsis is available, and ""
is output otherwise. The representative embodiment
also surrounds the output from a element that displays
this field with an HTML "anchor" to a CGI that
creates an HTML page with the actual synopsis text.
______________________________________
The following fields are available outside a `documents` enumeration, since they are summary information or status information. Their values depend on the same query used within a `documents` enumeration: ChangeViewHode Generates text that can be used within a button to change the mode used to display documents. When the current view mode is set to show all documents, this data field generates "View Last ###", where ### is equivalent to the "Maximum" data field. When the current view mode is not set to show all documents, this data field generates "View All ###", where ### is equivalent to the "Total" data field. This text can be used as the value of a `submit` button in HTML, and a CGI can perform the appropriate action to change display modes. ContributorFilter Displays the name of the current contributor being used to filter documents. ContributorsText Displays the names of all contributors whose codes appear in the .sub.-- contributors field. Count Displays the total number of documents actually retrieved by a query, as opposed the number of documents that actually match the query. When the view mode is set to show all documents, this field is equivalent to the "Total" data field. Otherwise, it is equivalent to the "Maximum" data field. CountFilter Displays the number of documents that match the current document type and contributor filter. DocsShown Generates variable text, depending on the view mode (all documents, or the limited (100) set). If the view mode is set to return all documents, this data field generates the text "### Entries", where ### is equivalent to the "Count" data field. If the view mode is not set to view all entries, the data field generates the text "Last ### of *** Entries", where ### is again equivalent to the "Count" data field, and *** is equivalent to the "Total" data field. DocTypeFilter Generates the text "Research", "Morning Call Notes", or "News", depending on the current value of the document type filter. IndustriesText Displays the names of all industries whose codes appear in the .sub.-- industries field. Maximum This data field is the limit on the number of documents to be retrieved when the view mode is not set to show all documents. In the representative embodiment, this value is 100 by default, or the value specified in the "MaxRows" entry in WEBPUBL.INI. MaxRows If the view mode is set to show all documents, this data field is equivalent to the "Total" field. Otherwise, it is equivalent to the "Maximum" field. MorningNotes This data field is the number of morning call notes attributed to the current contributor specified in the contributor filter. News This data field is the number of news stories attributed to the current contributor specified in the contributor filter. Research This data field is the number of research documents attributed to the current contributor specified in the contributor filter. Total This data field is the total number of documents that match the current query parameters, regardless of view mode, contributor filter, or document type filter. Viewmode This data field generates "all" if the current view mode is set to view all documents that match a query. This field generates "last" if the current view mode is set to view only the last N documents that match a query, where N is equivalent to the "Maximum" data field. contributors The `contributors` enumerations is the same as a `documents` enumeration, except that the documents are grouped by their contributors. The only fields that can be displayed are the contributor names, and the number of documents in the research and morning notes categories. This enumeration is used primarily for presenting document summaries by contributor to the users. The following fields are available within a `documents` enumeration, listed with the data they output: Contributor Names of the contributor in a group. MorningNotes The number of morning notes submitted by the contributor. Research The number of research documents submitted by the contributor. contributorlist The `contributorlist` enumeration loops through the list of contributors from whom documents are available. This list is not based upon any query parameters--if a user is entitled to see the documents of a particular contributor, the contributor's name is returned in the result set. The following data fields are available within a `contributorlist` enumeration: ContributorID An integer that identifies a contributor uniquely. ContributorName, or Contributor The name of the contributor. The following data fields are available after a `contributorlist` enumeration. ContributorCount The total number of contributors in the `contributorlist` enumeration. industrylist The `industrylist` enumeration loops through the list of industries about which documents may be compiled. There are no query parameters for the industry list. The following data fields are available within a `industrylist` enumeration. IndustryID An integer that identifies an industry uniquely. IndustryName The name of the industry. symbollist The `symbol list` enumeration loops through all ticker symbols/company names that match a given input string. In the representative embodiment, the input string is taken from the CGI input item named `company`. If a company name contains the input string, the ticker symbol/company name is included in the result set for enumeration. The following data fields are available within a `symbollist` enumeration. SymbolID The stock ticker symbol recognized for a company on the stock market exchange where it trades. SymbolName The name of the company. Program Control RAL allows logical control over its output. The -if, -endif, and -defer allow a template to make decisions about output based on run time values of CGI input variables, environment or .INI variables, and the values of data fields from enumerations. If a -if element evaluates to FALSE, then all text and elements between the starting -if element and its terminating -endif element will not be passed through to output. If a -defer element is used inside a regular RAL element, then the rest of the element is not evaluated, and is simply passed through to output, without the -defer element. This allows a template to evaluate some RAL elements, and leave others to be evaluated later, if the output is used as a template itself.
______________________________________
if and -endif Usage
{mx -if <expression> }
. . .
{mx -endif}
where
expression
= <value> <operator> <value>
value = <string> .vertline. <number> .vertline. <variable>
operator
= == .vertline. < .vertline. > .vertline. |= .vertline. <=
.vertline. >=
string = <double-quote> ›<any-characters>!+ <double-quote>
number := <digit>*
variable
:= ›.sub.-- .vertline.$!<alphabetic character>›<alphanumeric
characters>!+
______________________________________
Only one expression is allowed. A variable that does not evaluate to a known value will be treated as if it were a string. If a variable is preceded by an underscore (" "), its value is taken from a CGI input variable with that name, minus the underscore. If a variable is preceded by a dollar sign ("$"), its value is taken from the environment variable or from the program's .INI entry which matches the variable name, minus the dollar sign. The following example shows how the -if element can be used to display some text and values only if there are actually some morning notes in the result of the query.
______________________________________
{mx -if morningnotes |= 0}
- Click the "AM Notes" button to
access them. <BR>
{mx -endif}
______________________________________
The following example shows how a CGI input variable can influence the output. In this example, if the "contributors" CGI form variable is not empty, then some text will be output, along with a built-in field that displays the names of all the contributors whose ID codes are in the "contributors" CGI form variable.
______________________________________
{mx -if.sub.-- contributors |= ""}
Query on contributors {mx name=contributorstext}
{mx -endif}
______________________________________
-defer Usage The -defer element is simply a modifier for other elements. It keeps the RAL from evaluating an element immediately, and outputs the element as if it were plain text, except it leaves the -defer out. For example: <option value=100{mx -defer name=.sub.-- contributors match=100 true=selected}>Selection Item 100 will output <option value=100{mx name=.sub.-- contributors match=100 true=selected}>Selection Item 100 the first time it is processed. When processed again: <option value=100selected>Selection Item 100 (This may leave the "selected" out, depending on the value of .sub.-- contributors.) One can have as many -defers as desired in an element--they do accumulate. That is, having three -defers in an element will cause it to defer evaluation until the fourth processing. An Example Use of RAL The following is an example of RAL used within an HTML file. A web CGI program that processes RAL can use this example file as a template, and fill in the RAL elements with the derived values of a query. This HTML has been simplified for the purpose of explanation, with comments in italics.
______________________________________
<HTML>
<HEAD>
<TITLE>
Bulletin Board
</TITLE>
</HEAD>
<BODY>
<h2><i>Bulletin Board</h2></i>
<form method="POST" action="/CGIBIN/result.exe">
<input type="submit" name="subaction" value="Refresh">
<input type="submit" name="subaction" value="Query">
<input type="submit" name="subaction" value="Summary">
<input type="submit" name="subaction" value="AM Notes">
Compare the total matching records to the maximum allowed in the
display. If there are more, show the "change viewing mode" button.
{mx -if total > maximum}
<input type="submit" name="subaction" value="{mx
name=changeviewmode}">
{mx -endif}
<input type="submit" "name="subaction" value="Long Form">
<input type="hidden" "name="current" value="bboard"><br>
Display the total number of documents that matched, and how many
will be displayed in this list.
<b>{mx name=docsshown}</b><br>
</form>
<PRE>
<B>Submit Company
Pgs Size Symbol
Syn Headline
</B>
<HR>
This part is a document enumeration. The enumeration shows the fields
named `updatedate`, `contributor`, `pagecount`, `bytecount`,
`symbols`, `synopsis`, and `headline`. Around the `synopsis` field,
there is a use of the -if element, which decides whether to output a
hypertext links to the synopsis. There is no -if element for the </A>,
because an extra one doesn't hurt most browsers.
(The following lines are split up with newlines to make it easier to
read
running this HTML, it will not give the desired results.)
{mx start=documents}
{mx name=updatedate width=7}
{mx name=contributor width=20}
{mx name=pagecount width=3 align=right}
{mx name=bytecount width=4 align=right}
{mx -if synopsis == 1}
<A HREF="result.exe?subaction={mx name=synfile}">
{mx -endif}
{mx name=synopsis width=3}</A>
<A HREF="result.exe?subaction={mx name=docfile}">{mx
name=headline}</A>
{mx end=documents}</PRE>
<b>
Display the final counts.
{mx name=research} Research Documents<br>
{mx name=morningnotes} Morning Notes
{mx -if morningnotes > 0}
Click the "AM Notes" button to access them.
{mx -endif}
<br>
</b>
If there were more than a screenful of headlines displayed,
create another form and display the control buttons again,
just for the user's convenience.
{mx -if research > 17}
<hr>
<form method="POST" action="/CGIBIN/result.exe">
<input type="submit" name="subaction" value="Refresh">
<input type="submit" name="subaction" value="Query">
<input type="submit" name="subaction" value="Summary">
<input type="submit" name="subaction" value="AM Notes">
{mx -if total > maximum}
<input type="submit" name="subaction" value="{mx
name=changeviewmode}">
{mx -endif}
<input type="submit" name="subaction" value="Long Form">
<input type="hidden" name="current" value="bboard">
</form>
{mx -endif}
</BODY>
</HTML>
______________________________________
It will be appreciated that the templates and research access program described above are of general application, and can easily be modified to be used in many applications and fields. Accordingly, the templates and research access language should be understood as applicable to applications and fields other than for the distribution of research reports. Step-by-Step Examples The following are three step-by-step examples illustrating some of the principles discussed above. The first example describes what happens when the user first "logs in" from a non-secure "home pages" on the WWW, and receives a Bulletin Board display. The second example shows what happens when the user selects the "Query" button that is on the Bulletin Board display from the previous example. The third example illustrates what happens when the user makes a query. According to the representative embodiment of the present invention, there are a number of predetermined types of information displays available. A bulletin board display outputs a list of the headlines of reports that have recently been received by the repository server 2. (In these examples, "recently received" is defined to mean reports that have been received that day, e.g., since midnight on today's date.). The bulletin board display can include the time of submission of the report by the contributor, the identity of the contributor, the number of pages and size of the report, ticket symbols related to the report, whether a synopsis is available and the headline, all displayed one line per report. A query results display comprises the same fields of information, but for reports that satisfy a user's query. Each of the above two types of output can be displayed in other formats, e.g., in long form which includes a two or more line output for each report listing the headline, the time of submission of the report by the contributor, the identity of the contributor (company), the name(s) of the authors of the report, the number of pages and size of the report, ticket symbols related to the report, whether a synopsis is available. A summary display outputs a three column table, each row listing a contributor, the number of research documents at the repository server 2 available for that user from that contributor and the number of morning notes at the repository server 2 available for that user from that contributor. EXAMPLE 1 Logging In, and Getting a Bulletin Board If a user has accessed an initial non-secure home page of the present invention, the user can select a link to "Log In". The actual link is to an address "/SCGIBIN/result.exe", where "result.exe" is the name of the CGI program that generates response pages to user actions. The directory /SCGIBIN is actually mapped on the non-secure web server to the directory /CGIBIN on the secure web server 4. This means that home pages are handled by the non-secure server, but actual access to reports is handled by the secure web server 4. When the secure web server 4 receives the request to run "result.exe", the web server 4 first checks the request to ensure that the Internet browser making the request is authorized to access the web server 4. If the Internet browser is not authorized, the web server 4 prompts the Internet browser to ask the user, via a dialog box, for a valid user ID and password. In this example, the user enters the name "george@1984", and the password "wombat" and then selects OK. The web server 4 now verifies that the user is authorized. This is done by passing control to a subroutine named "mxp.sub.-- auth()" which consults the relational database's 11 list of valid users and their passwords. (In this example, the relational database 11 is an SQL server.) If the given user ID and password matches a database entry, the subroutine sets up the environment variables HTTP.sub.-- CID as "1984" to represent the company ID of the user (taken from the "@1984" part of his ID), HTTP.sub.-- UID as "2096" to represent the user's internal ID (taken from the SQL sever's records), and HTTP.sub.-- MXP as "wombat" to represent the user's password. The subroutine then returns a REQ.sub.-- PROCEED value, and the web server 4 knows it may then proceed handling the user's request to run "result.exe". The web server 4 next executes the program "result.exe", with no additional arguments, because none were specified in the hypertext link to it, and because the page that the request was made from was not an HTML form, which would have named data fields the user could fill in to modify the request. First, "result.exe" verifies that the user is not attempting access with the same ID that another user is using. So "result.exe" retrieves the value of the environment variable "HTTP.sub.-- COOKIE" which is provided by the web server 4 (from the HTTP "Cookie" value in the request from the Internet browser). "result.exe" attempts to find a value in the cookie named "mxauth". Since, in this example, this is the first time this user/browser has "logged in", the "mxauth" value in the cookie has not been set, so "result.exe" grants this user access, generates an authorization string for this user, stores the string where it can find it later, and outputs a cookie value to the web server 4 that the server will send back to the Internet browser. Next, "result.exe" determines what type of request the user made when calling "result.exe". Since there are no arguments to "result.exe", and there are no HTML form values, "result.exe" defaults to generating a Bulletin Board, which is a list of all headlines that have newly arrived at the repository server 2 today. The program has a choice of which type of database server to query for the list--the SQL server 11, and the full-text search server 13. Since this request does not require any full-text searching for values in documents, the "results.exe" program chooses to contact an SQL server 11. If the connection fails for some reason, the program will attempt to contact each backup SQL server until there are no more to connect to. The program will then fall back to attempting to contacting the full-text search servers 13 until it finds one that is up. Failure to find any available servers will result in generation of an error message, and termination of the program. For the sake of this example, we will assume that "result.exe" successfully connected to the SQL server 11. This particular request would have no parameters, except for specifying that documents that have arrived on the SQL server 11 since midnight are desired. The request for the document headlines is immediately submitted to the SQL server 11, which returns its results asynchronously. This allows the SQL server 11 to begin processing the request, while "result.exe" moves on to its next step. In one embodiment, the SQL server operates in conformance with a "roll back" feature. In particular, the web server 4 transmits to the SQL server a parameter specifying a minimum number of headlines (obtained from the WEBPUBL.INI file), along with the request. If, for example, the request for "all headlines that have newly arrived" results in a number of headlines which is less than the minimum number specified, the SQL server will search, backward in time, for further headlines so as to meet the minimum number of headlines requirement. The next step for the web server 4 is to open an HTML template that is appropriate to the output requested by the user. In this case, "result.exe" is generating a simple Bulletin Board, so it is programmed to select a template named "BBOARDR?.tpl". The question mark in the name is filled in by the format that the user prefers his headlines to be displayed in. Possible formats are double line output (?=`D`), list output (?=`L`), and table output (?=`T`). The formats that each user prefers are stored in the same place that the user's authorization code for the cookie is stored. The "result.exe" program goes to that storage area, looks up the preferred format for "george@1984", discovers it is "L", and finishes its template selection by opening the file "BBOARDRL.TPL". (Of course, other possible formats could be specified and used.) The template file is mostly HTML, with some RAL elements mixed into it. The "result.exe" program will read through this template, and will immediately output any straight HTML to standard output, which the web server 4 will then send on to the Internet browser for the Internet browser to display as a page on the screen of the user's user computer 6, 8. However, the RAL elements will cause "result.exe" to insert various pieces of information into this stream of output at appropriate places, formatted according to the contents of the element. Shown below is an annotated "BBOARDRL.TPL", indicating in italics what happens at certain RAL elements. (Note that, as above, elements begin with the characters "{mx".) ##SPC1## The preceding example generates a page 100 for display on the user's Internet browser at the user's user computer 6, 8 as shown in FIG. 2. (The graphic listing the service name is not shown.) The page 100, displayed in bulletin board format, includes a number of action buttons 120-130, hyperlinks 134-144, a combo box 131, and a list of reports. The action buttons 120-130 are all used as commands to "result.exe". Each report is listed on a single line, with information about the report including the time of submission of the report by the contributor 102, the identity of the contributor 104, the number of pages 106 and size of the report 108, ticket symbols related to the report 110, whether a synopsis is available 111 and the report's headline 112. The user can select (e.g., click on) a headline and have the complete report transferred from the repository server 2 to the user computer 6, 8. The user can select an entry in the synopsis column and have the synopsis displayed. A refresh button 120, if selected, causes this same report to be regenerated, e.g., to include any new reports received since the this page 100 was generated. A search button 122, if selected, causes a query form to be generated, as explained in example 2 below. A summary button 124, if selected, causes a summary report to be generated. The summary report comprises a three column table, each row listing a contributor, the total number of research documents at the repository server 2 available for that user from that contributor and the total number of morning notes at the repository server 2 available for that user from that contributor. An AM Notes button 126, if selected, causes only morning notes to be displayed. A View All button 128, if selected, causes all headlines to be displayed, regardless of how many. A summary line 132 shows the total number of documents that satisfy the query (in this case, all documents that arrived at the repository server 2 since midnight) and the total number displayed. The profile hyperlink 134 brings up a page that allows users to configure profiles. The profiles are stored queries that can be recalled at later times. The profiles are stored against the users user id so they are unique to each user. The current list of profiles are displayed in the combo box 131. This allows the user to quickly specify a query without typing in the details every time. The portfolio hyperlink 136 brings up the portfolio creation and execution form. Portfolios are stored queries as well, but the queries are only based on tickers and date and document type. They represent information about particular companies. The alerts hyperlink 138 will run all portfolio and profiles, giving a summary of all new documents that have arrived that satisfies those queries. The preferences hyperlink 140 brings a large form that allows the user to customize their environment. They can specify their E-mail address, specify which format the bulletin board is in, suppress specific contributors, etc. The quotes hyperlink 142 simply hyperlinks to www.quote.com so the users have a convenient mechanism to obtain quotes. Similarly SEC Filings hyperlink 144 links to a web site to get SEC filings. EXAMPLE 2 Requesting & Query Form In the preceding example, the user "logged in" and was presented with a Bulletin Board. If the user wishes to make a query for documents that match certain criteria, he may then click the search button 122 on the Bulletin Board. This causes the Internet browser to form a request to the web server 4 to run "result.exe" again, but since the button is inside an HTML form, additional information is included in the request. First, when the request arrives at the web server 4, the ID is verified in the same manner described in the prior example, except that the dialog box for user name and password is not displayed, since the Internet browser provides that information as part of the request. Once the user is verified, the web server 4 start running "result.exe", but with input that indicates the "Search" button was selected on the previous form. The first thing "result.exe" does is to try to verify that the user is not attempting access with the same ID that another user is using. The "result.exe" program retrieves the value of the environment variable "HTTP.sub.-- COOKIE" which is provided by the web server 2 (as received from the HTTP "Cookie" value in the request from the Internet browser). The "result.exe" program attempts to find a value in the cookie named "mxauth". Since this is NOT the first time this user/browser has logged in, the "mxauth" value in the cookie is set to the value "result.exe" gave this user last time he was authorized. The "result.exe" program compares this value to the current authorization code it has stored for this user, and if the two do not match, it generates output that tells the user that access has been denied. If the values do match, then "result.exe" proceeds. By looking at the value for the CGI form variable "subaction", the "result.exe" program can determine that the user selected the query button 122 on his last request. At this point, the program selects an HTML template appropriate to this request, which is named "RESULTQ.TPL". To service a query form, "result.exe" connects to the appropriate database server 10, 13 as described in example one. Once connected, it then opens the HTML template, and starts generating output. An annotated version of the "RESULTQ.TPL" template is shown below. ##SPC2## The preceding example generates a page 200 for display on the user's Internet browser at the user's user computer 6, 8 as shown in FIG. 3. (The graphic listing the service name is not shown.) Using the document query page 200, the user can specify parameters for a search of reports located at the repository server 2. The user can specify one or more of the following parameters: symbol (202), period of time, from a drop down list box (204), keywords, and logical joins thereof (206), contributors (208), and industry groups (210). A symbol guide 220 is available if the user does not know a stocks ticker symbol, etc. A partial list of the HTML generated for the contributors list box (208) is shown below:
______________________________________
<SELECT NAME=contributors SIZE=6 MULTIPLE>
<OPTION VALUE="-1" selected>›All Contributors!
<OPTION VALUE=42>Adams, Harkness & Hill
<OPTION VALUE=47>Alex Brown & Sons
<OPTION VALUE=128>Auerbach Grayson & Co., Inc.
<OPTION VALUE=53>Brown Brothers Harriman & Co.
<OPTION VALUE=109>Chicago Corporation
<OPTION VALUE=157>Closed End Fund Digest
...
...
<OPTION VALUE="-2">=======================
</SELECT>
______________________________________
A submit button 212 allows the user to submit the query, as discussed in detail in example three below. A count only button 214 allows the user to request a count of all documents available to that user that satisfy the query parameters. A reset button 216, if selected, clears the form. A BBoard button, if selected causes a bulletin board to be created for the user, as per the first example above. EXAMPLE 3 The User Makes a Query In the preceding example, the user requested a form from which he could make a query. This example will step through the user's actions, and the result it produces. For this example, assume that the user has decided to select documents from Alex Brown & Sons, released over the last 30 days, that have the phrase "strong buy" in them. To do this, in the query form, the user selects the "Last 30 Days" item in the period of time combo box 204, enters "strong buy" (quotes included, to indicate a phrase instead of two independent words) in the keywords edit window 206, and selects "Alex Brown & Sons" in the contributors list box 208. To get the list of headlines that match this request, the user selects the submit button 212. The request that goes to the web server 4 at this point is to run "result.exe" again, but there is additional information about date, keywords, and contributors in the request. Fields are also defined for industries and ticker symbols, but they are empty fields because the user did not specify anything for them. After the web server 4 verifies the user (as described above), it starts the "request.exe" program with these form fields as additional input. The "request.exe" program determines from the input fields that a specific query is desired, and from the value of the "subaction" field (button 212) that the user wants a headline list, as opposed to a simple headline count, or a headline summary. The "request.exe" program selects the HTML template "RESULTRL.TPL", choosing the list format output (indicated by the "L" at the end of the file name) for just as it did for the first example. It constructs a headline query based upon the input fields for date, contributor, and keywords. It then submits the query to the full-text search server 13 (since there are keywords specified in the query). It then opens the HTML template, and fills in the elements from the result set of the query, in the same manner as for the Bulletin Board in the first example. The resulting page 300 generated for display on the user's Internet browser at the user's user computer 6, 8 as shown in FIG. 4. (The graphic listing the service name is not shown.) The page is similar in many respects to that shown in FIG. 2. A score column 402 shows a relevancy score. The summary line 404 shows the total number of documents that satisfy the query, the total number displayed and query search parameters. The user may then select a document by clicking on the document's headline. The document transfer process takes place as follows: The web server 4 issues a request to the relational database 11 asking whether the user is permitted to view the selected document. Assuming that the selected SQL server is available (if not, the backup procedure described above takes place), then the SQL server returns whether the use is so permitted. (Generally, access is permitted since user access rights are considered in the general query. If between the query and the request for the document those access rights change, the mechanism protects the document.) If the user is not permitted, then the web server 4 generates a HTML page using an error template. If the user is permitted, the requested document file is opened, the web server 4 generates the appropriate HTTP header and outputs it to STDOUT, and the document file is read and its contents is output to STDOUT. At the user computer 6, 8, the Internet browser program launches a helper application to allow the user to read, print and save the document. Although the invention has been described with reference to a particular embodiment and arrangement of parts, features and the like, the above disclosure is not intended to exhaust or limit all possible embodiment, arrangements or features, and indeed, many other modifications and variations will be ascertainable to those skilled in the art. For example, the central site 1 may distribute reports by other networks in addition to the Internet. FIG. 5 illustrates an enhanced system architecture according to the present invention. In the enhanced system, the central site 1 is also coupled to one or a number of viewer servers 30, 32. Typically, the viewer servers 30, 32 are located at a remote location with respect to the central site 1 and are coupled to the central site 1 over a proprietary network. Each viewer server 30, 32 includes a database 40, 42 and is coupled to one or a number of viewer workstations 34, 36, 38. The viewer workstations 34, 36 execute the Acrobat Exchange program, available from Adobe Systems, and the Multex Publisher.TM. Research Viewer program, by Multex Systems, Inc. The central site 1 maintains a distribution list that lists which viewer servers 30, 32 are permitted to receive reports from which contributors. (As a simple example, if viewer server A 30 is located at company ABC, Inc. and viewer server B 32 is located at company RST, Inc., then, for a particular report, the repository server may distribute the report to viewer server A 30 but not viewer server B 32.) When a report is received by the central site 1, the central site 1 transmits a task (i.e., a set of instructions for execution by the receiving server) to each viewer server 30, 32 that is permitted to receive that report that a new report has arrived. The permitted viewer server 30, 32 first enqueues the task on its respective task queue (each server has its own task queue), and then executes the task (in due course) to "pull" that report from the central site 1 and store it in their respective databases 40, 42. The viewer server 30, 32 will then cause the title of the report to be displayed on viewer workstations 34, 36, 38 that are used by investors who are permitted (as determined by the distribution level set by the contributor). Investors can also issue queries to the viewer server's database, which will return titles of relevant reports. The investor may then request a report, which is "pulled down" from the viewer server 30, 32 to the requesting viewer workstation 34, 36, 38. It is noted that the web server 4 and repository server 2 of the representative embodiment of the present invention can be implemented utilizing a logic circuit or a computer memory comprising encoded computer-readable instructions, such as a computer program. The functionality of the logic circuit or computer memory has been described in detail above. Generally, the present invention has practical application as it enables reports and other information to be distributed speedily and searched efficiently by authorized users in remote locations. Entitlement/Report Subsystem Each participating research provider ("contributor") may dynamically authorize ("entitle") and de-authorize ("disentitle") users to access selected individual documents, and document groups. Additionally, contributors may download reports regarding entitlements and document usage. In accordance with the present invention, each such capability is provided by an on-line real time entitlement/report subsystem. Referring to FIG. 6, contributor workstations 610, 620 (typically located at a site remote from the repository server 2) are selectively coupled to an entitlement/report subsystem server 630 via, for example, a Web server 640 (over the Internet) or over a proprietary network through a contributor server 650. The subsystem server 630 is additionally in communication with the repository server 2 of FIGS. 1 and 5 (not shown in this figure). Once workstations 610, 620 are connected to the subsystem server 630, the subsystem server 630 prompts the contributors (at the corresponding workstations 610, 620) to log-in with an ID and password. In the exemplary embodiment, the ID and password are verified by the subsystem server 630 (e.g., in the manner described above in connection with user verification). After the contributor has logged in, the subsystem server 630 presents the contributor (via the Internet as a web page or via a proprietary network) with an initial menu. An example of such a menu is illustrated in FIG. 7. As shown, the contributor may chose to create a report by clicking (i.e., selecting with an input device such as a mouse) "Reports" 710 or chose to review and/or modify user (subscriber) entitlement status by clicking "Entitlements" 720. If the contributor selects "Entitlements" 720, the subsystem server 630 presents the contributor with a selection page having a drop down box (810), an input box (820), and a number of action buttons (830-860) as illustrated in FIG. 8. Using this page, the contributor identifies to the subsystem server 630 the criteria for selecting subscribers whose entitlement status the contributor wishes to review and/or modify. The contributor first identifies what document group (or possibly what hypertext link) the contributor wishes to work with. Clicking on button 810 causes a drop down box (not shown) to appear listing document groups (associated with that particular contributor) from which the particular contributor may chose. The list may include, for example: Public--identifying public type documents; Internal--identifying contributor internal documents; or Technical--identifying technical documents. Alternatively, the list may include individual document titles or hypertext link names. As illustrated, a document group "Multex Tech Doc" has been selected. Next, the contributor may chose to display the entitlement status for subscribers by letter or may chose to display the status of all subscribers for the last 15 days (840), 30 days (850) or 60 days (860). Specifically, if the contributor wishes to display subscribers by letter, the contributor may, for example, display all new subscribers, i.e., new within the last N number of days (default is ALL days) whose names start with a particular letter of the alphabet. In that case, the contributor fills in the number of days (N) in the input box 820 and clicks a lettered action button 830. The contributor may click on "Other" to display subscribers whose names begin with non-alphabetic characters (such as, for example, 3Com). Alternatively, the contributor may display all new subscribers, i.e., new within the last 15, 30, or 60 days, by clicking "15 days" 840, "30 days" 850, or "60 days" 860 (respectively). In response to a contributor's selection of an action button (830, 840, 850, 860), the subsystem server 630 queries the repository server 2 for a list of subscribers meeting the selected criteria. The resulting list is transmitted to the subsystem server 630 for display to the contributor. FIG. 9 illustrates one exemplary subscriber list. Here, the contributor selected: i)"Multex Tec Doc" document group; ii) new subscribers within the last 15 days; and iii) the letter "Z." As illustrated, information for each subscriber is listed on a single line and includes the subscriber name 910, the subscriber's city 920, and whether the subscriber is currently entitled 930 (or disentitled 940) to access documents within the selected document group (here, Multex Tec Doc group). In this case, all of the listed subscribers are "disentitled" or prohibited from accessing documents in the selected document group (the "disentitled" circle of each subscriber is filled in). To modify entitlement status, the contributor clicks either the circle 931 below "Entitled" 930--filling in the "entitled" circle (if the subscriber is currently "disentitled") or clicks the circle 932 below "Disentitled" 940--filling in the "disentitled" circle (if the subscriber is currently "entitled") corresponding to the appropriate subscriber. The contributor submits the changes to the subsystem server 630 by clicking the "Submit" action button 950. Clicking on the "cancel" action button 960 cancels the operation. The contributor may then return to the initial menu (FIG. 7) by clicking the "exit" action button 970. The subsystem server 630 transmits the submitted changes to the repository server 2 where the changes are processed and the authorization lists appropriately updated. In the exemplary embodiment, the submitted changes are implemented in real time. However, in an alternate embodiment, the submitted changes may be implemented in batch-mode, for example, at night. It is contemplated that, in most cases, a particular contributor will be permitted to view and modify entitlement status only with respect to documents and document groups associated with (or contributed by) that particular contributor (during login procedures, the contributor identifies himself or herself with the ID and password). However, it is also possible that contributors will be permitted to view and modify entitlement status with respect to documents and document groups associated with related contributors or contributors who have authorized such viewing and/or modification. Particular subscribers or subscriber groups may have a default entitlement status for particular documents or document groups. Specifically, all subscribers may initially be "entitled" to access documents within the "Public" document group. However, perhaps only contributor's employees are initially "entitled" to access the contributor's internal documents while all other subscribers may be "disentitled." In one embodiment, contributors may set the entitlement status of subscribers to one setting for a predetermined period of time. After the expiration of that time, the entitlement status of some or all of the subscribers may automatically change. For example, a contributor may wish to initially "entitle" a small subset of subscribers--and "disentitle" everyone else--for 30 days, for a particular document or document group. The document or document group may contain information that is only sensitive for a certain length of time. After the expiration of the 30 days, however, the contributor may wish to have the entitlement status of some or all of the "disentitled" subscribers to change to "entitled." If the contributor wishes to create and download reports, the contributor selects "Reports" 720 from the initial menu (FIG. 7). As a result of a "Reports" selection, the subsystem server 630 displays to the contributor a report parameter selection page (FIG. 10). Using this page, the contributor identifies to the subsystem server 630 the type of report, which month's data to analyze, and what format the report should be in. As the result of selecting button 1010, a drop down box 1011 is displayed, listing the types of reports from which the contributor may chose. Here, the contributor may chose "Usage" (usage reports were described above) or "Entitlements." Other reports are, of course, possible. Entitlement reports provide information such as users/subscribers entitlement status for each document group, each individual document, and/or each hypertext link. In this representative embodiment, the contributor also selects which month's data should be analyzed for the report by typing a month in the input box 1020. Here, if the contributor types "12/96" into the input box 1020, the data for the month of December, 1996 is analyzed. Finally, the contributor selects the format of the report to be downloaded to the contributor's workstation 610, 620. Clicking button 1030 results in the display of a drop down box (not shown) listing the possible report formats. The formats may include, for example, Excel 5.0, WordPerfect 6.1, Microsoft Word, etc. Other report formats are possible. Here, Excel 5.0 has been selected as the report format. The contributor submits the report parameters to the subsystem server 630 by clicking on the "Download" button. Once the subsystem server 630 receives the parameters, the subsystem server 630 transmits the parameters to repository server 2 in the form of a query. The repository server 2 processes the query and transmits the results back to the subsystem server 630 for downloading (in real time) to the contributor's workstation 610, 620 in the selected format. Although, for ease of description, the report/entitlements subsystem has been described in terms of an on-line combined subsystem for report functions and for entitlement status viewing/modification functions, it will be understood that each such function may be provided (if at all) by a separate subsystem--a report subsystem for reports and an entitlement subsystem for entitlement status viewing/modification. Such functions may also be performed in a batch-mode. Restriction Processing Even though a user or may be "entitled" to review documents within a particular document group, in an exemplary embodiment of the present invention, a user may still be prevented from accessing, or possibly even listing particular research documents related to a particular company based on the "restriction" status and/or the "review" status of the company relative to the contributor of the research documents, in order to comply with SEC laws. The present invention provides a mechanism for a contributor to dynamically identify to the system the "restriction" status and/or the "review" status of particular companies (relative to that contributor). The present invention also provides a mechanism for controlling the display of document titles and the access of documents based on, in part, such status. Identification Of Status In the exemplary embodiment of the present invention, each participating contributor may identify the "restriction" and "review" status of one or any number of companies relative to that contributor. The restriction and review status include, for example: "restricted": the contributor has a current banking or financial interest in the company; "under review": an external event occurred which may affect the contributor's opinion of the company; and "under extended review": the company is not being covered by the contributor, thus previous reports are no longer valid; or the contributor is having discussions with the company about a relationship involving a banking interest. Other status options are, of course, possible. FIG. 11 illustrates the overall system architecture of one possible system supporting the dynamic identification of "restriction" and "review" status by contributors. Referring to FIG. 11, contributor workstations 1110, 1120 (typically located at a site remote from the repository server 2) are selectively coupled to a restriction subsystem server 1130 (which includes a restriction database 1135) via, for example, a Web server 1140 (over the Internet) or over a proprietary network through a contributor server 1150. The subsystem server 1130 is additionally in communication with the repository server 2 of FIG. 5 (or FIG. 4) (not shown in this figure). The restriction subsystem server, and corresponding restriction database 1135, manage and store records related to the "restriction" status of companies relative to particular contributors. Each record may include the following fields: CtbID: the identification of a contributor; Symbols: the ticker symbol associated with a company; Xchange: on which stock exchange the ticker symbol is listed (e.g., NYSE); SymbolName: the name of the particular company associated with the ticker symbol; Restricted: the restriction status of the company relative to the contributor (e.g., "Y" for yes or "N" for no).; RestrictedDate: the date the restriction status was changed; RestrictedTime: the time the restriction status was changed; Review: the review status of the company relative to the contributor (e.g., "Y" for "under review", "N" for "not under review", and "X" for "under extended review"; ReviewDate: the date the review status was changed; and ReviewTime: the time the review status was changed. Auto-contribution Updates The contributor may use the "auto-contribution" program to transmit a file to the restriction subsystem server 1130 (via, for example, the web server 1140 or contributor server 150) which provides the server with restriction database updates. An exemplary file is listed below:
______________________________________
›IDENTIFIERS!
CtbID=2 //id of contributor company//
UserID=MC //id of particular user//
Password=MC //user password//
RecordType=CST
Action=UPD //this is an update//
›RESTRICTIONS!
Restricted=Y //restricted//
RestrictDate=10/11/95
RestrictedTime=12:59:01
Review=X //under extended review//
ReviewDate=10/10/95
›Symbols!
Primary= | ||||||
