Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs #344

Merged
merged 4 commits into from
Jun 3, 2016
Merged

Docs #344

Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Updating docs
  • Loading branch information
kevgliss committed Jun 3, 2016
commit f5b5da64fe28ded98af8e28ad769b58c7851db77
2 changes: 1 addition & 1 deletion docs/administration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ For more information about how to use social logins, see: `Satellizer <https://g

::

GOOGLE_CLIENT_ID = "client-id"
GOOGLE_CLIENT_ID = "client-id"

.. data:: GOOGLE_SECRET
:noindex:
Expand Down
13 changes: 6 additions & 7 deletions docs/developer/plugins/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ certificate Lemur does not know about and adding the certificate to it's invento

The `SourcePlugin` object has one default option of `pollRate`. This controls the number of seconds which to get new certificates.

.. warning::
Lemur currently has a very basic polling system of running a cron job every 15min to see which source plugins need to be run. A lock file is generated to guarantee that
.. warning::
Lemur currently has a very basic polling system of running a cron job every 15min to see which source plugins need to be run. A lock file is generated to guarantee that
only one sync is running at a time. It also means that the minimum resolution of a source plugin poll rate is effectively 15min. You can always specify a faster cron
job if you need a higher resolution sync job.

Expand All @@ -223,8 +223,8 @@ The `SourcePlugin` object requires implementation of one function::
# request.get("some source of certificates")


.. Note::
Often times to facilitate code re-use it makes sense put source and destination plugins into one package.
.. note::
Often times to facilitate code re-use it makes sense put source and destination plugins into one package.


Export
Expand All @@ -244,9 +244,8 @@ The `ExportPlugin` object requires the implementation of one function::
# return "extension", passphrase, raw


.. Note::
Support of various formats sometimes relies on external tools system calls. Always be mindful of sanitizing any input to
these calls.
.. note::
Support of various formats sometimes relies on external tools system calls. Always be mindful of sanitizing any input to these calls.


Testing
Expand Down
Loading