update tildeteam/wiki to 1.0
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2021-03-20 13:14:16 -04:00
parent 33c32438cb
commit 0cf52cf4b0
3 changed files with 13 additions and 31 deletions

View File

@ -1,5 +1,5 @@
{
"require": {
"tildeteam/wiki": "^0.1.0"
"tildeteam/wiki": "^1.0.0"
}
}

36
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "3779848aa146daecd3839d2d90aab35b",
"content-hash": "21b797601a3035a039996278b8e9b035",
"packages": [
{
"name": "erusev/parsedown",
@ -50,10 +50,6 @@
"markdown",
"parser"
],
"support": {
"issues": "https://github.com/erusev/parsedown/issues",
"source": "https://github.com/erusev/parsedown/tree/1.7.x"
},
"time": "2019-12-30T22:54:17+00:00"
},
{
@ -101,10 +97,6 @@
"parsedown",
"parser"
],
"support": {
"issues": "https://github.com/erusev/parsedown-extra/issues",
"source": "https://github.com/erusev/parsedown-extra/tree/0.8.x"
},
"time": "2019-12-30T23:20:37+00:00"
},
{
@ -140,10 +132,6 @@
"license": [
"MIT"
],
"support": {
"issues": "https://github.com/mnapoli/FrontYAML/issues",
"source": "https://github.com/mnapoli/FrontYAML/tree/1.8.0"
},
"time": "2020-12-04T10:52:19+00:00"
},
{
@ -194,9 +182,6 @@
],
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/master"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
@ -273,9 +258,6 @@
"polyfill",
"portable"
],
"support": {
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
@ -348,9 +330,6 @@
],
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/yaml/tree/v5.2.5"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
@ -369,20 +348,23 @@
},
{
"name": "tildeteam/wiki",
"version": "0.1.0",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://tildegit.org/team/tildewiki",
"reference": "accb34f9648c7137a605df77b66d2dab570d81ca"
"reference": "519497aa9ed64b5f614a544d98096e448b8860e2"
},
"require": {
"erusev/parsedown-extra": "^0.8.1",
"mnapoli/front-yaml": "^1.8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"type": "library",
"autoload": {
"psr-4": {
"tildeteam\\wiki\\": "src/"
"tildeteam\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@ -403,7 +385,7 @@
"markdown",
"wiki"
],
"time": "2021-03-17T04:21:38+00:00"
"time": "2021-03-17T16:29:47+00:00"
}
],
"packages-dev": [],
@ -414,5 +396,5 @@
"prefer-lowest": false,
"platform": [],
"platform-dev": [],
"plugin-api-version": "2.0.0"
"plugin-api-version": "1.1.0"
}

View File

@ -1,7 +1,6 @@
<?php
require __DIR__.'/../vendor/autoload.php';
use tildeteam\wiki\Parser;
use tildeteam\wiki;
$additional_head = "
<style>
@ -16,7 +15,8 @@ $additional_head = "
<meta property='og:site_name' content='tilde.chat wiki'>
";
$parser = Parser::factory();
$parser = wiki::factory();
wiki::$bootstrap = wiki::$forkawesome = true;
if (!isset($_GET["page"]) || !file_exists("pages/{$_GET['page']}.md")) {