~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to doc/bug-export.rnc

[r=allenap][bug=894020][no-qa] Do not allow bug nicknames with
 leading digits in bug export XML.

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 } &