Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. import family
  4.  
  5. class Family(family.Family):
  6. def __init__(self):
  7. family.Family.__init__(self)
  8.  
  9. self.name = 'datawiki'
  10. self.langs = {
  11. 'datawiki' : '192.168.0.100'
  12. }
  13. self.namespaces[4] = {
  14. 'datawiki': [u'Datawiki'],
  15. }
  16. self.namespaces[5] = {
  17. 'datawiki': [u'Datawiki talk'],
  18. }
  19.  
  20. def path(self, code):
  21. return '/datawiki'
Add Comment
Please, Sign In to add comment