forked from ubccr/coldfront
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #278 from fasrc/cp_isilon
Isilon plugin
- Loading branch information
Showing
20 changed files
with
486 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from coldfront.config.env import ENV | ||
from coldfront.config.logging import LOGGING | ||
from coldfront.config.base import INSTALLED_APPS | ||
|
||
INSTALLED_APPS += [ 'coldfront.plugins.isilon' ] | ||
ISILON_USER = ENV.str('ISILON_USER', '') | ||
ISILON_PASS = ENV.str('ISILON_PASS', '') | ||
|
||
LOGGING['handlers']['isilon'] = { | ||
'class': 'logging.handlers.TimedRotatingFileHandler', | ||
'filename': 'logs/isilon.log', | ||
'when': 'D', | ||
'backupCount': 10, # how many backup files to keep | ||
'formatter': 'default', | ||
'level': 'DEBUG', | ||
} | ||
|
||
LOGGING['loggers']['coldfront.plugins.isilon'] = { | ||
'handlers': ['isilon'], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.