Code Monkey home page Code Monkey logo

h5p-question-set's Introduction

H5P Question Set

Test your users with by putting together multiple tasks into a question set(quiz)

License

(The MIT License)

Copyright (c) 2012-2014 Joubel AS

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

h5p-question-set's People

Contributors

andreascerpus avatar antonioaneiros avatar devland avatar docmoritz avatar e-me avatar ellinokon avatar falcon-git avatar fanncw avatar fnoks avatar germanvaleroelizondo avatar gwenillia avatar icc avatar isa-realia avatar izendegi avatar jarvil avatar languafe avatar makmentins avatar miropuhek avatar msr930 avatar otacke avatar ravimajithia avatar sabahuddin avatar sandroscosta avatar tajakobsen avatar thomasmars avatar timothyylim avatar totoromaum avatar vildestabell avatar weblate avatar xtractorab avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

h5p-question-set's Issues

add progress type "bar"

I want to prequalify a pull request related to the following:
User story:
The options "textual" and "dots" already exists. I want add a new: progress bar.
UX:
Captura de pantalla 2019-05-01 a la(s) 8 38 31 a  m
Technical solution:
add on js/questionset.js render, on css/questionset.css the css and semantics.json configuration

Solution/retry buttons for H5P won't disable

Hi Team,

When using Content Bank with H5p, the "show solution" and "retry" buttons for "Question still appear even after being disabled.

Steps to replicate:

  1. As an admin, navigate to a course or create a new one.
  2. Go to Content Bank
  3. Click Add>"question set"
  4. Fill in the minimum requirements (create at least one question, does not matter if multiple choice, true/false)
  5. Click on behavioural settings and uncheck enable "retry" button and enable "show solution" button
  6. Click on Settings for "check", "show solution" and "retry" and make both buttons "disabled" and save.
  7. Now go to Content Bank and click on your newly created question set.
  8. Click an answer and finish, the "show solution" and "retry" buttons still show.
  9. Go back to the course and add the H5P activity (not the interactive content) choose the activity you just created and save it.
  10. Login as a student and navigate to H5P, click answers and finish, you will notice the buttons still show for a student.

Any combination of the settings still result in the same behavior of the buttons still displaying.

This is across all themes. This was tested on Moodle testing site
Screenshot 2022-12-21 at 9 26 18 AM

Thanks.

Finish Button Text missing

After updating (from v 1.17.2 to 1.20.2) there is no finish button text at the end of all questions - just the fontAwesome icon.

If I change the questionset.js as it was before (in the old version), it is ok again.

Please check

finishButtonText: params.endGame.finishButtonText,

vs.

finishButtonText: self.isSubmitting ? params.endGame.submitButtonText : params.endGame.finishButtonText,

as well as

const finishButtonText = (self.isSubmitting) ? params.texts.submitButton : params.endGame.finishButton question.addButton('finish', finishButtonText,

vs.

question.addButton("finish", params.texts.finishButton,

Add a video or audio

The H5P question set mode lacks the capability to upload a video/audio based upon which a set of questions can then be asked. This would be highly useful in designing audio/listening comprehension exams for language learning

Missing Question Title: Multiple Choice

The code snippet for the 'Question Title' seems to be missing in the latest release, it sits underneath the Question Type dropdown and above the description of the current question.

Anyone else seen this?

H5P setting questions

Quiz finished Fail and Passed video Skip video button doesn't work when embedded

When embedded this using an iframe with fail and pass videos and enabling a skip video button, the skip video button runs away so clicking the skip video button doesn't skip the video. Instead you have to click the skip video button, hold the click and move the mouse all the . way to the bottom of the video where the skip video button runs away to and release there, and then the video is skipped
screen shot 2018-05-01 at 4 06 50 pm
screen shot 2018-05-01 at 4 07 38 pm

Can only add 3 Questions on Drupal

When adding more than 3 questions on Drupal it deletes everything past the third question. Seems the max questions is set to 3.
Version: 8.x-1.0-rc4
Drupal

How is this project built

Running the npm build command does create the distributable. But is there a build process to create the zip file that can be used in uploading to Lumi. I am doing it manually and it is taking a lot of time. I am wondering if there is a process to simplify this

Add more question types (enhancement)

i.e. Image Choice as a part of question set
would be very useful for listening exercises in which students have to match audio and visual information.
These exercises typically have more than one question, so grouping them together in a question set would be greatly useful to keep things neat and tidy.

Keep up the good work!

Unique question set

Hello,
when creating a set of questions from the pool, the questions are repeated. For example, if we have a pool with 200 questions and we create a set of 50 questions, they are starting repeating. Could we make them unique?
Thanks

Quiz Start button does not unhide questionset

Problem

When a Quiz has Title enabled, clicking on the "Start Quiz" button does not unhide the Questions (.questionset)

Tested on v 1.20.11.

Example: https://studio.libretexts.org/h5p/14416/embed

Possible Solution

Consider replace L1035:

$('.questionset', $myDom).show();

With:

$('.questionset', $myDom).removeClass('hidden');

Or

let questionRegion = myDom.querySelector('.questionset');
questionRegion.classList.remove('hidden');

Quiz (Question Set) Embedding issue

Installed H5p on Moodle test instance. We have created the content using the Quiz Question set, after creating I have embedded it in the label . After clicking on "Start" quiz the page doesn't move forward. This is the same when I embed using "Page" activity.

I have tested this with other components and it works fine for example: I have embedded Memory game into the label.

Blackboard support said:

Further they found out that this issue is related to the "question set" package and how it has been generated. Since, in the CSS part of the package that responsible for presenting the slides,there is a "hidden" attribute that cause the package not playing properly:

.questionset.hidden { display: none; }

.hidden { display: none; visibility: hidden; }

So based on what they have mentioned above, this matter needs to be considered by those responsible for packaging the Question Set and set the attribute properly.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.