| 1 |
|
| 2 |
----------------------------------------------------------------------
|
| 3 |
DRUPAL CONFERENCE MODULE
|
| 4 |
----------------------------------------------------------------------
|
| 5 |
|
| 6 |
|
| 7 |
I. Overview
|
| 8 |
|
| 9 |
The Drupal conference module allows you to organise scholarly
|
| 10 |
conferences with Drupal. It implements a mechanism to post papers,
|
| 11 |
to manage reviewers and to assign reviewers to papers. A paper is an
|
| 12 |
arbitrary node whith an attached file and a review is a arbitrary
|
| 13 |
node assigned to a paper. It also takes care for the access
|
| 14 |
permissions to papers and reviews:
|
| 15 |
|
| 16 |
1. every author can only see his own paper
|
| 17 |
2. every reviewer can only see his own reviews but download the
|
| 18 |
files attached to the papers assigned to him
|
| 19 |
3. a manager can see both, create assignments and make decision
|
| 20 |
concerning a paper.
|
| 21 |
|
| 22 |
The conference chair can make a decision concerning a paper based on
|
| 23 |
all reviewes of that paper:
|
| 24 |
|
| 25 |
1. accept that paper
|
| 26 |
2. reject that paper
|
| 27 |
3. request a modification
|
| 28 |
|
| 29 |
He can also send reminders to all reviewers with outstanding papers.
|
| 30 |
|
| 31 |
The conference module does not implement note types for posting
|
| 32 |
papers and reviews. It is designed to cooperate with the content
|
| 33 |
constriction kit. So you can provide a review questionnaire that
|
| 34 |
suit your needs.
|
| 35 |
|
| 36 |
There is one important point in this concept: The files assigned
|
| 37 |
to a paper-node must not containt the author names!
|
| 38 |
|
| 39 |
|
| 40 |
II. Requirement
|
| 41 |
|
| 42 |
a) Drupal 4.7 with MySQL-Database, Pgsql not supportet until know.
|
| 43 |
|
| 44 |
b) The content construktion kit (cck module) to create content
|
| 45 |
types.
|
| 46 |
|
| 47 |
c) The upload module to allow file attachments to paper nodes.
|
| 48 |
|
| 49 |
|
| 50 |
III. Incompatibility
|
| 51 |
|
| 52 |
Because the conference module implements a way to grant permissions
|
| 53 |
to nodes, it is incompatible to modules that serve a node access
|
| 54 |
mechanism, like:
|
| 55 |
|
| 56 |
* node privacy byrole
|
| 57 |
* simple access
|
| 58 |
* taxonomy access
|
| 59 |
* ...
|
| 60 |
|
| 61 |
|
| 62 |
IV. Installation and setup
|
| 63 |
|
| 64 |
1. Download, install and setup the upload module and cck.
|
| 65 |
|
| 66 |
2. Create node types for papers and reviews. Create roles for
|
| 67 |
reviewers and for the conference chair. If you don't wish to use
|
| 68 |
the "autenticated user" role for posting papers, create a third role.
|
| 69 |
|
| 70 |
3. Allow uploading files (see admin/access) for the role dedicated to
|
| 71 |
post papers and for the paper node type (see
|
| 72 |
admin/settings/content-types). Ensure that all relevant file
|
| 73 |
types are allowed (see admin/settings/upload).
|
| 74 |
|
| 75 |
ATTENTION: This module has been tested only with public download
|
| 76 |
method (see admin/settings).
|
| 77 |
|
| 78 |
4. Extract the conference modules's .tgz file in your drupal module
|
| 79 |
directory. Then activate the module (see admin/modules).
|
| 80 |
|
| 81 |
5. Choose the right roles and node types in
|
| 82 |
admin/settings/conference. Consider to hide the title-field in
|
| 83 |
the review creation form and to expand the file attachment
|
| 84 |
fieldset in the paper creation form due to usability considerations.
|
| 85 |
|
| 86 |
6. Enable the conference node permissions (see admin/settings/conference)
|
| 87 |
|
| 88 |
7. Take care for the following access permissions (see admin/access):
|
| 89 |
|
| 90 |
* reviewers must be able to edit own/create review nodes and to
|
| 91 |
view uploaded files
|
| 92 |
|
| 93 |
* the role dedicated to post papers must also be able to edit
|
| 94 |
own/create paper nodes, to upload files and to view uploaded
|
| 95 |
files.
|
| 96 |
|
| 97 |
|
| 98 |
VI. About
|
| 99 |
|
| 100 |
This module is sponsored by the university of Duisburg-Essen
|
| 101 |
(Germany) and developed for the german moodle conference 2007 (see
|
| 102 |
http://www.moodle07.de) at the
|
| 103 |
|
| 104 |
Chair of Educational Media and Knowledge Management
|
| 105 |
(see http://www.mediendidaktik.de)
|
| 106 |
|
| 107 |
by
|
| 108 |
|
| 109 |
Tobias Hoelterhof
|
| 110 |
(email: tobias [dot] hoelterhof [at] uni [minus] due [dot] de)
|
| 111 |
|
| 112 |
Licence: GPL.
|