Skip to content

Commit

Permalink
[TASK] prepare v4.0.0-dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboyxup committed Mar 14, 2021
1 parent 4122c1f commit a14a59b
Show file tree
Hide file tree
Showing 201 changed files with 15,504 additions and 5,367 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

66 changes: 66 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

# CSS-Files
[*.css]
indent_style = space
indent_size = 4

# HTML-Files
[*.html]
indent_style = space
indent_size = 4

# TMPL-Files
[*.tmpl]
indent_style = space
indent_size = 4

# LESS-Files
[*.less]
indent_style = space
indent_size = 4

# JS-Files
[*.js]
indent_style = space
indent_size = 4

# PHP-Files
[*.php]
indent_style = space
indent_size = 4

# MD-Files
[*.md]
indent_style = space
indent_size = 4

# ReST-Files
[*.rst]
indent_style = space
indent_size = 3

# TypoScript
[*.typoscript]
indent_style = space
indent_size = 4

# YML-Files
[{*.yml,*.yaml}]
indent_style = space
indent_size = 4

# package.json, composer.json or .travis.yml
[{package.json,composer.json,.travis.yml}]
indent_style = space
indent_size = 2
2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

2 changes: 1 addition & 1 deletion Classes/.htaccess
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Order deny,allow
Deny from all
Deny from all
1 change: 1 addition & 0 deletions Classes/Controller/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions Classes/Domain/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions Classes/Domain/Model/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions Classes/Domain/Repository/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

15 changes: 15 additions & 0 deletions Classes/Hooks/RootPageTitleHook.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace Pfadfinden\BdpTemplate\Hooks;

use TYPO3\CMS\Core\Utility\DebugUtility;
use Zeroseven\Semantilizer\FixedTitle\FixedTitleInterface;
use Zeroseven\Semantilizer\Models\ContentCollection;

class RootPageTitleHook implements FixedTitleInterface
{
public function get(array $params, $parent = null, ContentCollection $contentCollection = null): ?string
{
return $params['page']->getData('subtitle') ?: null;
}
}
144 changes: 0 additions & 144 deletions Classes/Provider/FileProvider.php

This file was deleted.

1 change: 1 addition & 0 deletions Classes/ViewHelpers/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions Configuration/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Order deny,allow
Deny from all
96 changes: 0 additions & 96 deletions Configuration/PageTS/page.ts

This file was deleted.

42 changes: 42 additions & 0 deletions Configuration/RTE/Default.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
imports:
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" }
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" }
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" }

editor:
config:
contentsCss: "EXT:bdp_template/Resources/Public/Css/rte.css"

stylesSet:
- { name: "Lead", element: "p", attributes: { 'class': 'lead' } }

toolbarGroups:
- { name: styles, groups: [ format, styles ] }
- { name: basicstyles, groups: [ basicstyles ] }
- { name: paragraph, groups: [ list, indent, blocks, align ] }
- "/"
- { name: links, groups: [ links ] }
- { name: clipboard, groups: [ clipboard, cleanup, undo ] }
- { name: editing, groups: [ spellchecker ] }
- { name: insert, groups: [ insert ] }
- { name: tools, groups: [ table, specialchar ] }
- { name: document, groups: [ mode ] }

format_tags: "p;h1;h2;h3;h4;h5;pre"

justifyClasses:
- text-left
- text-center
- text-right
- text-justify

extraPlugins:
- justify

removePlugins:
- image

removeButtons:
- Anchor
- Underline
- Strike
Loading

0 comments on commit a14a59b

Please sign in to comment.