mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
update API for status code 10
This commit is contained in:
parent
d4bfcaef08
commit
48621156bf
@ -185,14 +185,15 @@ class Content
|
||||
$request->getResponse()
|
||||
);
|
||||
|
||||
// Process codes
|
||||
// Route status codes
|
||||
// https://geminiprotocol.net/docs/protocol-specification.gmi#status-codes
|
||||
switch ($response->getCode())
|
||||
{
|
||||
case 10: // response expected
|
||||
|
||||
$this->page->title->setValue(
|
||||
$address->getHost(),
|
||||
sprintf(
|
||||
$response->getMeta() ? $response->getMeta() : sprintf(
|
||||
'response expected (code %d)',
|
||||
intval(
|
||||
$response->getCode()
|
||||
@ -200,7 +201,9 @@ class Content
|
||||
)
|
||||
);
|
||||
|
||||
$this->page->response->show();
|
||||
$this->page->response->show(
|
||||
$response->getMeta() // pass to placeholder
|
||||
);
|
||||
|
||||
break;
|
||||
|
||||
|
@ -79,13 +79,26 @@ class Response
|
||||
$this->hide();
|
||||
}
|
||||
|
||||
public function show(): void
|
||||
public function show(
|
||||
?string $placeholder = null
|
||||
): void
|
||||
{
|
||||
if ($placeholder)
|
||||
{
|
||||
$this->query->setPlaceholder(
|
||||
$placeholder
|
||||
);
|
||||
}
|
||||
|
||||
$this->gtk->show();
|
||||
}
|
||||
|
||||
public function hide(): void
|
||||
{
|
||||
$this->query->setPlaceholder(
|
||||
null
|
||||
);
|
||||
|
||||
$this->gtk->hide();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user