stable
Clone or download
Read-only
Merge commit 'refs/changes/51/4451/10' of ssh://gerrit.tuleap.net:29418/tuleap into HEAD
* ssh://gerrit.tuleap.net:29418/tuleap: story #7883: PHPWiki plugin can be accessed via the REST API Change-Id: I7a10bb7c7bc8e6c1d6c21c04bac60650c6f3c6ad
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 |