2017 © Pedro Peláez
 

tao-extension extension-tao-booklet

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

image

oat-sa/extension-tao-booklet

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  • Friday, July 27, 2018
  • by oat-lionel
  • Repository
  • 23 Watchers
  • 4 Stars
  • 1,804 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 42 Versions
  • 13 % Grown

The README.md

extension-tao-booklet

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets), (*1)

Warning

Due to the move to ES2015, some code might not work on legacy browsers. Especially for code that use to rely on polyfills, like for the Promise. The polyfills are now linked only when the code is bundled, and are not reachable anymore in development mode. For that reason, and because wkhtmltopdf is not supporting ES2015 and requires polyfills, the generation of PDF only works with bundled version (aka production mode)., (*2)

From version 4.2.0 of taoBooklet, the page rendered to get the PDF will always use bundles transpiled to ES5. This applies no matter if the mode is set to development or production. This implies that any change made to the source code will need to pass trough a re-bundling:, (*3)

cd tao/views/build
npx grunt taobookletbundle

For version 4.1.1 and older, you still need to activate the production mode as follows: - open the config file config/generis.conf.php, and set the constant DEBUG_MODE to false (around line 50):, (*4)

#mode
define('DEBUG_MODE', false);

Configuration

The file config/taoBooklet/wkhtmltopdf.conf.php contains entries for setting up the tool: - 'binary' - The path to the installed binary, usually /usr/local/bin/wkhtmltopdf. - 'options' - A set of option for controlling the rendering. See below., (*5)

wkhtmltopdf options

Option Description Default value
'header-html' The path to the header template added to each page. 'taoBooklet/views/templates/PrintTest/header.html'
'footer-html' The path to the header template added to each page. 'taoBooklet/views/templates/PrintTest/footer.html'
'margin-bottom' The margin added to top of the page. 10mm
'margin-top' The margin added to bottom of the page. 10mm
'page-size' The page size format: A4, Letter, etc. 'A4'
'orientation' The page orientation: Portrait or Landscape. 'Portrait'
'user-style-sheet' Specify a user style sheet, to load with every page. none

Note: additional options supported by wkhtmltopdf can be added here too. For a complete list, see: https://wkhtmltopdf.org/usage/wkhtmltopdf.txt, (*6)

Requirements

This extension needs a third-party tool to generate the PDF files. So to be able to generate the booklet, you should install wkhtmltopdf on your server., (*7)

If you are using Ubuntu you can use these commands:, (*8)

sudo apt-get update
sudo apt-get install wkhtmltopdf

However, depending on the version of your system, the installed version of wkhtmltopdf may not fully comply with the requirements, as there is some issues with QT when trying to render header and footers. If you encounter errors when generating the document, you should install the tool using these commands:, (*9)

wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.jessie_amd64.deb
sudo dpkg -i wkhtmltox_0.12.5-1.jessie_amd64.deb

After that you can use /usr/local/bin/wkhtmltopdf in your configuration, (*10)

For Debian-based distributions, you may need to do an additional step to install some dependencies:, (*11)

sudo apt-get update
sudo apt-get install wkhtmltopdf
sudo apt-get install libxrender1 fontconfig xvfb
sudo apt --fix-broken-install

If the previous steps fail, you may try to use a binary, non-packaged distribution instead., (*12)

wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
tar xf  wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
cd ./wkhtmltox/bin/
sudo cp -R ./* /usr/bin/
sudo cp -R ./* /usr/local/bin/
wkhtmltopdf -V

Please refer to https://wkhtmltopdf.org/downloads.html for an updated list of wkhtmltopdf packages for Ubuntu and other distributions. You may find a list of source, binary and packages for v0.12.5 at GitHub as well., (*13)

Deprecated: Please note that the version 0.12.4 has a bug which was fixed in the version 0.12.5: sometimes footers and headers not provided in the pdf, (*14)

sudo apt-get update
sudo apt-get install libxrender1 fontconfig xvfb
wget https://downloads.wkhtmltopdf.org/0.12/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz -P /tmp/
cd /usr/share/
sudo tar xf /tmp/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
sudo rm /usr/bin/wkhtmltopdf
sudo ln -s /usr/share/wkhtmltox/bin/wkhtmltopdf /usr/bin/wkhtmltopdf

The Versions

27/07 2018

dev-develop

dev-develop http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0 GPL-2.0-only

The Requires

 

tao computer-based-assessment

27/07 2018

dev-master

9999999-dev http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0 GPL-2.0-only

The Requires

 

tao computer-based-assessment

27/07 2018

v1.14.2

1.14.2.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

27/07 2018

dev-release_1.14.2

dev-release_1.14.2 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

13/06 2018

v1.14.1

1.14.1.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

15/05 2018

dev-fix/TAO-6269/random-paper-test

dev-fix/TAO-6269/random-paper-test http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

23/02 2018

v1.14.0

1.14.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

16/02 2018

dev-release-1.14.0

dev-release-1.14.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

26/01 2018

v1.13.1

1.13.1.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

26/01 2018

dev-release-1.13.1

dev-release-1.13.1 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

26/01 2018

dev-new_licence

dev-new_licence http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0-only

The Requires

 

tao computer-based-assessment

21/12 2017

v1.13.0

1.13.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

21/12 2017

dev-release-1.13.0

dev-release-1.13.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

10/10 2017

v1.12.0

1.12.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

06/10 2017

dev-refactoring/TAO-5104/remove-globals-from-generis

dev-refactoring/TAO-5104/remove-globals-from-generis http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

29/09 2017

v1.10.1

1.10.1.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

29/09 2017

v1.10.0

1.10.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

28/09 2017

dev-fix/TAO-4144-cover-page-qr-code

dev-fix/TAO-4144-cover-page-qr-code http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

01/09 2017

v1.9.3

1.9.3.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

30/08 2017

v1.9.2

1.9.2.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

30/08 2017

dev-release-1.9.2

dev-release-1.9.2 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

25/08 2017

v1.9.1

1.9.1.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

25/08 2017

dev-fix/TAO-4808/paper-test-pdf-configuration

dev-fix/TAO-4808/paper-test-pdf-configuration http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

18/08 2017

v1.9.0

1.9.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

28/07 2017

dev-feature/TAO-4793-booklet-multiple-deliveries

dev-feature/TAO-4793-booklet-multiple-deliveries http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

21/07 2017

v1.6.0

1.6.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

19/07 2017

dev-TAO-4693/PSR-4_stage_2

dev-TAO-4693/PSR-4_stage_2 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

23/06 2017

v1.5.1

1.5.1.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

16/06 2017

dev-feature/TAO-4318-print-test-results

dev-feature/TAO-4318-print-test-results http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

06/06 2017

v1.4.3

1.4.3.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

01/06 2017

v1.4.2

1.4.2.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

01/06 2017

v1.4.1

1.4.1.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

31/05 2017

v1.4.0

1.4.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

30/05 2017

v1.3.0

1.3.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

29/05 2017

v1.2.1

1.2.1.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

29/05 2017

v1.2.0

1.2.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

03/05 2017

v1.1.0

1.1.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

28/04 2017

v1.0.0

1.0.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

14/04 2017

v0.4.0

0.4.0.0 http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

01/04 2015

dev-test-preview

dev-test-preview http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

20/03 2015

dev-print-service

dev-print-service http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment

20/03 2015

dev-test-runner

dev-test-runner http://www.taotesting.com

An extension for TAO to create test booklets (publishable in MS-Word and PDF along with Answer Sheets)

  Sources   Download

GPL-2.0

The Requires

 

tao computer-based-assessment