home *** CD-ROM | disk | FTP | other *** search
/ Totally Mad / MAD_DISC_1.ISO / win32 / lss.cpl < prev    next >
Text File  |  1997-10-16  |  3KB  |  71 lines

  1. ##########################################################################
  2. ## Personal Library Software
  3. ##
  4. ## This work protected by US Copyright Law and contains proprietary
  5. ## and confidential trade secrets.
  6. ##
  7. ## (c) Copyright 1994-1995 by Personal Library Software,  ALL RIGHTS RESERVED.
  8. ##
  9. ## File: latin1/english/lss.cpl
  10. ##
  11. ##________________________________________________________________________
  12. ## Purpose:
  13. ##---------
  14. ##
  15. ## Schema for standard 8 English bit language system.
  16. ##
  17. ##________________________________________________________________________
  18. ## 
  19. ## By default, the protocol name is "LanguageSystem", but this may be changed by
  20. ## changing the appropriate string resource in oli.plx (see below).  By
  21. ## default, the subprotocol name is "Standard8Bit", but this may also be
  22. ## changed
  23. ##
  24. ## Component Protocol:
  25. ##   Protocol:
  26. ##     String Resource: OLI_PROTO_LSS_LanguageSystem
  27. ##     Default Value:   "LanguageSystem"
  28. ##
  29. ##   SubProtocol:
  30. ##     String Resource: OLI_SUBPROTO_LSS_StdFrameWork
  31. ##     Default Value:   "StandardFrameWork"
  32. ##
  33. ## This languageSystem is NOT hardcoded, and needs LOTS of additional
  34. ## data.  The schema association for this languageSystem must follow the
  35. ## format for all languageSystems: the languageSystem keyword and a list
  36. ## whose first item is the subprotocol.  For this Standard8Bit
  37. ## languageSystem, the subprotocol will be followed by an association list
  38. ## specifying the language system components that will be used to
  39. ## implement the functionality of the language.
  40. ##
  41. ##########################################################################
  42.  
  43.  
  44.  
  45.  
  46.  
  47. # Language System Association.
  48. #
  49. # Contains Language system keyword, and a list that contains the
  50. # subprotocol name of the language system to be used, plus component
  51. # schema for each component to be used with the language system.
  52. #
  53. # Note that this schema is for the standard 8 bit language system
  54. # Other language systems will not use the same layout, except for the 
  55. # protocol and subprotocol specifiers.
  56. #
  57. "LanguageSystem" =    # Language System protocol keyword
  58.     (                 # LSS associated data for the subprotocol
  59.  
  60.          "SubProtocol"      = "StandardFrameWork"
  61.  
  62.          "WordScanner"      = ( "Standard8Bit"                            )
  63.          "Canonizer"        = ( "Standard8Bit" PreCanonize "englatin.cnz" )
  64.          "Stemmer"          = ( "English"                                 )
  65.          "StopWordList"     = ( "Standard8Bit"             "stopword.cpl" )
  66.          "StringOps"        = ( "Standard8Bit"                            )
  67.          "ParagraphScanner" = ( "Standard8Bit"                            )
  68.  
  69.     ) # End: Language System section
  70.  
  71.