Local Network Shared Dictionary

Select a network location

You will need a network location, accessible to all of your NX users, to which they enjoy write privileges and a similar location from which they have read only rights. Administrators must be able to read and write in both locations.

Sample Config.json for Local Network

When CADLex starts it reads a configuration file in order to set which mode it is operating in and identify the network locations.

{
  "language": "en_GB",
  "input_mode": "file",
  "file": {
    "dictionary_path": "<<readable location>>\\custom_dictionary.txt",
    "new_request_path": "<<writable location>>\\new_request.txt",
    "rejected_path": "<<readable location>>\\rejected.txt"
  },
  "web": {  }
}

PARAMETERS

input_mode Single word governing which mode CADLex is running in - either 'file' or 'web'.
"input_mode": "file",
dictionary_path This is the shared network location for the reference dictionary.
"dictionary_path": "<<readable location>>\\custom_dictionary.txt",
new_request_path This is the shared network location for the file which stores requests from users for words to be added to the dictionary. The dictionary administrator can elect to move these words into the company dictionary or add them to the rejection list.
"new_request_path": "<<writable location>>\\new_request.txt",
rejected_path This is the shared network location for the file which stores words which the administrator has previously rejected. When a user wants to add a new word to the dictionary - CADLex will reject any words which have previously been rejected.
"rejected_path": "<<readable location>>\\rejected.txt"