No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

component.py 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # -*- coding: utf-8 -*-
  2. """ Main object to manipulate Editorial Model
  3. parent of all other EM editing classes
  4. @see EmClass, EmType, EmFieldGroup, EmField
  5. """
  6. from ml_string import MlString
  7. class EmComponent(object):
  8. """ instaciate an EmComponent
  9. @param id_or_name int|str: name or id of the object
  10. @exception TypeError
  11. """
  12. def __init__(self, id_or_name):
  13. if self is EmComponent:
  14. raise EnvironmentError('Abstract class')
  15. if id_or_name is int:
  16. self.id = id_or_name
  17. else if id_or_name is str:
  18. self.name = id_or_name
  19. self.populate()
  20. else:
  21. raise TypeError('Bad argument: expecting <int> or <str>')
  22. """ Lookup in the database properties of the object to populate the properties
  23. """
  24. def populate(self):
  25. if self.id is None:
  26. where = "name = " + db.quote(self.name)
  27. else:
  28. where = "id = " + self.id
  29. row = db.query('*', self.table, where)
  30. if not row:
  31. # could have two possible Error message for id and for name
  32. raise EmComponentNotExistError("Bad id_or_name: could not find the component")
  33. self.name = row.name
  34. self.rank = int(row.rank)
  35. self.date_update = row.date_update
  36. self.date_create = row.date_create
  37. self.string = MlString.from_json(row.string)
  38. self.help = MlString.from_json(row.help)
  39. self.icon = row.icon
  40. return row
  41. """ write the representation of the component in the database
  42. @return bool
  43. """
  44. def save(self):
  45. pass
  46. """ delete this component data in the database
  47. @return bool
  48. """
  49. def delete(self):
  50. pass
  51. """ change the rank of the component
  52. @param int new_rank new position
  53. """
  54. def modify_rank(self, new_rank):
  55. pass
  56. """ set a string representation of the component for a given language
  57. @param lang str: iso 639-2 code of the language http://en.wikipedia.org/wiki/List_of_ISO_639-2_codes
  58. @param text str: text to set
  59. @return bool
  60. """
  61. def set_string(self, lang, text):
  62. pass
  63. """ set the string representation of the component
  64. @param ml_string MlString: strings for all language
  65. @return bool
  66. """
  67. def set_strings(self, ml_string):
  68. pass
  69. """ get the string representation of the component for the given language
  70. @param lang str: iso 639-2 code of the language
  71. @return text str:
  72. """
  73. def get_string(self, lang):
  74. pass