-
Notifications
You must be signed in to change notification settings - Fork 1
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
[WIP] Export html #9
Open
dschick
wants to merge
27
commits into
MaxIV-KitsControls:master
Choose a base branch
from
dschick:export-html
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
8e331b4
basic html export
dschick d632eae
add link to export logbook to html
dschick ffb66f0
use slugify for filenames and improve temp-file handling
dschick b1cfe06
change file closing
dschick ccad908
Add buttons for hiding logbookstree and logbook
82af3c8
remove log
d683ec4
Added button to noentry for showing logbooktree and logbook
ab6b7b4
fix indent and clean uo
1ac7018
remove old design
bf24536
css for vertical text
d776498
remove legacy code from old design
631b3f1
remove legacy
cb6c8e1
legacy code
7aa8e11
fix css for border
7b83764
Merge branch 'show_hide_columns_hannes' into 'master'
hannes-petri-maxiv-lu-se 4cfaf9d
filter out all descendants from select options in logbookselector
Jonas-Rosenqvist-maxiv f9d65be
Merge branch 'limit_logbook_move_to_non_descendants' into 'master'
Jonas-Rosenqvist-maxiv dcd3829
gitlab ci
Jonas-Rosenqvist-maxiv a38433a
Update .gitlab-ci.yml
Jonas-Rosenqvist-maxiv c1a6c6a
Update .gitlab-ci.yml
Jonas-Rosenqvist-maxiv 073453f
Improved logbook editor component; disable editing of names of existi…
hannes-petri-maxiv-lu-se 5528df9
Fixed whitespace issue
hannes-petri-maxiv-lu-se 9a3b212
Added clarifying comment
hannes-petri-maxiv-lu-se a9cca5f
Made buttons in logbook edit mode not tiny
hannes-petri-maxiv-lu-se 3de405a
Merge branch 'restrict_logbook_attribute_editing' into 'master'
Jonas-Rosenqvist-maxiv 785ba53
Merge branch 'master' into export-html
dschick d1de59f
disable html attachment
dschick 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 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,25 @@ | ||
before_script: | ||
- docker info | ||
|
||
build_backend_test_image: | ||
stage: build | ||
script: | ||
- docker build ./backend/ -t docker.maxiv.lu.se/elogy_backend-test | ||
- docker push docker.maxiv.lu.se/elogy_backend-test | ||
only: | ||
- master | ||
|
||
build_frontend_test_image: | ||
stage: build | ||
script: | ||
- docker build ./frontend/ -t docker.maxiv.lu.se/elogy_frontend-test | ||
- docker push docker.maxiv.lu.se/elogy_frontend-test | ||
only: | ||
- master | ||
|
||
deploy_test_image: | ||
stage: deploy | ||
script: | ||
- 'curl -H "Authorization: Bearer $AWX_TOKEN" -XPOST https://ansible.maxiv.lu.se/api/v2/job_templates/22/launch/' | ||
only: | ||
- master |
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
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 |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
|
||
#logbookeditor .attributes button { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
#logbookeditor .attribute label { | ||
|
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.
Do you think this the slugifying is really necessary? Shouldn't UTF-8 be OK in filenames nowadays? I'm asking because it is another dependency and I always like to think twice before adding those.
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 was also not sure about that either.
If you think filenames with '`´" etc. are okay, than I can remove it, no problem. I have not tested this for now myself.
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'll do some testing.