Skip to content

Commit ee57be1

Browse files
committed
ow
1 parent cc0d739 commit ee57be1

File tree

17 files changed

+68
-66
lines changed

17 files changed

+68
-66
lines changed

logback-classic/src/main/java/ch/qos/logback/classic/joran/action/LevelAction.java

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ protected boolean validPreconditions(InterpretationContext interpcont, String na
4848
@Override
4949
protected Model buildCurrentModel(InterpretationContext interpretationContext, String name, Attributes attributes) {
5050
LevelModel lm = new LevelModel();
51-
5251
String value = attributes.getValue(JoranConstants.VALUE_ATTR);
5352
lm.setValue(value);
5453

logback-classic/src/main/java/ch/qos/logback/classic/joran/action/LoggerAction.java

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ protected Model buildCurrentModel(InterpretationContext interpretationContext, S
4141

4242
LoggerModel loggerModel = new LoggerModel();
4343

44+
4445
String nameStr = attributes.getValue(NAME_ATTRIBUTE);
4546
loggerModel.setName(nameStr);
4647

logback-classic/src/main/java/ch/qos/logback/classic/joran/action/RootLoggerAction.java

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public class RootLoggerAction extends BaseModelAction {
3030
@Override
3131
protected Model buildCurrentModel(InterpretationContext interpretationContext, String name, Attributes attributes) {
3232
RootLoggerModel rootLoggerModel = new RootLoggerModel();
33-
3433
String levelStr = attributes.getValue(JoranConstants.LEVEL_ATTRIBUTE);
3534
rootLoggerModel.setLevel(levelStr);
3635

Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package ch.qos.logback.classic.model;
22

3-
import ch.qos.logback.core.model.Model;
4-
5-
public class ContextNameModel extends Model {
3+
import ch.qos.logback.core.model.NamedModel;
64

5+
public class ContextNameModel extends NamedModel {
76
}

logback-classic/src/main/java/ch/qos/logback/classic/model/processor/ContextNameModelHandler.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ protected Class<ContextNameModel> getSupportedModelClass() {
2121
@Override
2222
public void handle(InterpretationContext intercon, Model model) throws ModelHandlerException {
2323
ContextNameModel contextNameModel = (ContextNameModel) model;
24-
24+
25+
fix me
26+
2527
String finalBody = intercon.subst(contextNameModel.getBodyText());
2628
addInfo("Setting logger context name as [" + finalBody + "]");
2729
try {

logback-core/src/main/java/ch/qos/logback/core/joran/action/AppenderRefAction.java

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ protected boolean validPreconditions(InterpretationContext intercon, String name
3333
@Override
3434
protected Model buildCurrentModel(InterpretationContext interpretationContext, String name, Attributes attributes) {
3535
AppenderRefModel arm = new AppenderRefModel();
36-
3736
String ref = attributes.getValue(JoranConstants.REF_ATTRIBUTE);
3837
arm.setRef(ref);
3938
return arm;

logback-core/src/main/java/ch/qos/logback/core/joran/action/BaseModelAction.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ protected boolean validPreconditions(InterpretationContext intercon, String name
5151

5252
@Override
5353
public void body(InterpretationContext ec, String body) {
54-
String finalBody = ec.subst(body);
55-
currentModel.addText(finalBody);
54+
currentModel.addText(body);
5655
}
5756

5857
@Override
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
11
package ch.qos.logback.core.model;
22

3-
public class AppenderModel extends ComponentModel {
4-
5-
String name;
6-
7-
public String getName() {
8-
return name;
9-
}
10-
11-
public void setName(String name) {
12-
this.name = name;
13-
}
14-
15-
3+
public class AppenderModel extends NamedComponentModel {
164
}

logback-core/src/main/java/ch/qos/logback/core/model/DefineModel.java

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
package ch.qos.logback.core.model;
22

3-
public class DefineModel extends ComponentModel {
3+
public class DefineModel extends NamedComponentModel {
44

5-
String name;
65
String scopeStr;
76

8-
public String getName() {
9-
return name;
10-
}
11-
12-
public void setName(String name) {
13-
this.name = name;
14-
}
15-
167
public String getScopeStr() {
178
return scopeStr;
189
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package ch.qos.logback.core.model;
2+
3+
public interface INamedModel {
4+
5+
public String getName();
6+
public void setName(String name);
7+
8+
}

logback-core/src/main/java/ch/qos/logback/core/model/Model.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
import java.util.ArrayList;
44
import java.util.List;
55

6+
import ch.qos.logback.core.spi.ContextAwareBase;
7+
68
/**
79
* Abstract representation of configuration elements
810
*
911
* @author Ceki G&uuml;lc&uuml;
1012
* @since 1.3.0
1113
*/
12-
public class Model {
14+
public class Model {
1315

1416
// this state should not be here but should be treated via listeners
1517
// between processors and ModelHandlers
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package ch.qos.logback.core.model;
2+
3+
public class NamedComponentModel extends ComponentModel implements INamedModel {
4+
5+
String name;
6+
7+
public String getName() {
8+
return name;
9+
}
10+
11+
public void setName(String name) {
12+
this.name = name;
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package ch.qos.logback.core.model;
2+
3+
public class NamedModel extends Model implements INamedModel {
4+
5+
String name;
6+
7+
public String getName() {
8+
return name;
9+
}
10+
11+
public void setName(String name) {
12+
this.name = name;
13+
}
14+
}

logback-core/src/main/java/ch/qos/logback/core/model/ParamModel.java

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
package ch.qos.logback.core.model;
22

3-
public class ParamModel extends Model {
3+
public class ParamModel extends NamedModel {
44

5-
String name;
65
String value;
7-
8-
public String getName() {
9-
return name;
10-
}
11-
public void setName(String name) {
12-
this.name = name;
13-
}
6+
147
public String getValue() {
158
return value;
169
}

logback-core/src/main/java/ch/qos/logback/core/model/PropertyModel.java

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
11
package ch.qos.logback.core.model;
22

3-
public class PropertyModel extends Model {
3+
public class PropertyModel extends NamedModel {
4+
45

5-
String name;
66
String value;
77
String scopeStr;
88

99
String file;
1010
String resource;
1111

12-
public String getName() {
13-
return name;
14-
}
15-
16-
public void setName(String name) {
17-
this.name = name;
18-
}
1912

2013
public String getValue() {
2114
return value;

logback-core/src/main/java/ch/qos/logback/core/model/TimestampModel.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
package ch.qos.logback.core.model;
22

3-
public class TimestampModel extends Model {
3+
public class TimestampModel extends NamedModel {
44

55
public static final String CONTEXT_BIRTH = "contextBirth";
66

7-
8-
String key;
97
String datePattern;
108
String timeReference;
119
String scopeStr;
1210

1311
public String getKey() {
14-
return key;
12+
return getName();
1513
}
1614
public void setKey(String key) {
17-
this.key = key;
15+
this.setName(key);
1816
}
1917
public String getDatePattern() {
2018
return datePattern;
+13-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
document.write(' <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>');
2-
// <!-- SLF4J -->
3-
document.write(' <ins class="adsbygoogle"');
4-
document.write(' style="display:block"');
5-
document.write(' data-ad-client="ca-pub-7471410671306824"');
6-
document.write(' data-ad-slot="6377851613"');
7-
document.write(' data-ad-format="auto"></ins>');
8-
document.write(' <script>');
9-
document.write(' (adsbygoogle = window.adsbygoogle || []).push({});');
10-
document.write(' </script>');
1+
//document.write(' <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>');
2+
//// <!-- SLF4J -->
3+
//document.write(' <ins class="adsbygoogle"');
4+
//document.write(' style="display:block"');
5+
//document.write(' data-ad-client="ca-pub-7471410671306824"');
6+
//document.write(' data-ad-slot="6377851613"');
7+
//document.write(' data-ad-format="auto"></ins>');
8+
//document.write(' <script>');
9+
//document.write(' (adsbygoogle = window.adsbygoogle || []).push({});');
10+
//document.write(' </script>');
11+
12+
13+
document.write('<a href="http://brocante.qos.ch/"><img src="http://brocante.qos.ch/images/vg10.jpeg" width="150" alt="brocante vide grenier &agrave; Vouvry (le Chablais)""/></a>');
1114

0 commit comments

Comments
 (0)