Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
build
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
SADE
build
Merge requests
!7
Feature/configure xinclude handling
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/configure xinclude handling
feature/configure-xinclude-handling
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
3
Merged
Michelle Weidling
requested to merge
feature/configure-xinclude-handling
into
develop
6 years ago
Overview
0
Commits
2
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
46f5ea33
2 commits,
6 years ago
3 files
+
60
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
configure-xinclude-handling.xsl
0 → 100644
+
17
−
0
Options
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl=
"http://www.w3.org/1999/XSL/Transform"
version=
"1.0"
>
<xsl:output
method=
"xml"
version=
"1.0"
encoding=
"UTF-8"
indent=
"no"
doctype-public=
"-//Jetty//Configure//EN"
doctype-system=
"http://www.eclipse.org/jetty/configure_9_3.dtd"
/>
<xsl:param
name=
"configParam"
/>
<xsl:template
match=
"@* | node()"
>
<xsl:copy>
<xsl:apply-templates
select=
"@* | node()"
/>
</xsl:copy>
</xsl:template>
<xsl:template
match=
"@enable-xinclude"
>
<xsl:attribute
name=
"enable-xinclude"
>
<xsl:value-of
select=
"$configParam"
/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
Loading