-
Notifications
You must be signed in to change notification settings - Fork 1
Update study cells #101
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
Merged
Merged
Update study cells #101
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
2889f92
Removed 8 unused dependencies
pendingintent c5e30e2
Added help page for creation of SOA Matrix
pendingintent 50713b3
Issue #100: Added study label to header of UI pages
pendingintent 739a20a
order_index is used to display the list of instances/columns
pendingintent c84acfc
Issue #93: Added reordering of encounters
pendingintent bb17406
Reorder API endpoint is no longer deprecated
pendingintent 0b55d3b
Issue 99: Removed study cell endpoints
pendingintent 6ed8fbf
Issue 99: Removed study cell endpoints and moved to dedicated PY file…
pendingintent f313fd0
Issue #99: Added reorder functionality to study cells
pendingintent 02b808d
Added xlrd
pendingintent 85499a6
Update src/soa_builder/web/templates/study_cells.html
pendingintent e046366
Update src/soa_builder/web/templates/encounters.html
pendingintent bf89e43
Update src/soa_builder/web/templates/study_cells.html
pendingintent 985e844
Update src/soa_builder/web/routers/cells.py
pendingintent ba4d42f
Update src/soa_builder/web/app.py
pendingintent 164ec23
Update src/soa_builder/web/templates/help.html
pendingintent 14f9ee4
Update src/soa_builder/web/templates/help.html
pendingintent 7ec0a52
Update src/soa_builder/web/templates/help.html
pendingintent d6100d9
Update src/soa_builder/web/templates/help.html
pendingintent 91b7e01
Removed visits/reorder endpoint
pendingintent 59e9769
Pass an explicit context (at least an empty dict) so the help page re…
pendingintent File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,38 +1,30 @@ | ||
| annotated-doc==0.0.4 | ||
| annotated-types==0.7.0 | ||
| anyio==4.12.1 | ||
| beautifulsoup4==4.14.3 | ||
| certifi==2026.1.4 | ||
| charset-normalizer==3.4.4 | ||
| click==8.3.0 | ||
| docraptor==3.1.0 | ||
| dotenv==0.9.9 | ||
| et_xmlfile==2.0.0 | ||
| fastapi==0.128.5 | ||
| fhir.resources==8.2.0 | ||
| fhir_core==1.1.5 | ||
| h11==0.16.0 | ||
| httpcore==1.0.9 | ||
| httpx==0.28.1 | ||
| idna==3.11 | ||
| Jinja2==3.1.6 | ||
| numpy==2.4.2 | ||
| openpyxl==3.1.5 | ||
| pandas==3.0.0 | ||
| xlrd==2.0.1 | ||
| pydantic==2.12.5 | ||
| pydantic_core==2.41.5 | ||
| python-dateutil==2.9.0.post0 | ||
| python-dotenv==1.2.1 | ||
| python-multipart==0.0.22 | ||
| PyYAML==6.0.3 | ||
| requests==2.32.5 | ||
| six==1.17.0 | ||
| soupsieve==2.8.3 | ||
| starlette==0.52.1 | ||
| stringcase==1.2.0 | ||
| typing-inspection==0.4.2 | ||
| typing_extensions==4.15.0 | ||
| urllib3==2.6.3 | ||
| usdm==0.66.0 | ||
| uvicorn==0.38.0 | ||
| yattag==1.16.1 |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Deprecated code is being "commented out" via a standalone triple-quoted string. This leaves a pointless string literal statement in the module body and makes it easy to accidentally re-enable/merge conflicts. Prefer removing the dead endpoint entirely, or guard it with an explicit
if False:block and a clear comment.