stable

Forked from tuleap/stable

Clone or download

Read-only

story #7883: PHPWiki plugin can be accessed via the REST API

Change-Id: I643bdb6a5662aac1ab08f216a4fbb6737509b9a5

Modified Files

Name
M plugins/phpwiki/include/PHPWikiDao.class.php +6 −6 Go to diff View file
A plugins/phpwiki/include/REST/v1/PhpWikiPluginPageFullRepresentation.class.php +64 −0 Go to diff View file
A plugins/phpwiki/include/REST/v1/PhpWikiPluginPageRepresentation.class.php +50 −0 Go to diff View file
A plugins/phpwiki/include/REST/v1/PhpWikiPluginPageVersionFullRepresentation.class.php +45 −0 Go to diff View file
A plugins/phpwiki/include/REST/v1/PhpWikiPluginPageVersionRepresentation.class.php +45 −0 Go to diff View file
A plugins/phpwiki/include/REST/v1/PhpWikiPluginResource.class.php +194 −0 Go to diff View file
A plugins/phpwiki/include/REST/v1/ProjectResource.class.php +63 −0 Go to diff View file
A plugins/phpwiki/include/REST/v1/ResourcesInjector.class.php +39 −0 Go to diff View file
M plugins/phpwiki/include/autoload.php +14 −2 Go to diff View file
M plugins/phpwiki/include/lib/PHPWikiPage.class.php +1 −0 Go to diff View file
A plugins/phpwiki/include/lib/PHPWikiPageVersion.class.php +56 −0 Go to diff View file
A plugins/phpwiki/include/lib/PHPWikiPageVersionContentFormatter.php +65 −0 Go to diff View file
A plugins/phpwiki/include/lib/PHPWikiPageVersionFactory.class.php +61 −0 Go to diff View file
A plugins/phpwiki/include/lib/PaginatedPHPWikiPages.class.php +47 −0 Go to diff View file
A plugins/phpwiki/include/lib/PaginatedPHPWikiPagesFactory.class.php +61 −0 Go to diff View file
M plugins/phpwiki/include/phpwikiPlugin.class.php +65 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/README.mkd +16 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/formatted-content-version-4.txt +14 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/rest-test-wiki-group-list +1 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/rest-test-wiki-nonempty +73 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/rest-test-wiki-page +506 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/rest-test-wiki-recent +73 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/rest-test-wiki-version +2260 −0 Go to diff View file
A plugins/phpwiki/tests/_fixtures/rest/wiki-content-version-4.txt +16 −0 Go to diff View file
A plugins/phpwiki/tests/rest/DatabaseInitialization.class.php +47 −0 Go to diff View file
A plugins/phpwiki/tests/rest/PHPWikiDataBuilder.php +50 −0 Go to diff View file
A plugins/phpwiki/tests/rest/PhpWikiPluginTest.php +102 −0 Go to diff View file
A plugins/phpwiki/tests/rest/ProjectTest.php +128 −0 Go to diff View file
A plugins/phpwiki/tests/rest/bootstrap.php +22 −0 Go to diff View file
A plugins/phpwiki/tests/rest/init_test_data.php +23 −0 Go to diff View file
M src/common/event/Event.class.php +20 −0 Go to diff View file
M src/common/project/REST/v1/ProjectResource.class.php +105 −11 Go to diff View file
M src/common/wiki/lib/WikiPage.class.php +0 −1 Go to diff View file