-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ceki Gulcu <[email protected]>
- Loading branch information
Showing
11 changed files
with
60 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
logback-core/src/test/input/joran/inclusion/intermediaryByFile.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x> | ||
<!DOCTYPE included> | ||
|
||
<included> | ||
<stack name="a"/> | ||
|
6 changes: 3 additions & 3 deletions
6
logback-core/src/test/input/joran/inclusion/multiIncludeByFile.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x> | ||
<!DOCTYPE configuration> | ||
|
||
<x> | ||
<configuration> | ||
<include file="${includeKey}" /> | ||
<include file="${secondFileKey}" /> | ||
</x> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x [ | ||
<!DOCTYPE configuration [ | ||
<!ENTITY includedEntity SYSTEM "includedEntity.xml"> | ||
]> | ||
|
||
<x> | ||
<configuration> | ||
|
||
&includedEntity; | ||
|
||
</x> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x> | ||
<!DOCTYPE configuration> | ||
|
||
<x> | ||
<configuration> | ||
<include file="${includeKey}" /> | ||
</x> | ||
</configuration> |
6 changes: 3 additions & 3 deletions
6
logback-core/src/test/input/joran/inclusion/topByResource.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x> | ||
<!DOCTYPE configuration> | ||
|
||
<x> | ||
<configuration> | ||
|
||
<include resource="${includeKey}" /> | ||
|
||
</x> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x> | ||
<!DOCTYPE configuration> | ||
|
||
<x> | ||
<configuration> | ||
<include url="${includeKey}" /> | ||
</x> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x> | ||
<!DOCTYPE configuration> | ||
|
||
<x> | ||
<configuration> | ||
<include optional="true" file="nonExistentFile.xml" /> | ||
|
||
<stack name="IA"/> | ||
<stack name="IB"/> | ||
</x> | ||
</configuration> |
6 changes: 3 additions & 3 deletions
6
logback-core/src/test/input/joran/inclusion/topOptionalResource.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE x> | ||
<!DOCTYPE configuration> | ||
|
||
<x> | ||
<configuration> | ||
<include optional="true" resource="nonExistentResource.xml" /> | ||
|
||
<stack name="IA"/> | ||
<stack name="IB"/> | ||
</x> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters