Make LocalName, Summary and Description optional for component.xml files
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2009-12-15 Faik Uygur <faik@pardus.org.tr>
|
||||
* pisi/component.py (Component): Make LocalName, Summary and
|
||||
Description optional for cleaning up component.xml files in the
|
||||
repository.
|
||||
|
||||
2009-12-14 Serdar Dalgıç <serdar@pardus.org.tr>
|
||||
* Add architecture and distribution release check to pisi add-repo
|
||||
New parameter --ignore-check is added to pisi ar too.
|
||||
|
||||
+2
-2
@@ -64,8 +64,8 @@ class Component(xmlfile.XmlFile):
|
||||
t_LocalName = [autoxml.LocalText, autoxml.optional]
|
||||
|
||||
# Information about the component
|
||||
t_Summary = [autoxml.LocalText, autoxml.mandatory]
|
||||
t_Description = [autoxml.LocalText, autoxml.mandatory]
|
||||
t_Summary = [autoxml.LocalText, autoxml.optional]
|
||||
t_Description = [autoxml.LocalText, autoxml.optional]
|
||||
t_Group = [ autoxml.String, autoxml.optional ]
|
||||
|
||||
# the parts of this component.
|
||||
|
||||
Reference in New Issue
Block a user