-
Notifications
You must be signed in to change notification settings - Fork 175
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
New instruments loading module #4229
Conversation
99dc5e9
to
14fb825
Compare
and put in the `project/instruments`. | ||
|
||
Individual instruments may contain their own configurations (such | ||
as requiring tables to be created or lookup tables.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as requiring tables to be created or lookup tables.) | |
as requiring tables to be created or lookup tables). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should probably apply this again
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think @PapillonMcGill is correct in this case based on some Googling. It's not a big deal though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Google also says that "color" and "neighbor" are correct spelling.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, as the parenthesis was opened inside a phrase, not to at the beginning of a new phrase, it as to be closed inside the phrase, so before the dot.
Not a big deal, as @johnsaigle mentioned, this is why I just commented, not ask for change.
e26cfc6
to
29eccbd
Compare
29eccbd
to
d331f8c
Compare
d331f8c
to
0b65850
Compare
d5f9245
to
378fcec
Compare
This adds a new "instruments" module which takes the place of what was previously done by NDB_Caller and main.php to load instruments. The module does not do anything but delegate to existing instruments that are in the project directory. To test this: test a variety of instruments after this change, in both LINST and PHP format. There should be no noticeable difference.
It was causing lorisform_parser to break
- Names commentID in ControlPanel to match its parent's - Replaces REQUESTS with variables
378fcec
to
8866009
Compare
@xlecours @zaliqarosli now that this is based on the most recent release and passing Travis can you review/test? |
testing works! |
This adds a new "instruments" module which takes the place of what was previously done by NDB_Caller and main.php to load instruments. The module does not do anything but delegate to existing instruments that are in the project directory.
Linst instrument subtests are blank and not able to render its fields. This is because of legacy request variable left over from before PR #4229 that introduced a new instruments loading module.
This adds a new instrument loading module (named "instruments") in order to handle the loading of instrument files which was done by NDB_Caller. This removes the last remaining place that
main.php
was used, which can now be deleted.The NDB_Caller is still required for
survey.php
, until surveys are also converted into a proper module with its own routing.To test this change...