{"id":19170705,"url":"https://github.com/algorys/redproject","last_synced_at":"2026-06-19T19:30:15.674Z","repository":{"id":87280651,"uuid":"43077365","full_name":"algorys/redproject","owner":"algorys","description":"Plugin for Dokuwiki will display roadmap and other information of a redmine's project","archived":false,"fork":false,"pushed_at":"2018-07-06T08:13:10.000Z","size":51,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-04T00:24:56.118Z","etag":null,"topics":["dokuwiki","dokuwiki-plugin","redmine"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/algorys.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-24T16:00:36.000Z","updated_at":"2018-08-08T13:12:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"5b016cbb-1388-4a8d-b157-bf2217e0a1a9","html_url":"https://github.com/algorys/redproject","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algorys%2Fredproject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algorys%2Fredproject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algorys%2Fredproject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algorys%2Fredproject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/algorys","download_url":"https://codeload.github.com/algorys/redproject/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240250448,"owners_count":19771794,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dokuwiki","dokuwiki-plugin","redmine"],"created_at":"2024-11-09T09:54:53.753Z","updated_at":"2026-06-19T19:30:15.643Z","avatar_url":"https://github.com/algorys.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Plugin Redproject\n\nThis plugin display a roadmap and some other informations of your project in Dokuwiki :\n* Name and Description of project\n* Link to homepage define in Redmine\n* Versions available (with creation and update date, total issues, open and closed)\n* Members and Roles of the project\n* Some different links to redmine, like the issues, subproject, mail of members,...\n* Compatible with [Bootstrap](http://getbootstrap.com/) (need [Bootstrap3 Template](https://github.com/LotarProject/dokuwiki-template-bootstrap3/)).\n* Handle multiple redmine server\n\n## Requirements\n\nRedproject needs [Php-Redmine-API](https://github.com/kbsali/php-redmine-api) to work. Download it inside your shared folder of php, like ``/usr/share/php`` or in the redproject's folder. If you use [redissue](https://www.dokuwiki.org/plugin:redissue) the first option is better, as you have just to install it one time.\n\n```bash\n$ mkdir vendor\n$ cd vendor\n$ git clone https://github.com/kbsali/php-redmine-api.git\n$ cd php-redmine-api\n$ git checkout v1.5.5\n```\n\nDon't forget to install the requirements of PhP-Redmine-API :\n\n```bash\n$ sudo apt-get install php5-curl php5-common\n```\n\n## Install\n\nDownload this plugin into your ``${dokuwiki_root}/lib/plugins`` folder and restart dokuwiki.\n\n## Configuration\n\nYou can configure the plugin in the Config Manager of DokuWiki :\n\n* redproject.url : Put your Redmine's url server, without a slash ending. Example : ``http://myredmine.com``. This setting can be override by _server_ option.\n* redproject.API : Set your Redmine API's key, preference Administrator key. This setting can be override by _server_ option.\n* redproject.view : Choose the view you want to display. This will depend on the wiki user's access rights in Redmine.\n  * Impersonate : select this if your wiki's users have the same UID as Redmine's users. e.g. : LDAP authentication. Redproject then will manage rights based on private or public projects.\n  * Userview : doesn't manage access rights and display project even if it's in private project.\n\n## Syntax\n\nThere is two way to use this plugin :\n\n### Basic Syntax :\n\n```php\n\u003credproject proj=\"identifier_project\" /\u003e \n```\n\nWhere **proj** value is the project identifier (Available in the settings of redmine project).\n\n### Multiple Servers\n\nYou can, as in [redissue](https://github.com/algorys/redissue), select another redmine server in syntax. This server should be defined in the _server.json_ file of the plugin.\n\nExample of _server.json_ file:\n\n```json\n{\n    \"first\": {\n        \"url\": \"http://myfirst.redmine.com\",\n        \"api_token\": \"abcdefghijklmnopqrstuvwxyz0123456789\"\n    },\n    \"second\": {\n        \"url\": \"http://mysecond.redmine.com\",\n        \"api_token\": \"zyxwvutsrqponmlkjihgfedcba9876543210\"\n    }\n}\n```\n\nThen simply add your server in redproject syntax:\n\n```php\n\u003credproject proj=\"identifier_project\" server=\"first\" /\u003e\n```\n\n**Note:** By default, redproject will take the data defined in Dokuwiki settings.\n\n## Preview\n\nHere is a preview of redproject :\n\nName, homepage and description of project:\n![](http://s21.postimg.org/donlxk0uv/description.png)\n\nEach Versions with their issues progression:\n![](http://s16.postimg.org/vabjgsqut/versions.png)\n\nLast détails and Members.\n![](http://s16.postimg.org/asd9jarjp/detail.png)\n\nFor further information, see also [Redproject on dokuwiki.org](https://www.dokuwiki.org/plugin:redproject)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falgorys%2Fredproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falgorys%2Fredproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falgorys%2Fredproject/lists"}