aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/iis/WebLog.xsd
blob: 7f575abf4bbadb1cf8121d57373ef725ec31e66b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<element name="WebLog">
    <annotation>
      <appinfo>
        <parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
        <parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
        <parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
      </appinfo>
      <documentation>WebLog definition.</documentation>
    </annotation>
    <complexType>
      <choice minOccurs="0" maxOccurs="unbounded">
        <any namespace="##other" processContents="lax">
          <annotation>
            <documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </documentation>
          </annotation>
        </any>
      </choice>
      <attribute name="Id" type="xs:string" use="required">
        <annotation>
          <documentation>Identifier for the WebLog.</documentation>
        </annotation>
      </attribute>
      <attribute name="Type" use="required">
        <simpleType>
          <restriction base="xs:NMTOKEN">
            <enumeration value="IIS">
              <annotation>
                <documentation>
                  Microsoft IIS Log File Format
                </documentation>
              </annotation>
            </enumeration>
            <enumeration value="NCSA">
              <annotation>
                <documentation>
                  NCSA Common Log File Format
                </documentation>
              </annotation>
            </enumeration>
            <enumeration value="none">
              <annotation>
                <documentation>
                  Disables logging.
                </documentation>
              </annotation>
            </enumeration>
            <enumeration value="ODBC">
              <annotation>
                <documentation>
                  ODBC Logging
                </documentation>
              </annotation>
            </enumeration>
            <enumeration value="W3C">
              <annotation>
                <documentation>
                  W3C Extended Log File Format
                </documentation>
              </annotation>
            </enumeration>
          </restriction>
        </simpleType>
      </attribute>
      <anyAttribute namespace="##other" processContents="lax">
        <annotation>
          <documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </documentation>
        </annotation>
      </anyAttribute>
    </complexType>
  </element>