Subject: [owner-abiword-dev@abisource.com: BOUNCE abiword-dev@abisource.com:    Non-member submission from [Jeff Sadowski  
 
           
 attached mail follows: 
>From owner-abiword-dev@abisource.com  Tue Mar  6 14:32:32 2001
 I'm planning on doing the above (Spelling, Thesaurus, and
 I thought it would be neet if there was a documented distribution method
 Word Table
 Word Type Table
  where type is like noun,verb,...
 Definitions Table
  this way if multiple words have the same definition it only needs to be
 Dictionary Table
  this relates the word table and definition table and also provides a
 Thesaurus Table
  the multirelation would be a pointer to another more general definition
 Grammar Table
  where sentence structure is made up of word types and delimeters
 That's it. Is there a better way to implement the above feature's?
 I can program this if not =)
 Please resond
 Thanks,
 Jeff Sadowski
 
 
 
This archive was generated by hypermail 2b25 
: Tue Mar 06 2001 - 14:54:09 CST
From: Sam TH (sam@uchicago.edu)
Date: Tue Mar 06 2001 - 14:59:12 CST
        sam th		     
        sam@uchicago.edu
        http://www.abisource.com/~sam/
        GnuPG Key:  
        http://www.abisource.com/~sam/key
Return-Path: <owner-abiword-dev@abisource.com>
Delivered-To: abiword-dev@abisource.com
Received: from phys-nfs2.tvi.cc.nm.us (phys-nfs2.tvi.cc.nm.us [198.133.182.42])
        by parsons.abisource.com (Postfix) with ESMTP id AB88113B85A
        for <abiword-dev@abisource.com>; Tue,  6 Mar 2001 14:32:24 -0600 (CST)
Received: from login1 (login.tvi.cc.nm.us [198.133.182.38])
        by phys-nfs2.tvi.cc.nm.us (8.11.1/8.11.1) with ESMTP id f26KWFe09948
        for <abiword-dev@abisource.com>; Tue, 6 Mar 2001 13:32:15 -0700 (MST)
Date: Tue, 6 Mar 2001 13:32:15 -0700 (MST)
From: Jeff Sadowski <jeffski@tvi.cc.nm.us>
To: abiword-dev@abisource.com
Subject: Spelling, Thesaurus, and Grammar checker
Message-ID: <Pine.LNX.4.10.10103061329220.10071-100000@login1.tvi.cc.nm.us>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Grammar checker) and I was thinking of how to implement it.
for submitting new words and definitions to and from online databases
(sorta like CDDB.) I also thought up some scheme for my databases
word#(PK),word
type#(PK),type,description
 description is like for noun =  person,place,thing,idea
definition#(PK),definition
 entered once.
[definition#,word#](PK),relation#,type,pronunciation
 place for the type, relation and pronunciation. 
relation#(PK),multirelation#,general_definition
 in the same table. This provides three levels of a thesaurus lookup
 A. same definition B. relation# and C. multirelation and the
 multirelation can be recursive.
sentence_structure(PK),description
 example entry: assuming 1 relates to verb
 1!
 the description for the above sentence structure would be
 Implicit.
Is there a program out there that is simalar?