all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 81833df18274103924064baf79e4d01c5b63db6e 13263 bytes (raw)
name: etc/schema/dotnet-appconfig.rnc 	 # note: path name is non-authoritative(*)

  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
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
 
default namespace = ""
namespace ns1 = "http://schemas.microsoft.com/.NetConfiguration/v2.0"
namespace ns2 = "urn:schemas-microsoft-com:asm.v1"

start =
  element configuration {
    element configSections { (section | sectionGroup)+ }?,
    element system.web.webPages.razor {
      element host {
        attribute factoryType { text }
      },
      pages
    }?,
    (system.web
     | system.webServer
     | element appSettings { (text | add)+ }
     | element connectionStrings { add* }
     | element entityFramework {
         element defaultConnectionFactory {
           attribute type { text },
           element parameters {
             element parameter {
               attribute value { xsd:NCName }
             }
           }
         },
         element providers {
           element provider {
             attribute invariantName { xsd:NCName },
             attribute type { text }
           }
         }
       }
     | element location {
         attribute inheritInChildApplications { xsd:boolean }?,
         attribute path { text },
         system.web?,
         system.webServer?
       }
     | element runtime {
         element ns2:assemblyBinding {
           attribute appliesTo { xsd:NCName }?,
           element ns2:dependentAssembly {
             element ns2:Paket { xsd:NCName }?,
             element ns2:assemblyIdentity {
               attribute culture { xsd:NCName }?,
               attribute name { xsd:NCName },
               attribute publicKeyToken { xsd:NMTOKEN }
             },
             element ns2:bindingRedirect {
               attribute newVersion { xsd:NMTOKEN },
               attribute oldVersion { xsd:NMTOKEN }
             }
           }+
         }+
       }
     | element system.codedom {
         element compilers {
           element compiler {
             attribute compilerOptions { text }?,
             attribute extension { xsd:NMTOKEN },
             attribute language { text },
             attribute type { text },
             attribute warningLevel { xsd:integer },
             element providerOption {
               attribute name { xsd:NCName },
               attribute value { xsd:NCName }
             }*
           }+
         }
       }
     | element system.diagnostics {
         element sources {
           element source {
             attribute name { xsd:NCName },
             element listeners { add }?
           }+
         },
         (element switches { empty },
          element sharedListeners { empty },
          element trace {
            attribute autoflush { xsd:boolean }
          })?
       }
     | element system.serviceModel {
         (element behaviors {
            element serviceBehaviors {
              element behavior {
                attribute name { text }?,
                element serviceMetadata {
                  attribute httpGetEnabled { xsd:boolean },
                  attribute httpsGetEnabled { xsd:boolean }?
                },
                element serviceDebug {
                  attribute httpHelpPageEnabled { xsd:boolean }?,
                  attribute includeExceptionDetailInFaults {
                    xsd:boolean
                  }
                },
                element dataContractSerializer {
                  attribute maxItemsInObjectGraph { xsd:integer }
                }?,
                element serviceTelemetry { empty }?
              }
            }
          }
          | element bindings {
              element basicHttpBinding {
                element binding {
                  attribute closeTimeout { xsd:time }?,
                  attribute maxBufferSize { xsd:integer }?,
                  attribute maxReceivedMessageSize { xsd:integer }?,
                  attribute name { xsd:NCName }?,
                  attribute openTimeout { xsd:time }?,
                  attribute receiveTimeout { xsd:time }?,
                  attribute sendTimeout { xsd:time }?,
                  element readerQuotas {
                    attribute maxArrayLength { xsd:integer },
                    attribute maxBytesPerRead { xsd:integer }?,
                    attribute maxDepth { xsd:integer }?,
                    attribute maxNameTableCharCount { xsd:integer }?,
                    attribute maxStringContentLength { xsd:integer }
                  }?,
                  security?
                }+
              }?
            }
          | element client { empty }
          | element extensions {
              element behaviorExtensions { add+ }
            }
          | element protocolMapping { add+ }
          | element serviceHostingEnvironment {
              attribute aspNetCompatibilityEnabled { xsd:boolean }?,
              attribute multipleSiteBindingsEnabled { xsd:boolean }?
            })*,
         (element diagnostics {
            element messageLogging {
              attribute logEntireMessage { xsd:boolean },
              attribute logMalformedMessages { xsd:boolean },
              attribute logMessagesAtServiceLevel { xsd:boolean },
              attribute logMessagesAtTransportLevel { xsd:boolean },
              attribute maxMessagesToLog { xsd:integer },
              attribute maxSizeOfMessageToLog { xsd:integer }
            }
          }
          | element services {
              element service {
                attribute behaviorConfiguration { xsd:NCName }?,
                attribute name { text },
                element endpoint {
                  attribute address { xsd:NCName }?,
                  attribute binding { xsd:NCName },
                  attribute bindingConfiguration { xsd:NCName }?,
                  attribute contract { xsd:NCName }
                }+
              }+
            })?
       })+
  }
  | element ns1:configuration {
      element ns1:configSections {
        element ns1:section {
          attribute name { xsd:NCName },
          attribute requirePermission { xsd:boolean },
          attribute type { text }
        }
      },
      element ns1:appSettings { empty },
      element ns1:connectionStrings { empty },
      element ns1:system.web {
        element ns1:compilation {
          attribute debug { xsd:boolean },
          attribute defaultLanguage { text },
          attribute targetFramework { xsd:decimal }
        },
        element ns1:authentication {
          attribute mode { xsd:NCName }
        },
        element ns1:httpModules { ns1.add },
        element ns1:pages {
          attribute clientIDMode { xsd:NCName },
          attribute controlRenderingCompatibilityVersion { xsd:decimal }
        }
      },
      element ns1:system.webServer {
        element ns1:modules {
          attribute runAllManagedModulesForAllRequests { xsd:boolean },
          ns1.add
        }
      },
      element ns1:rewriter {
        element ns1:rewrite {
          attribute to { text },
          attribute url { text }
        }+
      }
    }
section =
  element section {
    attribute allowExeDefinition { xsd:NCName }?,
    attribute name { xsd:NCName },
    attribute requirePermission { xsd:boolean }?,
    attribute restartOnExternalChanges { xsd:boolean }?,
    attribute type { text }
  }
sectionGroup =
  element sectionGroup {
    attribute name { xsd:NCName },
    attribute type { text }?,
    (section | sectionGroup)+
  }
pages =
  element pages {
    attribute clientIDMode { xsd:NCName }?,
    attribute controlRenderingCompatibilityVersion { xsd:decimal }?,
    attribute enableEventValidation { xsd:boolean }?,
    attribute pageBaseType { xsd:NCName }?,
    attribute theme { text }?,
    attribute validateRequest { xsd:boolean }?,
    attribute viewStateEncryptionMode { xsd:NCName }?,
    element namespaces { add+ }?
  }
add =
  element add {
    attribute assembly { text }?,
    attribute binding { xsd:NCName }?,
    attribute bindingConfiguration { text }?,
    attribute connectionString { xsd:anyURI }?,
    attribute initializeData { text }?,
    attribute input { text }?,
    attribute key { xsd:NMTOKEN }?,
    attribute matchType { xsd:NCName }?,
    attribute modules { xsd:NCName }?,
    attribute name { xsd:NCName }?,
    attribute namespace { xsd:NCName }?,
    attribute negate { xsd:boolean }?,
    attribute path { text }?,
    attribute preCondition { text }?,
    attribute providerName { xsd:NCName }?,
    attribute resourceType { xsd:NCName }?,
    attribute responseBufferLimit { xsd:integer }?,
    attribute scheme { xsd:NCName }?,
    attribute scriptProcessor { text }?,
    attribute type { text }?,
    attribute validate { xsd:boolean }?,
    attribute value { text }?,
    attribute verb { text }?
  }
Globalization =
  element Globalization {
    element ResourceProviders { empty }
    | add+
  }
security =
  element security {
    attribute mode { xsd:NCName }?,
    (element requestFiltering {
       attribute removeServerHeader { xsd:boolean },
       element requestLimits {
         attribute maxAllowedContentLength { xsd:integer }
       }?
     }
     | element transport {
         attribute clientCredentialType { xsd:NCName }
       })?
  }
system.webServer =
  element system.webServer {
    element staticContent {
      element mimeMap {
        attribute fileExtension { xsd:NMTOKEN },
        attribute mimeType { text }
      }+
    }?,
    element rewrite {
      element rules {
        element rule {
          attribute name { xsd:NCName },
          attribute stopProcessing { xsd:boolean },
          element match {
            attribute url { text }
          },
          element conditions {
            attribute logicalGrouping { xsd:NCName },
            add+
          },
          element action {
            attribute type { xsd:NCName },
            attribute url { text }
          }
        }
      }
    }?,
    element httpErrors {
      attribute errorMode { xsd:NCName }?,
      attribute existingResponse { xsd:NCName },
      (remove+,
       element error {
         attribute path { text },
         attribute prefixLanguageFilePath { text },
         attribute responseMode { xsd:NCName },
         attribute statusCode { xsd:integer }
       }+)?
    }?,
    (security
     | element aspNetCore {
         attribute arguments { text }?,
         attribute hostingModel { xsd:NCName },
         attribute processPath { text },
         attribute stdoutLogEnabled { xsd:boolean },
         attribute stdoutLogFile { text }
       }
     | element handlers { (add | remove)+ }
     | element httpProtocol {
         element customHeaders {
           element clear { empty }?,
           remove+
         }
       }
     | element modules {
         attribute runAllManagedModulesForAllRequests { xsd:boolean }?,
         (add | remove)*
       }
     | element validation {
         attribute validateIntegratedModeConfiguration { xsd:boolean }
       })*,
    element directoryBrowse {
      attribute enabled { xsd:boolean }
    }?
  }
system.web =
  element system.web {
    element authorization {
      element allow {
        attribute users { text }
      }
    }
    | (pages
       | element authentication {
           attribute mode { xsd:NCName }
         }
       | element compilation {
           attribute debug { xsd:boolean }?,
           attribute targetFramework { xsd:NMTOKEN }?,
           attribute tempDirectory { text }?,
           element assemblies { add+ }?
         }
       | element customErrors {
           attribute defaultRedirect { text }?,
           attribute mode { xsd:NCName },
           attribute redirectMode { xsd:NCName }?
         }
       | element globalization {
           attribute requestEncoding { xsd:NCName },
           attribute responseEncoding { xsd:NCName }
         }
       | element httpHandlers { add+ }
       | element httpModules { add* }
       | element httpRuntime {
           attribute appRequestQueueLimit { xsd:integer }?,
           attribute enableVersionHeader { xsd:boolean }?,
           attribute executionTimeout { xsd:integer }?,
           attribute maxRequestLength { xsd:integer }?,
           attribute minFreeThreads { xsd:integer }?,
           attribute minLocalRequestFreeThreads { xsd:integer }?,
           attribute requestPathInvalidCharacters { text }?,
           attribute requestValidationMode { xsd:decimal }?,
           attribute targetFramework { xsd:NMTOKEN }?,
           attribute useFullyQualifiedRedirectUrl { xsd:boolean }?
         }
       | element identity {
           attribute impersonate { xsd:boolean }
         }
       | element machineKey {
           attribute validation { xsd:NCName }
         }
       | element sessionState {
           attribute cookieSameSite { xsd:NCName }?,
           attribute cookieless { xsd:boolean },
           attribute mode { xsd:NCName },
           attribute stateConnectionString { text }?,
           attribute timeout { xsd:integer }
         }
       | element xhtmlConformance {
           attribute mode { xsd:NCName }
         })*
  }
ns1.add =
  element ns1:add {
    attribute name { xsd:NCName },
    attribute type { text }
  }
remove =
  element remove {
    attribute name { xsd:NCName }?,
    attribute statusCode { xsd:integer }?,
    attribute subStatusCode { xsd:integer }?
  }

debug log:

solving 81833df1827 ...
found 81833df1827 in https://yhetil.org/emacs/B388F2A0-37FB-4806-836A-28CB64D9C2F2@secure.kjonigsen.net/

applying [1/1] https://yhetil.org/emacs/B388F2A0-37FB-4806-836A-28CB64D9C2F2@secure.kjonigsen.net/
diff --git a/etc/schema/dotnet-appconfig.rnc b/etc/schema/dotnet-appconfig.rnc
new file mode 100644
index 00000000000..81833df1827

Checking patch etc/schema/dotnet-appconfig.rnc...
Applied patch etc/schema/dotnet-appconfig.rnc cleanly.

index at:
100644 81833df18274103924064baf79e4d01c5b63db6e	etc/schema/dotnet-appconfig.rnc

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.