mirror of
https://github.com/YGGverse/bdoku.git
synced 2026-03-31 17:55:36 +00:00
add aliases info, remove deprecated settings
This commit is contained in:
parent
5e23f9a865
commit
0d5f100a25
2 changed files with 69 additions and 6 deletions
|
|
@ -307,6 +307,29 @@ $server->setHandler(
|
|||
// Append about info
|
||||
$lines[] = $config->string->about;
|
||||
|
||||
// Append about info
|
||||
$lines[] = $config->string->about;
|
||||
|
||||
// Append aliases
|
||||
if ($config->dokuwiki->url->alias)
|
||||
{
|
||||
$lines[] = sprintf(
|
||||
'## %s',
|
||||
$config->string->alias
|
||||
);
|
||||
|
||||
foreach ($config->dokuwiki->url->alias as $base => $name)
|
||||
{
|
||||
$lines[] = sprintf(
|
||||
'=> %s/%s %s',
|
||||
$base,
|
||||
$matches[1],
|
||||
$name
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Build content
|
||||
$response->setContent(
|
||||
implode(
|
||||
PHP_EOL,
|
||||
|
|
@ -456,6 +479,25 @@ $server->setHandler(
|
|||
// Append about info
|
||||
$lines[] = $config->string->about;
|
||||
|
||||
// Append aliases
|
||||
if ($config->dokuwiki->url->alias)
|
||||
{
|
||||
$lines[] = sprintf(
|
||||
'## %s',
|
||||
$config->string->alias
|
||||
);
|
||||
|
||||
foreach ($config->dokuwiki->url->alias as $base => $name)
|
||||
{
|
||||
$lines[] = sprintf(
|
||||
'=> %s/%s %s',
|
||||
$base,
|
||||
$matches[1],
|
||||
$name
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Merge lines
|
||||
$content = implode(
|
||||
PHP_EOL,
|
||||
|
|
@ -578,7 +620,7 @@ $server->setHandler(
|
|||
// Append about info
|
||||
$lines[] = sprintf(
|
||||
'## %s',
|
||||
$config->string->resources
|
||||
$config->string->actions
|
||||
);
|
||||
|
||||
// Append search link
|
||||
|
|
@ -597,6 +639,25 @@ $server->setHandler(
|
|||
// Append about info
|
||||
$lines[] = $config->string->about;
|
||||
|
||||
// Append aliases
|
||||
if ($config->dokuwiki->url->alias)
|
||||
{
|
||||
$lines[] = sprintf(
|
||||
'## %s',
|
||||
$config->string->alias
|
||||
);
|
||||
|
||||
foreach ($config->dokuwiki->url->alias as $base => $name)
|
||||
{
|
||||
$lines[] = sprintf(
|
||||
'=> %s/%s %s',
|
||||
$base,
|
||||
$matches[1],
|
||||
$name
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Merge lines
|
||||
$content = implode(
|
||||
PHP_EOL,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue