~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to doc/bug-export.rnc

  • Committer: Gavin Panella
  • Date: 2011-11-23 14:48:22 UTC
  • mto: This revision was merged to the branch mainline in revision 14373.
  • Revision ID: gavin.panella@canonical.com-20111123144822-36th2sci6hqfohkr
A bug nickname is not permitted a leading digit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
boolean = "True" | "False"
8
8
lpname = xsd:string { pattern = "[a-z0-9][a-z0-9\+\.\-]*" }
 
9
lpbugname = xsd:string { pattern = "[a-z][a-z0-9\+\.\-]*" }
9
10
cvename = xsd:string { pattern = "(19|20)[0-9][0-9]-[0-9][0-9][0-9][0-9]" }
10
11
non_empty_text = xsd:string { minLength = "1" }
11
12
 
54
55
  element security_related { boolean }? &
55
56
  element duplicateof { xsd:integer }? &
56
57
  element datecreated { xsd:dateTime } &
57
 
  element nickname { lpname }? &
 
58
  element nickname { lpbugname }? &
58
59
  # The following will likely be renamed summary in a future version.
59
60
  element title { text } &
60
61
  element description { text } &