├── CHANGELOG.md ├── README.md ├── action.php ├── amd ├── build │ ├── jspdf.min.js │ ├── jspdf.min.js.map │ ├── pdf_viewer.min.js │ └── pdf_viewer.min.js.map └── src │ ├── jspdf.js │ └── pdf_viewer.js ├── backup └── moodle2 │ ├── backup_pdfannotator_activity_task.class.php │ ├── backup_pdfannotator_stepslib.php │ ├── restore_pdfannotator_activity_task.class.php │ └── restore_pdfannotator_stepslib.php ├── classes ├── event │ ├── course_module_instance_list_viewed.php │ ├── course_module_viewed.php │ └── report_added.php ├── output │ ├── answermenu.php │ ├── comment.php │ ├── index.php │ ├── printview.php │ ├── questionmenu.php │ ├── reportmenu.php │ └── statistics.php └── privacy │ └── provider.php ├── constants.php ├── controller.php ├── db ├── access.php ├── events.php ├── install.php ├── install.xml ├── messages.php └── upgrade.php ├── forward_form.php ├── index.php ├── lang └── en │ └── pdfannotator.php ├── lib.php ├── locallib.php ├── mod_form.php ├── model ├── annotation.class.php ├── comment.class.php ├── overviewtable.php ├── pdfannotator.php └── statistics.class.php ├── pix ├── area.PNG ├── comments_all.svg ├── comments_private.svg ├── comments_private_indicator.svg ├── comments_public.svg ├── comments_public_indicator.svg ├── delete.svg ├── download.svg ├── editstring.svg ├── export_csv.svg ├── export_pdf.svg ├── file-pdf.svg ├── flagged.png ├── fullscreen.png ├── fullscreen_collapse.png ├── highlight.png ├── icon.svg ├── icon_panda.png ├── link.png ├── link.svg ├── link_gross.svg ├── link_small.png ├── monologo.svg ├── new.gif ├── new.png ├── openbook.png ├── pin.PNG ├── pinbild.svg ├── print.svg ├── print_comments.svg ├── strikeout.PNG ├── strikethrough.svg ├── text_color_picker.svg └── text_highlight_picker.svg ├── renderable.php ├── renderer.php ├── reportform.php ├── settings.php ├── shared ├── index.js ├── locallib.js ├── overview.js ├── pdf.js ├── pdf.worker.js ├── statistic.js └── textclipper.js ├── styles.css ├── templates ├── add_comment_editor_placeholder.mustache ├── comment.mustache ├── dropdownmenu.mustache ├── edit_comment_editor_placeholder.mustache ├── index.mustache └── statistic.mustache ├── tests ├── generator │ └── lib.php └── privacy │ └── provider_test.php ├── thirdpartylibs.xml ├── version.php └── view.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/README.md -------------------------------------------------------------------------------- /action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/action.php -------------------------------------------------------------------------------- /amd/build/jspdf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/amd/build/jspdf.min.js -------------------------------------------------------------------------------- /amd/build/jspdf.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/amd/build/jspdf.min.js.map -------------------------------------------------------------------------------- /amd/build/pdf_viewer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/amd/build/pdf_viewer.min.js -------------------------------------------------------------------------------- /amd/build/pdf_viewer.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/amd/build/pdf_viewer.min.js.map -------------------------------------------------------------------------------- /amd/src/jspdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/amd/src/jspdf.js -------------------------------------------------------------------------------- /amd/src/pdf_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/amd/src/pdf_viewer.js -------------------------------------------------------------------------------- /backup/moodle2/backup_pdfannotator_activity_task.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/backup/moodle2/backup_pdfannotator_activity_task.class.php -------------------------------------------------------------------------------- /backup/moodle2/backup_pdfannotator_stepslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/backup/moodle2/backup_pdfannotator_stepslib.php -------------------------------------------------------------------------------- /backup/moodle2/restore_pdfannotator_activity_task.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/backup/moodle2/restore_pdfannotator_activity_task.class.php -------------------------------------------------------------------------------- /backup/moodle2/restore_pdfannotator_stepslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/backup/moodle2/restore_pdfannotator_stepslib.php -------------------------------------------------------------------------------- /classes/event/course_module_instance_list_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/event/course_module_instance_list_viewed.php -------------------------------------------------------------------------------- /classes/event/course_module_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/event/course_module_viewed.php -------------------------------------------------------------------------------- /classes/event/report_added.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/event/report_added.php -------------------------------------------------------------------------------- /classes/output/answermenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/output/answermenu.php -------------------------------------------------------------------------------- /classes/output/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/output/comment.php -------------------------------------------------------------------------------- /classes/output/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/output/index.php -------------------------------------------------------------------------------- /classes/output/printview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/output/printview.php -------------------------------------------------------------------------------- /classes/output/questionmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/output/questionmenu.php -------------------------------------------------------------------------------- /classes/output/reportmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/output/reportmenu.php -------------------------------------------------------------------------------- /classes/output/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/output/statistics.php -------------------------------------------------------------------------------- /classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/classes/privacy/provider.php -------------------------------------------------------------------------------- /constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/constants.php -------------------------------------------------------------------------------- /controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/controller.php -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/db/access.php -------------------------------------------------------------------------------- /db/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/db/events.php -------------------------------------------------------------------------------- /db/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/db/install.php -------------------------------------------------------------------------------- /db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/db/install.xml -------------------------------------------------------------------------------- /db/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/db/messages.php -------------------------------------------------------------------------------- /db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/db/upgrade.php -------------------------------------------------------------------------------- /forward_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/forward_form.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/index.php -------------------------------------------------------------------------------- /lang/en/pdfannotator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/lang/en/pdfannotator.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/lib.php -------------------------------------------------------------------------------- /locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/locallib.php -------------------------------------------------------------------------------- /mod_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/mod_form.php -------------------------------------------------------------------------------- /model/annotation.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/model/annotation.class.php -------------------------------------------------------------------------------- /model/comment.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/model/comment.class.php -------------------------------------------------------------------------------- /model/overviewtable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/model/overviewtable.php -------------------------------------------------------------------------------- /model/pdfannotator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/model/pdfannotator.php -------------------------------------------------------------------------------- /model/statistics.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/model/statistics.class.php -------------------------------------------------------------------------------- /pix/area.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/area.PNG -------------------------------------------------------------------------------- /pix/comments_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/comments_all.svg -------------------------------------------------------------------------------- /pix/comments_private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/comments_private.svg -------------------------------------------------------------------------------- /pix/comments_private_indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/comments_private_indicator.svg -------------------------------------------------------------------------------- /pix/comments_public.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/comments_public.svg -------------------------------------------------------------------------------- /pix/comments_public_indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/comments_public_indicator.svg -------------------------------------------------------------------------------- /pix/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/delete.svg -------------------------------------------------------------------------------- /pix/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/download.svg -------------------------------------------------------------------------------- /pix/editstring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/editstring.svg -------------------------------------------------------------------------------- /pix/export_csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/export_csv.svg -------------------------------------------------------------------------------- /pix/export_pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/export_pdf.svg -------------------------------------------------------------------------------- /pix/file-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/file-pdf.svg -------------------------------------------------------------------------------- /pix/flagged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/flagged.png -------------------------------------------------------------------------------- /pix/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/fullscreen.png -------------------------------------------------------------------------------- /pix/fullscreen_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/fullscreen_collapse.png -------------------------------------------------------------------------------- /pix/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/highlight.png -------------------------------------------------------------------------------- /pix/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/icon.svg -------------------------------------------------------------------------------- /pix/icon_panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/icon_panda.png -------------------------------------------------------------------------------- /pix/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/link.png -------------------------------------------------------------------------------- /pix/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/link.svg -------------------------------------------------------------------------------- /pix/link_gross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/link_gross.svg -------------------------------------------------------------------------------- /pix/link_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/link_small.png -------------------------------------------------------------------------------- /pix/monologo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/monologo.svg -------------------------------------------------------------------------------- /pix/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/new.gif -------------------------------------------------------------------------------- /pix/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/new.png -------------------------------------------------------------------------------- /pix/openbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/openbook.png -------------------------------------------------------------------------------- /pix/pin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/pin.PNG -------------------------------------------------------------------------------- /pix/pinbild.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/pinbild.svg -------------------------------------------------------------------------------- /pix/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/print.svg -------------------------------------------------------------------------------- /pix/print_comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/print_comments.svg -------------------------------------------------------------------------------- /pix/strikeout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/strikeout.PNG -------------------------------------------------------------------------------- /pix/strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/strikethrough.svg -------------------------------------------------------------------------------- /pix/text_color_picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/text_color_picker.svg -------------------------------------------------------------------------------- /pix/text_highlight_picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/pix/text_highlight_picker.svg -------------------------------------------------------------------------------- /renderable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/renderable.php -------------------------------------------------------------------------------- /renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/renderer.php -------------------------------------------------------------------------------- /reportform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/reportform.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/settings.php -------------------------------------------------------------------------------- /shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/shared/index.js -------------------------------------------------------------------------------- /shared/locallib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/shared/locallib.js -------------------------------------------------------------------------------- /shared/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/shared/overview.js -------------------------------------------------------------------------------- /shared/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/shared/pdf.js -------------------------------------------------------------------------------- /shared/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/shared/pdf.worker.js -------------------------------------------------------------------------------- /shared/statistic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/shared/statistic.js -------------------------------------------------------------------------------- /shared/textclipper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/shared/textclipper.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/styles.css -------------------------------------------------------------------------------- /templates/add_comment_editor_placeholder.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/templates/add_comment_editor_placeholder.mustache -------------------------------------------------------------------------------- /templates/comment.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/templates/comment.mustache -------------------------------------------------------------------------------- /templates/dropdownmenu.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/templates/dropdownmenu.mustache -------------------------------------------------------------------------------- /templates/edit_comment_editor_placeholder.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/templates/edit_comment_editor_placeholder.mustache -------------------------------------------------------------------------------- /templates/index.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/templates/index.mustache -------------------------------------------------------------------------------- /templates/statistic.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/templates/statistic.mustache -------------------------------------------------------------------------------- /tests/generator/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/tests/generator/lib.php -------------------------------------------------------------------------------- /tests/privacy/provider_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/tests/privacy/provider_test.php -------------------------------------------------------------------------------- /thirdpartylibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/thirdpartylibs.xml -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/version.php -------------------------------------------------------------------------------- /view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwthmoodle/moodle-mod_pdfannotator/HEAD/view.php --------------------------------------------------------------------------------