Method and system for comparing document versions encoded in a hierarchical representation

Information

  • Patent Grant
  • 11567907
  • Patent Number
    11,567,907
  • Date Filed
    Thursday, March 14, 2013
    11 years ago
  • Date Issued
    Tuesday, January 31, 2023
    a year ago
  • CPC
    • G06F16/1873
    • G06F16/93
  • Field of Search
    • CPC
    • G06F16/1873
    • G06F16/93
  • International Classifications
    • G06F16/18
    • G06F16/93
    • Term Extension
      79
Abstract
This invention discloses a novel system and method for comparing electronic documents that are created on different software platforms or that are in different data formats by traversing the two hierarchical representations of the documents in a manner so as to selectively ignore nodes in the hierarchy and attempt to resynchronize the sequence of traversing when nodes have no matching content.
Description
FIELD OF INVENTION

The present invention generally relates to the field of digital document review. More particularly, the present invention relates to methods and systems for detecting changes and/or differences between an original document and a modified version of the document.


BACKGROUND

Many real world data sets are hierarchical, i.e. they can be represented in a tree-like structure where every node in the tree may have an ordered collection of sub-nodes. Examples might include an organizational hierarchy, the structure of a document (consisting of sections, paragraphs, tables, rows, cells, etc.) or the categorization of items in a taxonomy. The purpose of this invention is to calculate a correspondence between two sets of hierarchical data where the underlying data represented by the hierarchies is the similar, but the node structures used to represent that data differ. The invention works for hierarchies that are ordered and where the ordering is the same between the two representations of the data and the dissimilarities between the two representations are small. The tree hierarchy must be such that a depth first traversal of the tree visits the tree nodes in the correct order. The particular problem that this technique was invented to solve was to deal with the case where two tree representations of the same word-processing document have been obtained by reading the document through different document display or editing programs. For example, one representation may have been obtained by loading the document into Microsoft Word and examining the Document Object Model exposed to VBA and COM by the Word application, while the other may have been obtained by using a code library to read the content of the document directly. In this case, while the text of the document in the two representations would be expected to be largely the same (excepting possibly different handling of special characters etc.), the hierarchies may differ. Therefore, there is a need for a system and method that can compare the two documents by means of the hierarchy. These and other objects, features and characteristics of the present invention will become more apparent to those skilled in the art from a study of the following detailed description in conjunction with the appended claims and drawings, all of which form a part of this specification. It should be understood that the description and specific examples are intended for purposes of illustration only and not intended to limit the scope of the present disclosure.





DESCRIPTION OF THE FIGURES

The headings provided herein are for convenience only and do not necessarily affect the scope or meaning of the claimed invention. In the drawings, the same reference numbers and any acronyms identify elements or acts with the same or similar structure or functionality for ease of understanding and convenience. To easily identify the discussion of any particular element or act, the most significant digit or digits in a reference number refer to the Figure number in which that element is first introduced (e.g., element 204 is first introduced and discussed with respect to FIG. 2).



FIG. 1 shows a flowchart depicting the basic architecture of the process.



FIG. 2 shows an example tree hierarchy.



FIG. 3 shows an example parallel revisions relationships.



FIG. 4 shows a schematic of system components.



FIG. 5 shows an example hierarchy of first document version.



FIG. 6 shows an example hierarchy of second document version.



FIG. 7 shows an example hierarchy of comparison rendition.





DETAILED DESCRIPTION

Various examples of the invention will now be described. The following description provides specific details for a thorough understanding and enabling description of these examples. One skilled in the relevant art will understand, however, that the invention may be practiced without many of these details. Likewise, one skilled in the relevant art will also understand that the invention can include many other features not described in detail herein. Additionally, some well-known structures or functions may not be shown or described in detail below, so as to avoid unnecessarily obscuring the relevant description. The terminology used below is to be interpreted in its broadest reasonable manner, even though it is being used in conjunction with a detailed description of certain specific examples of the invention. Indeed, certain terms may even be emphasized below; however, any terminology intended to be interpreted in any restricted manner will be overtly and specifically defined as such in this Detailed Description section.


The solution works by maintaining a pair of cursors, one recording the position that the algorithm has reached in the first representation of the data and the other recording the position that the algorithm has reached in the second representation of the data. These cursors begin at the root node of each representation and are advanced by traversing the tree in depth first order. See FIG. 1. By cursor, it is also meant to include a pointer or other data object that an algorithm can use as the reference to a node in a tree data structure. The details of how each decision is made is dependent on the type of data represented by the two trees and how the tree structures differ. Where the types of data differ, then one cursor advances to the next node in the search while the other cursor remains at the same position. For instance in the case of two representations of a document, tree 1 (403) may contain nodes that represent the position of bookmarks in the document, while tree 2 (404) may not contain bookmark information. In this case, the decision ‘can ignore item at treel cursor’ would be yes if the tree 1 cursor is pointing to a bookmark node. The tree 1 cursor would then be advanced past the bookmark node (without moving the tree 2 cursor) to allow the matching process to proceed.


In the case of the decisions as to whether the items at the cursors match, the logic is domain dependent. To give another document related example, in tree 1 a paragraph may be represented as a paragraph node with the text of the paragraph contained in its child node(s). See FIG. 5. In tree 2, the end of paragraphs may be represented by ‘paragram marker’ nodes which have no children and are sibling nodes to the nodes containing text. In this case the end of a paragraph node from tree 1 is taken to be a match for a paragraph marker node from tree 2, while the start of a paragraph node from tree 1 may be ignored.


In the case where the two nodes do not match at all, the process re-synchronizes. The re-synchronization stage exists to deal with minor mismatches between the content of the two documents that cannot be handled by simply ignoring items from one tree or another or allowing more flexible matching between the two trees. It can deal with situations such like ‘sometimes we get an extra paragraph break from tree 2 which isn't in tree 1’. This situation cannot be dealt with by ignoring paragraph breaks from tree 2 (which would ignore all of them), or by allowing them to match to nothing in the matching stage, so it must be dealt with by the resynchronization stage.


Resynchronization is only attempted after normal ignoring and matching has failed. This ensures that items that can be matched will be in preference to them being skipped over by a resynchronization. That the ordering of the resynchronization stage after the ignoring and matching stages cannot move the cursors forward at a particular location is important. In practice, the resynchronization step consists of trying, in turn, each strategy in a list of resynchronization strategies that have been designed to deal with the differences between the two representations of the data. Each strategy is tested to see if it can deal with the current situation. If it can, the strategy takes steps to resynchronize the cursors, which may involve advancing one or both cursors and possibly recording a match. As soon as a strategy succeeds in advancing either cursor, the processing of the list of resynchronization strategies stops and the main algorithm returns to testing for ignores and matches. This ensures that possible matches are not missed due to unnecessary resynchronizations.


In general, resynchronization strategies will be attempted in order from the most simple and restrictive first to more complex and more generally applicable towards the end of the list. Some resynchronization strategies may just examine the nodes pointed to by the current cursor positions, others may ‘look ahead’ at nodes further on in the traversal of the tree or up the tree to the parent nodes of the current nodes to determine if they are applicable—for instance a strategy might only be applicable if the current location is within a table cell.


It is possible to use the list of resynchronization strategies to add resilience to the method and system, so that it can generally continue even when encountering mismatches between the two trees that had not been envisaged at design time. In the case of document matching, this can be achieved by adding a resynchronization strategy to the end of the list of strategies that traverses forward in each view of the document collecting text that is still to be encountered. The strategy may collect a fixed amount of text from each document (perhaps a maximum of 100 characters) or collect all text to the end of the document. By considering discarding a small number of characters from the start of either or both streams of collected text, the strategy may be able to locate an alignment between the two streams of text where they begin to match again. The strategy can then advance each cursor appropriately to place them at the position in the tree where the next significant text match occurs, stepping over the unexpected area of mismatch between the two documents and allowing the matching process to continue.


In a standard depth first traversal of a tree, nodes are visited in order:

    • Starting node
    • First child of starting node
    • All children of first child (treating it by the same rules as the starting node0
    • Second child node of starting node
    • All children of second child (same rules)
    • Third child node and children
    • Continue until all child nodes visited.


      For the purposes of this algorithm, the best results can be obtained by modifying the traversal so that nodes with child nodes are visited twice, once ‘at start’ before their child nodes are traversed and again ‘at end’ after their child nodes have been traversed.


      Thus the traversal order for the tree shown above would be:
    • 1 (at start)
    • 2 (at start)
    • 3 (at start)
    • 4
    • 5
    • 3 (at end)
    • 6
    • 2 (at end)
    • 7
    • 8 (at start)
    • . . .


This modification allows matching to occur between items that could not otherwise be matched—for instance the end of a paragraph node containing text child nodes and a ‘paragraph marker’ node in the other tree.


Process Output


The output of the process is the collection of all matches registered between pairs of nodes in the two hierarchies. This list of matches can be used to locate data or elements in one hierarchy in the context of the other hierarchy. This information may then be used to carry out various further processing steps based on the nature of the overall problem being solved.


Optimizations


In the case where the number of nodes rises to such an extent that performance and memory use suffer (such as might be the case when assigning a node to every character in a large document), the process can be altered so that the cursors track a position within certain types of node that have no child nodes. This would allow a number of character nodes (in the example given) to be replaced by a single text node with multiple characters. When within a text node the cursors would track the node being targeted and the offset within the node of the current position. Matching, ignoring or resynchronizing operations would be then able to move the current position forward a certain number of characters when operating at a position within a text node.


When two nodes do not match, the system can use resynchronization strategies to recover and continue the matching process. The resynchronization strategies are rules that can be applied to adjust the process in a deterministic way. Examples include:

    • For cases where a list number is automated numbering relying paragraph formatting characters in one hierarchy and rendered number text in the other, the strategy is to determine the numbering in the first hierarchy I norder that the list number text calculated from the paragraph formatting can be matched to the actual text content in the other hierarchy
    • For complex fields when reading document content from OOXML or DOCX. In cases where a document field consists of an instruction (a formula, macro, program statement or other code that instructs an application in what is to be calculated) and a result (which is what was calculated the last time the word-processor or application updated it), the strategy is: In the redline this structure is replicated, so that a field node has child nodes of ‘instruction’ and ‘result’. In the OOXML or DOCX format, some fields are represented differently—like this:
    • Parent Node
    • Field start instruction node
    • (multiple nodes forming content of instruction)
    • Field start result node
    • (multiple nodes forming content of result)
    • Field end node


      The resynchronization spots the pattern that one hierarchy is at the start of a field and the other is at a ‘field start instruction node’ and moves the cursors to the end of the field and after the ‘field end node’ respectively.
    • Field against special characters resync-in .doc files, certain simple fields are represented as a single special character of text (largely different versions of the date/time and the page number). In the docx documents and the comparison output these are represented as standard fields. The resynchronization strategy is toallow the special characters to be matched to the appropriate field object.
    • A more generic resynchronization can be applied (as the resync of last resort) which looks at the next N characters in each hierarchy (in one embodiment N being approximately 200), ignoring document structure. The resync tests the match between these two streams of characters with varying offsets to find the best match (i.e. the offset where the most characters match), then adjusts the cursors to the point where the next text match occurs at that offset. This will step over arbitrary blocks of mismatched text or structure attempting to find a point where the hierarchies match again, allowing the matching process to continue.


Tracking Locations from One Version to Another Version.


Tracking the location of elements within a document as the document is edited is a trivial exercise when doing it from within the code of the editing application. The editing application can continuously update the location as text is added to, removed from or re-arranged within the document. Outside the editing application however, there is considerable difficulty in performing such tracking of content and position between different versions of a document. Various options exist which involve automated modifications to the document itself—such as inserting multiple bookmarks in the document. Such bookmarks can however be an annoyance to the user if they are also using bookmarks in the document, and can lead to performance issues when editing if the document is and the number of bookmarks inserted becomes very large. Techniques relying on bookmark insertion (or other entities within the document equivalent to bookmarks) can also be defeated by the natural editing process of the document leading to the bookmarks being removed either deliberately or accidentally.


Additionally, techniques requiring items to be tracked either via the editing application or via bookmarks or similar techniques requires the tracking to be set up in advance—content cannot be tracked back into versions of the document before the bookmarks were inserted, for instance. The problem to be solved therefore is to be able to track content and position between document versions in a purely passive (no modifications to the document required to enable tracking) manner, based only on the archived content of the previous and current various versions of the document.


Outline of Solution


U.S. Pat. App. No. 2012/0136862 to Robin Glover, incorporated herein by reference describes systems for comparing word-processing documents. Implementation of the innovations in U.S. Pat. App. No. 2012/0136862 are based on the comparison process generating a machine readable summary of the full comparison document. In our case this comparison summary is in XML format and contains the entire structure and content of the redline document (tables, headers, footers, footnotes, fields, bookmarks, etc.) in the XML structure. This XML document includes information to mark various items as inserted, deleted or moved to reflect the results of the comparison of the two documents. Consider now a document with a number of versions, which are derived from each other—1 . . . n. If we know the location of some feature of the document in version A and we want to track it to its location in version B (assume A is an older version than b for now), we proceed as follows.


Compare version A (the ‘original’ version) with version B (the ‘modified’ version) using a document comparison engine. The output of this comparison is to be a machine readable summary of the comparison (possibly in XML format as described above). Let's call this the redline or a rendition of the comparison. First we load the original and modified documents into corresponding hierarchical in-memory representations. See FIGS. 5 and 6. There are a number of products, both freely available and commercial which facilitate this by providing an object model to access document content. For example the OpenXML SDK from Microsoft™ provides such an object model for reading DOCX & DOCM documents. Similarly, the redline output is loaded into an in-memory object model hierarchical representation. See FIG. 7. Note that the in-memory representations are purely for convenience, and that the algorithms described could be made to work while reading the content they required at a particular point in time direct from the version files and machine readable redline document.


Now the technique for hierarchical mapping can be applied twice—firstly between the original document hierarchy and the redline hierarchy and secondly between the modified document hierarchy and the redline hierarchy. The rules for what content is ignorable, how content should be matched and what resynchronizations to apply need to be based on the details of how the document and redline are represented in their respective object models, but the following basic rules need to be included:

    • When mapping the redline to the original, all elements in the redline marked as inserted (or move destination) should be treated as ignorable.
    • When mapping the redline to the modified, all elements in the redline marked as deleted (or move source) should be treated as ignorable.


By ignoring all inserted content from the redline, the structure and content of the remaining, un-ignored, redline elements should essentially match the structure and content of the original document, allowing for a successful mapping between the original and the redline content. Similarly ignoring deleted content when mapping the modified allows for a successful mapping between the redline and the modified document.


As a result of the two mapping procedures completing, there now exist correspondences between nodes in the redline hierarchy and the appropriate matching nodes in the original and modified versions of the document. A position or piece of content from the original document can be tracked to the equivalent location in the modified document by first following the correspondence from the node (or nodes) that represent the item in the original document to the equivalent nodes in the redline. Then, it can be tracked from the node in the redline to the corresponding node in the modified version of the document. The correspondence between the redline and the modified can then be followed to identify the nodes in the modified document that correspond to the starting content or position in the original document. For example, if an object needs to be positioned in the modified document, its location in the original can be mapped to the modified and then the object inserted into the modified with the appropriate position data so that it appears when rendered in the correct place. In cases of comments or other content, the content is not necessarily inserted, rather, its displayed or included with reference to the correct location in the modified document so that the second document is not changed, but rather displayed with an overlay, or reference.


Where the aim is to track a block of content from one version of the document to another, the nodes marking the beginning and end of the block to be tracked should be traced through the correspondences to the redline and then the modified version independently, giving an equivalent range in the modified document. Some nodes in the redline document will have no corresponding node in the original or modified document—this will occur for nodes representing inserted or deleted text as detected by the comparison. For instance, when mapping the modified to the redline, deleted text in the redline is ignored, so that it will have no correspondence to an item in the modified. This behavior is undesirable—it means that if we try to track a block of text that is deleted or partially deleted from the original to the modified document we may not get a result for the position where the text was deleted from in the modified document. To avoid this problem, the mapping strategy is modified so that ignored nodes are mapped against the last node visited in the opposite data source. This means that a deleted block of text, when mapped from the original to the modified will end up as a single point in the modified document at the position where the deleted text was removed.


Although the previous discussion talks about tracking a location (or range) in the document from the original to the modified document via a comparison, once the comparison and the mappings are performed the same techniques can be used to track a location or range in the modified document to the original document. In this case, tracking a block of text which has been inserted from the modified document to the original document will end up with the result being the location in the original document where the text was inserted (just as tracking a deleted block from the original to the modified ends up at the point where the text was deleted in the modified document).


Dealing with Moves


Special handling must be added for the case where text is moved between the two documents. When tracking a location in the original document that is within moved text, the first stage of mapping will result in a position in the redline. This position will be within a ‘move source’ change. In order to translate to the correct location in the modified document, before performing the second mapping from the redline to the modified, the location in the redline must be updated to a position within the ‘move destination’ change that corresponds to the move source. The transfer of location between the two halves of the move within the redline is possible because


a) All changes in the redline are assigned change numbers


b) Move changes in the redline are labelled with a ‘partner change number’—the number of the change corresponding to the other half of the move


c) Moves are by definition identical at each end, so if a position that is (say) 5 characters after the beginning of the move source change needs to be transferred to a position in the move destination change, the exact position can be determined by character counting forward 5 characters from the start of the move destination change.


Handling multiple Versions


When there are multiple versions (more than two) of a document that need to have positions tracked between them, there are two approaches that can be followed.


1) Perform comparisons of each version where locations need to be tracked *from* against each version where locations need to be tracked *to*. If there are N versions in the tree, in theory this could lead to a maximum of N*(N−1)/2 comparisons, although in the more common use case where all locations need to be tracked to a single target version, a maximum of N−1 comparisons are needed. Locations need to be tracked through a single comparison to locate their position in the target version.


2) Perform comparisons between each version and its parent version. If there are N versions in the tree, this leads to a maximum of N−1 comparisons needed. Locations may need to be tracked through multiple comparisons to location their positions in the target version.


Referring now to FIG. 3:


Where V1 is the original version, V2 and V3 are derived from V1 and V4 is derived from V2. Possible comparisons are shown with dotted lines and labelled with the letters A through F. Supposing that the aim is to translate locations of items in versions V1 through V3 to the equivalent locations in the latest version, V4. Using approach 1) above would require that comparisons C, E and F be performed, allowing locations in V1 to be found in V4 via comparison F; locations in V2 via C and locations in V3 via E. Using approach 2) above would require comparisons A, B and C to be performed. Locations in V2 can be found in V4 via comparison C. Locations in V1 can be found in V4 by first calculating the equivalent location in V2 via comparison A, then using comparison C to calculate the positions in V4. Locations in V3 can have their equivalent locations found by using comparison B (in reverse, tracking locations from the modified to original), then comparisons A and C to finally obtain locations in V4. The choice of which approach to follow when dealing with multiple versions will depend on the details of the problem being solved, in some cases approach 1 will be preferable and in some cases approach 2. Computational costs may be lower with one approach than the other (depending on use case). Also accuracy may differ between the two approaches—in general comparisons provide a more detailed description of changes between two versions when the changes between the two are relatively small—this may mean that following approach 2 where the comparisons are between 2 adjacent versions in the tree and are presumably smaller may be the best option rather than following approach 1 where comparisons may be between versions that are distant from each other in the tree and have significant changes in their content.


Operating Environment:


Those skilled in the relevant art will appreciate that the invention can be practiced with other communications, data processing, or computer system configurations, including: wireless devices, Internet appliances, hand-held devices (including personal digital assistants (PDAs)), wearable computers, all manner of cellular or mobile phones, multi-processor systems, microprocessor-based or programmable consumer electronics, set-top boxes, network PCs, mini-computers, mainframe computers, and the like. Indeed, the terms “computer,” “server,” and the like are used interchangeably herein, and may refer to any of the above devices and systems. In some instances, especially where the mobile computing device is used to access web content through the network (e.g., when a 3G or an LTE service of the phone is used to connect to the network), the network may be any type of cellular, IP-based or converged telecommunications network, including but not limited to Global System for Mobile Communications (GSM), Time Division Multiple Access (TDMA), Code Division Multiple Access (CDMA), Orthogonal Frequency Division Multiple Access (OFDM), General Packet Radio Service (GPRS), Enhanced Data GSM Environment (EDGE), Advanced Mobile Phone System (AMPS), Worldwide Interoperability for Microwave Access (WiMAX), Universal Mobile Telecommunications System (UMTS), Evolution-Data Optimized (EVDO), Long Term Evolution (LTE), Ultra Mobile Broadband (UMB), Voice over Internet Protocol (VoIP), Unlicensed Mobile Access (UMA), etc.


The user's computer may be a laptop or desktop type of personal computer. It can also be a cell phone, smart phone or other handheld device, including a tablet. The precise form factor of the user's computer does not limit the claimed invention. Examples of well known computing systems, environments, and/or configurations that may be suitable for use with the invention include, but are not limited to, personal computers, server computers, hand-held, laptop or mobile computer or communications devices such as cell phones and PDA's, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.


The system and method described herein can be executed using a computer system, generally comprised of a central processing unit (CPU) that is operatively connected to a memory device, data input and output circuitry (I/O) and computer data network communication circuitry. A video display device may be operatively connected through the I/O circuitry to the CPU. Components that are operatively connected to the CPU using the I/O circuitry include microphones, for digitally recording sound, and video camera, for digitally recording images or video. Audio and video may be recorded simultaneously as an audio visual recording. The I/O circuitry can also be operatively connected to an audio loudspeaker in order to render digital audio data into audible sound. Audio and video may be rendered through the loudspeaker and display device separately or in combination. Computer code executed by the CPU can take data received by the data communication circuitry and store it in the memory device. In addition, the CPU can take data from the I/O circuitry and store it in the memory device. Further, the CPU can take data from a memory device and output it through the I/O circuitry or the data communication circuitry. The data stored in memory may be further recalled from the memory device, further processed or modified by the CPU in the manner described herein and restored in the same memory device or a different memory device operatively connected to the CPU including by means of the data network circuitry. The memory device can be any kind of data storage circuit or magnetic storage or optical device, including a hard disk, optical disk or solid state memory.


The computer can display on the display screen operatively connected to the I/O circuitry the appearance of a user interface. Various shapes, text and other graphical forms are displayed on the screen as a result of the computer generating data that causes the pixels comprising the display screen to take on various colors and shades. The user interface also displays a graphical object referred to in the art as a cursor. The object's location on the display indicates to the user a selection of another object on the screen. The cursor may be moved by the user by means of another device connected by I/O circuitry to the computer. This device detects certain physical motions of the user, for example, the position of the hand on a flat surface or the position of a finger on a flat surface. Such devices may be referred to in the art as a mouse or a track pad. In some embodiments, the display screen itself can act as a trackpad by sensing the presence and position of one or more fingers on the surface of the display screen. When the cursor is located over a graphical object that appears to be a button or switch, the user can actuate the button or switch by engaging a physical switch on the mouse or trackpad or computer device or tapping the trackpad or touch sensitive display. When the computer detects that the physical switch has been engaged (or that the tapping of the track pad or touch sensitive screen has occurred), it takes the apparent location of the cursor (or in the case of a touch sensitive screen, the detected position of the finger) on the screen and executes the process associated with that location. As an example, not intended to limit the breadth of the disclosed invention, a graphical object that appears to be a 2 dimensional box with the word “enter” within it may be displayed on the screen. If the computer detects that the switch has been engaged while the cursor location (or finger location for a touch sensitive screen) was within the boundaries of a graphical object, for example, the displayed box, the computer will execute the process associated with the “enter” command. In this way, graphical objects on the screen create a user interface that permits the user to control the processes operating on the computer.


The system is typically comprised of a central server that is connected by a data network to a user's computer. The central server may be comprised of one or more computers connected to one or more mass storage devices. The precise architecture of the central server does not limit the claimed invention. In addition, the data network may operate with several levels, such that the user's computer is connected through a fire wall to one server, which routes communications to another server that executes the disclosed methods. The precise details of the data network architecture does not limit the claimed invention.


A server may be a computer comprised of a central processing unit with a mass storage device and a network connection. In addition a server can include multiple of such computers connected together with a data network or other data transfer connection, or, multiple computers on a network with network accessed storage, in a manner that provides such functionality as a group. The servers may be virtual servers, each an instance of software operating as an independent server but housed on the same computer hardware. Practitioners of ordinary skill will recognize that functions that are accomplished on one server may be partitioned and accomplished on multiple servers that are operatively connected by a computer network by means of appropriate inter process communication. In addition, the access of the website can be by means of an Internet browser accessing a secure or public page or by means of a client program running on a local computer that is connected over a computer network to the server. A data message and data upload or download can be delivered over the Internet using typical protocols, including TCP/IP, HTTP, SMTP, RPC, FTP or other kinds of data communication protocols that permit processes running on two remote computers to exchange information by means of digital network communication. As a result a data message can be a data packet transmitted from or received by a computer containing a destination network address, a destination process or application identifier, and data values that can be parsed at the destination computer located at the destination network address by the destination application in order that the relevant data values are extracted and used by the destination application.


The invention may also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network. In a distributed computing environment, program modules may be located in both local and remote computer storage media including memory storage devices. Practitioners of ordinary skill will recognize that the invention may be executed on one or more computer processors that are linked using a data network, including, for example, the Internet. In another embodiment, different steps of the process can be executed by one or more computers and storage devices geographically separated by connected by a data network in a manner so that they operate together to execute the process steps. In one embodiment, a user's computer can run an application that causes the user's computer to transmit a stream of one or more data packets across a data network to a second computer, referred to here as a server. The server, in turn, may be connected to one or more mass data storage devices where the database is stored. The server can execute a program that receives the transmitted packet and interpret the transmitted data packets in order to extract database query information. The server can then execute the remaining steps of the invention by means of accessing the mass storage devices to derive the desired result of the query. Alternatively, the server can transmit the query information to another computer that is connected to the mass storage devices, and that computer can execute the invention to derive the desired result. The result can then be transmitted back to the user's computer by means of another stream of one or more data packets appropriately addressed to the user's computer.


Computer program logic implementing all or part of the functionality previously described herein may be embodied in various forms, including, but in no way limited to, a source code form, a computer executable form, and various intermediate forms (e.g., forms generated by an assembler, compiler, linker, or locator.) Source code may include a series of computer program instructions implemented in any of various programming languages (e.g., an object code, an assembly language, or a high-level language such as FORTRAN, C, C++, JAVA, or HTML or scripting languages that are executed by Internet web-broswers) for use with various operating systems or operating environments. The source code may define and use various data structures and communication messages. The source code may be in a computer executable form (e.g., via an interpreter), or the source code may be converted (e.g., via a translator, assembler, or compiler) into a computer executable form.


The invention may be described in the general context of computer-executable instructions, such as program modules, being executed by a computer. Generally, program modules include routines, programs, objects, components, data structures, etc., that perform particular tasks or implement particular abstract data types. The computer program and data may be fixed in any form (e.g., source code form, computer executable form, or an intermediate form) either permanently or transitorily in a tangible storage medium, such as a semiconductor memory device (e.g., a RAM, ROM, PROM, EEPROM, or Flash-Programmable RAM), a magnetic memory device (e.g., a diskette or fixed hard disk), an optical memory device (e.g., a CD-ROM or DVD), a PC card (e.g., PCMCIA card), or other memory device. The computer program and data may be fixed in any form in a signal that is transmittable to a computer using any of various communication technologies, including, but in no way limited to, analog technologies, digital technologies, optical technologies, wireless technologies, networking technologies, and internetworking technologies. The computer program and data may be distributed in any form as a removable storage medium with accompanying printed or electronic documentation (e.g., shrink wrapped software or a magnetic tape), preloaded with a computer system (e.g., on system ROM or fixed disk), or distributed from a server or electronic bulletin board over the communication system (e.g., the Internet or World Wide Web.) It is appreciated that any of the software components of the present invention may, if desired, be implemented in ROM (read-only memory) form. The software components may, generally, be implemented in hardware, if desired, using conventional techniques.


The described embodiments of the invention are intended to be exemplary and numerous variations and modifications will be apparent to those skilled in the art. All such variations and modifications are intended to be within the scope of the present invention as defined in the appended claims. Although the present invention has been described and illustrated in detail, it is to be clearly understood that the same is by way of illustration and example only, and is not to be taken by way of limitation. It is appreciated that various features of the invention which are, for clarity, described in the context of separate embodiments may also be provided in combination in a single embodiment. Conversely, various features of the invention which are, for brevity, described in the context of a single embodiment may also be provided separately or in any suitable combination. It is appreciated that the particular embodiment described in the specification is intended only to provide an extremely detailed disclosure of the present invention and is not intended to be limiting.


It should be noted that the flow diagrams are used herein to demonstrate various aspects of the invention, and should not be construed to limit the present invention to any particular logic flow or logic implementation. The described logic may be partitioned into different logic blocks (e.g., programs, modules, functions, or subroutines) without changing the overall results or otherwise departing from the true scope of the invention. Oftentimes, logic elements may be added, modified, omitted, performed in a different order, or implemented using different logic constructs (e.g., logic gates, looping primitives, conditional logic, and other logic constructs) without changing the overall results or otherwise departing from the true scope of the invention.


Also, while processes or blocks are at times shown as being performed in series, these processes or blocks may instead be performed or implemented in parallel, or may be performed at different times.

Claims
  • 1. A method for comparing a first representation of a document created by reading the document through a first document display or editing program, and a second representation of the document, created by reading the document through a second document display or editing program, different than the first document display or editing program, comprising: obtaining a first hierarchy comprised of a first plurality of nodes representing an organization of alpha-numeric text data comprising the first representation and a second hierarchy comprised of a second plurality of nodes representing an organization of alpha-numeric text data comprising the second representation;advancing a first reference data object and a second reference data object, the first reference data object and the second reference data object corresponding to the respective first and second hierarchies and referencing a first node from the first hierarchy and a second node from the second hierarchy,. respectively, each node in the first and second plurality of nodes being comprised of a data content with a corresponding data type;making a first determination whether a data type associated with a data content comprising the first node may be ignored based on a difference between data types or data contents associated with the first node and the second node, and, in dependence on the first determination, advancing the first reference data object to a next node in a first search sequence of the first hierarchy;making a second determination whether the data type associated with the data content comprising the second node may be ignored based on the difference between the data types or the data contents associated with the first and second nodes, and, in dependence on the second determination, advancing the second reference data object to a next node in a second search sequence of the second hierarchy; andin a case where the first and second determinations do not advance either the first or second reference data objects, making a third determination whether any of the data contents corresponding to the first node match any of the data contents corresponding to the second node, and, in dependence on the third determination, storing in a data file at least one data representing the matching data contents.
  • 2. The method of claim 1 further comprising: in dependence on the third determination, advancing the first and second reference data objects to the next node in the respective first and second search sequences of the respective first and second hierarchies.
  • 3. The method of claim 2, wherein the first and second search sequences are depth first search sequences.
  • 4. The method of claim 2, wherein the first and second search sequences are breadth first search sequences.
  • 5. The method of claim 1, further comprising: in dependence on the third determination being that there is no matching content, applying at least one resynchronization process to create a match between a third node comprising the first hierarchy and a fourth node comprising the second hierarchy.
  • 6. The method of claim 5, wherein the resynchronization process is to determine whether at least one element of the content corresponding to the third node is an automatic numbering code and in dependence thereon, render the numbering and compare the numbering result to the content corresponding to the fourth node.
  • 7. The method of claim 5, wherein the resynchronization process is applied to a DOCX type document, and further comprising determining whether the reference data object for the first hierarchy is at the start of a field and the reference data object for the other hierarchy is at a ‘field start instruction node’ and, in dependence on the determination, moving the first reference data object to the end of the field and the second reference data object to after the ‘field end node,’ respectively.
  • 8. The method of claim 5, wherein the resynchronization process is to determine correspondences between field objects comprising the content corresponding to the respective first and second nodes in the respective first and second hierarchies and allowing special characters comprising the content corresponding to one node to be matched to their corresponding field object corresponding to the other node.
  • 9. The method of claim 5 wherein the resynchronization process is to test the match between a next predetermined number of characters associated with each corresponding first and second node on a character by character basis with varying offsets in order to determine an offset value with the best possible match and then adjust the position of the first and second reference data objects to refer to a third and fourth nodes using the determined offset value.
  • 10. A computer system comprised of at least one central processing unit and one mass data storage device and computer memory, said computer memory comprised of data representing a series of instructions that when executed by the central processing unit causes the computer system to perform the method claimed by claim 1.
  • 11. A non-transitory computer readable media comprised of data representing a series of instructions that when executed by a computer system, causes it to perform the method claimed by claim 1.
  • 12. The method of claim 1 further comprising: tracking the location of a content move change in a content move source comprising the first hierarchy by updating the location of the second reference data object corresponding to the second hierarchy to a reference of position within a move change destination that corresponds to the location of the move source in the first hierarchy.
  • 13. The method of claim 1, wherein the first and second representations are data files of two different document encoding types.
  • 14. The method of claim 1, wherein at least one node in the second hierarchy is comprised of a location data that represents a desired position for a text corresponding to the location data to appear when the second representation is displayed.
  • 15. A computer system comprised of a computer memory storing instructions for comparing a first representation of a document, created by reading the document through a first document display or editing program, and a second representation of the document, created by reading the document through a second document display or editing program, different than the first document display or editing program, and at least one processor configured to execute the instructions to perform operations comprising: obtaining a first hierarchy comprised of a first plurality of nodes representing an organization of alpha-numeric text data comprising the first representation, and a second hierarchy comprised of a second plurality of nodes representing an organization of alpha-numeric text data comprising the second representation;advancing a first reference data object and a second reference data object, each of the first reference data object and the second reference data object corresponding to the respective first and second hierarchies and referencing a first node from the first hierarchy and a second node from the second hierarchy respectively, each node in the first and second plurality of nodes being comprised of a data content with a corresponding data type;making a first determination whether a data type associated with a data content comprising the first node may be ignored based on a difference between data types or data contents associated with the first node and the second node, and in dependence on the first determination, advancing the first reference data object to a next node in a first search sequence of the first hierarchy;making a second determination whether the data type associated with the data content comprising the second node may be ignored based on the difference between data types or data contents associated with the first and second nodes, and, in dependence on the second determination, advancing the second reference data object to a next node in a second search sequence of the second hierarchy; andin a case where the first and second determinations do not advance either the first or second reference data objects, making a third determination whether any of the data contents corresponding to the first node match any of the data contents corresponding to the second node, and, in dependence on the third determination, storing in a data file at least one data representing the matching data contents.
  • 16. The system of claim 15, wherein the operations further comprise: advancing the first and second reference data objects to the next node in the respective first and second search sequences of the respective first and second hierarchies in dependence on the third determination.
  • 17. The system of claim 16 wherein the first and second search sequences are depth first search sequences.
  • 18. The system of claim 16, wherein the first and second search sequences are breadth first search sequences.
  • 19. The system of claim 15, wherein the operations further comprise: making a fourth determination whether at least one resynchronization process can create a match between a third node comprising the first hierarchy and a fourth node comprising the second hierarchy of any content corresponding to the respective first and second nodes in dependence on the third determination being that there is no matching content.
  • 20. The system of claim 15, wherein the first and second representations are data files of two different document encoding types.
  • 21. The system of claim 15, wherein at least one node in the second hierarchy is comprised of a location data that represents a desired position for a text corresponding to the location data to appear when the second representation is displayed.
US Referenced Citations (318)
Number Name Date Kind
4479195 Herr et al. Oct 1984 A
4949300 Christenson et al. Aug 1990 A
5008853 Bly et al. Apr 1991 A
5072412 Henderson, Jr. et al. Dec 1991 A
5220657 Bly et al. Jun 1993 A
5245553 Tanenbaum Sep 1993 A
5247615 Mori et al. Sep 1993 A
5293619 Dean Mar 1994 A
5379374 Ishizaki et al. Jan 1995 A
5446842 Schaeffer et al. Aug 1995 A
5608872 Schwartz et al. Mar 1997 A
5617539 Ludwig et al. Apr 1997 A
5619649 Kovnat et al. Apr 1997 A
5634062 Shimizu et al. May 1997 A
5671428 Muranaga et al. Sep 1997 A
5699427 Chow et al. Dec 1997 A
RE35861 Queen Jul 1998 E
5787175 Carter Jul 1998 A
5787444 Gerken et al. Jul 1998 A
5801702 Dolan et al. Sep 1998 A
5806078 Hug et al. Sep 1998 A
5819300 Kohno et al. Oct 1998 A
5832494 Egger et al. Nov 1998 A
5890177 Moody et al. Mar 1999 A
5897636 Kaeser Apr 1999 A
5898836 Frievald et al. Apr 1999 A
6003060 Aznar et al. Dec 1999 A
6012087 Frievald et al. Jan 2000 A
6029175 Chow et al. Feb 2000 A
6038561 Snyder et al. Mar 2000 A
6049804 Burgess et al. Apr 2000 A
6067551 Brown et al. May 2000 A
6088702 Plantz et al. Jul 2000 A
6128635 Ikeno Oct 2000 A
6145084 Zuili et al. Nov 2000 A
6189019 Blumer et al. Feb 2001 B1
6212534 Lo et al. Apr 2001 B1
6212543 Lo et al. Apr 2001 B1
6219818 Frievald et al. Apr 2001 B1
6243091 Berstis Jun 2001 B1
6263350 Wollrath et al. Jul 2001 B1
6263364 Najork et al. Jul 2001 B1
6269370 Kirsch Jul 2001 B1
6285999 Page Sep 2001 B1
6301368 Bolle et al. Oct 2001 B1
6317777 Skarbo et al. Nov 2001 B1
6321265 Najork et al. Nov 2001 B1
6327611 Everingham Dec 2001 B1
6336123 Inoue et al. Jan 2002 B2
6351755 Najork et al. Feb 2002 B1
6356937 Montville et al. Mar 2002 B1
6377984 Najork et al. Apr 2002 B1
6404446 Bates et al. Jun 2002 B1
6418433 Chakrabarti et al. Jul 2002 B1
6418453 Kraft et al. Jul 2002 B1
6424966 Meyerzon et al. Jul 2002 B1
6449624 Hammack et al. Sep 2002 B1
6505237 Beyda et al. Jan 2003 B2
6513050 Williams et al. Jan 2003 B1
6547829 Meyerzon et al. Apr 2003 B1
6556982 McGaffey et al. Apr 2003 B1
6560620 Ching May 2003 B1
6584466 Serbinis et al. Jun 2003 B1
6591289 Britton Jul 2003 B1
6594662 Sieffert et al. Jul 2003 B1
6614789 Yazdani et al. Sep 2003 B1
6658626 Aiken Dec 2003 B1
6662212 Chandhok et al. Dec 2003 B1
6745024 DeJaco et al. Jun 2004 B1
6832202 Schuyler et al. Dec 2004 B1
6918082 Gross Jul 2005 B1
7085735 Hall et al. Aug 2006 B1
7107518 Ramaley et al. Sep 2006 B2
7113615 Rhoads et al. Sep 2006 B2
7152019 Tarantola et al. Dec 2006 B2
7181492 Wen et al. Feb 2007 B2
7194761 Champagne Mar 2007 B1
7212955 Kirshenbaum et al. May 2007 B2
7233686 Hamid Jun 2007 B2
7240207 Weare Jul 2007 B2
7299504 Tiller et al. Nov 2007 B1
7321864 Gendler Jan 2008 B1
7356704 Rinkevich et al. Apr 2008 B2
7434164 Salesin et al. Oct 2008 B2
7496841 Hadfield Feb 2009 B2
7564997 Hamid Jul 2009 B2
7624447 Horowitz et al. Nov 2009 B1
7627613 Dulitz et al. Dec 2009 B1
7673324 Tirosh et al. Mar 2010 B2
7680785 Najork Mar 2010 B2
7685298 Day Mar 2010 B2
7694336 Rinkevich et al. Apr 2010 B2
7707153 Petito et al. Apr 2010 B1
7788235 Yeo Aug 2010 B1
7796309 Sadovsky et al. Sep 2010 B2
7797724 Calvin Sep 2010 B2
7818678 Massand Oct 2010 B2
7857201 Silverbrook et al. Dec 2010 B2
7877790 Vishik et al. Jan 2011 B2
7890752 Bardsley et al. Feb 2011 B2
7958101 Teugels et al. Jun 2011 B1
8005277 Tulyakov et al. Aug 2011 B2
8042112 Zhu et al. Oct 2011 B1
8117225 Zilka Feb 2012 B1
8145724 Hawks et al. Mar 2012 B1
8181036 Nachenberg May 2012 B1
8196030 Wang et al. Jun 2012 B1
8233723 Sundaresan Jul 2012 B2
8286085 Denise Oct 2012 B1
8301994 Shah et al. Oct 2012 B1
8316237 Felsher et al. Nov 2012 B1
8473847 Glover Jun 2013 B2
8572388 Boemker et al. Oct 2013 B2
8620872 Killalea Dec 2013 B1
8635295 Mulder Jan 2014 B2
8732127 Rotterdam et al. May 2014 B1
8776190 Cavage et al. Jul 2014 B1
8797603 Dougherty et al. Aug 2014 B1
8839100 Donald Sep 2014 B1
9092636 More et al. Jul 2015 B2
9098500 Asokan et al. Aug 2015 B1
9311624 Diament et al. Apr 2016 B2
9652485 Bhargava et al. May 2017 B1
20010018739 Anderson et al. Aug 2001 A1
20010042073 Saether et al. Nov 2001 A1
20020010682 Johnson Jan 2002 A1
20020016959 Barton et al. Feb 2002 A1
20020019827 Shiman et al. Feb 2002 A1
20020023158 Polizzi et al. Feb 2002 A1
20020052928 Stern et al. May 2002 A1
20020063154 Hoyos et al. May 2002 A1
20020065827 Christie et al. May 2002 A1
20020065848 Walker May 2002 A1
20020073188 Rawson Jun 2002 A1
20020087515 Swannack et al. Jul 2002 A1
20020099602 Moskowitz et al. Jul 2002 A1
20020120648 Ball et al. Aug 2002 A1
20020129062 Luparello Sep 2002 A1
20020136222 W. Robohm Sep 2002 A1
20020138744 Schleicher et al. Sep 2002 A1
20020159239 Amie et al. Oct 2002 A1
20030009518 Harrow et al. Jan 2003 A1
20030009528 Sharif et al. Jan 2003 A1
20030037010 Schmelzer Feb 2003 A1
20030051054 Redlich et al. Mar 2003 A1
20030061260 Rajkumar Mar 2003 A1
20030061350 Masuoka et al. Mar 2003 A1
20030078880 Alley et al. Apr 2003 A1
20030084279 Campagna May 2003 A1
20030093755 O'Carroll May 2003 A1
20030097454 Yamakawa et al. May 2003 A1
20030112273 Hadfield Jun 2003 A1
20030115273 Delia et al. Jun 2003 A1
20030131005 Berry Jul 2003 A1
20030158839 Faybishenko et al. Aug 2003 A1
20030191799 Araujo et al. Oct 2003 A1
20030196087 Stringer et al. Oct 2003 A1
20030233419 Beringer Dec 2003 A1
20030237047 Borson Dec 2003 A1
20040031052 Wannamaker et al. Feb 2004 A1
20040122659 Hourihane et al. Jun 2004 A1
20040128321 Hamer Jul 2004 A1
20040148567 Jeon et al. Jul 2004 A1
20040187076 Ki Sep 2004 A1
20040225645 Rowney et al. Nov 2004 A1
20040261016 Glass et al. Dec 2004 A1
20050021980 Kanai Jan 2005 A1
20050038893 Graham Feb 2005 A1
20050055306 Miller et al. Mar 2005 A1
20050055337 Bebo et al. Mar 2005 A1
20050071755 Harrington et al. Mar 2005 A1
20050108293 Lipman et al. May 2005 A1
20050138350 Hariharan Jun 2005 A1
20050138540 Baltus et al. Jun 2005 A1
20050204008 Shinbrood Sep 2005 A1
20050251738 Hirano et al. Nov 2005 A1
20050256893 Perry Nov 2005 A1
20050268327 Starikov Dec 2005 A1
20050278421 Simpson et al. Dec 2005 A1
20060005247 Zhang et al. Jan 2006 A1
20060021031 Leahy et al. Jan 2006 A1
20060047765 Mizoi et al. Mar 2006 A1
20060059196 Sato et al. Mar 2006 A1
20060064717 Shibata et al. Mar 2006 A1
20060069740 Ando Mar 2006 A1
20060112120 Rohall May 2006 A1
20060129627 Phillips Jun 2006 A1
20060158676 Hamada Jul 2006 A1
20060171588 Chellapilla et al. Aug 2006 A1
20060184505 Kedem Aug 2006 A1
20060190493 Kawai et al. Aug 2006 A1
20060218004 Dworkin et al. Sep 2006 A1
20060218643 DeYoung Sep 2006 A1
20060224589 Rowney et al. Oct 2006 A1
20060271947 Lienhart et al. Nov 2006 A1
20060272024 Huang et al. Nov 2006 A1
20060277229 Yoshida et al. Dec 2006 A1
20070005589 Gollapudi Jan 2007 A1
20070011211 Reeves et al. Jan 2007 A1
20070027830 Simons et al. Feb 2007 A1
20070038704 Brown et al. Feb 2007 A1
20070094510 Ross et al. Apr 2007 A1
20070100991 Daniels et al. May 2007 A1
20070112930 Foo et al. May 2007 A1
20070150443 Bergholz Jun 2007 A1
20070179967 Zhang Aug 2007 A1
20070220061 Tirosh et al. Sep 2007 A1
20070220068 Thompson et al. Sep 2007 A1
20070261099 Broussard et al. Nov 2007 A1
20070261112 Todd et al. Nov 2007 A1
20070294612 Drucker et al. Dec 2007 A1
20070299880 Kawabe et al. Dec 2007 A1
20080022003 Alve Jan 2008 A1
20080028017 Garbow et al. Jan 2008 A1
20080033913 Winburn Feb 2008 A1
20080034282 Zernik Feb 2008 A1
20080034327 Cisler et al. Feb 2008 A1
20080065668 Spence et al. Mar 2008 A1
20080080515 Tombroff et al. Apr 2008 A1
20080091465 Fuschino et al. Apr 2008 A1
20080091735 Fukushima et al. Apr 2008 A1
20080162527 Pizano et al. Jul 2008 A1
20080177782 Poston et al. Jul 2008 A1
20080209001 Boyle et al. Aug 2008 A1
20080215667 Rothbarth et al. Sep 2008 A1
20080219495 Hulten et al. Sep 2008 A1
20080235760 Broussard et al. Sep 2008 A1
20080263363 Jueneman et al. Oct 2008 A1
20080275694 Varone Nov 2008 A1
20080288597 Christensen et al. Nov 2008 A1
20080301193 Massand Dec 2008 A1
20080306894 Rajkumar et al. Dec 2008 A1
20080320316 Waldspurger et al. Dec 2008 A1
20090025087 Peirson et al. Jan 2009 A1
20090030997 Malik Jan 2009 A1
20090034804 Cho et al. Feb 2009 A1
20090049132 Gutovski Feb 2009 A1
20090052778 Edgecomb et al. Feb 2009 A1
20090064326 Goldstein Mar 2009 A1
20090083073 Mehta et al. Mar 2009 A1
20090083384 Bhogal et al. Mar 2009 A1
20090129002 Wu et al. May 2009 A1
20090164427 Shields et al. Jun 2009 A1
20090177754 Brezina et al. Jul 2009 A1
20090183257 Prahalad Jul 2009 A1
20090187567 Rolle Jul 2009 A1
20090216843 Willner et al. Aug 2009 A1
20090222450 Zigelman Sep 2009 A1
20090234863 Evans Sep 2009 A1
20090241187 Troyansky Sep 2009 A1
20090319480 Saito Dec 2009 A1
20100011077 Shkolnikov et al. Jan 2010 A1
20100011428 Atwood et al. Jan 2010 A1
20100017404 Banerjee et al. Jan 2010 A1
20100017850 More et al. Jan 2010 A1
20100049807 Thompson Feb 2010 A1
20100058053 Wood et al. Mar 2010 A1
20100064004 Ravi et al. Mar 2010 A1
20100064372 More et al. Mar 2010 A1
20100070448 Omoigui Mar 2010 A1
20100076985 Egnor Mar 2010 A1
20100083230 Ramakrishnan et al. Apr 2010 A1
20100131604 Portilla May 2010 A1
20100146382 Abe et al. Jun 2010 A1
20100174678 Massand Jul 2010 A1
20100174761 Longobardi et al. Jul 2010 A1
20100186062 Banti et al. Jul 2010 A1
20100235763 Massand Sep 2010 A1
20100241943 Massand Sep 2010 A1
20100257352 Errico Oct 2010 A1
20100274765 Murphy et al. Oct 2010 A1
20100287246 Klos et al. Nov 2010 A1
20100318530 Massand Dec 2010 A1
20100332428 McHenry et al. Dec 2010 A1
20110029625 Cheng et al. Feb 2011 A1
20110035655 Heineken Feb 2011 A1
20110041165 Bowen Feb 2011 A1
20110106892 Nelson et al. May 2011 A1
20110125806 Park May 2011 A1
20110141521 Qiao Jun 2011 A1
20110145229 Vailaya et al. Jun 2011 A1
20110197121 Kletter Aug 2011 A1
20110225646 Crawford Sep 2011 A1
20110252098 Kumar Oct 2011 A1
20110252310 Rahaman Oct 2011 A1
20110264907 Betz et al. Oct 2011 A1
20110314384 Lindgren et al. Dec 2011 A1
20120016867 Clemm et al. Jan 2012 A1
20120030563 Lemonik et al. Feb 2012 A1
20120036157 Rolle Feb 2012 A1
20120079267 Lee Mar 2012 A1
20120079596 Thomas et al. Mar 2012 A1
20120117096 Massand May 2012 A1
20120117644 Soeder May 2012 A1
20120133989 Glover May 2012 A1
20120136862 Glover May 2012 A1
20120136951 Mulder May 2012 A1
20120151316 Massand Jun 2012 A1
20120185511 Mansfield Jul 2012 A1
20120246115 King et al. Sep 2012 A1
20120260188 Park et al. Oct 2012 A1
20120317239 Mulder Dec 2012 A1
20130007070 Pitschke Jan 2013 A1
20130060799 Massand Mar 2013 A1
20130074195 Johnston et al. Mar 2013 A1
20130097421 Lim Apr 2013 A1
20130212707 Donahue et al. Aug 2013 A1
20130227043 Murakami Aug 2013 A1
20130227397 Tvorun et al. Aug 2013 A1
20140032489 Hebbar et al. Jan 2014 A1
20140115436 Beaver et al. Apr 2014 A1
20140136497 Georgiev et al. May 2014 A1
20140181223 Homsany et al. Jun 2014 A1
20140279843 Von Weihe Sep 2014 A1
20140281872 Glover Sep 2014 A1
20150026464 Hanner et al. Jan 2015 A1
20150172058 Follis Jun 2015 A1
20160350270 Nakazawa Dec 2016 A1
Foreign Referenced Citations (2)
Number Date Country
10-2004-0047413 May 2004 KR
10-2007-0049518 Nov 2007 KR
Non-Patent Literature Citations (38)
Entry
Cawood, Stephen. How to Do Everything™ Microsoft® SharePoint® 2010. McGraw-Hill, 2010. ISBN 978-0-07-174367-9 (pbk). Copyright © 2010.
Microsoft SharePoint 2010 SDK: Building Block: Files and Documents, msn.microsoft.com (Nov. 1, 2010), https://msdn.microsoft.com/en-us/library/office/ee538269(v=office.14).aspx, (last visited Feb. 27, 2017).
Microsoft SharePoint 2010 SDK: How to: Upload a File to a SharePoint Site from a Local Folders, msn.microsoft.com (Jul. 7, 2010), https://msdn.microsoft.com/en-us/library/office/ms454491(v=office.14).aspx, (last visited Feb. 27, 2017).
Microsoft SharePoint 2010 White Paper, Microsoft.com, www.microsoft.com/downloads/en/details.aspx?familyid=5c562f71-3aa9-46fd-abac-7d381813f2b8 (Sep. 2010), www.microsoft.com/downloads/en/details.aspx?FamilyID=5c562f71-3aa9-46fd-abac-7d381813f2b8 (last visited Feb. 27, 2017).
Office Web Apps Overview (Installed on SharePoint 2010 Products), Technet.Microsoft.com (Jun. 11, 2010), https://technet.microsoft.com/en-us/library/ff431685(v=office.14).aspx, (last visited Feb. 27, 2017).
User Permissions and Permission Levels (SharePoint Foundation 2010)(technet.microsoft.com) (Jan. 4, 2011), http://technet.microsoft.com/en-us/library/cc288074(v=office.14).aspx (last visited Feb. 27, 2017).
Jamison, Scott. Essential SharePoint 2010: Overview, Governance, and Planning. Addison-Wesley Professional; 1 edition (Aug. 22, 2010).
Lightfoot, Johnathan and Beckett, Chris. Plain & Simple Microsoft® SharePoint® 2010. O'Reilly Media, Inc. Copyright © 2010.
Lender, Olga and Coventry, Penelope. Step by Step Microsoft® SharePoint® Foundation 2010. Microsoft Press. ISBN: 978-0-7356-2726-0. Copyright © 2011.
Pattison, Ted et al. Inside Microsoft® SharePoint® 2010. Critical Path Training, LLC © 2011.
Sahil Malik. Microsoft SharePoint 2010: Building Solutions for SharePoint 2010 . Apress; 1st ed. edition (Jun. 7, 2010).
Bettenburg et al., An Empirical Study on the Risks of Using Off-the-Shelf Techniques for Processing Mailing List Data, 2009, IEEE 4 pages.
Bindu et al., Spam War: Battling Ham against Spam, 2011 IEEE 6 pages.
Bobba et al. Attribute-Based Messaging: Access Control and Confidentiality, 2010, ACM 35 pages.
Chen et al., Online Detection and Prevention of Phishing Attacks, 2006, IEEE 7 pages.
Karnouskos et al., Active Electronic Mail, 2002, ACM 6 pages.
Kaushik et al., Email Feedback: A Policy based Approach to Overcoming False Positives, 2005, 10 pages.
Stolfo et al., AMT?MET: Systems for Modeling and Detecting Errant Email. 2003, IEEE 6 pages.
Jain, Pravin. The class of JAVA. Aug. 12, 2010.
Workshare Ltd. Workshare Protect 4.5 Admin Guide, (c) 2006.
Classification Definitions Class 715, Data Processing: Presentation Processing of Document, Operator Interface Processing, and Screen Saver Display Processing; Feb. 2011; pp. 1-33.
Non-Final Office Action dated May 17, 2013 in co-pending U.S. Appl. No. 13/306,765 by Mulder, S.P.M., filed Nov. 29, 2011.
Non-Final Office Action dated Aug. 13, 2013 in co-pending U.S. Appl. No. 13/306,819 by Glover, R.W., filed Nov. 29, 2011.
Tsai, et al., “A document Workspace for Collaboration and Annotation based on XML Technology”, Department of Electrical Engineering, 2001, pp. 165-172.
Roussev, et al., “Integrating XML and Object-based Programming for Distributed Collaboration”, IEEE, 2000, pp. 254-259.
XP-002257904, “Workshare Debuts Synergy”, 2003, 3 pages.
PC Magazine “Pure Intranets: Real-Time Internet Collaboration”, Aug. 30, 2001.
Non-Final Office Action dated May 7, 2008 in Co-pending U.S. Appl. No. 10/023,010, filed Dec. 17, 2001.
Final Office Action dated Apr. 17, 2007 for U.S. Appl. No. 10/023,010, filed Dec. 17, 2001, Issued U.S. Pat. No. 7,496,841.
International Search Report of PCT Application No. PCT/US2010/043345, dated Apr. 28, 2011, 3 pages.
Non-Final Office Action dated Mar. 16, 2006 for U.S. Appl. No. 10/023,010, filed Dec. 17, 2001, Issued U.S. Pat. No. 7,496,841.
Restriction Requirement dated Feb. 14, 2005 for U.S. Appl. No. 10/023,010, filed Dec. 17, 2001, Issued U.S. Pat. No. 7,496,841.
Restriction Requirement dated Jun. 30, 2006 for U.S. Appl. No. 10/136,733, filed Apr. 30, 2002.
Wells et al., “Groupware & Collaboration Support”, www.objs.com/survey/groupwar.htm, Aug. 30, 2001, 10 pages.
Microsoft, “Microsoft XP, Product Guide”, pp. 1-26, 2005.
International Search Report of PCT Application No. PCT/IB2002/005821, dated Jan. 3, 2004, 6 pages.
Non-Final Office Action dated Mar. 20, 2006 in Co-pending U.S. Appl. No. 10/136,733, filed Apr. 30, 2002.
Notice of Allowance dated Oct. 24, 2008 in Co-pending U.S. Appl. No. 10/023,010, filed Dec. 17, 2001.
Related Publications (1)
Number Date Country
20140280336 A1 Sep 2014 US