~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to external/log4net/doc/.svn/text-base/log4net-events.dtd.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8" ?>
2
 
<!--
3
 
// 
4
 
// This framework is based on log4j see http://jakarta.apache.org/log4j
5
 
// Copyright (C) The Apache Software Foundation. All rights reserved.
6
 
//
7
 
// Modifications Copyright (C) 2001-2003 Neoworks Limited. All rights reserved.
8
 
// For more information on Neoworks, please see <http://www.neoworks.com/>. 
9
 
//
10
 
// This software is published under the terms of the Apache Software
11
 
// License version 1.1, a copy of which has been included with this
12
 
// distribution in the LICENSE.txt file.
13
 
// 
14
 
-->
15
 
 
16
 
<!-- 
17
 
        This DTD describes the XML produced by the log4net XMLLayout.
18
 
-->
19
 
 
20
 
<!-- Version: 1.2 -->
21
 
 
22
 
<!ELEMENT log4net:events (log4net:event*)>
23
 
<!ATTLIST log4net:events
24
 
  xmlns:log4net           CDATA #FIXED "http://log4net.sourceforge.net/" 
25
 
  version                (1.2) "1.2" 
26
 
  includesLocationInfo   (true|false) "true"
27
 
>
28
 
 
29
 
<!ELEMENT log4net:event
30
 
  (log4net:message, 
31
 
   log4net:NDC?, 
32
 
   log4net:MDC?, 
33
 
   log4net:properties?, 
34
 
   log4net:exception?, 
35
 
   log4net:locationInfo?) >
36
 
 
37
 
<!-- The timestamp format is application dependent. -->
38
 
<!ATTLIST log4net:event
39
 
    logger     CDATA #REQUIRED
40
 
    level      CDATA #REQUIRED
41
 
    thread     CDATA #REQUIRED
42
 
    timestamp  CDATA #REQUIRED
43
 
    
44
 
    domain     CDATA #IMPLIED
45
 
    identity   CDATA #IMPLIED
46
 
    username   CDATA #IMPLIED
47
 
>
48
 
 
49
 
<!ELEMENT log4net:message (#PCDATA)>
50
 
<!ELEMENT log4net:NDC (#PCDATA)>
51
 
<!ELEMENT log4net:MDC (log4net:data*)>
52
 
 
53
 
<!ELEMENT log4net:exception (#PCDATA)>
54
 
 
55
 
<!ELEMENT log4net:locationInfo EMPTY>
56
 
<!ATTLIST log4net:locationInfo
57
 
  class  CDATA  #REQUIRED
58
 
  method CDATA  #REQUIRED
59
 
  file   CDATA  #REQUIRED
60
 
  line   CDATA  #REQUIRED
61
 
>
62
 
 
63
 
<!ELEMENT log4net:properties (log4net:data*)>
64
 
 
65
 
<!ATTLIST log4net:data
66
 
  name          CDATA  #REQUIRED
67
 
  value         CDATA  #REQUIRED
68
 
>
69