1dokuwiki-actickets 2================================================================================ 3 4A DokuWiki plugin to easily crossreference ActiveCollab tickets within pages. 5 6 7 8Usage 9================================================================================ 10 11Put the following line on top of your page to set a global project of the page: 12 13 {{Project:<project-id>}} 14 15example: 16 17 {{Project:123}} 18 19Afterwards you can reference any ticket in the project via 20 21 #<ticket-id> 22 23example: 24 25 #5678 26 27If you don't want to a add a global project ID or want to reference a ticket 28from another project, you can add the project ID on a per-ticket basis: 29 30 #<ticket-id>-<project-id> 31 32example: 33 34 #123-5678 35 36 37License 38================================================================================ 39 40Copyright (C) 2011 Tobias Sarnowski 41 42This program is free software; you can redistribute it and/or modify 43it under the terms of the GNU General Public License as published by 44the Free Software Foundation; either version 2 of the License, or 45(at your option) any later version. 46 47This program is distributed in the hope that it will be useful, 48but WITHOUT ANY WARRANTY; without even the implied warranty of 49MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 50GNU General Public License for more details. 51 52You should have received a copy of the GNU General Public License along 53with this program; if not, write to the Free Software Foundation, Inc., 5451 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 55 56