US20060242266A1 - Rules-based extraction of data from web pages - Google Patents

Rules-based extraction of data from web pages Download PDF

Info

Publication number
US20060242266A1
US20060242266A1 US11/379,987 US37998706A US2006242266A1 US 20060242266 A1 US20060242266 A1 US 20060242266A1 US 37998706 A US37998706 A US 37998706A US 2006242266 A1 US2006242266 A1 US 2006242266A1
Authority
US
United States
Prior art keywords
rule
web page
item
computer
web
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US11/379,987
Inventor
Paula Keezer
Brad Tofel
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to US11/379,987 priority Critical patent/US20060242266A1/en
Publication of US20060242266A1 publication Critical patent/US20060242266A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q30/00Commerce
    • G06Q30/06Buying, selling or leasing transactions
    • G06Q30/0601Electronic shopping [e-shopping]
    • G06Q30/0641Shopping interfaces
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking

Definitions

  • This invention relates generally to the Internet and the World Wide Web and, more particularly, the invention relates to methods and systems for identifying items represented on web pages and for providing supplemental information about items represented on web pages.
  • Web pages provide a highly flexible and effective medium for presenting information to people.
  • the information on any particular web page is generally not, however, optimized for substantive analysis by machine or computer.
  • One type of substantive analysis of a web page that can be automated is a determination as to what item or items are represented on a web page.
  • An item can be any identifiable thing, such as a product, a service, a job listing, a company, or a person.
  • Prior technology has generally relied upon regular expression matching, which can be unreliable and which may require substantial processing.
  • the present invention seeks to address this problem among others.
  • the present invention utilizes the Document Object Model (DOM) representation of a sampled web page to create a rule that extracts data from web pages having a similar DOM structure to the sampled web page.
  • DOM Document Object Model
  • the DOM is an object-oriented interface supported by most popular web browsers through which a displayed web page can be accessed and manipulated.
  • the DOM provides a structured graph representation of a web page with nodes that represent each HTML (Hypertext Markup Language) tag.
  • a preferred embodiment utilizes the structural representation of web pages provided by the DOM to provide a powerful tool through which items can be identified on web pages.
  • the DOM is a well-documented utility that has been dealt with at length by the World Wide Web Consortium (www.w3.org).
  • World Wide Web Consortium www.w3.org
  • One skilled in the art will be familiar with the DOM and therefore the details of the DOM will not be presented herein.
  • the present invention refers the Document Object Model in particular, it will be apparent to one skilled in the art that other representations of web pages that allow the identification of page elements based upon the structure of a page can be used.
  • a rule is created based upon the DOM or other structured graph representation of a first web page and subsequently applied to a second, structurally similar web page, in order to extract data related to an item represented on the second web page.
  • the item-related data that are extracted preferably include item-identifying data that can be used to identify the item represented on the second web page.
  • the item-identifying data can include any data by which an item is represented on a web page, such as the name of an item. The item-identifying data can then be used to identify the item by matching it to an item within a database of item-identifying data.
  • a client application executes on a user computer in conjunction with a web browser.
  • the client application retrieves a rule from a data server based upon the URL of a web page loaded by the web browser.
  • the client application then applies the rule to the web page to extract item-identifying data from the web page.
  • the client application then provides the item-identifying data to the data server.
  • the data server identifies the item by matching the item-identifying data to an item in a database.
  • the data server retrieves supplemental information about the item from the database and supplies the supplemental information to the client application to be displayed on the user computer.
  • the tasks of retrieving and applying the rule may alternatively be performed in-whole or in-part by a computing device other than an end user's computer, such as a special proxy server, the data server, or a computer system used to crawl and index web pages.
  • the present invention is used to identify products on web pages of web-based retailers.
  • Retail web sites generally use pages of similar structure to display items for sale.
  • a rule is created based upon one web page of a retailer, and the rule is then applied to identify products on other pages hosted by the retailer.
  • supplemental information about the identified product such as alternative retailers from which the product can be purchased, can be provided to a user (e.g., as web page metadata).
  • a data server is configured to crawl through a web site and apply rules to target pages in order to identify and catalog the representation of products on web pages.
  • rules can be configured such that the extracted item-related data includes supplemental item information, such as the price of a product, in addition to the item-identifying data.
  • the extracted supplemental item information can be stored in association with an identification of the item in a database. The stored supplemental item information can then be supplied to users, such as in response to subsequent requests for information about the item.
  • Item data extracted from web pages according to the invention may be used for a variety of other purposes.
  • the collected data may be used to build a database that can be queried by users to locate information about product offerings, auctions, job listings, apartment rentals, or other types of items.
  • FIG. 1 illustrates a system in accordance with one embodiment of the present invention.
  • FIG. 2 illustrates a web browser user interface as it would be viewed by a user in accordance with one embodiment of the present invention.
  • FIG. 3 illustrates an example web browser user interface as it would be viewed by a tagger (person creating rules) in accordance with one embodiment of the invention.
  • FIG. 4 illustrates a general method for creating rules in accordance with one embodiment of the present invention.
  • FIG. 5 illustrates a method through which structural tags are created in accordance with one embodiment of the invention.
  • FIG. 6 illustrates a method through which rules are applied to provide information about items in accordance with one embodiment of the invention.
  • FIG. 7 illustrates a method through which a rule is applied in accordance with one embodiment of the invention.
  • FIG. 8 illustrates a method through which a structural tag is applied in accordance with one embodiment of the invention.
  • FIG. 9 illustrates a method in accordance with which information about an item can be collected and then redistributed as supplemental item information.
  • FIG. 1 illustrates a system 100 in accordance with one embodiment of the present invention.
  • a user 102 browses the web through an Internet-connected computer 104 running a web browser 106 .
  • the user 102 causes the web browser 106 to retrieve a web page 110 from a web server 192 .
  • the web server 192 may be operated, for example, by a retailer or a content provider 190 .
  • web pages are typically coded in HTML, web pages may be created or coded using other formats.
  • a web page may be coded using XML, VoiceXML, or other markup languages.
  • the web browser 106 Upon receiving the web page 110 , the web browser 106 creates a structured graph representation 112 of the web page 110 , such as the Document Object Model (DOM).
  • DOM Document Object Model
  • Currently available web browsers 106 such as Netscape Navigator and Internet Explorer, are typically configured to create the structured graph representation 112 in order to allow a web page 110 to be dynamically manipulated by code, such as JavaScript, embedded in the web page itself
  • An information provider 120 can be an organization or entity that provides supplemental information about items displayed on web pages.
  • the information provider 120 preferably provides the supplemental item information through a set of client web pages 114 loaded and displayed by the web browser 106 on the user's computer 104 .
  • a client application 116 preferably executes in conjunction with the web browser 106 on the user's computer 104 and communicates with a data server and database 122 operated by the information provider 120 .
  • the client application 116 preferably operates in conjunction with the data server and database 122 in order to identify items on web pages and provide supplemental information about identified items.
  • the data server and database 122 may be embodied as a combined unit on a single computer. Alternatively, the data server and database 122 may be implemented on one or more computers, which can be geographically remote from one another. The data server and database 122 is preferably also connected to and accessible via the Internet.
  • the functionality of the client application 116 can be incorporated in one or more of the client web pages 114 through embedded code such as JavaScript.
  • the browser 106 loads a client web page 114 from the data server 122 in a new window or frame. When the client web page 114 is loaded, the embedded code is automatically executed.
  • the client application 116 may additionally or alternatively be a plug-in or applet that runs within or alongside the web browser 106 . In one embodiment, some or all of the functionality of the client application 116 can be incorporated into the web browser 106 itself as a standard feature.
  • the data server 122 maintains a database of rules 124 .
  • the database of rules 124 preferably stores a set of rules for each domain for which items are to be identified. Since the web pages within a single domain may have many different structures, many different rules may be included in the set of rules for a particular domain.
  • the data server and database 122 may additionally or alternatively associate sets of rules with families of URLs to account for web sites that do not have their own domain names (e.g., home pages). A family of URLs may be specified by a domain plus an optional file path to a root directory.
  • Each rule can be applied by the client application 116 to extract item-related data from a web page having a certain structure.
  • each rule is made up of structural tags 125 , each of which identify an element of item-related data.
  • the extracted item-related data preferably include item-identifying data, which can be used to identify an item.
  • the item-related data may also include supplemental item information, such as a price, which may be information related to the item, but need not necessarily serve to identify the item. Any supplemental item information that is extracted can be stored in the database 122 and provided when the same item is identified subsequently on another web page.
  • the client application 116 identifies the URL of the target web page 110 loaded by the web browser 106 and relays the URL to the data server 122 .
  • the data server 122 identifies the domain associated with the supplied URL and returns a set of rules associated with the domain to the client application 116 , preferably in a new client web page 114 .
  • the client application 116 applies the rules to extract item-related data, including item-identifying data, from the structural graph representation 112 of the web page.
  • the client application 116 then supplies the extracted item-related data to the data server 122 .
  • the data server 122 receives the item-related data and attempts to match the included item-identifying data to an item.
  • the data server and database 122 maintains item-related data 126 .
  • the item-related data 126 preferably include item-identifying data as well as supplemental item information.
  • the database 122 identifies items by matching the received item-identifying data to item-identifying data in the database.
  • the item-identifying data may include, for example, an item name, a manufacturer, a product number, a UPC number, and/or the name of a commonly used image of the item.
  • the supplemental information can be any information, such as a price, that the information provider 120 wants provide to the user through the client application 116 .
  • supplemental item information include textual descriptions of items, customer reviews of items, images of the items, an indication of whether the item is offered for sale at another location, an indication of whether an item is in stock at another location, and an indication of the method by which the item is offered for sale (e.g., auction, outright) at another location.
  • the database of item-related data 126 may be populated with data each time the client application applies a rule that extracts supplemental item information. Each time the data server 122 receives item-related data, the data server 122 can store any supplemental item information in the database in association with the item-identifying data.
  • the database of item-related data 126 may be populated using a search engine or a web crawler 128 in accordance with known techniques. Several techniques are known and used by shopping web sites (e.g., shopping.com) to locate multiple on-line retailers for a product and to identify retailers offering a product for the lowest price.
  • item-related data can be obtained in real time upon the request for information by the client application 116 by using a search engine.
  • item-related data can be obtained from existing databases, such as databases of product information that are maintained by many retailers.
  • Information about items other than products may be obtained from reference sources, web-based search engines, or other sources.
  • the data server 122 associates the received item-identifying data with an item, the data server returns a set of item information, preferably including supplemental item information, to the client application 116 .
  • the data server 122 preferably incorporates the item information into a client web page 114 , which is provided to and displayed by the web browser 106 .
  • any of a variety of other interface methods may be used to present the item information.
  • the original web page 110 could be supplemented with the item information or with links to such information. Examples of user interface methods that may be used for this purpose are described in U.S. Provisional Appl. No. 60/199,569, filed Apr. 25, 2000, the disclosure of which is hereby incorporated by reference.
  • the information provider 120 preferably uses a rule creation and tagging application 130 .
  • the rule creation and tagging application 130 is implemented through JavaScript embedded in a set of tagging web pages 136 that are displayed by a web browser 132 running on an Internet-connected computer 134 .
  • the rule creation application 130 may additionally or alternatively be a plug-in or applet that runs within or alongside the web browser 132 .
  • the term “tagging” will generally be used herein to refer to the process of creating rules by identifying nodes (which are defined by HTML or other tags) with the DOM or other object model of a web page.
  • the information provider 120 preferably assigns to a tagger (who may be an employee of the information provider) the task of tagging nodes and creating rules using the computer 134 , the web browser 132 , and the tagging application 130 .
  • the tagger loads the web browser 132 with a reference web page 138 containing an item.
  • the web browser 132 Upon receiving the reference web page 138 , the web browser 132 creates a structured graph representation 140 of the reference web page 138 .
  • the tagger uses the tagging application 130 to create rules by tagging item-identifying nodes within the loaded web page 138 .
  • the information provider 120 may additionally or alternatively allow users 102 or other people to act as taggers and create rules.
  • the information provider 120 may allow users 102 to perform tagging.
  • an automated tool or program could be created and configured to create rules. The process of creating rules from the perspective of the tagger and the process of using rules from the perspective of the user will be discussed in the next section.
  • the present invention is configured to apply rules to identify items (typically products) offered for sale within web pages. Once a product has been identified, an information provider provides supplemental information about the product to a user browsing the web page.
  • the supplemental information may be alternative locations, preferably with corresponding prices, from which the item may be purchased.
  • the identified item need not be a product offered for sale and may be any identifiable thing that can be presented or represented on a web page (e.g, a person, an event, or a place).
  • the supplemental information provided about the item may be any information that the provider of the information wants to provide.
  • FIGS. 2 and 3 illustrate, from the user's perspective, the example application and creation, respectively, of a rule that identifies books on certain web pages located within a certain domain (e.g., store.com).
  • the web page 212 illustrated in FIG. 2 is similar (possibly identical) in its layout and structure to the web page 312 of FIG. 3 .
  • the only difference between the two pages may be the information that is displayed in each of the corresponding locations on each of the respective pages 212 and 312 .
  • FIGS. 2-3 are discussed in additional detail below.
  • FIG. 2 illustrates a web browser user interface 200 as it would be viewed by a user in accordance with one embodiment of the present invention.
  • the user interface 200 includes a main window 210 , which displays a target web page 212 upon which an item is offered for sale or otherwise presented.
  • the web page 212 includes one or more elements 220 of identifying data by which the item can be identified. These elements 220 may include, for example: a category 222 (e.g., Books), a name 224 (e.g., “A Year in Brussels”), an Author or Manufacturer 226 (e.g., Peter Mayle), and a Product Number or ISBN 228 (e.g., 0679731148).
  • the target web page 210 is located at a domain 230 (e.g., store.com), which may be operated by an on-line retailer 190 ( FIG. 1 ).
  • the web browser user interface 200 also includes a client web page 242 , which is preferably loaded by the client application 116 into a client sidebar 240 .
  • the sidebar 240 may be another window displayed alongside of the main browser window 210 .
  • the client web page 242 provides an identification 244 of one or more items presented on the target web page 210 and presents supplemental information 246 about the identified item or items.
  • the client web page 242 is titled “PRODUCT INFORMATION” since the information provider 120 in the present example generally supplies supplemental information about products offered for sale.
  • the information provider 120 may be an entity that accumulates and provides supplemental information about products offered for sale on-line.
  • the information provider 120 has identified the item named “A Year in phenomenon” on the target web page 210 and has identified two alternative locations from which the item can be purchased along with the associated prices.
  • FIG. 3 illustrates an example web browser user interface 300 as it would be viewed by a tagger (person creating a rule) in accordance with one embodiment of the invention.
  • the user interface 300 includes a main browser window 310 , which displays a reference web page 312 .
  • the reference web page 312 based upon which this rule is created is similar in structure to the web page 210 to which the created rule is applied.
  • the only difference between the example pages illustrated FIGS. 2 and 3 is that some of the elements 220 that identify the two items are different.
  • the name 224 of the item is “Under the Tuscan Sun: At Home in Italy,” the Author or Manufacturer 226 is Frances Mayes, and the Product Number or ISBN 228 is 0767900383.
  • the web page 312 of FIG. 3 has the same domain 230 (store.com) and category 222 (Books) as the web page 210 of FIG. 2 .
  • the HTML structure (and structured graph representation) of the reference web page 312 based upon which the rule is created should be similar to the HTML structure (and structured graph representation) of the web page 210 to which the rule is applied.
  • a rule may still be successfully applied, however, even if there are differences between the structures of the pages, since certain structural differences may not affect application of the rule. If a rule is applied to a web page with a substantially different structure, the application of the rule may fail.
  • the tagger's web browser user interface 300 includes a rule creation (tagging) web page 342 , which is loaded by the rule creation and tagging application 130 into a rule creation sidebar 340 .
  • the sidebar 340 can be an additional frame or window displayed by the web browser 132 .
  • the rule creation web page 342 provides an interface (e.g., titled “Create New Rule”) through which rules can be created.
  • the rule creation web page 342 preferably also includes the code of the tagging application 130 , which is executed by the web browser when the page 342 is loaded.
  • the rule creation web page 342 and tagging application 130 allow the tagger to interactively use the reference web page 312 in the main browser window 310 as a template for creating the new rule.
  • the rule creation web page 342 can include a text box 350 into which the tagger can type a rule name, for example, “books.”
  • each rule is made up of a set of components, called structural tags.
  • Each structural tag identifies a tagged element within the structured graph representation (Document Object Model or DOM) of a web page.
  • the rule creation web page 342 ( FIG. 3 ) provides a table 352 through which structural tags can be configured.
  • a basic structural tag preferably includes four properties including: a Name, a Path, an Attribute, and a Required Flag.
  • the Name property of a structural tag can be used to indicate the type of information represented by the tagged element.
  • the example rule creation web page 342 FIG. 3
  • the Path property of a structural tag can be thought of as a sequence of turns to take to traverse from a known reference point in the structured graph representation or DOM to the node containing the tagged element.
  • the traversal begins at the top-level document (e.g., the root of a tree in a structural graph representation) and proceeds by traversing to the specified child of each node as specified by the Path until the tagged node is reached.
  • the path may also reference any named nodes if any nodes along the path have names, in traversing to the tagged node.
  • the tagger In order to set the path property of a structural tag, the tagger highlights or selects some data in the reference web page 312 . In FIG. 3 , the tagger has highlighted “Under the Italian Sun” in the web page 312 as shown. The tagger then selects the “train” button 354 next to the name of the structural tag. In response, the Javascript of the rule creation web page 342 identifies the node within the DOM of the web page 312 containing the selected data and creates a path leading to the node.
  • the Attribute property of a structural tag is a DOM identifier that is used to obtain the element of interest from the tagged node. Attributes may be, for example, innerText, nodeValue, src, or title. In one embodiment, the Attribute of a structural tag is also determined automatically by the rule creation web page 342 when the path is created.
  • the element located at a node (the Value in FIG. 3 ), rather than the path to the node, is presented to the tagger in the table of structural tags 352 .
  • the tagger can verify the path to the node by the verifying the Value of the identified node which represents the extracted element.
  • the tagger has selected the text: “Under the Italian Sun: At Home in Italy.”
  • the rule creation web page 342 identifies the node containing the selected text and automatically creates a path to this node. The page 342 then extracts the data from this node and displays the data next to the Item Name so that the tagger can verify that the correct node was identified.
  • the path to the identified node is used to obtain the data at a corresponding node in a structurally similar web page.
  • a structural tag “hits” when the Path returns a single tagged node and the Attribute of the tagged node yields data that is not blank.
  • one or more nodes in the Path may not be present and the structural tag may not hit.
  • the tagged node may contain no data in which case the structural tag will not hit.
  • the Required Flag property is used to indicate whether a particular structural tag must “hit” in order for the rule to succeed.
  • the Required Flag is set by the tagger using a pop up window associated with the structural tag.
  • the structural tags named Item Name, Author/Manufacturer, and Product Number in the rule creation web page 342 of FIG. 3 are basic structural tags.
  • the Category structural tag of FIG. 3 is a matching structural tag, which is configured to identify a node having a particular value.
  • a matching structural tag includes two additional properties called Matchtext and Matchvalue.
  • the Matchtext property defines a value that is expected to be found at the tagged node.
  • the rule first determines whether the Attribute (tagged element) of the tagged node yields a value, like a basic structural tag. If a value is found, the value is then compared to the Matchtext property. If the value matches the Matchtext, then the matching structural tag hits. If the matching structural tag hits, the Matchvalue is returned as the value of the tag.
  • the MatchValue of a matching structural tag may be the same as the Matchtext or it may be different.
  • the information provider may wish to categorize all books using a lower case identifier by setting the Matchvalue to “books.”
  • the Matchtext may be “Books” but the information provider may wish to categorize books together with music and therefore the corresponding Matchvalue may be a text string “books and music.”
  • the Matchtext and Matchvalue properties may each have multiple corresponding values.
  • the multiple Matchtext and Matchvalue values can be stored in a two-dimensional array. If any of the Matchtext values match, then the corresponding Matchvalue can be returned.
  • regular expressions or other types of matching can be supported by the MatchText property. Regular expressions increase the power and flexibility of a text matching tag.
  • the rule creation web page 342 can be configured such that the properties of each structural tag can be set using a pop up window.
  • the pop up window might be brought up automatically after the train button 358 is selected.
  • Various alternative implementations are possible as will be recognized by one skilled in the art.
  • the number of structural tags in a rule and certain properties of the structural tags are determined in advance of the tagging process.
  • the data server 122 can be configured to identify items based upon certain item-identifying data.
  • the number and names of the structural tags can be configured in advance to conform to and supply the data based upon which the server 122 identifies items.
  • the tagger sets all of the properties of the structural tags for a rule, the rule is complete.
  • the tagger can drive the main browser window 310 to another page that appears to have a similar structure.
  • the rule creation application 130 can be configured to apply the newly created rule to the other web page such that the value associated with each element is displayed in the table of values. The tagger can then confirm that the rule correctly extracted the desired elements from the new web page.
  • FIG. 4 illustrates a general method 400 for creating rules in accordance with one embodiment of the present invention.
  • a tagger runs a rule creation application 130 .
  • the tagger loads a tagging web page 136 into the web browser 132 .
  • the tagging web page 136 preferably contains the code (e.g., JavaScript or other code) of the rule creation application 130 , which is then executed by the web browser 132 .
  • the code of the rule creation application 130 is included in a sequence of tagging web pages 136 , each of which provides the code of a portion of the tagging application 130 .
  • the file alxpath.js in the Computer Program Listing Appendix includes code that provides rule creation functionality in accordance with one embodiment of the invention. Some of the functions referenced in the file alxpath.js, however, are found in the file alxstag_client.js, which includes code for a corresponding client application 116 .
  • the tagger loads a reference web page 312 into a main web browser window 310 .
  • the reference web page is used by the tagger and the rule creation application as a reference based upon which to create a rule.
  • the step 404 may be performed before the step 402 .
  • the tagger supplies and the rule creation application receives a name for a new rule.
  • the name can be used to keep track of and identify the new rule.
  • the rule creation application identifies the reference web page in the main browser window.
  • the rule creation application can identify the reference web page by obtaining a handle to the DOM of the web page and obtaining the URL of the reference web page.
  • the tagger identifies a reference item on the reference web page 312 .
  • the tagger can identify the reference item by observing one or more elements 220 of item-identifying data.
  • the reference item is preferably an item that is prominently displayed so that other pages with a similar structure will also contain other items in structurally similar locations.
  • the tagger uses the rule creation application to interactively create one or more structural tags based upon the reference item on the reference web page 312 .
  • the rule creation application can be pre-configured to prompt the tagger to create a number of structural tags.
  • the page is configured to allow the tagger to create four structural tags named Category, Item Name, Author/Manufacturer, and Product Number. The process of creating structural tags will be described in additional detail below with reference to FIG. 5 .
  • the rule creation application associates the structural tags, the domain of the reference web page, and the name of the new rule.
  • the rule creation application encodes the new rule as an XML (Extensible Markup Language) document that contains definitions of the structural tags, the domain name, and the name of the rule. Accordingly, the new rule can be catalogued by domain name and the name of the rule.
  • XML Extensible Markup Language
  • the rule creation application stores the new rule on the data server 122 .
  • the rule creation application 130 forwards the document to the data server 122 for storage in a database.
  • FIG. 5 illustrates a method 500 through which structural tags are created in accordance with one embodiment of the invention that uses the Document Object Model of a web page.
  • the method 500 represents one embodiment of the step 410 of the method 400 .
  • the tagger selects some content or data on the reference web page 312 .
  • the content should serve to identify the reference item and should match the name of the structural tag being created. For example, if the name of the structural tag is “Item Name” then the selected content should be the name of the reference item on the reference web page.
  • the tagger provides and the rule creation application 130 receives an instruction to create a structural tag.
  • the tagger clicks a “train” button 354 ( FIG. 3 ), which is detected by the rule creation application.
  • the rule creation application detects the selection of some content in the main browser window.
  • the rule creation application identifies the DOM node containing the selected content.
  • the rule creation application identifies a node attribute of the identified DOM node that contains the selected content.
  • the rule creation application creates a structured graph representation (DOM) path to the node containing the selected content.
  • DOM structured graph representation
  • the format of the DOM path is determined by the particular implementation and should be configured to be read by a compatible client web page 114 .
  • the DOM path is represented by a comma-separated list of types of nodes and indices.
  • a path may be defined as “t,1,t,2,0,1” where the letter “t” denotes a table, and where children are identified by a zero-based index for each node.
  • This example path will instruct a compatible client web page to start at the top level of the DOM, to traverse through the top node's children to the second table (denoted by the 0-based index “1”), then to traverse through this node's children to the third table (denoted by the 0-based index “2”), then to traverse through this node's children to the 1st child, and then to traverse through this node's children to the second child.
  • the tagger selects and the rule creation application receives selection of a Required Flag value.
  • the Required Flag indicates whether this structural tag must hit in order for the rule containing the structural tag to succeed.
  • the tagger selects and the rule creation application receives selection of a Matchtext value and a Matchvalue value.
  • the Required flag, the Matchtext, and the Matchvalue may be entered by the tagger through a pop up window or any other user input mechanism.
  • the rule creation application associates the node attribute, the path, the Required Flag, the Matchtext, the Matchvalue, and the tag name. In one embodiment, these variables are stored in association with each other in an XML document.
  • FIG. 6 illustrates a method 600 through which rules are applied to provide information about items in accordance with one embodiment of the invention.
  • the user runs a client application 116 in conjunction with a web browser 106 .
  • the user loads a client web page 114 into the web browser 106 .
  • the client web page 114 preferably contains the code (e.g., JavaScript or other code) of the client application 116 that is executed by the web browser 132 .
  • the web browser 106 can be configured to automatically load the client web page 114 in a separate window or sidebar.
  • the client application 116 can be configured to be automatically loaded each time the user executes the web browser 106 .
  • the file alxstag_client.js in the Computer Program Listing Appendix includes code that provides the client application functionality in accordance with one embodiment of the invention.
  • the user drives the main window of the web browser to a target web page 210 .
  • the step 604 can be performed before the step 602 .
  • the client application identifies the URL of the target web page 210 in the main window 210 of the web browser 106 .
  • the client application can identify the target web page by obtaining a handle to the DOM of the web page and obtaining the URL of the target web page.
  • the client application provides the URL of the target web page to the data server 122 .
  • the data server identifies rules based upon the domain of the supplied URL.
  • the server may alternatively or additionally look up a rule based upon a URL family in the case that it appears a web site is a home page or does not have its own domain name.
  • the data server 122 provides the identified rules to the user computer 104 .
  • the rules can be embedded as additional code within the client application in a new client web page 114 .
  • the new client web page 114 is loaded by the web browser 106 and the rules are applied by executing the code embedded in the web page 114 .
  • the rules are provided in an XML document that is received by the client application.
  • the user computer 104 receives the rules and applies the rules to the target web page 210 .
  • the web browser 106 executes the additional client application code embedded in a new client web page 114 received from the data server 122 .
  • the client application can receive the rules (e.g., in an XML document) and apply the rules.
  • one or more rules succeed and yield item-identifying data.
  • the client application provides a set of item-identifying data to the data server 122 . The process of applying rules, determining success, and providing item-identifying data will be described in additional detail below with reference to FIGS. 7 and 8 .
  • the data server 122 attempts to identify an item for each set of received item-identifying data.
  • the data server searches a database of items based upon the item-identifying data.
  • the database preferably indexes items based upon item-identifying data and includes additional information on each item.
  • the data server 122 optionally performs a search for item information based upon the supplied item-identifying data.
  • the data server 122 may search on the World Wide Web using a search engine or through other sources for information.
  • the data server 122 provides item information for identified items to the user computer 104 .
  • the user computer 104 receives and displays the item information.
  • the data server 122 provides the item information in the form of a new client web page 114 to be displayed by the web browser 106 .
  • the new client web page can be configured to display the item information and may also include additional client application code to initiate the method 600 again.
  • FIG. 7 illustrates a method 700 through which a rule is applied in accordance with one embodiment of the invention.
  • the client application 116 identifies the DOM of the target web page 210 .
  • the client application applies each structural tag of a rule to the DOM of the target web page. The process of applying structural tags will be described in additional detail below with reference to FIG. 8 .
  • the client application determines whether each structural tag having its required flag set has hit. If each structural tag with its required flag set hits, the rule succeeds. On the other hand, if one or more of the structural tags with their required flags set does not hit, then the rule fails.
  • FIG. 8 illustrates a method 800 through which a structural tag is applied in accordance with one embodiment of the invention.
  • the client application 116 traverses the DOM path specified by the structural tag to a node.
  • a Javascript function takes the DOM path in a string format, begins at the document level of the DOM, and traverses through the DOM structure to the node specified by the path.
  • the client application determines whether a single node exists at the end of the specified DOM path. If a single node is not found, the application of the structural tag fails, and the method 800 ends. On the other hand, if a single node is found, the method proceeds to a step 806 .
  • the client application determines whether the single node at the end of the DOM path has a non-blank attribute that is specified by the structural tag. If the node does not have a non-blank attribute, then the structural tag fails and the method 800 ends. On the other hand, if the node does have a non-blank attribute, and the method proceeds to a step 808 .
  • the client application determines whether the Matchtext property has been defined/set. If the Matchtext property is not set, the structural tag is not a matching structural tag and no further analysis is necessary. Therefore, the tag hits and the method proceeds to a step 810 .
  • the client application returns the attribute of the node as an element of item-identifying data.
  • the element of data is then assembled with other data elements obtained from other structural tags.
  • the elements of item-identifying data are then transmitted to the data server 122 in accordance with the steps 616 et. seq. of the method 600 .
  • the structural tag is a matching structural tag and the method proceeds to a step 812 .
  • the client application determines whether the node attribute value matches the Matchtext. If so, the matching structural tag hits and the method proceeds to a step 814 .
  • the client application returns the Matchvalue as the element of item-identifying data in a manner similar to the step 810 .
  • item-related data that is supplied by the client application 116 is used to populate the database of item-related data 126 .
  • the data server 122 Each time the data server 122 receives item-related data from the client application, the data server updates the database of item-related data 126 to include the newly received item-related data.
  • a structural tag configured to extract a price is added to a rule configured to identify products on a retail web site.
  • the rule retrieves the price of an item in addition to other item-identifying data, such as the title, author, or ISBN of a book. The price is then returned to the data server in conjunction with the other item-related data and stored in the database.
  • the price of the item shown at a particular URL or domain can be associated with that URL or domain in the database.
  • the URL or domain information is preferably sent to the data server 122 in the initial request for a rule by the client application.
  • the URL or domain information may, however, also be included with the item-identifying data supplied by the client application to the data server.
  • this information can be provided in response to subsequent requests for supplemental product information about the same item.
  • data about items other than products may be collected or data other than price information may be collected.
  • FIG. 9 illustrates a method 900 in accordance with which information about an item can be collected and then redistributed as supplemental item information.
  • a first rule is configured to extract item-related data including supplemental item information and item-identifying data, from a target web page within a domain or web site.
  • the rule can be configured to include a structural tag has a DOM path to the price of an item. Although the price would not ordinarily be used to identify an item, the price of the item is valuable information that can be subsequently supplied as supplemental item information.
  • the first rule is supplied by the data server and applied to a first web page being browsed by a first user in accordance with the steps 602 through 620 of the method 600 .
  • the data server attempts to identify an item in the database that matches the supplied item-identifying data.
  • the step 906 may be included in the step 620 of the method 600 .
  • the data server is not able to identify an item in its database based upon the item-identifying data supplied by the client application.
  • the data server can create a new entry in the database for the item and store the received item-identifying data in the entry.
  • the data server might not return any supplemental item information to the client application and no information will be provided to the user.
  • the data server may return a client web page 114 indicating that no information is available.
  • the client web page may provide other, possibly general, information about the web site being browsed without referring to any particular item or items on the web page being browsed.
  • the data server stores the supplemental item information received from the client application in association with the item in the database. For example, if the item is a book, the URL of the web page on which the book was identified and the price of the book may be stored together and in association with an entry for the book in the database.
  • a second user begins browsing the web.
  • a second rule which can be different than the first rule, is applied to a second web page, which can be different than the first web page, but includes the same item that was referenced in the steps 902 through 910 .
  • the second rule can be applied in accordance with the steps 602 through 622 of the method 600 .
  • the server supplies supplemental item information including the supplemental item information stored in the step 910 .
  • the step 916 can be performed in accordance with the steps 624 and 626 of the method 600 .
  • the supplemental item information provided by the data server can include the URL of the previously identified web page and the previously identified price. The user receiving this information can then follow the link to the identified web page to shop for the book at an alternative location.
  • Rules can be created for non-retail web sites that list products that are sold by retail web sites. For example, a product manufacturer may list products it manufactures but may not offer the products for sale. As the rules are applied at the non-retail web sites, the accumulated supplemental information can be used to direct users to retail web sites that sell the displayed products. Accordingly, once a rule is successfully created, the work of populating a database by using the rule can be left up to the users of the system. In many instances, such as when no supplemental information is yet available in the database for an item, the populating of the database as a result of a supplied rule can be made completely transparent to a user of the system.
  • the data server 122 provides rules to the user computer 104 and the user computer applies the rules to identify items on web pages.
  • the data server can be configured to apply the rules to identify items on accessed pages.
  • the methods 700 and 800 are performed by the client application 116 .
  • the data server 122 can be configured to fetch the same target web page 210 displayed by the user's web browser 106 after the client application 116 supplies the URL of the page 210 .
  • the data server 122 can then dynamically apply the rules to the fetched web page in accordance with the methods 700 and 800 , locate the identifying data based upon the rules 124 , and identify an item. Once the item has been identified, the data server 122 can return item information to the user computer 104 . Accordingly, only two data transfers between the server 122 and the user computer 104 are needed instead of four.
  • the data server 122 must fetch the same web page that has already been fetched by the user's web browser 106 .
  • the client application 116 can be configured to forward the complete target web page 210 to the data server 122 so that the data server need not fetch the web page.
  • the user computer 104 can be configured to communicate with a proxy server that retrieves rules from the data server, applies rules to web pages, retrieves item information from the data server, and forwards the item information to the user computer.
  • the proxy server may be configured to augment web pages requested by the user computer with supplemental item information, and to forward the augmented web pages to the user computer.
  • the steps of the disclosed methods may alternatively be performed by means, code, programs, devices, or people other than those disclosed herein.
  • the data server 122 can be configured to crawl some or all of the pages of a web site to populate a database with URLs and corresponding items represented on the pages identified by the URLs.
  • the data server 122 can be configured to crawl through a web site after a tagger creates a rule for a page of the web site.
  • the data server 122 can be configured to crawl through the web site periodically after the initial crawl to search for items on additional web pages or changed web pages. As the database is populated with associations of URLs and items, these associations become available to client applications 116 requesting information about URLs.
  • the data server 122 can also combine the URL-item associations with item-supplemental information associations.
  • the data server 122 can receive a reference to a URL and in exchange provide supplemental information about an item represented on the web page located at the URL.
  • the client application 116 can transmit the URL of a displayed web page 210 to the data server 122 and in direct response, the data server can return a new client web page 114 containing supplemental item information.

Abstract

A rule creation application uses a reference web page, and user input regarding information displayed thereon, to generate a rule for extracting such information from the web page. The rule uses a structured graph representation of the web page, such as the page's Document Object Model (DOM), to extract the information. In addition to being applicable to the reference web page, the rule may be used to extract information from other web pages that have a similar structure.

Description

    PRIORITY CLAIM
  • This application is a division of U.S. patent application Ser. No. 09/794,952, filed Feb. 27, 2001, the disclosure of which is hereby incorporated by reference.
  • COMPUTER PROGRAM LISTING APPENDIX
  • The Computer Program Listing Appendix submitted on duplicate compact discs in parent application Ser. No. 09/794,952, filed Feb. 27, 2001, is incorporated herein by reference. The copyright owner has no objection to the reproduction of this Computer Program Listing Appendix as part of this patent document, but reserves all other copyrights whatsoever.
  • BACKGROUND OF THE INVENTION
  • 1. Field of the Invention
  • This invention relates generally to the Internet and the World Wide Web and, more particularly, the invention relates to methods and systems for identifying items represented on web pages and for providing supplemental information about items represented on web pages.
  • 2. Description of the Related Art
  • Web pages provide a highly flexible and effective medium for presenting information to people. The information on any particular web page is generally not, however, optimized for substantive analysis by machine or computer.
  • One type of substantive analysis of a web page that can be automated is a determination as to what item or items are represented on a web page. An item can be any identifiable thing, such as a product, a service, a job listing, a company, or a person. Prior technology has generally relied upon regular expression matching, which can be unreliable and which may require substantial processing. The present invention seeks to address this problem among others.
  • SUMMARY OF THE INVENTION
  • In a preferred embodiment, the present invention utilizes the Document Object Model (DOM) representation of a sampled web page to create a rule that extracts data from web pages having a similar DOM structure to the sampled web page. The DOM is an object-oriented interface supported by most popular web browsers through which a displayed web page can be accessed and manipulated. The DOM provides a structured graph representation of a web page with nodes that represent each HTML (Hypertext Markup Language) tag.
  • In general, within a single domain or web site, when information on different web pages appears to be displayed in a similar structure, a similar structure is actually being used. Pages that have a similar HTML structure will also have a similar DOM. Furthermore, pages that may even appear substantially different may have a similar DOM structure with respect to the nodes of the DOM that are relevant to a representation of an item of interest. Generally, content providers or web retailers benefit from code or template reuse, and as a result, multiple web pages will have a similar HTML/DOM structure. A preferred embodiment utilizes the structural representation of web pages provided by the DOM to provide a powerful tool through which items can be identified on web pages.
  • The DOM is a well-documented utility that has been dealt with at length by the World Wide Web Consortium (www.w3.org). One skilled in the art will be familiar with the DOM and therefore the details of the DOM will not be presented herein. Although the present invention refers the Document Object Model in particular, it will be apparent to one skilled in the art that other representations of web pages that allow the identification of page elements based upon the structure of a page can be used.
  • In one embodiment, a rule is created based upon the DOM or other structured graph representation of a first web page and subsequently applied to a second, structurally similar web page, in order to extract data related to an item represented on the second web page. The item-related data that are extracted preferably include item-identifying data that can be used to identify the item represented on the second web page. The item-identifying data can include any data by which an item is represented on a web page, such as the name of an item. The item-identifying data can then be used to identify the item by matching it to an item within a database of item-identifying data.
  • In one embodiment, a client application executes on a user computer in conjunction with a web browser. The client application retrieves a rule from a data server based upon the URL of a web page loaded by the web browser. The client application then applies the rule to the web page to extract item-identifying data from the web page. The client application then provides the item-identifying data to the data server. The data server identifies the item by matching the item-identifying data to an item in a database. The data server retrieves supplemental information about the item from the database and supplies the supplemental information to the client application to be displayed on the user computer. The tasks of retrieving and applying the rule may alternatively be performed in-whole or in-part by a computing device other than an end user's computer, such as a special proxy server, the data server, or a computer system used to crawl and index web pages.
  • In one embodiment, the present invention is used to identify products on web pages of web-based retailers. Retail web sites generally use pages of similar structure to display items for sale. Accordingly, a rule is created based upon one web page of a retailer, and the rule is then applied to identify products on other pages hosted by the retailer. Once a product is identified, supplemental information about the identified product, such as alternative retailers from which the product can be purchased, can be provided to a user (e.g., as web page metadata).
  • In one embodiment, a data server is configured to crawl through a web site and apply rules to target pages in order to identify and catalog the representation of products on web pages. In addition, rules can be configured such that the extracted item-related data includes supplemental item information, such as the price of a product, in addition to the item-identifying data. The extracted supplemental item information can be stored in association with an identification of the item in a database. The stored supplemental item information can then be supplied to users, such as in response to subsequent requests for information about the item.
  • Item data extracted from web pages according to the invention may be used for a variety of other purposes. For example, the collected data may be used to build a database that can be queried by users to locate information about product offerings, auctions, job listings, apartment rentals, or other types of items.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 illustrates a system in accordance with one embodiment of the present invention.
  • FIG. 2 illustrates a web browser user interface as it would be viewed by a user in accordance with one embodiment of the present invention.
  • FIG. 3 illustrates an example web browser user interface as it would be viewed by a tagger (person creating rules) in accordance with one embodiment of the invention.
  • FIG. 4 illustrates a general method for creating rules in accordance with one embodiment of the present invention.
  • FIG. 5 illustrates a method through which structural tags are created in accordance with one embodiment of the invention.
  • FIG. 6 illustrates a method through which rules are applied to provide information about items in accordance with one embodiment of the invention.
  • FIG. 7 illustrates a method through which a rule is applied in accordance with one embodiment of the invention.
  • FIG. 8 illustrates a method through which a structural tag is applied in accordance with one embodiment of the invention.
  • FIG. 9 illustrates a method in accordance with which information about an item can be collected and then redistributed as supplemental item information.
  • DETAILED DESCRIPTION OF THE EMBODIMENTS
  • In the following description, reference is made to the accompanying drawings, which form a part hereof, and which show, by way of illustration, specific embodiments or processes in which the invention may be practiced. Where possible, the same reference numbers are used throughout the drawings to refer to the same or like components. In some instances, numerous specific details are set forth in order to provide a thorough understanding of the present invention. The present invention, however, may be practiced without the specific details or with certain alternative equivalent devices, components, and methods to those described herein. In other instances, well-known devices, components, and methods have not been described in detail so as not to unnecessarily obscure aspects of the present invention.
  • I. Overview
  • FIG. 1 illustrates a system 100 in accordance with one embodiment of the present invention. A user 102 browses the web through an Internet-connected computer 104 running a web browser 106. In browsing the web, the user 102 causes the web browser 106 to retrieve a web page 110 from a web server 192. The web server 192 may be operated, for example, by a retailer or a content provider 190.
  • Although web pages are typically coded in HTML, web pages may be created or coded using other formats. For example, a web page may be coded using XML, VoiceXML, or other markup languages.
  • Upon receiving the web page 110, the web browser 106 creates a structured graph representation 112 of the web page 110, such as the Document Object Model (DOM). Currently available web browsers 106, such as Netscape Navigator and Internet Explorer, are typically configured to create the structured graph representation 112 in order to allow a web page 110 to be dynamically manipulated by code, such as JavaScript, embedded in the web page itself
  • An information provider 120 can be an organization or entity that provides supplemental information about items displayed on web pages. The information provider 120 preferably provides the supplemental item information through a set of client web pages 114 loaded and displayed by the web browser 106 on the user's computer 104.
  • A client application 116 preferably executes in conjunction with the web browser 106 on the user's computer 104 and communicates with a data server and database 122 operated by the information provider 120. The client application 116 preferably operates in conjunction with the data server and database 122 in order to identify items on web pages and provide supplemental information about identified items.
  • The data server and database 122 may be embodied as a combined unit on a single computer. Alternatively, the data server and database 122 may be implemented on one or more computers, which can be geographically remote from one another. The data server and database 122 is preferably also connected to and accessible via the Internet.
  • The functionality of the client application 116 can be incorporated in one or more of the client web pages 114 through embedded code such as JavaScript. The browser 106 loads a client web page 114 from the data server 122 in a new window or frame. When the client web page 114 is loaded, the embedded code is automatically executed. The client application 116 may additionally or alternatively be a plug-in or applet that runs within or alongside the web browser 106. In one embodiment, some or all of the functionality of the client application 116 can be incorporated into the web browser 106 itself as a standard feature.
  • The data server 122 maintains a database of rules 124. The database of rules 124 preferably stores a set of rules for each domain for which items are to be identified. Since the web pages within a single domain may have many different structures, many different rules may be included in the set of rules for a particular domain. The data server and database 122 may additionally or alternatively associate sets of rules with families of URLs to account for web sites that do not have their own domain names (e.g., home pages). A family of URLs may be specified by a domain plus an optional file path to a root directory.
  • Each rule can be applied by the client application 116 to extract item-related data from a web page having a certain structure. In one embodiment, each rule is made up of structural tags 125, each of which identify an element of item-related data. The extracted item-related data preferably include item-identifying data, which can be used to identify an item. The item-related data may also include supplemental item information, such as a price, which may be information related to the item, but need not necessarily serve to identify the item. Any supplemental item information that is extracted can be stored in the database 122 and provided when the same item is identified subsequently on another web page.
  • In one embodiment, the client application 116 identifies the URL of the target web page 110 loaded by the web browser 106 and relays the URL to the data server 122. The data server 122 identifies the domain associated with the supplied URL and returns a set of rules associated with the domain to the client application 116, preferably in a new client web page 114. The client application 116 applies the rules to extract item-related data, including item-identifying data, from the structural graph representation 112 of the web page. The client application 116 then supplies the extracted item-related data to the data server 122. The data server 122, in turn, receives the item-related data and attempts to match the included item-identifying data to an item.
  • In one embodiment, the data server and database 122 maintains item-related data 126. For each item, the item-related data 126 preferably include item-identifying data as well as supplemental item information. The database 122 identifies items by matching the received item-identifying data to item-identifying data in the database. For each item in the database, the item-identifying data may include, for example, an item name, a manufacturer, a product number, a UPC number, and/or the name of a commonly used image of the item. The supplemental information can be any information, such as a price, that the information provider 120 wants provide to the user through the client application 116. Other examples of supplemental item information include textual descriptions of items, customer reviews of items, images of the items, an indication of whether the item is offered for sale at another location, an indication of whether an item is in stock at another location, and an indication of the method by which the item is offered for sale (e.g., auction, outright) at another location.
  • In one embodiment described in Section V below, the database of item-related data 126 may be populated with data each time the client application applies a rule that extracts supplemental item information. Each time the data server 122 receives item-related data, the data server 122 can store any supplemental item information in the database in association with the item-identifying data. In addition or alternatively, the database of item-related data 126 may be populated using a search engine or a web crawler 128 in accordance with known techniques. Several techniques are known and used by shopping web sites (e.g., shopping.com) to locate multiple on-line retailers for a product and to identify retailers offering a product for the lowest price. In addition or alternatively, item-related data can be obtained in real time upon the request for information by the client application 116 by using a search engine. In addition or alternatively, item-related data can be obtained from existing databases, such as databases of product information that are maintained by many retailers. Information about items other than products (e.g., people, historical events, topics of interest) may be obtained from reference sources, web-based search engines, or other sources.
  • Once the data server 122 associates the received item-identifying data with an item, the data server returns a set of item information, preferably including supplemental item information, to the client application 116. The data server 122 preferably incorporates the item information into a client web page 114, which is provided to and displayed by the web browser 106. As will be recognized by one skilled in the art, any of a variety of other interface methods may be used to present the item information. For example, the original web page 110 could be supplemented with the item information or with links to such information. Examples of user interface methods that may be used for this purpose are described in U.S. Provisional Appl. No. 60/199,569, filed Apr. 25, 2000, the disclosure of which is hereby incorporated by reference.
  • In order to create rules 124, the information provider 120 preferably uses a rule creation and tagging application 130. In one embodiment, the rule creation and tagging application 130 is implemented through JavaScript embedded in a set of tagging web pages 136 that are displayed by a web browser 132 running on an Internet-connected computer 134. The rule creation application 130 may additionally or alternatively be a plug-in or applet that runs within or alongside the web browser 132. The term “tagging” will generally be used herein to refer to the process of creating rules by identifying nodes (which are defined by HTML or other tags) with the DOM or other object model of a web page.
  • The information provider 120 preferably assigns to a tagger (who may be an employee of the information provider) the task of tagging nodes and creating rules using the computer 134, the web browser 132, and the tagging application 130. The tagger loads the web browser 132 with a reference web page 138 containing an item. Upon receiving the reference web page 138, the web browser 132 creates a structured graph representation 140 of the reference web page 138. As will be discussed in additional detail below, the tagger uses the tagging application 130 to create rules by tagging item-identifying nodes within the loaded web page 138.
  • The information provider 120 may additionally or alternatively allow users 102 or other people to act as taggers and create rules. For example, the information provider 120 may allow users 102 to perform tagging. In one embodiment, an automated tool or program could be created and configured to create rules. The process of creating rules from the perspective of the tagger and the process of using rules from the perspective of the user will be discussed in the next section.
  • In one embodiment, the present invention is configured to apply rules to identify items (typically products) offered for sale within web pages. Once a product has been identified, an information provider provides supplemental information about the product to a user browsing the web page. The supplemental information may be alternative locations, preferably with corresponding prices, from which the item may be purchased. In other embodiments, the identified item need not be a product offered for sale and may be any identifiable thing that can be presented or represented on a web page (e.g, a person, an event, or a place). The supplemental information provided about the item may be any information that the provider of the information wants to provide.
  • II. User Interfaces
  • FIGS. 2 and 3 illustrate, from the user's perspective, the example application and creation, respectively, of a rule that identifies books on certain web pages located within a certain domain (e.g., store.com). The web page 212 illustrated in FIG. 2 is similar (possibly identical) in its layout and structure to the web page 312 of FIG. 3. The only difference between the two pages may be the information that is displayed in each of the corresponding locations on each of the respective pages 212 and 312. FIGS. 2-3 are discussed in additional detail below.
  • A. End User's Perspective
  • FIG. 2 illustrates a web browser user interface 200 as it would be viewed by a user in accordance with one embodiment of the present invention. The user interface 200 includes a main window 210, which displays a target web page 212 upon which an item is offered for sale or otherwise presented. The web page 212 includes one or more elements 220 of identifying data by which the item can be identified. These elements 220 may include, for example: a category 222 (e.g., Books), a name 224 (e.g., “A Year in Provence”), an Author or Manufacturer 226 (e.g., Peter Mayle), and a Product Number or ISBN 228 (e.g., 0679731148). The target web page 210 is located at a domain 230 (e.g., store.com), which may be operated by an on-line retailer 190 (FIG. 1).
  • The web browser user interface 200 also includes a client web page 242, which is preferably loaded by the client application 116 into a client sidebar 240. The sidebar 240 may be another window displayed alongside of the main browser window 210. The client web page 242 provides an identification 244 of one or more items presented on the target web page 210 and presents supplemental information 246 about the identified item or items. In the illustrated example, the client web page 242 is titled “PRODUCT INFORMATION” since the information provider 120 in the present example generally supplies supplemental information about products offered for sale. In accordance with this embodiment, the information provider 120 may be an entity that accumulates and provides supplemental information about products offered for sale on-line. In the illustrated example, the information provider 120 has identified the item named “A Year in Provence” on the target web page 210 and has identified two alternative locations from which the item can be purchased along with the associated prices.
  • B. Tagger's Perspective
  • FIG. 3 illustrates an example web browser user interface 300 as it would be viewed by a tagger (person creating a rule) in accordance with one embodiment of the invention. The user interface 300 includes a main browser window 310, which displays a reference web page 312. The reference web page 312 based upon which this rule is created is similar in structure to the web page 210 to which the created rule is applied. The only difference between the example pages illustrated FIGS. 2 and 3 is that some of the elements 220 that identify the two items are different. On the web page 312 in FIG. 3, the name 224 of the item is “Under the Tuscan Sun: At Home in Italy,” the Author or Manufacturer 226 is Frances Mayes, and the Product Number or ISBN 228 is 0767900383. The web page 312 of FIG. 3, however, has the same domain 230 (store.com) and category 222 (Books) as the web page 210 of FIG. 2.
  • In order for a rule to be successfully applied, the HTML structure (and structured graph representation) of the reference web page 312 based upon which the rule is created should be similar to the HTML structure (and structured graph representation) of the web page 210 to which the rule is applied. A rule may still be successfully applied, however, even if there are differences between the structures of the pages, since certain structural differences may not affect application of the rule. If a rule is applied to a web page with a substantially different structure, the application of the rule may fail.
  • The tagger's web browser user interface 300 includes a rule creation (tagging) web page 342, which is loaded by the rule creation and tagging application 130 into a rule creation sidebar 340. The sidebar 340 can be an additional frame or window displayed by the web browser 132. The rule creation web page 342 provides an interface (e.g., titled “Create New Rule”) through which rules can be created. The rule creation web page 342 preferably also includes the code of the tagging application 130, which is executed by the web browser when the page 342 is loaded. The rule creation web page 342 and tagging application 130 allow the tagger to interactively use the reference web page 312 in the main browser window 310 as a template for creating the new rule. As illustrated in FIG. 3, the rule creation web page 342 can include a text box 350 into which the tagger can type a rule name, for example, “books.”
  • III. Structural Tags
  • In accordance with one embodiment, each rule is made up of a set of components, called structural tags. Each structural tag identifies a tagged element within the structured graph representation (Document Object Model or DOM) of a web page. The rule creation web page 342 (FIG. 3) provides a table 352 through which structural tags can be configured. A basic structural tag preferably includes four properties including: a Name, a Path, an Attribute, and a Required Flag.
  • The Name property of a structural tag can be used to indicate the type of information represented by the tagged element. In the example rule creation web page 342 (FIG. 3), there are four structural tags named Category, Item Name, Author/Manufacturer, and Product Number.
  • The Path property of a structural tag can be thought of as a sequence of turns to take to traverse from a known reference point in the structured graph representation or DOM to the node containing the tagged element. In one embodiment, the traversal begins at the top-level document (e.g., the root of a tree in a structural graph representation) and proceeds by traversing to the specified child of each node as specified by the Path until the tagged node is reached. The path may also reference any named nodes if any nodes along the path have names, in traversing to the tagged node.
  • In order to set the path property of a structural tag, the tagger highlights or selects some data in the reference web page 312. In FIG. 3, the tagger has highlighted “Under the Tuscan Sun” in the web page 312 as shown. The tagger then selects the “train” button 354 next to the name of the structural tag. In response, the Javascript of the rule creation web page 342 identifies the node within the DOM of the web page 312 containing the selected data and creates a path leading to the node.
  • The Attribute property of a structural tag is a DOM identifier that is used to obtain the element of interest from the tagged node. Attributes may be, for example, innerText, nodeValue, src, or title. In one embodiment, the Attribute of a structural tag is also determined automatically by the rule creation web page 342 when the path is created.
  • Since a path may not have any meaning to a tagger, the element located at a node (the Value in FIG. 3), rather than the path to the node, is presented to the tagger in the table of structural tags 352. In this manner, the tagger can verify the path to the node by the verifying the Value of the identified node which represents the extracted element. In FIG. 3, the tagger has selected the text: “Under the Tuscan Sun: At Home in Italy.” In response, the rule creation web page 342 identifies the node containing the selected text and automatically creates a path to this node. The page 342 then extracts the data from this node and displays the data next to the Item Name so that the tagger can verify that the correct node was identified.
  • When the rule containing the structural tag is applied, the path to the identified node is used to obtain the data at a corresponding node in a structurally similar web page. A structural tag “hits” when the Path returns a single tagged node and the Attribute of the tagged node yields data that is not blank. In the case a target web page has a different structure than the reference web page based upon which the rule was created, one or more nodes in the Path may not be present and the structural tag may not hit. In addition, the tagged node may contain no data in which case the structural tag will not hit.
  • The Required Flag property is used to indicate whether a particular structural tag must “hit” in order for the rule to succeed. In one embodiment, the Required Flag is set by the tagger using a pop up window associated with the structural tag.
  • The structural tags named Item Name, Author/Manufacturer, and Product Number in the rule creation web page 342 of FIG. 3 are basic structural tags. The Category structural tag of FIG. 3, however, is a matching structural tag, which is configured to identify a node having a particular value.
  • A matching structural tag includes two additional properties called Matchtext and Matchvalue. The Matchtext property defines a value that is expected to be found at the tagged node. When a rule applies a matching structural tag, the rule first determines whether the Attribute (tagged element) of the tagged node yields a value, like a basic structural tag. If a value is found, the value is then compared to the Matchtext property. If the value matches the Matchtext, then the matching structural tag hits. If the matching structural tag hits, the Matchvalue is returned as the value of the tag.
  • The MatchValue of a matching structural tag may be the same as the Matchtext or it may be different. For example, the information provider may wish to categorize all books using a lower case identifier by setting the Matchvalue to “books.” Alternatively, the Matchtext may be “Books” but the information provider may wish to categorize books together with music and therefore the corresponding Matchvalue may be a text string “books and music.” In one embodiment, the Matchtext and Matchvalue properties may each have multiple corresponding values. The multiple Matchtext and Matchvalue values can be stored in a two-dimensional array. If any of the Matchtext values match, then the corresponding Matchvalue can be returned.
  • In one embodiment, regular expressions or other types of matching can be supported by the MatchText property. Regular expressions increase the power and flexibility of a text matching tag.
  • The rule creation web page 342 can be configured such that the properties of each structural tag can be set using a pop up window. The pop up window might be brought up automatically after the train button 358 is selected. Various alternative implementations are possible as will be recognized by one skilled in the art.
  • In one embodiment, the number of structural tags in a rule and certain properties of the structural tags are determined in advance of the tagging process. For example, the data server 122 can be configured to identify items based upon certain item-identifying data. The number and names of the structural tags can be configured in advance to conform to and supply the data based upon which the server 122 identifies items.
  • Once the tagger sets all of the properties of the structural tags for a rule, the rule is complete. In order to verify that a rule is working properly, the tagger can drive the main browser window 310 to another page that appears to have a similar structure. The rule creation application 130 can be configured to apply the newly created rule to the other web page such that the value associated with each element is displayed in the table of values. The tagger can then confirm that the rule correctly extracted the desired elements from the new web page.
  • IV. Methods
  • A. Rule Creation
  • FIG. 4 illustrates a general method 400 for creating rules in accordance with one embodiment of the present invention.
  • At a step 402, a tagger runs a rule creation application 130. In one embodiment, the tagger loads a tagging web page 136 into the web browser 132. The tagging web page 136 preferably contains the code (e.g., JavaScript or other code) of the rule creation application 130, which is then executed by the web browser 132. In one embodiment, the code of the rule creation application 130 is included in a sequence of tagging web pages 136, each of which provides the code of a portion of the tagging application 130.
  • The file alxpath.js in the Computer Program Listing Appendix includes code that provides rule creation functionality in accordance with one embodiment of the invention. Some of the functions referenced in the file alxpath.js, however, are found in the file alxstag_client.js, which includes code for a corresponding client application 116.
  • At a step 404, the tagger loads a reference web page 312 into a main web browser window 310. The reference web page is used by the tagger and the rule creation application as a reference based upon which to create a rule. In one embodiment, the step 404 may be performed before the step 402.
  • At a step 406, the tagger supplies and the rule creation application receives a name for a new rule. The name can be used to keep track of and identify the new rule.
  • At a step 408, the rule creation application identifies the reference web page in the main browser window. In one embodiment, the rule creation application can identify the reference web page by obtaining a handle to the DOM of the web page and obtaining the URL of the reference web page.
  • At a step 410, the tagger identifies a reference item on the reference web page 312. The tagger can identify the reference item by observing one or more elements 220 of item-identifying data. The reference item is preferably an item that is prominently displayed so that other pages with a similar structure will also contain other items in structurally similar locations.
  • At a step 412, the tagger uses the rule creation application to interactively create one or more structural tags based upon the reference item on the reference web page 312. The rule creation application can be pre-configured to prompt the tagger to create a number of structural tags. In the example of FIG. 3, the page is configured to allow the tagger to create four structural tags named Category, Item Name, Author/Manufacturer, and Product Number. The process of creating structural tags will be described in additional detail below with reference to FIG. 5.
  • At a step 414, the rule creation application associates the structural tags, the domain of the reference web page, and the name of the new rule. In one embodiment, the rule creation application encodes the new rule as an XML (Extensible Markup Language) document that contains definitions of the structural tags, the domain name, and the name of the rule. Accordingly, the new rule can be catalogued by domain name and the name of the rule.
  • At a step 416, the rule creation application stores the new rule on the data server 122. In one embodiment, the rule creation application 130 forwards the document to the data server 122 for storage in a database.
  • B. Structural Tag Creation
  • FIG. 5 illustrates a method 500 through which structural tags are created in accordance with one embodiment of the invention that uses the Document Object Model of a web page. The method 500 represents one embodiment of the step 410 of the method 400.
  • At a step 502, the tagger selects some content or data on the reference web page 312. The content should serve to identify the reference item and should match the name of the structural tag being created. For example, if the name of the structural tag is “Item Name” then the selected content should be the name of the reference item on the reference web page.
  • At a step 504, the tagger provides and the rule creation application 130 receives an instruction to create a structural tag. In one embodiment, the tagger clicks a “train” button 354 (FIG. 3), which is detected by the rule creation application. At a step 506, the rule creation application detects the selection of some content in the main browser window.
  • At a step 508, the rule creation application identifies the DOM node containing the selected content. At a step 510, the rule creation application identifies a node attribute of the identified DOM node that contains the selected content. At a step 512, the rule creation application creates a structured graph representation (DOM) path to the node containing the selected content. Code configured to perform the steps 508, 510, and 512 in accordance with the preferred embodiment is included in the Computer Program Listing Appendix.
  • The format of the DOM path is determined by the particular implementation and should be configured to be read by a compatible client web page 114. In one embodiment, the DOM path is represented by a comma-separated list of types of nodes and indices. For example, a path may be defined as “t,1,t,2,0,1” where the letter “t” denotes a table, and where children are identified by a zero-based index for each node. This example path will instruct a compatible client web page to start at the top level of the DOM, to traverse through the top node's children to the second table (denoted by the 0-based index “1”), then to traverse through this node's children to the third table (denoted by the 0-based index “2”), then to traverse through this node's children to the 1st child, and then to traverse through this node's children to the second child.
  • At a step 514, the tagger selects and the rule creation application receives selection of a Required Flag value. The Required Flag indicates whether this structural tag must hit in order for the rule containing the structural tag to succeed. At an optional step 516, the tagger selects and the rule creation application receives selection of a Matchtext value and a Matchvalue value. The Required flag, the Matchtext, and the Matchvalue may be entered by the tagger through a pop up window or any other user input mechanism.
  • At a step 518, the rule creation application associates the node attribute, the path, the Required Flag, the Matchtext, the Matchvalue, and the tag name. In one embodiment, these variables are stored in association with each other in an XML document.
  • C. General Rule Application
  • FIG. 6 illustrates a method 600 through which rules are applied to provide information about items in accordance with one embodiment of the invention.
  • At a step 602, the user runs a client application 116 in conjunction with a web browser 106. In one embodiment, the user loads a client web page 114 into the web browser 106. The client web page 114 preferably contains the code (e.g., JavaScript or other code) of the client application 116 that is executed by the web browser 132. Alternatively, the web browser 106 can be configured to automatically load the client web page 114 in a separate window or sidebar. The client application 116 can be configured to be automatically loaded each time the user executes the web browser 106. The file alxstag_client.js in the Computer Program Listing Appendix includes code that provides the client application functionality in accordance with one embodiment of the invention.
  • At a step 604, the user drives the main window of the web browser to a target web page 210. The step 604 can be performed before the step 602.
  • At a step 606, the client application identifies the URL of the target web page 210 in the main window 210 of the web browser 106. In one embodiment, the client application can identify the target web page by obtaining a handle to the DOM of the web page and obtaining the URL of the target web page.
  • At a step 608, the client application provides the URL of the target web page to the data server 122. In response, at a step 610, the data server identifies rules based upon the domain of the supplied URL. The server may alternatively or additionally look up a rule based upon a URL family in the case that it appears a web site is a home page or does not have its own domain name.
  • At a step 612, the data server 122 provides the identified rules to the user computer 104. In one embodiment, the rules can be embedded as additional code within the client application in a new client web page 114. The new client web page 114 is loaded by the web browser 106 and the rules are applied by executing the code embedded in the web page 114. In another embodiment, the rules are provided in an XML document that is received by the client application.
  • At a step 614, the user computer 104 receives the rules and applies the rules to the target web page 210. In one embodiment, the web browser 106 executes the additional client application code embedded in a new client web page 114 received from the data server 122. Alternatively, the client application can receive the rules (e.g., in an XML document) and apply the rules. At a step 616, one or more rules succeed and yield item-identifying data. At a step 618, for each rule that succeeds, the client application provides a set of item-identifying data to the data server 122. The process of applying rules, determining success, and providing item-identifying data will be described in additional detail below with reference to FIGS. 7 and 8.
  • At a step 620, the data server 122 attempts to identify an item for each set of received item-identifying data. In one embodiment, the data server searches a database of items based upon the item-identifying data. The database preferably indexes items based upon item-identifying data and includes additional information on each item.
  • At a step 622, the data server 122 optionally performs a search for item information based upon the supplied item-identifying data. The data server 122 may search on the World Wide Web using a search engine or through other sources for information.
  • At a step 624, the data server 122 provides item information for identified items to the user computer 104. At a step 626, the user computer 104 receives and displays the item information. In one embodiment, the data server 122 provides the item information in the form of a new client web page 114 to be displayed by the web browser 106. The new client web page can be configured to display the item information and may also include additional client application code to initiate the method 600 again.
  • D. Rule Application
  • FIG. 7 illustrates a method 700 through which a rule is applied in accordance with one embodiment of the invention.
  • At a step 702, the client application 116 identifies the DOM of the target web page 210. At a step 704, the client application applies each structural tag of a rule to the DOM of the target web page. The process of applying structural tags will be described in additional detail below with reference to FIG. 8.
  • At a decision step 706, the client application determines whether each structural tag having its required flag set has hit. If each structural tag with its required flag set hits, the rule succeeds. On the other hand, if one or more of the structural tags with their required flags set does not hit, then the rule fails.
  • E. Structural Tag Application and DOM Traversal
  • FIG. 8 illustrates a method 800 through which a structural tag is applied in accordance with one embodiment of the invention.
  • At a step 802, the client application 116 traverses the DOM path specified by the structural tag to a node. In one embodiment, a Javascript function takes the DOM path in a string format, begins at the document level of the DOM, and traverses through the DOM structure to the node specified by the path.
  • At a step 804, the client application determines whether a single node exists at the end of the specified DOM path. If a single node is not found, the application of the structural tag fails, and the method 800 ends. On the other hand, if a single node is found, the method proceeds to a step 806.
  • At the step 806, the client application determines whether the single node at the end of the DOM path has a non-blank attribute that is specified by the structural tag. If the node does not have a non-blank attribute, then the structural tag fails and the method 800 ends. On the other hand, if the node does have a non-blank attribute, and the method proceeds to a step 808.
  • At the step 808, the client application determines whether the Matchtext property has been defined/set. If the Matchtext property is not set, the structural tag is not a matching structural tag and no further analysis is necessary. Therefore, the tag hits and the method proceeds to a step 810.
  • At the step 810, the client application returns the attribute of the node as an element of item-identifying data. In one embodiment, the element of data is then assembled with other data elements obtained from other structural tags. The elements of item-identifying data are then transmitted to the data server 122 in accordance with the steps 616 et. seq. of the method 600.
  • Returning to the step 808, if the Matchtext property is set, the structural tag is a matching structural tag and the method proceeds to a step 812. At the step 812, the client application determines whether the node attribute value matches the Matchtext. If so, the matching structural tag hits and the method proceeds to a step 814. At the step 814, the client application returns the Matchvalue as the element of item-identifying data in a manner similar to the step 810.
  • V. Data Acquisition
  • In accordance with one embodiment, item-related data that is supplied by the client application 116 is used to populate the database of item-related data 126. Each time the data server 122 receives item-related data from the client application, the data server updates the database of item-related data 126 to include the newly received item-related data.
  • In one configuration, a structural tag configured to extract a price is added to a rule configured to identify products on a retail web site. Each time the rule is successfully applied by a client application, the rule retrieves the price of an item in addition to other item-identifying data, such as the title, author, or ISBN of a book. The price is then returned to the data server in conjunction with the other item-related data and stored in the database.
  • For each item, the price of the item shown at a particular URL or domain can be associated with that URL or domain in the database. The URL or domain information is preferably sent to the data server 122 in the initial request for a rule by the client application. The URL or domain information may, however, also be included with the item-identifying data supplied by the client application to the data server.
  • As the database is populated with associations of item-identifying data, URLs, and prices, this information can be provided in response to subsequent requests for supplemental product information about the same item. In alternative configurations, data about items other than products may be collected or data other than price information may be collected.
  • FIG. 9 illustrates a method 900 in accordance with which information about an item can be collected and then redistributed as supplemental item information.
  • At a step 902, a first rule is configured to extract item-related data including supplemental item information and item-identifying data, from a target web page within a domain or web site. For example, the rule can be configured to include a structural tag has a DOM path to the price of an item. Although the price would not ordinarily be used to identify an item, the price of the item is valuable information that can be subsequently supplied as supplemental item information.
  • At a step 904, the first rule is supplied by the data server and applied to a first web page being browsed by a first user in accordance with the steps 602 through 620 of the method 600.
  • At a step 906, the data server attempts to identify an item in the database that matches the supplied item-identifying data. The step 906 may be included in the step 620 of the method 600.
  • At a step 908, it may be the case that the data server is not able to identify an item in its database based upon the item-identifying data supplied by the client application. In this case, the data server can create a new entry in the database for the item and store the received item-identifying data in the entry. The data server, in this case, might not return any supplemental item information to the client application and no information will be provided to the user. Alternatively, the data server may return a client web page 114 indicating that no information is available. Alternatively, the client web page may provide other, possibly general, information about the web site being browsed without referring to any particular item or items on the web page being browsed.
  • At a step 910, the data server stores the supplemental item information received from the client application in association with the item in the database. For example, if the item is a book, the URL of the web page on which the book was identified and the price of the book may be stored together and in association with an entry for the book in the database.
  • At a step 912, a second user begins browsing the web. At a step 914, a second rule, which can be different than the first rule, is applied to a second web page, which can be different than the first web page, but includes the same item that was referenced in the steps 902 through 910. The second rule can be applied in accordance with the steps 602 through 622 of the method 600.
  • At a step 916, the server supplies supplemental item information including the supplemental item information stored in the step 910. The step 916 can be performed in accordance with the steps 624 and 626 of the method 600. For example, the next time the book of step 910 is identified on another web page, the supplemental item information provided by the data server can include the URL of the previously identified web page and the previously identified price. The user receiving this information can then follow the link to the identified web page to shop for the book at an alternative location.
  • Rules can be created for non-retail web sites that list products that are sold by retail web sites. For example, a product manufacturer may list products it manufactures but may not offer the products for sale. As the rules are applied at the non-retail web sites, the accumulated supplemental information can be used to direct users to retail web sites that sell the displayed products. Accordingly, once a rule is successfully created, the work of populating a database by using the rule can be left up to the users of the system. In many instances, such as when no supplemental information is yet available in the database for an item, the populating of the database as a result of a supplied rule can be made completely transparent to a user of the system.
  • VI. Alternative and Additional Embodiments
  • In the embodiments already described, the data server 122 provides rules to the user computer 104 and the user computer applies the rules to identify items on web pages. Alternatively, the data server can be configured to apply the rules to identify items on accessed pages.
  • In the embodiments illustrated in FIGS. 7 and 8, the methods 700 and 800 are performed by the client application 116. In one alternative embodiment, the data server 122 can be configured to fetch the same target web page 210 displayed by the user's web browser 106 after the client application 116 supplies the URL of the page 210. The data server 122 can then dynamically apply the rules to the fetched web page in accordance with the methods 700 and 800, locate the identifying data based upon the rules 124, and identify an item. Once the item has been identified, the data server 122 can return item information to the user computer 104. Accordingly, only two data transfers between the server 122 and the user computer 104 are needed instead of four. In this embodiment, however, the data server 122 must fetch the same web page that has already been fetched by the user's web browser 106. In another embodiment, the client application 116 can be configured to forward the complete target web page 210 to the data server 122 so that the data server need not fetch the web page.
  • In one embodiment, the user computer 104 can be configured to communicate with a proxy server that retrieves rules from the data server, applies rules to web pages, retrieves item information from the data server, and forwards the item information to the user computer. The proxy server may be configured to augment web pages requested by the user computer with supplemental item information, and to forward the augmented web pages to the user computer. As will be understood by one skilled in the art, the steps of the disclosed methods may alternatively be performed by means, code, programs, devices, or people other than those disclosed herein.
  • In one embodiment, the data server 122 can be configured to crawl some or all of the pages of a web site to populate a database with URLs and corresponding items represented on the pages identified by the URLs. The data server 122 can be configured to crawl through a web site after a tagger creates a rule for a page of the web site. In addition, the data server 122 can be configured to crawl through the web site periodically after the initial crawl to search for items on additional web pages or changed web pages. As the database is populated with associations of URLs and items, these associations become available to client applications 116 requesting information about URLs. The data server 122 can also combine the URL-item associations with item-supplemental information associations. Therefore, the data server 122 can receive a reference to a URL and in exchange provide supplemental information about an item represented on the web page located at the URL. In accordance with this embodiment, the client application 116 can transmit the URL of a displayed web page 210 to the data server 122 and in direct response, the data server can return a new client web page 114 containing supplemental item information.
  • VII. Conclusion
  • Although the invention has been described in terms of certain preferred embodiments, other embodiments that will be apparent to those of ordinary skill in the art, including embodiments which do not provide all of the features and advantages set forth herein, are also within the scope of this invention. Accordingly, the scope of the invention is defined by the claims that follow. In method claims, reference characters are used for convenience of description only, and do not indicate a particular order for performing a method.

Claims (26)

1-20. (canceled)
21. A computer program comprising executable instructions represented in computer storage, said computer program adapted to be executed on a computer, and being capable of causing the computer to:
receive user input specifying a selected data element of a web page displayed on the computer;
identify, in a structural graph representation of said web page, a node that corresponds to the selected data element;
identify a path to said node, said path specifying how to traverse the structural graph representation of the web page to reach the node; and
generate a rule that is adapted to be applied to the web page, and to other web pages of similar structure, to extract web page data corresponding to the selected data element, the rule specifying said path.
22. The computer program of claim 21, wherein the structural graph representation of the web page is a Document Object Model (DOM) representation of the web page.
23. The computer program of claim 21, wherein the computer program is additionally capable of causing the computer to identify, among a set of attributes of said node, an attribute that contains the data element, and to include an identifier of said attribute in the rule.
24. The computer program of claim 21, wherein the computer program is additionally capable of causing the network-connected computer to receive user input of, and to include in said rule, an expected value associated with the selected data element, said expected value being a value that must be present for the rule to extract associated data from a web page.
25. The computer program of claim 21, wherein the computer program is additionally capable of causing the computer to automatically transmit the rule over a network to a server.
26. The computer program of claim 25, in combination with the server, wherein the server is configured to store the rule in association with an address of an associated web site, and to serve the rule to user computers to enable the user computers to extract data from web pages of the web site.
27. The computer program of claim 26, wherein the server is additionally configured to use the data extracted by a user computer via said rule to identify an item represented on a web page, and to transmit supplemental information about the item to the user computer for display to a user.
28. The computer program of claim 21, in combination with a client program that is adapted to run in conjunction with a web browser, said client program adapted to apply the rule to a web page to extract item-identifying data therefrom, and to use the extracted item-identifying information to retrieve and display supplemental information about an identified item.
29. The computer program of claim 21, wherein the computer program comprises JavaScript code.
30. The computer program of claim 21, wherein the computer program is a browser plug-in.
31. The computer program of claim 21, wherein the computer program is configured to display a rule-creation user interface that provides functionality for creating rules based on web pages loaded in a browser window.
32. A computer-implemented method, comprising:
receiving user input specifying selected content of a web page displayed on a computer;
identifying, in a structural graph representation of said web page, a node that corresponds to the selected content;
identifying a path to said node, said path specifying how the structural graph representation of the web page is traversable to reach the node; and
generating a rule that is adapted to be applied to the web page, and to other web pages of similar structure, to extract data corresponding to said selected content, said rule specifying said path.
33. The method of claim 32, wherein the structural graph representation of the web page is a Document Object Model (DOM) representation of the web page.
34. The method of claim 32, further comprising applying the rule to at least one additional web page to extract data therefrom.
35. The method of claim 32, further comprising identifying, among a set of attributes of said node, an attribute that contains the selected content, and including an identifier of said attribute in the rule.
36. The method of claim 32, further comprising receiving user input of, and including in said rule, an expected value associated with the selected content.
37. The method of claim 32, further comprising transmitting the rule over a network to a server, and storing the rule on the server in association with an address of a corresponding web site
38. The method of claim 37, further comprising transmitting the rule from said server to a user computer, and on said user computer, applying the rule to a second web page to extract item-identifying data therefrom.
39. The method of claim 38, further comprising using the item-identifying data to retrieve, and display on the user computer, supplemental information about an item represented on the second web page.
40. The method of claim 32, wherein the method is implemented, at least in part, via execution of JavaScript code executed by a web browser.
41. The method claim 32, wherein the method is implemented, at least in part, via execution of a browser plug-in.
42. A rule generated according to the method of claim 32 represented in computer storage.
43. A computer system, comprising:
a rule generation component that runs on a user computer in conjunction with a browser program, the rule generation component configured to receive user input specifying a data element of a web page displayed on the user computer by the browser program, and to use a Document Object Model (DOM) representation of the web page to generate a rule for extracting the data element from the web page; and
a server system that communicates with the rule generation component over a network, and stores rules generated by the rule generation component in association with web site addresses to which such rules correspond.
44. The computer system of claim 43, wherein the rule generation component is capable of generating a rule that is adapted to be applied to a plurality of different web pages of similar DOM structure.
45. The computer system of claim 43, further comprising a data extraction component that retrieves rules from the server system, and applies the rules to web pages to extract data therefrom.
US11/379,987 2001-02-27 2006-04-24 Rules-based extraction of data from web pages Abandoned US20060242266A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US11/379,987 US20060242266A1 (en) 2001-02-27 2006-04-24 Rules-based extraction of data from web pages

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/794,952 US7085736B2 (en) 2001-02-27 2001-02-27 Rules-based identification of items represented on web pages
US11/379,987 US20060242266A1 (en) 2001-02-27 2006-04-24 Rules-based extraction of data from web pages

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US09/794,952 Division US7085736B2 (en) 2001-02-27 2001-02-27 Rules-based identification of items represented on web pages

Publications (1)

Publication Number Publication Date
US20060242266A1 true US20060242266A1 (en) 2006-10-26

Family

ID=25164183

Family Applications (2)

Application Number Title Priority Date Filing Date
US09/794,952 Expired - Lifetime US7085736B2 (en) 2001-02-27 2001-02-27 Rules-based identification of items represented on web pages
US11/379,987 Abandoned US20060242266A1 (en) 2001-02-27 2006-04-24 Rules-based extraction of data from web pages

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US09/794,952 Expired - Lifetime US7085736B2 (en) 2001-02-27 2001-02-27 Rules-based identification of items represented on web pages

Country Status (1)

Country Link
US (2) US7085736B2 (en)

Cited By (19)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060218487A1 (en) * 2005-03-25 2006-09-28 Red Hat, Inc. System, method and medium for component based web user interface frameworks
US20080065737A1 (en) * 2006-08-03 2008-03-13 Yahoo! Inc. Electronic document information extraction
GB2460045A (en) * 2008-05-13 2009-11-18 Triad Group Plc Analysing multiple data sources for a user request using business and geographical data, with selected rule sets to filter the data on the databases.
US20100174995A1 (en) * 2009-01-08 2010-07-08 International Business Machines Corporation System and method for dynamically building a web interface per data collecting rules
US20110022943A1 (en) * 2009-07-23 2011-01-27 International Business Machines Corporation Document object model (dom) application framework
US20110314001A1 (en) * 2010-06-18 2011-12-22 Microsoft Corporation Performing query expansion based upon statistical analysis of structured data
US20120101979A1 (en) * 2003-07-23 2012-04-26 Shopping.Com Systems and methods for extracting information from structured documents
US20130212084A1 (en) * 2007-12-27 2013-08-15 Yahoo! Inc. System and method for adding identity to web rank
US8832644B2 (en) 2011-04-06 2014-09-09 Media Direct, Inc. Systems and methods for a mobile application development and deployment platform
US20140281886A1 (en) * 2013-03-14 2014-09-18 Media Direct, Inc. Systems and methods for creating or updating an application using website content
US8898630B2 (en) 2011-04-06 2014-11-25 Media Direct, Inc. Systems and methods for a voice- and gesture-controlled mobile application development and deployment platform
US8978006B2 (en) 2011-04-06 2015-03-10 Media Direct, Inc. Systems and methods for a mobile business application development and deployment platform
US9134964B2 (en) 2011-04-06 2015-09-15 Media Direct, Inc. Systems and methods for a specialized application development and deployment platform
WO2017062678A1 (en) * 2015-10-07 2017-04-13 Impossible Ventures, LLC Automated extraction of data from web pages
CN107423391A (en) * 2017-07-24 2017-12-01 福州大学 The information extracting method of Web page structural data
US9898533B2 (en) 2011-02-24 2018-02-20 Microsoft Technology Licensing, Llc Augmenting search results
US11068921B1 (en) 2014-11-06 2021-07-20 Capital One Services, Llc Automated testing of multiple on-line coupons
US11120461B1 (en) 2014-11-06 2021-09-14 Capital One Services, Llc Passive user-generated coupon submission
US11205188B1 (en) 2017-06-07 2021-12-21 Capital One Services, Llc Automatically presenting e-commerce offers based on browse history

Families Citing this family (156)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2001067207A2 (en) 2000-03-09 2001-09-13 The Web Access, Inc. Method and apparatus for organizing data by overlaying a searchable database with a directory tree structure
US7373313B1 (en) * 2000-04-25 2008-05-13 Alexa Internet Service for enabling users to share information regarding products represented on web pages
US8402068B2 (en) 2000-12-07 2013-03-19 Half.Com, Inc. System and method for collecting, associating, normalizing and presenting product and vendor information on a distributed network
US7085736B2 (en) * 2001-02-27 2006-08-01 Alexa Internet Rules-based identification of items represented on web pages
US20020133605A1 (en) * 2001-03-19 2002-09-19 Alok Khanna Generation and use of rules for reading of data for online account aggregation
US20020161793A1 (en) * 2001-04-25 2002-10-31 Telefonaktiebolaget L M Ericsson Retrieving information from web pages
US6963874B2 (en) * 2002-01-09 2005-11-08 Digital River, Inc. Web-site performance analysis system and method utilizing web-site traversal counters and histograms
GB2382962A (en) * 2001-12-07 2003-06-11 Altio Ltd Data routing without using an address
US7631035B2 (en) 2002-01-09 2009-12-08 Digital River, Inc. Path-analysis toolbar
US20030131106A1 (en) * 2002-01-09 2003-07-10 Stephane Kasriel Web-page performance toolbar
US20030128231A1 (en) * 2002-01-09 2003-07-10 Stephane Kasriel Dynamic path analysis
US7321887B2 (en) * 2002-09-30 2008-01-22 Sap Aktiengesellschaft Enriching information streams with contextual content
US7370276B2 (en) * 2002-05-17 2008-05-06 Sap Aktiengesellschaft Interface for collecting user preferences
US7346668B2 (en) * 2002-05-17 2008-03-18 Sap Aktiengesellschaft Dynamic presentation of personalized content
US20040003097A1 (en) * 2002-05-17 2004-01-01 Brian Willis Content delivery system
US7305436B2 (en) * 2002-05-17 2007-12-04 Sap Aktiengesellschaft User collaboration through discussion forums
US7278117B2 (en) * 2002-07-02 2007-10-02 Hewlett-Packard Development Company, L.P. Image segmentation and warping for specialized display viewing
US8335779B2 (en) * 2002-08-16 2012-12-18 Gamroe Applications, Llc Method and apparatus for gathering, categorizing and parameterizing data
EP1406183A3 (en) * 2002-10-01 2004-04-14 Sap Ag Method and system for refreshing browser pages
US7716632B2 (en) * 2002-11-01 2010-05-11 Vertafore, Inc. Automated software robot generator
US20060235938A1 (en) * 2002-11-12 2006-10-19 Pennell Mark E System and method for delivery of information based on web page content
US8302012B2 (en) * 2002-12-02 2012-10-30 Sap Aktiengesellschaft Providing status of portal content
US8028237B2 (en) * 2002-12-02 2011-09-27 Sap Aktiengesellschaft Portal-based desktop
CA2414378A1 (en) * 2002-12-09 2004-06-09 Corel Corporation System and method for controlling user interface features of a web application
CA2414053A1 (en) * 2002-12-09 2004-06-09 Corel Corporation System and method for manipulating a document object model
CA2414047A1 (en) * 2002-12-09 2004-06-09 Corel Corporation System and method of extending scalable vector graphics capabilities
US8230327B2 (en) * 2003-03-03 2012-07-24 Oracle America, Inc. Identifying statements requiring additional processing when forwarding a web page description
US7483878B2 (en) * 2003-03-25 2009-01-27 Claria Corporation Generation and presentation of search results using addressing information
JP2004348241A (en) * 2003-05-20 2004-12-09 Hitachi Ltd Information providing method, server, and program
US7877399B2 (en) * 2003-08-15 2011-01-25 International Business Machines Corporation Method, system, and computer program product for comparing two computer files
US20060095835A1 (en) * 2004-11-01 2006-05-04 William Kennedy System and method for the modular generation of markup language
US20060112089A1 (en) * 2004-11-22 2006-05-25 International Business Machines Corporation Methods and apparatus for assessing web page decay
US20060150111A1 (en) * 2004-12-30 2006-07-06 Microsoft Corporation Methods and apparatus for evaluating aspects of a web page
US20060224571A1 (en) 2005-03-30 2006-10-05 Jean-Michel Leon Methods and systems to facilitate searching a data resource
US20060274767A1 (en) * 2005-05-09 2006-12-07 Dessau Robert M System and method for collecting, processing and presenting selected information from selected sources via a single website
US8117203B2 (en) * 2005-07-15 2012-02-14 Fetch Technologies, Inc. Method and system for automatically extracting data from web sites
US7669119B1 (en) * 2005-07-20 2010-02-23 Alexa Internet Correlation-based information extraction from markup language documents
WO2007038713A2 (en) * 2005-09-28 2007-04-05 Epacris Inc. Search engine determining results based on probabilistic scoring of relevance
US8112324B2 (en) 2006-03-03 2012-02-07 Amazon Technologies, Inc. Collaborative structured tagging for item encyclopedias
US8402022B2 (en) * 2006-03-03 2013-03-19 Martin R. Frank Convergence of terms within a collaborative tagging environment
WO2007103807A2 (en) 2006-03-03 2007-09-13 Amazon Technologies, Inc. Creation and utilization of relational tags
US9330170B2 (en) * 2006-05-16 2016-05-03 Sony Corporation Relating objects in different mediums
US20070271286A1 (en) * 2006-05-16 2007-11-22 Khemdut Purang Dimensionality reduction for content category data
US7750909B2 (en) * 2006-05-16 2010-07-06 Sony Corporation Ordering artists by overall degree of influence
US7840568B2 (en) * 2006-05-16 2010-11-23 Sony Corporation Sorting media objects by similarity
US7774288B2 (en) * 2006-05-16 2010-08-10 Sony Corporation Clustering and classification of multimedia data
US7961189B2 (en) * 2006-05-16 2011-06-14 Sony Corporation Displaying artists related to an artist of interest
US20070271274A1 (en) * 2006-05-16 2007-11-22 Khemdut Purang Using a community generated web site for metadata
US20080016023A1 (en) * 2006-07-17 2008-01-17 The Mathworks, Inc. Storing and loading data in an array-based computing environment
US20080059486A1 (en) * 2006-08-24 2008-03-06 Derek Edwin Pappas Intelligent data search engine
US20080065633A1 (en) * 2006-09-11 2008-03-13 Simply Hired, Inc. Job Search Engine and Methods of Use
US20080091548A1 (en) * 2006-09-29 2008-04-17 Kotas Paul A Tag-Driven Concept-Centric Electronic Marketplace
US8255824B2 (en) 2007-01-30 2012-08-28 Oracle International Corporation Toolbar/sidebar browser extension
US7836085B2 (en) 2007-02-05 2010-11-16 Google Inc. Searching structured geographical data
US7930391B1 (en) * 2007-05-03 2011-04-19 Visible Measures Corp. Method and system for determining viewing time of an online video
JP5168537B2 (en) * 2007-05-16 2013-03-21 楽天株式会社 Advertisement server device, advertisement display method, and advertisement server program
US7984512B2 (en) * 2007-06-14 2011-07-19 Microsoft Corporation Integrating security by obscurity with access control lists
US8627403B1 (en) 2007-07-31 2014-01-07 Hewlett-Packard Development Company, L.P. Policy applicability determination
US8799103B1 (en) 2007-09-20 2014-08-05 Ariba, Inc. Client-side structured data capture and remote application integration using a web browser
US8234262B2 (en) * 2007-10-24 2012-07-31 The Invention Science Fund I, Llc Method of selecting a second content based on a user's reaction to a first content of at least two instances of displayed content
US8589366B1 (en) 2007-11-01 2013-11-19 Google Inc. Data extraction using templates
JP2009116635A (en) * 2007-11-07 2009-05-28 Nec Corp Web sharing system, client device and web sharing method used for them
US7904462B1 (en) * 2007-11-07 2011-03-08 Amazon Technologies, Inc. Comparison engine for identifying documents describing similar subject matter
US8793166B2 (en) * 2007-12-05 2014-07-29 Google Inc. On-line payment transactions
US8700491B2 (en) 2008-01-22 2014-04-15 Ebay Inc. Method and system of displaying information related to items offered for sale in a network-based marketplace
US7853597B2 (en) * 2008-04-28 2010-12-14 Microsoft Corporation Product line extraction
US8346791B1 (en) 2008-05-16 2013-01-01 Google Inc. Search augmentation
US8036945B2 (en) * 2008-09-26 2011-10-11 The Go Daddy Group, Inc. Method of generating product cagetories from a text string
US7725363B2 (en) * 2008-09-26 2010-05-25 The Go Daddy Group, Inc. Method of generating product categories from a metadata tag
US20100083095A1 (en) * 2008-09-29 2010-04-01 Nikovski Daniel N Method for Extracting Data from Web Pages
US8499152B1 (en) * 2009-05-28 2013-07-30 Trend Micro, Inc. Data positioning and alerting system
US10424000B2 (en) 2009-05-30 2019-09-24 Edmond K. Chow Methods and systems for annotation of digital information
US8301631B2 (en) * 2009-05-30 2012-10-30 Edmond Kwok-Keung Chow Methods and systems for annotation of digital information
US9015166B2 (en) 2009-05-30 2015-04-21 Edmond Kwok-Keung Chow Methods and systems for annotation of digital information
US20110022945A1 (en) * 2009-07-24 2011-01-27 Nokia Corporation Method and apparatus of browsing modeling
CN102129632A (en) * 2010-01-13 2011-07-20 阿里巴巴集团控股有限公司 Method, device and system for capturing webpage information
US20110191321A1 (en) * 2010-02-01 2011-08-04 Microsoft Corporation Contextual display advertisements for a webpage
US8473473B2 (en) * 2010-03-16 2013-06-25 Microsoft Corporation Object oriented data and metadata based search
US9082140B2 (en) * 2010-06-09 2015-07-14 Ebay Inc. Systems and methods to extract and utilize textual semantics
CA2706743A1 (en) * 2010-06-30 2010-09-08 Ibm Canada Limited - Ibm Canada Limitee Dom based page uniqueness indentification
US20120072824A1 (en) * 2010-09-20 2012-03-22 Research In Motion Limited Content acquisition documents, methods, and systems
US8566702B2 (en) * 2010-09-20 2013-10-22 Blackberry Limited Methods and systems of outputting content of interest
US8346792B1 (en) 2010-11-09 2013-01-01 Google Inc. Query generation using structural similarity between documents
US9286627B1 (en) * 2011-05-04 2016-03-15 Amazon Technologies, Inc. Personal webservice for item acquisitions
US8577963B2 (en) 2011-06-30 2013-11-05 Amazon Technologies, Inc. Remote browsing session between client browser and network based browser
US8799412B2 (en) 2011-06-30 2014-08-05 Amazon Technologies, Inc. Remote browsing session management
US9621406B2 (en) 2011-06-30 2017-04-11 Amazon Technologies, Inc. Remote browsing session management
WO2013051005A2 (en) * 2011-07-06 2013-04-11 Kanani Hirenkumar Nathalal A method of a web based product crawler for products offering
CN102890692A (en) * 2011-07-22 2013-01-23 阿里巴巴集团控股有限公司 Webpage information extraction method and webpage information extraction system
US9037696B2 (en) 2011-08-16 2015-05-19 Amazon Technologies, Inc. Managing information associated with network resources
US9195768B2 (en) 2011-08-26 2015-11-24 Amazon Technologies, Inc. Remote browsing session management
US10089403B1 (en) 2011-08-31 2018-10-02 Amazon Technologies, Inc. Managing network based storage
US8589385B2 (en) 2011-09-27 2013-11-19 Amazon Technologies, Inc. Historical browsing session management
US9152970B1 (en) 2011-09-27 2015-10-06 Amazon Technologies, Inc. Remote co-browsing session management
US8914514B1 (en) 2011-09-27 2014-12-16 Amazon Technologies, Inc. Managing network based content
US9178955B1 (en) 2011-09-27 2015-11-03 Amazon Technologies, Inc. Managing network based content
US10693991B1 (en) 2011-09-27 2020-06-23 Amazon Technologies, Inc. Remote browsing session management
US9641637B1 (en) 2011-09-27 2017-05-02 Amazon Technologies, Inc. Network resource optimization
US9383958B1 (en) 2011-09-27 2016-07-05 Amazon Technologies, Inc. Remote co-browsing session management
US8615431B1 (en) 2011-09-29 2013-12-24 Amazon Technologies, Inc. Network content message placement management
WO2013062550A1 (en) * 2011-10-27 2013-05-02 Hewlett-Packard Development Company, L.P. Aligning annotation of fields of documents
US9313100B1 (en) 2011-11-14 2016-04-12 Amazon Technologies, Inc. Remote browsing session management
US8972477B1 (en) 2011-12-01 2015-03-03 Amazon Technologies, Inc. Offline browsing session management
US9117002B1 (en) 2011-12-09 2015-08-25 Amazon Technologies, Inc. Remote browsing session management
US9009334B1 (en) 2011-12-09 2015-04-14 Amazon Technologies, Inc. Remote browsing session management
US9330188B1 (en) 2011-12-22 2016-05-03 Amazon Technologies, Inc. Shared browsing sessions
US8627195B1 (en) 2012-01-26 2014-01-07 Amazon Technologies, Inc. Remote browsing and searching
US9092405B1 (en) 2012-01-26 2015-07-28 Amazon Technologies, Inc. Remote browsing and searching
US9509783B1 (en) 2012-01-26 2016-11-29 Amazon Technlogogies, Inc. Customized browser images
US9087024B1 (en) 2012-01-26 2015-07-21 Amazon Technologies, Inc. Narration of network content
US9336321B1 (en) 2012-01-26 2016-05-10 Amazon Technologies, Inc. Remote browsing and searching
US8839087B1 (en) 2012-01-26 2014-09-16 Amazon Technologies, Inc. Remote browsing and searching
US9183258B1 (en) 2012-02-10 2015-11-10 Amazon Technologies, Inc. Behavior based processing of content
US9037975B1 (en) 2012-02-10 2015-05-19 Amazon Technologies, Inc. Zooming interaction tracking and popularity determination
US9137210B1 (en) 2012-02-21 2015-09-15 Amazon Technologies, Inc. Remote browsing session management
US10296558B1 (en) 2012-02-27 2019-05-21 Amazon Technologies, Inc. Remote generation of composite content pages
US9374244B1 (en) 2012-02-27 2016-06-21 Amazon Technologies, Inc. Remote browsing session management
US9208316B1 (en) 2012-02-27 2015-12-08 Amazon Technologies, Inc. Selective disabling of content portions
US9460220B1 (en) 2012-03-26 2016-10-04 Amazon Technologies, Inc. Content selection based on target device characteristics
US9307004B1 (en) 2012-03-28 2016-04-05 Amazon Technologies, Inc. Prioritized content transmission
US9152619B2 (en) 2012-05-21 2015-10-06 Google Inc. System and method for constructing markup language templates and input data structure specifications
US9772979B1 (en) 2012-08-08 2017-09-26 Amazon Technologies, Inc. Reproducing user browsing sessions
US8943197B1 (en) 2012-08-16 2015-01-27 Amazon Technologies, Inc. Automated content update notification
US9576065B2 (en) 2013-07-17 2017-02-21 Go Daddy Operating Company, LLC Method for maintaining common data across multiple platforms
US9483740B1 (en) 2012-09-06 2016-11-01 Go Daddy Operating Company, LLC Automated data classification
US9516089B1 (en) 2012-09-06 2016-12-06 Locu, Inc. Identifying and processing a number of features identified in a document to determine a type of the document
EP2717178A1 (en) 2012-10-04 2014-04-09 Tata Consultancy Services Limited Analysis and specification creation for web documents
US20140195890A1 (en) * 2013-01-09 2014-07-10 Amazon Technologies, Inc. Browser interface for accessing supplemental content associated with content pages
US9330068B2 (en) 2013-01-23 2016-05-03 Go Daddy Operating Company, LLC Method for conversion of website content
CN103971244B (en) 2013-01-30 2018-08-17 阿里巴巴集团控股有限公司 A kind of publication of merchandise news and browsing method, apparatus and system
US9971790B2 (en) 2013-03-15 2018-05-15 Google Llc Generating descriptive text for images in documents using seed descriptors
US9268477B2 (en) * 2013-05-20 2016-02-23 Citrix Systems, Inc. Providing contextual menus
US10152463B1 (en) 2013-06-13 2018-12-11 Amazon Technologies, Inc. System for profiling page browsing interactions
US9578137B1 (en) 2013-06-13 2017-02-21 Amazon Technologies, Inc. System for enhancing script execution performance
CN103279567A (en) * 2013-06-18 2013-09-04 重庆邮电大学 Web data collection method and system both based on AJAX (asynchronous javascript and extensible markup language)
CN104284250A (en) * 2013-07-12 2015-01-14 贝壳网际(北京)安全技术有限公司 Video processing method and device, server and client device
US9537732B2 (en) 2013-07-30 2017-01-03 Go Daddy Operating Company, LLC Methods and systems for improving website performance
US9633128B2 (en) 2014-03-13 2017-04-25 Go Daddy Operating Company, LLC Lightweight web page generation
US9635041B1 (en) * 2014-06-16 2017-04-25 Amazon Technologies, Inc. Distributed split browser content inspection and analysis
CN104077389A (en) * 2014-06-27 2014-10-01 北京奇虎科技有限公司 Display method of webpage element information and browser device
US10825069B2 (en) 2014-11-14 2020-11-03 The Joan and Irwin Jacobs Technion-Cornell Institute System and method for intuitive content browsing
WO2016077670A1 (en) * 2014-11-14 2016-05-19 The Joan and Irwin Jacobs Technion-Cornell Innovation Institute Techniques for embedding virtual points of sale in electronic media content
US10102565B2 (en) 2014-11-21 2018-10-16 Paypal, Inc. System and method for content integrated product purchasing
CN104683731B (en) * 2015-03-20 2019-02-19 苏州科达科技股份有限公司 A kind of method and system for being communicated between heterogeneous platform
US10108695B1 (en) * 2015-08-03 2018-10-23 Amazon Technologies, Inc. Multi-level clustering for associating semantic classifiers with content regions
US10019420B2 (en) 2015-10-01 2018-07-10 Think Research Corporation System and method for adding functionality to web-based applications having no extensibility features
US20170140450A1 (en) 2015-11-17 2017-05-18 Fazahl Ashby Visual cable builder
US11042506B2 (en) * 2016-07-20 2021-06-22 Microsoft Technology Licensing, Llc Compliance violation detection
CN107918575B (en) * 2016-10-08 2021-03-30 北京京东尚科信息技术有限公司 Page state monitoring method and device
US10664538B1 (en) 2017-09-26 2020-05-26 Amazon Technologies, Inc. Data security and data access auditing for network accessible content
US10726095B1 (en) 2017-09-26 2020-07-28 Amazon Technologies, Inc. Network content layout using an intermediary system
EP3467740A1 (en) * 2018-06-20 2019-04-10 DataCo GmbH Method and system for generating reports
CN110781430B (en) * 2019-09-27 2022-03-25 同济大学 Novel virtual data center system of internet and construction method thereof
US20220247620A1 (en) * 2021-02-02 2022-08-04 Exfo Inc. Identification of Clusters of Elements Causing Network Performance Degradation or Outage
CN113326417B (en) * 2021-06-17 2023-08-01 北京百度网讯科技有限公司 Method and device for updating webpage library
US11822612B2 (en) * 2021-10-21 2023-11-21 Microsoft Technology Licensing, Llc Automatic identification of additional content for webpages

Citations (40)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5555362A (en) * 1991-12-18 1996-09-10 International Business Machines Corporation Method and apparatus for a layout of a document image
US5629846A (en) * 1994-09-28 1997-05-13 General Electric Company Method and system for document translation and extraction
US5774123A (en) * 1995-12-15 1998-06-30 Ncr Corporation Apparatus and method for enhancing navigation of an on-line multiple-resource information service
US5963208A (en) * 1995-03-09 1999-10-05 Michael A. Dolan Integrated network access user interface for navigating with a hierarchical graph
US6035330A (en) * 1996-03-29 2000-03-07 British Telecommunications World wide web navigational mapping system and method
US6064980A (en) * 1998-03-17 2000-05-16 Amazon.Com, Inc. System and methods for collaborative recommendations
US6078917A (en) * 1997-12-18 2000-06-20 International Business Machines Corporation System for searching internet using automatic relevance feedback
US6175838B1 (en) * 1998-04-29 2001-01-16 Ncr Corporation Method and apparatus for forming page map to present internet data meaningful to management and business operation
US6195679B1 (en) * 1998-01-06 2001-02-27 Netscape Communications Corporation Browsing session recording playback and editing system for generating user defined paths and allowing users to mark the priority of items in the paths
US6266649B1 (en) * 1998-09-18 2001-07-24 Amazon.Com, Inc. Collaborative recommendations using item-to-item similarity mappings
US6282548B1 (en) * 1997-06-21 2001-08-28 Alexa Internet Automatically generate and displaying metadata as supplemental information concurrently with the web page, there being no link between web page and metadata
US6286002B1 (en) * 1996-01-17 2001-09-04 @Yourcommand System and method for storing and searching buy and sell information of a marketplace
US20010037405A1 (en) * 2000-04-07 2001-11-01 Sideek Sinnathambi Mohamed Wireless web generation from conventional web sites by pattern identification and dynamic content extraction
US20010054049A1 (en) * 1999-12-21 2001-12-20 Junji Maeda Information processing system, proxy server, web page display method, storage medium, and program transmission apparatus
US20020010715A1 (en) * 2001-07-26 2002-01-24 Garry Chinn System and method for browsing using a limited display device
US20020010709A1 (en) * 2000-02-22 2002-01-24 Culbert Daniel Jason Method and system for distilling content
US20020059166A1 (en) * 2000-11-02 2002-05-16 Waytech Development Inc Method and system for extracting contents of web pages
US6430624B1 (en) * 1999-10-21 2002-08-06 Air2Web, Inc. Intelligent harvesting and navigation system and method
US20020105537A1 (en) * 2000-02-14 2002-08-08 Julian Orbanes Method and apparatus for organizing hierarchical plates in virtual space
US20020109704A1 (en) * 2000-12-20 2002-08-15 Microsoft Corporation Dynamic, live surface and model elements for visualization and modeling
US20020143659A1 (en) * 2001-02-27 2002-10-03 Paula Keezer Rules-based identification of items represented on web pages
US20020143819A1 (en) * 2000-05-31 2002-10-03 Cheng Han Web service syndication system
US6484149B1 (en) * 1997-10-10 2002-11-19 Microsoft Corporation Systems and methods for viewing product information, and methods for generating web pages
US6538673B1 (en) * 1999-08-23 2003-03-25 Divine Technology Ventures Method for extracting digests, reformatting, and automatic monitoring of structured online documents based on visual programming of document tree navigation and transformation
US6542912B2 (en) * 1998-10-16 2003-04-01 Commerce One Operations, Inc. Tool for building documents for commerce in trading partner networks and interface definitions based on the documents
US6647381B1 (en) * 1999-10-27 2003-11-11 Nec Usa, Inc. Method of defining and utilizing logical domains to partition and to reorganize physical domains
US6654734B1 (en) * 2000-08-30 2003-11-25 International Business Machines Corporation System and method for query processing and optimization for XML repositories
US6687734B1 (en) * 2000-03-21 2004-02-03 America Online, Incorporated System and method for determining if one web site has the same information as another web site
US6691163B1 (en) * 1999-12-23 2004-02-10 Alexa Internet Use of web usage trail data to identify related links
US6732102B1 (en) * 1999-11-18 2004-05-04 Instaknow.Com Inc. Automated data extraction and reformatting
US6785671B1 (en) * 1999-12-08 2004-08-31 Amazon.Com, Inc. System and method for locating web-based product offerings
US6865572B2 (en) * 1997-11-18 2005-03-08 Apple Computer, Inc. Dynamically delivering, displaying document content as encapsulated within plurality of capsule overviews with topic stamp
US6865593B1 (en) * 2000-04-12 2005-03-08 Webcollege, Inc. Dynamic integration of web sites
US6920609B1 (en) * 2000-08-24 2005-07-19 Yahoo! Inc. Systems and methods for identifying and extracting data from HTML pages
US7035271B1 (en) * 2001-04-24 2006-04-25 Atitania Ltd. Method and apparatus for generating unique ID packets in a distributed processing system
US7043525B2 (en) * 2000-12-18 2006-05-09 Bang Networks, Inc. Techniques for updating live objects at clients using a dynamic routing network
US7152064B2 (en) * 2000-08-18 2006-12-19 Exalead Corporation Searching tool and process for unified search using categories and keywords
US7171415B2 (en) * 2001-05-04 2007-01-30 Sun Microsystems, Inc. Distributed information discovery through searching selected registered information providers
US7237191B1 (en) * 2001-12-18 2007-06-26 Open Invention Network, Llc Method and apparatus for generic search interface across document types
US7257540B2 (en) * 2000-04-27 2007-08-14 Canon Kabushiki Kaisha Voice browser apparatus and voice browsing method

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2354850B (en) * 1999-09-29 2002-01-09 Ibm Data processing with reuse of existing message structure to allow access to distribution list

Patent Citations (42)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5555362A (en) * 1991-12-18 1996-09-10 International Business Machines Corporation Method and apparatus for a layout of a document image
US5629846A (en) * 1994-09-28 1997-05-13 General Electric Company Method and system for document translation and extraction
US5963208A (en) * 1995-03-09 1999-10-05 Michael A. Dolan Integrated network access user interface for navigating with a hierarchical graph
US5774123A (en) * 1995-12-15 1998-06-30 Ncr Corporation Apparatus and method for enhancing navigation of an on-line multiple-resource information service
US6286002B1 (en) * 1996-01-17 2001-09-04 @Yourcommand System and method for storing and searching buy and sell information of a marketplace
US6035330A (en) * 1996-03-29 2000-03-07 British Telecommunications World wide web navigational mapping system and method
US6282548B1 (en) * 1997-06-21 2001-08-28 Alexa Internet Automatically generate and displaying metadata as supplemental information concurrently with the web page, there being no link between web page and metadata
US6484149B1 (en) * 1997-10-10 2002-11-19 Microsoft Corporation Systems and methods for viewing product information, and methods for generating web pages
US7627590B2 (en) * 1997-11-18 2009-12-01 Apple Inc. System and method for dynamically presenting a summary of content associated with a document
US6865572B2 (en) * 1997-11-18 2005-03-08 Apple Computer, Inc. Dynamically delivering, displaying document content as encapsulated within plurality of capsule overviews with topic stamp
US6078917A (en) * 1997-12-18 2000-06-20 International Business Machines Corporation System for searching internet using automatic relevance feedback
US6195679B1 (en) * 1998-01-06 2001-02-27 Netscape Communications Corporation Browsing session recording playback and editing system for generating user defined paths and allowing users to mark the priority of items in the paths
US6064980A (en) * 1998-03-17 2000-05-16 Amazon.Com, Inc. System and methods for collaborative recommendations
US6175838B1 (en) * 1998-04-29 2001-01-16 Ncr Corporation Method and apparatus for forming page map to present internet data meaningful to management and business operation
US6266649B1 (en) * 1998-09-18 2001-07-24 Amazon.Com, Inc. Collaborative recommendations using item-to-item similarity mappings
US6542912B2 (en) * 1998-10-16 2003-04-01 Commerce One Operations, Inc. Tool for building documents for commerce in trading partner networks and interface definitions based on the documents
US6538673B1 (en) * 1999-08-23 2003-03-25 Divine Technology Ventures Method for extracting digests, reformatting, and automatic monitoring of structured online documents based on visual programming of document tree navigation and transformation
US6430624B1 (en) * 1999-10-21 2002-08-06 Air2Web, Inc. Intelligent harvesting and navigation system and method
US6647381B1 (en) * 1999-10-27 2003-11-11 Nec Usa, Inc. Method of defining and utilizing logical domains to partition and to reorganize physical domains
US6732102B1 (en) * 1999-11-18 2004-05-04 Instaknow.Com Inc. Automated data extraction and reformatting
US6785671B1 (en) * 1999-12-08 2004-08-31 Amazon.Com, Inc. System and method for locating web-based product offerings
US20010054049A1 (en) * 1999-12-21 2001-12-20 Junji Maeda Information processing system, proxy server, web page display method, storage medium, and program transmission apparatus
US6691163B1 (en) * 1999-12-23 2004-02-10 Alexa Internet Use of web usage trail data to identify related links
US20020105537A1 (en) * 2000-02-14 2002-08-08 Julian Orbanes Method and apparatus for organizing hierarchical plates in virtual space
US20020010709A1 (en) * 2000-02-22 2002-01-24 Culbert Daniel Jason Method and system for distilling content
US6687734B1 (en) * 2000-03-21 2004-02-03 America Online, Incorporated System and method for determining if one web site has the same information as another web site
US20010037405A1 (en) * 2000-04-07 2001-11-01 Sideek Sinnathambi Mohamed Wireless web generation from conventional web sites by pattern identification and dynamic content extraction
US6865593B1 (en) * 2000-04-12 2005-03-08 Webcollege, Inc. Dynamic integration of web sites
US7257540B2 (en) * 2000-04-27 2007-08-14 Canon Kabushiki Kaisha Voice browser apparatus and voice browsing method
US20020143819A1 (en) * 2000-05-31 2002-10-03 Cheng Han Web service syndication system
US7152064B2 (en) * 2000-08-18 2006-12-19 Exalead Corporation Searching tool and process for unified search using categories and keywords
US6920609B1 (en) * 2000-08-24 2005-07-19 Yahoo! Inc. Systems and methods for identifying and extracting data from HTML pages
US6654734B1 (en) * 2000-08-30 2003-11-25 International Business Machines Corporation System and method for query processing and optimization for XML repositories
US20020059166A1 (en) * 2000-11-02 2002-05-16 Waytech Development Inc Method and system for extracting contents of web pages
US7043525B2 (en) * 2000-12-18 2006-05-09 Bang Networks, Inc. Techniques for updating live objects at clients using a dynamic routing network
US20020109704A1 (en) * 2000-12-20 2002-08-15 Microsoft Corporation Dynamic, live surface and model elements for visualization and modeling
US7085736B2 (en) * 2001-02-27 2006-08-01 Alexa Internet Rules-based identification of items represented on web pages
US20020143659A1 (en) * 2001-02-27 2002-10-03 Paula Keezer Rules-based identification of items represented on web pages
US7035271B1 (en) * 2001-04-24 2006-04-25 Atitania Ltd. Method and apparatus for generating unique ID packets in a distributed processing system
US7171415B2 (en) * 2001-05-04 2007-01-30 Sun Microsystems, Inc. Distributed information discovery through searching selected registered information providers
US20020010715A1 (en) * 2001-07-26 2002-01-24 Garry Chinn System and method for browsing using a limited display device
US7237191B1 (en) * 2001-12-18 2007-06-26 Open Invention Network, Llc Method and apparatus for generic search interface across document types

Cited By (38)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120101979A1 (en) * 2003-07-23 2012-04-26 Shopping.Com Systems and methods for extracting information from structured documents
US8572024B2 (en) * 2003-07-23 2013-10-29 Ebay Inc. Systems and methods for extracting information from structured documents
US7712021B2 (en) * 2005-03-25 2010-05-04 Red Hat, Inc. System, method and medium for component based web user interface frameworks
US20060218487A1 (en) * 2005-03-25 2006-09-28 Red Hat, Inc. System, method and medium for component based web user interface frameworks
US20080065737A1 (en) * 2006-08-03 2008-03-13 Yahoo! Inc. Electronic document information extraction
US9547648B2 (en) * 2006-08-03 2017-01-17 Excalibur Ip, Llc Electronic document information extraction
US20130212084A1 (en) * 2007-12-27 2013-08-15 Yahoo! Inc. System and method for adding identity to web rank
US8832069B2 (en) * 2007-12-27 2014-09-09 Yahoo! Inc. System and method for adding identity to web rank
GB2460045A (en) * 2008-05-13 2009-11-18 Triad Group Plc Analysing multiple data sources for a user request using business and geographical data, with selected rule sets to filter the data on the databases.
US8112457B2 (en) * 2009-01-08 2012-02-07 International Business Mahines Corporation System and method for dynamically building a web interface per data collecting rules
US20100174995A1 (en) * 2009-01-08 2010-07-08 International Business Machines Corporation System and method for dynamically building a web interface per data collecting rules
US20110022943A1 (en) * 2009-07-23 2011-01-27 International Business Machines Corporation Document object model (dom) application framework
US20110314001A1 (en) * 2010-06-18 2011-12-22 Microsoft Corporation Performing query expansion based upon statistical analysis of structured data
US9898533B2 (en) 2011-02-24 2018-02-20 Microsoft Technology Licensing, Llc Augmenting search results
US9134964B2 (en) 2011-04-06 2015-09-15 Media Direct, Inc. Systems and methods for a specialized application development and deployment platform
US8898630B2 (en) 2011-04-06 2014-11-25 Media Direct, Inc. Systems and methods for a voice- and gesture-controlled mobile application development and deployment platform
US8978006B2 (en) 2011-04-06 2015-03-10 Media Direct, Inc. Systems and methods for a mobile business application development and deployment platform
US8875095B2 (en) 2011-04-06 2014-10-28 Media Direct, Inc. Systems and methods for a mobile application development and deployment platform
US8832644B2 (en) 2011-04-06 2014-09-09 Media Direct, Inc. Systems and methods for a mobile application development and deployment platform
US8898629B2 (en) 2011-04-06 2014-11-25 Media Direct, Inc. Systems and methods for a mobile application development and deployment platform
US20140281886A1 (en) * 2013-03-14 2014-09-18 Media Direct, Inc. Systems and methods for creating or updating an application using website content
US11068921B1 (en) 2014-11-06 2021-07-20 Capital One Services, Llc Automated testing of multiple on-line coupons
US11748775B2 (en) 2014-11-06 2023-09-05 Capital One Services, Llc Passive user-generated coupon submission
US11727428B2 (en) 2014-11-06 2023-08-15 Capital One Services, Llc Automated testing of multiple on-line coupons
US11507969B2 (en) 2014-11-06 2022-11-22 Capital One Services, Llc Passive user-generated coupon submission
US11120461B1 (en) 2014-11-06 2021-09-14 Capital One Services, Llc Passive user-generated coupon submission
US11016967B2 (en) 2015-10-07 2021-05-25 Capital One Services, Llc Automated sequential site navigation
US11055281B2 (en) 2015-10-07 2021-07-06 Capital One Services, Llc Automated extraction of data from web pages
US10482083B2 (en) 2015-10-07 2019-11-19 Capital One Services, Llc Automated sequential site navigation
US20210326338A1 (en) * 2015-10-07 2021-10-21 Capital One Services, Llc Automated extraction of data from web pages
US10452653B2 (en) 2015-10-07 2019-10-22 Capital One Services, Llc Automated extraction of data from web pages
US11537607B2 (en) 2015-10-07 2022-12-27 Capital One Services, Llc Automated sequential site navigation
US11681699B2 (en) * 2015-10-07 2023-06-20 Capital One Services, Llc Automated extraction of data from web pages
WO2017062678A1 (en) * 2015-10-07 2017-04-13 Impossible Ventures, LLC Automated extraction of data from web pages
US11860866B2 (en) 2015-10-07 2024-01-02 Capital One Services, Llc Automated sequential site navigation
US11205188B1 (en) 2017-06-07 2021-12-21 Capital One Services, Llc Automatically presenting e-commerce offers based on browse history
US11651387B2 (en) 2017-06-07 2023-05-16 Capital One Services, Llc Automatically presenting e-commerce offers based on browse history
CN107423391A (en) * 2017-07-24 2017-12-01 福州大学 The information extracting method of Web page structural data

Also Published As

Publication number Publication date
US20020143659A1 (en) 2002-10-03
US7085736B2 (en) 2006-08-01

Similar Documents

Publication Publication Date Title
US7085736B2 (en) Rules-based identification of items represented on web pages
US7373314B2 (en) Unified product purchasing method
US6101503A (en) Active markup--a system and method for navigating through text collections
US6381597B1 (en) Electronic shopping agent which is capable of operating with vendor sites which have disparate formats
US11036795B2 (en) System and method for associating keywords with a web page
US7904343B2 (en) Systems and methods that facilitate participation in online auctions via an intermediary web site
US8676778B2 (en) Method and apparatus for electronically publishing information on a computer network
US7865407B2 (en) System and method for automating association of retail items to support shopping proposals
CA2327161C (en) Adaptive catalog page display
US7324965B2 (en) Wish list
US6714933B2 (en) Content aggregation method and apparatus for on-line purchasing system
JP4422902B2 (en) Method and system for electronic commerce using multiple roles
US20020107718A1 (en) "Host vendor driven multi-vendor search system for dynamic market preference tracking"
US20080004992A1 (en) Federated marketplace for electronic commerce
US20020156685A1 (en) System and method for automating electronic commerce transactions using a virtual shopping cart
US20030033298A1 (en) System and method for integrating on-line user ratings of businesses with search engines
JP2001509294A (en) Method and apparatus for accessing an online store
WO2012176507A1 (en) Information providing device, information providing method, information providing program, information display program, and computer-readable recording medium for storing information providing program
JP2013008208A (en) Information providing device, information providing method, information providing program, information display program and computer-readable storage medium storing information providing program
WO2001013273A2 (en) Systems, methods and computer program products for performing multi-lingual, multi-cultural searches, comparisons, and purchases of products offered for sale at multiple web sites on the internet
JP5788240B2 (en) Information providing apparatus, information providing method, information providing program, information display program, and computer-readable recording medium storing information providing program
US20080114786A1 (en) Breaking documents
EP1024448A2 (en) E-commerce system
JP2002207655A (en) Method, program, and system for information integration
Rowley Knowledge organisation in a Web‐based environment

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION