~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to doc/bug-export.rnc

  • Committer: Gavin Panella
  • Date: 2011-11-09 12:11:09 UTC
  • mto: This revision was merged to the branch mainline in revision 14274.
  • Revision ID: gavin.panella@canonical.com-20111109121109-e2u0y99fgyw75ohk
Rename text1 to non_empty_text as suggested by jtv.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
boolean = "True" | "False"
8
8
lpname = xsd:string { pattern = "[a-z0-9][a-z0-9\+\.\-]*" }
9
9
cvename = xsd:string { pattern = "(19|20)[0-9][0-9]-[0-9][0-9][0-9][0-9]" }
10
 
text1 = xsd:string { minLength = "1" }
 
10
non_empty_text = xsd:string { minLength = "1" }
11
11
 
12
12
# XXX: jamesh 2006-04-11 bug=105401:
13
13
# These status and importance values need to be kept in sync with the
40
40
  attribute name { string "nobody" })
41
41
person_normal = (
42
42
  attribute name { lpname }?,
43
 
  attribute email { text1 },
 
43
  attribute email { non_empty_text },
44
44
  text)
45
45
person = (
46
46
  person_nobody |
95
95
attachment = element attachment {
96
96
  attribute href { xsd:anyURI }? &
97
97
  element type { "PATCH" | "UNSPECIFIED" }? &
98
 
  element filename { text1 }? &
 
98
  element filename { non_empty_text }? &
99
99
  # The following will likely be renamed summary in a future version.
100
100
  element title { text }? &
101
101
  element mimetype { text }? &