-
Notifications
You must be signed in to change notification settings - Fork 32
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 #847 from hdoupe/file_datasource
Merged #847
- Loading branch information
Showing
10 changed files
with
352 additions
and
331 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
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 |
---|---|---|
|
@@ -25,3 +25,4 @@ boto | |
django-storages | ||
django-htmlmin | ||
pyparsing | ||
python-dateutil |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from collections import namedtuple | ||
|
||
PostMeta = namedtuple( | ||
'PostMeta', | ||
['request', | ||
'personal_inputs', | ||
'json_reform', | ||
'model', | ||
'stop_submission', | ||
'has_errors', | ||
'errors_warnings', | ||
'start_year', | ||
'data_source', | ||
'do_full_calc', | ||
'is_file', | ||
'reform_dict', | ||
'assumptions_dict', | ||
'reform_text', | ||
'assumptions_text', | ||
'submitted_ids', | ||
'max_q_length', | ||
'user', | ||
'url'] | ||
) | ||
|
||
BadPost = namedtuple('BadPost', ['http_response_404', 'has_errors']) |
Oops, something went wrong.