Documenation: Fix spelling errors

Fix spelling errors in documentation and other program texts.
Update the spelling exceptions list.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-10-31 18:39:26 -04:00
parent 8b41a9bfc9
commit cf1726505b
23 changed files with 111 additions and 48 deletions

View File

@@ -170,7 +170,7 @@ Other Changes
- Improve mailer URL regex.
- Add ordering support to the ``SourceColumn`` class. GitLab issue #417.
- Shows the cabinets in the document list. GitLab #417 @corneliusludmann
- Update the index information colums to show the
- Update the index information columns to show the
total number of documents and nodes contained in a level.
- Add workaround for pycountry versions without the bibliographical key.
GitHub issue #250.
@@ -191,7 +191,7 @@ Other Changes
- Convert document version view to item list view.
- Add support for browsing individual document versions.
- Add support for dropdown menus to the item list view template.
- Add support for preserving the file extenstion when downloading a document
- Add support for preserving the file extension when downloading a document
version. GitLab #415.
- Split OCR app into OCR and parsing.
- Use the literal 'System' instead of the target name when
@@ -211,7 +211,7 @@ Other Changes
- Implement field order for the action dynamic forms.
Perform action class validation by importing the class and
not relying on an instance of action model, which might not
exisit when still creating the action.
exist when still creating the action.
- Navigation improvements in the workflow app.
- Rename index nodes to index levels.
- Avoid Maximum recursion depth exceeded exception on index document

View File

@@ -9,7 +9,7 @@ Changes
Turning Mayan EDMS into a single page app
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Historically, Mayan EDMS has steered away from adding too much Javascript
Historically, Mayan EDMS has steered away from adding too much JavaScript
in its code. The goal was to be able to maintain a robust, backend-based
page rendering method that will be as future-proof as possible.
This approach comes at the cost of some page loading speed, and reduced
@@ -19,7 +19,7 @@ The whole system has been update to work as a modern Single Page App.
Single Page Applications (SPAs) rewrite the current page dynamically
rather than loading the entire page on each click of the mouse. This
makes the web application feel and behave more like a desktop
application. Because the majority of the styling and Javascript code
application. Because the majority of the styling and JavaScript code
is loaded only once, there is also the added benefit of less data down
the wire. Thus the application becomes lighter and provides a faster
response time to user events. Because the style is loaded and
@@ -233,7 +233,7 @@ module. Example::
WizardStep.deregister(WizardStepTags)
This will cause the tags assigment step to not be assigned to the upload
This will cause the tags assignment step to not be assigned to the upload
wizard anymore.
@@ -333,15 +333,15 @@ Add JavaScript dependency manager
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
An internal utility to install and upgrade the JavaScript dependencies was added.
This depency manager allows for the easier maintenace of the JavaScript libraries
This depency manager allows for the easier maintenance of the JavaScript libraries
used through the project.
Previously JavaScript libraries we downloaded and installed by manually. These
libraries were them checked into the Git repository. Finally to enable them
the correspoding imports were added to the base templates in the apppeance app.
the corresponding imports were added to the base templates in the appeance app.
This new manager is the first step to start resolving these issues. The manager
allows apps to specify their own dependencies. These dependecies are then
allows apps to specify their own dependencies. These dependencies are then
downloaded when the project is installed or upgraded. As such they are not
part of the repository and lower the file size of the project.

View File

@@ -15,7 +15,7 @@ as a FUSE filesystem. It also includes a fix for indexes that return a
multi line value. The carriage returns and newlines characters are now
converted into spaces to make the index value a valid filesystem directory.
Lastly an issue with the duplicated value was fixed. Indexes levels that
return a duplicated value will now show as directory entried when mounted
return a duplicated value will not show as directory entries when mounted
as a FUSE filesystem.

View File

@@ -337,7 +337,7 @@ Other changes
- Include querystring when force reload of a bare template view.
- Speed up document image fade in reveal.
- Use reseteable timer to ensure more document panels heights are matched.
- Rewrote Mayan's Javascript suite MayanApp into ECMAScript2015.
- Rewrote Mayan's JavaScript suite MayanApp into ECMAScript2015.
- Remove use of ``waitForJQuery``.
- Remove code statistics from the documentation.
- Remove the pending work chapter. This is now available in the Wiki:
@@ -394,7 +394,7 @@ Other changes
- New settings: ``SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND`` and
``SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND_ARGUMENTS`` to control
where and how staging file caching is done.
- Fix an egde case on the document indexing where an empty
- Fix an edge case on the document indexing where an empty
node could be left behind.
- Improve the speed of the document indexing.
- Move the matchHeight call from lazy loading to image loading.