Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tinymce
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TYPO3
tinymce
Commits
a4f9dd6d
Commit
a4f9dd6d
authored
9 years ago
by
Sigfried Arnold
Browse files
Options
Downloads
Patches
Plain Diff
parsing for markers in TSConfig / JavaScript to allow complex setups with nested parenthesis
parent
8699929e
No related branches found
Branches containing commit
Tags
4.3.4
Tags containing commit
1 merge request
!2
parsing for markers in TSConfig / JavaScript to allow complex setups with nested parenthesis
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Classes/Loader.php
+9
-4
9 additions, 4 deletions
Classes/Loader.php
with
9 additions
and
4 deletions
Classes/Loader.php
+
9
−
4
View file @
a4f9dd6d
...
...
@@ -228,10 +228,15 @@ class Loader {
$configuration
=
file_get_contents
(
$configurationFile
);
}
// split config into first and last javascript parts (applied later again into the config variables)
// additionally the config part is matched to get the options
$pattern
=
'/(.*)tinymce\.init\s*\(\s*\{(.*?)\}\s*\)\s*;?(.*)/is'
;
preg_match
(
$pattern
,
$configuration
,
$matches
);
// first try to find the configuration via the "subpart" ###TINYMCE_INIT###
$pattern
=
'/(.*)?tinymce\.init\s*\(\s*\{\s*\/\*\s?###TINYMCE_INIT###.*?\*\/(.*)\/\*\s*###TINYMCE_INIT###.*?\*\/\s*\}\s*\);*(.*)?/is'
;
if
(
@
preg_match
(
$pattern
,
$configuration
,
$matches
))
{
// fine :)
}
else
{
// if nothing is found, try it the legacy way (note: this may cause problems with a complex setups, since parenthesis-matching is not perfect here)
$pattern
=
'/(.*)tinymce\.init\s*\(\s*\{(.*?)\}\s*\)\s*;?(.*)/is'
;
preg_match
(
$pattern
,
$configuration
,
$matches
);
}
// add preJS and postJS
$configurationArray
[
'preJS'
]
=
trim
(
$matches
[
1
]);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment