We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in api.php a xml and yaml output is offered as well, using some included libraries (that aren't updated).
api.php
conclusion: remove yaml and xml support?
case 'xml': header('Content-Type: application/xml; charset=utf-8'); require(__DIR__ . '/classes/A2Xml.php'); $xml = xml_encode((object) $extensions, "hash"); echo $xml; break; case 'yaml': header('Content-Type: text/yaml'); require(__DIR__ . '/classes/Spyc.php'); echo Spyc::YAMLDump($extensions, false, 0); break;
The text was updated successfully, but these errors were encountered:
The extension manager now uses JSON. I'm fine with dropping xml and yaml.
Sorry, something went wrong.
Remove not used xml and yaml exports in api.php
18ca339
Implements dokuwiki#149
No branches or pull requests
in
api.php
a xml and yaml output is offered as well, using some included libraries (that aren't updated).conclusion: remove yaml and xml support?
The text was updated successfully, but these errors were encountered: