Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
2647ec2
add drawer
rlucke May 26, 2025
fdf0f0f
Add some content to video drawer
rlucke May 30, 2025
074e586
fill video drawer
rlucke Jun 2, 2025
025d64b
add more functions to video drawer
rlucke Jun 3, 2025
319646e
add some more functions to video drawer
rlucke Jun 5, 2025
b0cc5fc
enhance video drawer functions
rlucke Jun 16, 2025
e4263f7
add contentbar
rlucke Jun 23, 2025
d8f88f2
fix oc contentbar
rlucke Jun 23, 2025
90de25f
add namespaces to stores
rlucke Jul 16, 2025
e13e0d0
enhance overview with lots of ui elements and functions
rlucke Jul 17, 2025
992a0f6
use correct modal
rlucke Jul 18, 2025
73cfec3
fix drawer close button layout
rlucke Jul 18, 2025
ae8e23c
fix typo
rlucke Jul 18, 2025
5885c63
use list instead of table in change warning
rlucke Jul 18, 2025
41fcc53
remove testing code
rlucke Jul 18, 2025
c653b18
disable VideoChangeWarning on visibility for now
rlucke Jul 18, 2025
d304f95
Add all videos in course view
rlucke Jul 18, 2025
8610a08
add playlists overview
rlucke Jul 18, 2025
6731509
remove hover effect
rlucke Jul 18, 2025
ccbd07a
intoduce switch ui element and use it for allow download
rlucke Jul 21, 2025
c7b0fb0
display additional informations
rlucke Jul 22, 2025
11fd836
add setDefaultPlaylist in action menu
rlucke Jul 22, 2025
d09e0c0
fix layouts
rlucke Jul 23, 2025
48a537c
add context menu
rlucke Jul 23, 2025
a9786ef
add context menus
rlucke Jul 24, 2025
3d78390
use preview redirect as fallback
rlucke Jul 24, 2025
d1c2ba7
fix getters
rlucke Jul 24, 2025
d85750a
fix namespacing issue
rlucke Jul 24, 2025
77bdc64
enable delete playlist function
rlucke Jul 24, 2025
a1985bc
fix default playlist actions
rlucke Jul 24, 2025
95d4042
add new context menues
rlucke Jul 25, 2025
33ba203
new Admin UI layout
rlucke Sep 10, 2025
676ebec
add aria-label
rlucke Sep 10, 2025
f78f445
add mobile ui part 1
rlucke Sep 15, 2025
307057e
fix call toSanitizedArray on null
rlucke Sep 16, 2025
01dce1b
add empty state
rlucke Sep 16, 2025
97a3d29
add empty but processing state
rlucke Sep 16, 2025
7ddb27d
tablet responsivness
rlucke Sep 17, 2025
53b6bd9
add sorting
rlucke Sep 17, 2025
8ab3771
enhance upload dialog part 1
rlucke Sep 19, 2025
f7c5e4f
add responsive layout to video upload dialog
rlucke Sep 19, 2025
1703d59
new upload ui progress layout
rlucke Sep 22, 2025
e2da291
fix message box layout in upload dialog
rlucke Sep 22, 2025
aafe61d
restore video-row component
rlucke Sep 22, 2025
2338906
fix icon
rlucke Sep 22, 2025
1ac3f54
enhance add playlist dialog
rlucke Sep 22, 2025
4ce3400
fix z-index
rlucke Sep 22, 2025
701aec2
fix disabled in dialogs and enhance videosaddfromcourses
rlucke Sep 22, 2025
24dcd3d
fix warning issue
rlucke Sep 22, 2025
a2d8a7f
uncomment SearchBar
rlucke Sep 22, 2025
0a6ca27
fix search and enhance add dialogs
rlucke Sep 22, 2025
678b3dc
fix add from course dialog
rlucke Sep 22, 2025
67b48c4
minor layout fix
rlucke Sep 24, 2025
bae5fbd
clean up app
rlucke Sep 24, 2025
5fb8985
add loading
rlucke Sep 24, 2025
d414ff0
cleanup course view
rlucke Sep 24, 2025
865edd4
cleanup course view script
rlucke Sep 24, 2025
6498c7c
update store values when update video
rlucke Sep 24, 2025
0411430
add search function for all Videos
rlucke Sep 24, 2025
29c66e4
add search function to playlists
rlucke Sep 24, 2025
1f67379
some layout fixes
rlucke Sep 24, 2025
7dd05aa
some little fixes
rlucke Sep 24, 2025
1b8c64a
add drawer backdrop
rlucke Sep 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions OpencastV3.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public function __construct()

$this->addStylesheet("assets/css/courseware.scss");
$this->addStylesheet("assets/css/opencast.scss");
$this->addStylesheet("assets/css/layouts.scss");
VersionHelper::get()->registerCoursewareBlock($this);
}

Expand Down
1 change: 1 addition & 0 deletions app/controllers/course.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public function index_action()

PageLayout::setTitle($this->_('Opencast Videos'));
PageLayout::setBodyElementId('opencast-plugin');
PageLayout::disableSidebar(true);

$this->studip_version = $this->getStudIPVersion();

Expand Down
Loading