-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[DONE] Improve live transcript #780 [DONE] Update main.js -fix user search in video filter aside #779 [DONE] live_event disable buttons when stop is clicked + REMOVE JQuery #778 [DONE] live_event prevent new recording when manually stop #777 [DONE] Update Encoding_video_model.py #776 [DONE] Update playlist.js #775 [DONE] Fix user search from navbar #773 [DONE] fix theme in video edit page #772 [DONE] Correct bad contrast on opencast studio #771 [DONE] 3.1 FIX - Pampletousse/fix fvideo list refresh with filters #770 [DONE] Meeting thumbnail mode #769 [DONE] Fix launch_encode_video_studio fct with name of parameter input_video #766 [DONE] Add missing titles on video cards #765 [DONE] change default port to 9090 #764 [DONE] fix opencast studio last version #755 [DONE] Event video on hold #752 [DONE] improve video obsolescence #750 [DONE] Fix navbar 'My events' button display #749 [DONE] create xapi app to manage and send statements #748 [DONE] Add resolution threshold for encoding #747 [DONE] Ptitloup/improve configuration #746 [DONE] replace block by inline for button navbar #745 [DONE] Fix liveevent qrcode in admin part #743 [DONE] Meeting : get recordings and manage it #741 [DONE][FIX] add return msg when calling fix duration command #740 [DONE] max viewers on each live event #739 [DONE] corrections on code_formatting.yml #738 [DONE] CI: Accessibility testing & Elastic search #737 [DONE] Ptitloup/improve configuration #732 [DONE] Feature/conteneurisation #731 [DONE] Prevent a Reflected XSS on /videos/url (Issue #728) #730 [DONE] Live Transcription #729 [DONE] use reverse to get recorder notify url in command #721 [DONE] Do not include metadata while video is restricted. #720 [DONE] fix url category #718 [DONE] Ajout controle permission pour affichage ajout live live #716 [DONE] add minor correction to channel home page #715 [DONE] Désinscription des utilisateurs aux groupes gérés automatiquement #713 [DONE] add opencast studio config in configuration_markdown #712 [DONE] Update ConfigurationPod.md #711 [DONE] Ptitloup/configuration markdown #710 Co-authored-by: Ptitloup <[email protected]> Co-authored-by: Olivier Bado-Faustin <[email protected]> Co-authored-by: mattbild <[email protected]> Co-authored-by: farid.aitkarra <[email protected]> Co-authored-by: mateo <[email protected]> Co-authored-by: github-actions <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pampletousse <[email protected]> Co-authored-by: Loïc Bonavent <[email protected]> Co-authored-by: MattBild <[email protected]> Co-authored-by: cbissler <> Co-authored-by: fanfounet <> Co-authored-by: RaphaelDebray <>
- Loading branch information
1 parent
98c7329
commit 35185f5
Showing
226 changed files
with
23,043 additions
and
11,362 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
DJANGO_SUPERUSER_USERNAME=<USER> | ||
DJANGO_SUPERUSER_PASSWORD=<PWD> | ||
DJANGO_SUPERUSER_EMAIL=<MAIL> | ||
ELASTICSEARCH_TAG=elasticsearch:7.17.7 | ||
NODE_TAG=node:19 | ||
PYTHON_TAG=python:3.7-buster | ||
REDIS_TAG=redis:alpine3.16 |
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,15 @@ | ||
# Définissez le comportement par défaut, au cas où les utilisateurs n'auraient pas défini core.autocrlf. | ||
* text=auto | ||
|
||
# Déclarez explicitement les fichiers texte que vous souhaitez toujours normaliser et convertir | ||
# *.c text | ||
# *.h text | ||
*.sh text eol=lf | ||
|
||
# Déclarez les fichiers qui auront toujours des fins de ligne CRLF. | ||
# *.sln text eol=crlf | ||
*.bat text eol=crlf | ||
|
||
# Désigne tous les fichiers qui sont vraiment binaires et ne doivent pas être modifiés. | ||
*.png binary | ||
*.jpg binary |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
name: Code Formatting | ||
|
||
on: | ||
|
@@ -10,20 +11,27 @@ jobs: | |
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: set git config | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | ||
# Prettify js code with prettier | ||
- name: Running prettier | ||
run: npx prettier --write pod/*/static/**/*.js | ||
|
||
- name: Check for modified files | ||
id: prettier-git-check | ||
run: echo modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi) >> $GITHUB_OUTPUT | ||
|
||
- name: Push changes | ||
- name: Push prettify changes | ||
if: steps.prettier-git-check.outputs.modified == 'true' | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git commit -am "Fixup: format code with Prettier" | ||
git commit -am "Fixup. Format code with Prettier" | ||
git push | ||
# Prettify py code with black | ||
- name: Install Black | ||
run: | | ||
python -m pip install --upgrade pip | ||
|
@@ -36,11 +44,24 @@ jobs: | |
id: black-git-check | ||
run: echo modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi) >> $GITHUB_OUTPUT | ||
|
||
- name: Commit changes | ||
- name: Push black changes | ||
if: steps.black-git-check.outputs.modified == 'true' | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | ||
git commit -am "Fixup: format code with Black" | ||
git commit -am "Fixup. Format code with Black" | ||
git push | ||
# Generate configuration doc | ||
- name: Generate configuration doc in fr | ||
run: | | ||
pip install -r requirements.txt | ||
python manage.py createconfiguration fr | ||
- name: Check for modified files | ||
id: config-git-check | ||
run: echo modified=$(if git diff --quiet; then echo "false"; else echo "true"; fi) >> $GITHUB_OUTPUT | ||
|
||
- name: Push auto-config changes | ||
if: steps.config-git-check.outputs.modified == 'true' | ||
run: | | ||
git commit -am "Auto-update configuration files" | ||
git push |
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,24 @@ | ||
{ | ||
"defaults": { | ||
"timeout": 120000, | ||
"viewport": { | ||
"width": 320, | ||
"height": 480, | ||
"isMobile": true | ||
}, | ||
"concurrency": 1, | ||
"debug": true | ||
}, | ||
"urls": [ | ||
"http://localhost:9090/", | ||
"http://localhost:9090/accounts/login", | ||
"http://localhost:9090/videos", | ||
"http://localhost:9090/video/0001-video-test/", | ||
"http://localhost:9090/live/events/" | ||
], | ||
"todo":[ | ||
"These urls are not A11y compliant yet, and need more work from 3rd party", | ||
"http://localhost:9090/video/stats_view/videos/" | ||
] | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
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.