mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-11 06:10:03 +08:00
Applied styleci changes, updated dev version & readme roadmap
This commit is contained in:
@ -77,7 +77,7 @@ return [
|
|||||||
'chroot' => realpath(public_path()),
|
'chroot' => realpath(public_path()),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Protocol whitelist
|
* Protocol whitelist.
|
||||||
*
|
*
|
||||||
* Protocols and PHP wrappers allowed in URIs, and the validation rules
|
* Protocols and PHP wrappers allowed in URIs, and the validation rules
|
||||||
* that determine if a resouce may be loaded. Full support is not guaranteed
|
* that determine if a resouce may be loaded. Full support is not guaranteed
|
||||||
@ -87,9 +87,9 @@ return [
|
|||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
'allowed_protocols' => [
|
'allowed_protocols' => [
|
||||||
"file://" => ["rules" => []],
|
'file://' => ['rules' => []],
|
||||||
"http://" => ["rules" => []],
|
'http://' => ['rules' => []],
|
||||||
"https://" => ["rules" => []]
|
'https://' => ['rules' => []],
|
||||||
],
|
],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -173,7 +173,7 @@ return [
|
|||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
'default_paper_orientation' => "portrait",
|
'default_paper_orientation' => 'portrait',
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The default font family.
|
* The default font family.
|
||||||
@ -277,12 +277,13 @@ return [
|
|||||||
'enable_css_float' => true,
|
'enable_css_float' => true,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use the HTML5 Lib parser
|
* Use the HTML5 Lib parser.
|
||||||
*
|
*
|
||||||
* @deprecated This feature is now always on in dompdf 2.x
|
* @deprecated This feature is now always on in dompdf 2.x
|
||||||
|
*
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
"enable_html5_parser" => true,
|
'enable_html5_parser' => true,
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -63,9 +63,9 @@ Below is a high-level road map view for BookStack to provide a sense of directio
|
|||||||
|
|
||||||
- **Platform REST API** - *(Most actions implemented, maturing)*
|
- **Platform REST API** - *(Most actions implemented, maturing)*
|
||||||
- *A REST API covering, at minimum, control of core content models (Books, Chapters, Pages) for automation and platform extension.*
|
- *A REST API covering, at minimum, control of core content models (Books, Chapters, Pages) for automation and platform extension.*
|
||||||
- **Editor Alignment & Review** - *(In Progress)*
|
- **Editor Alignment & Review** - *(Done)*
|
||||||
- *Review the page editors with goal of achieving increased interoperability & feature parity while also considering collaborative editing potential.*
|
- *Review the page editors with goal of achieving increased interoperability & feature parity while also considering collaborative editing potential.*
|
||||||
- **Permission System Review**
|
- **Permission System Review** - *(In Progress)*
|
||||||
- *Improvement in how permissions are applied and a review of the efficiency of the permission & roles system.*
|
- *Improvement in how permissions are applied and a review of the efficiency of the permission & roles system.*
|
||||||
- **Installation & Deployment Process Revamp**
|
- **Installation & Deployment Process Revamp**
|
||||||
- *Creation of a streamlined & secure process for users to deploy & update BookStack with reduced development requirements (No git or composer requirement).*
|
- *Creation of a streamlined & secure process for users to deploy & update BookStack with reduced development requirements (No git or composer requirement).*
|
||||||
|
@ -214,7 +214,6 @@ class ThemeTest extends TestCase
|
|||||||
$this->assertEquals($book->id, $args[1]->id);
|
$this->assertEquals($book->id, $args[1]->id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function test_add_social_driver()
|
public function test_add_social_driver()
|
||||||
{
|
{
|
||||||
Theme::addSocialDriver('catnet', [
|
Theme::addSocialDriver('catnet', [
|
||||||
|
Reference in New Issue
Block a user