Skip to content
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

Table of Contents and PDF export of the entire wiki #84

Open
wants to merge 28 commits into
base: master
Choose a base branch
from

Commits on Apr 5, 2016

  1. Adds a simple table of contents to each wiki page

    Steffen Pegenau committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    a28f677 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2016

  1. Added chapter number to each heading

    Steffen Pegenau committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    633bb3e View commit details
    Browse the repository at this point in the history
  2. Added comments

    Steffen Pegenau committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    1fb22dd View commit details
    Browse the repository at this point in the history

Commits on May 2, 2016

  1. Configuration menu
    Copy the full SHA
    dde2863 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2016

  1. Rewrote parser to be more robust in case of broken HTML-Code

    Steffen Pegenau committed May 3, 2016
    Configuration menu
    Copy the full SHA
    744bb46 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2016

  1. Close ul-element before edit button

    Steffen Pegenau committed Jul 6, 2016
    Configuration menu
    Copy the full SHA
    0edd1a1 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2016

  1. Configuration menu
    Copy the full SHA
    fb7c621 View commit details
    Browse the repository at this point in the history
  2. Removed debug msg

    Steffen Pegenau committed Jul 11, 2016
    Configuration menu
    Copy the full SHA
    f253afb View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2016

  1. Possible fix for seperate group error

    Create a wiki with the settings 'seperate groups' and 'seperate wiki for
    each group'.
    Open the wiki, you will get the message that the page has not been created
    yet.
    Reload the page and you will receive a db write error.
    
    table: ouwikis_subwikis
    I think the problem is related to two uniqueness restrictions:
    1. There must be only one entry for a group and wiki
    2. There must be only one entry for a wiki and user (a seperate wiki for
    every user)
    
    In case of group wikis the user field is NULL. When opening the wiki
    first, an table entry is generated. When opening it the second time,
    Moodle tries to generate a second entry. But there already is the same
    combination of wiki and user (NULL)
    
    - The user-id is written to every entry in the mentioned table to avoid
      collisions of wikiid<->NULL
    - When getting the subwiki, moodle shall not look for user=NULL
    
    This may lead to problems in case of seperate wikis for every user
    Steffen Pegenau committed Aug 22, 2016
    Configuration menu
    Copy the full SHA
    8d9e499 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2016

  1. Possible fix for group wiki problem

    Steffen Pegenau committed Aug 30, 2016
    Configuration menu
    Copy the full SHA
    08f2911 View commit details
    Browse the repository at this point in the history
  2. Fixed group/individual MSSQL Bug

    There are two constraints on the table ouwiki_subwikis
    1. combination of wikiid and groupid must be unique
    2. combination of wikiid and userid must be unique
    
    Example:
    Two subwikis for different groups resulted in
    wikiid: 1 groupid: 1 userid: NULL
    wikiid: 1 groupid: 2 userid: NULL
    
    On MSSQL this is prohibited by constraint 2 and
    the creation of the second subwiki resulted in
    an exception.
    
    To fix this the magic number is used as userid or groupid in case
    they are NULL.
    Git on Alpha committed Aug 30, 2016
    Configuration menu
    Copy the full SHA
    394b3cc View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2016

  1. css modifications

    Wilker committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    b0c7403 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2016

  1. customized headings similar to wikipedia

    Wilker committed Nov 2, 2016
    Configuration menu
    Copy the full SHA
    a14b63a View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2016

  1. plugin icon ersetzt

    Wilker committed Dec 9, 2016
    Configuration menu
    Copy the full SHA
    db2cd5e View commit details
    Browse the repository at this point in the history
  2. gesamtes wiki als print-html und pdf version

    Wilker committed Dec 9, 2016
    Configuration menu
    Copy the full SHA
    c96395e View commit details
    Browse the repository at this point in the history
  3. Dropdownmenu Wiki-Drucken

    Wilker committed Dec 9, 2016
    Configuration menu
    Copy the full SHA
    a2cb0fa View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2017

  1. merged current version

    ksteitz committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    61d3f36 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2017

  1. Configuration menu
    Copy the full SHA
    211c4ab View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2018

  1. manually set the settings cog to be displayed on the page for boost-b…

    …ased themes
    Wilker committed Feb 27, 2018
    Configuration menu
    Copy the full SHA
    2737737 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2019

  1. Configuration menu
    Copy the full SHA
    67331a4 View commit details
    Browse the repository at this point in the history
  2. Add .travis.yml

    joeltsch committed Jul 8, 2019
    Configuration menu
    Copy the full SHA
    023ff0d View commit details
    Browse the repository at this point in the history
  3. Add style directory.

    joeltsch committed Jul 8, 2019
    Configuration menu
    Copy the full SHA
    bb09752 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2019

  1. Configuration menu
    Copy the full SHA
    1f350df View commit details
    Browse the repository at this point in the history
  2. Update create_dir method

    joeltsch committed Jul 10, 2019
    Configuration menu
    Copy the full SHA
    b58a03a View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2019

  1. Configuration menu
    Copy the full SHA
    1296748 View commit details
    Browse the repository at this point in the history
  2. Fix style errors

    joeltsch committed Jul 17, 2019
    Configuration menu
    Copy the full SHA
    3a40b28 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2019

  1. Configuration menu
    Copy the full SHA
    860fba8 View commit details
    Browse the repository at this point in the history
  2. Add comments.

    joeltsch committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    18f4f8d View commit details
    Browse the repository at this point in the history