def get_dc(self, element, dc_field, single=False):
values = map(lambda t: t.text, element.xpath("//dc:%s" % dc_field, namespaces={'dc': DCNS.uri}))
if single:
- return values[0]
+ return values[0] if len(values) else ''
return values
def handle_rdf__RDF(self, _):
@escape(True)
def get_rightsinfo(self, element):
rights_lic = self.get_dc(element, 'rights.license', True)
- return u'<cmd name="rightsinfostr">' + (rights_lic and u'<opt>%s</opt>' % rights_lic or '') + \
+ return u'<cmd name="rightsinfostr">' + (u'<opt>%s</opt>' % rights_lic if rights_lic else '') + \
u'<parm>%s</parm>' % self.get_dc(element, 'rights', True) + \
u'</cmd>'
@escape(True)
def get_description(self, element):
- return self.get_dc(element, 'description', single=True)
+ desc = self.get_dc(element, 'description', single=True)
+ if not desc:
+ print '!! no description'
+ return desc
+
+ @escape(True)
+ def get_curriculum(self, element):
+ ret = []
+ for dc_tag, new in [('subject.curriculum', False), ('subject.curriculum.new', True)]:
+ identifiers = self.get_dc(element, dc_tag)
+ if not identifiers:
+ continue
+ try:
+ from curriculum.templatetags.curriculum_tags import curriculum
+ curr_elements = curriculum(identifiers)
+ except ImportError:
+ curr_elements = {'identifiers': identifiers}
+ items = ['Podstawa programowa 2017:' if new else 'Podstawa programowa:']
+ newline = '<ctrl ch="\\"/>\n'
+ if 'currset' in curr_elements:
+ for (course, level), types in curr_elements['currset'].iteritems():
+ label = u'klasa' if new else u'poziom edukacyjny'
+ lines = [u'%s, %s %s' % (course, level, label)]
+ for type, currs in types.iteritems():
+ lines.append(type)
+ lines += [curr.title for curr in currs]
+ items.append(newline.join(lines))
+ else:
+ items += identifiers
+ ret.append('\n<cmd name="vspace"><parm>.6em</parm></cmd>\n'.join(
+ '<cmd name="akap"><parm>%s</parm></cmd>' % item for item in items))
+ return '\n<cmd name="vspace"><parm>1em</parm></cmd>\n'.join(ret)
def handle_utwor(self, element):
lines = [
u'''\\title{%s}''' % self.get_title(element),
u'''\\def\\bookurl{%s}''' % self.options['wldoc'].book_info.url.canonical(),
u'''\\def\\rightsinfo{%s}''' % self.get_rightsinfo(element),
+ u'''\\def\\curriculum{%s}''' % self.get_curriculum(element),
u'</TeXML>'
]
if not pytania:
pytania = [element]
for p in pytania:
- solutions = re.split(r"[, ]+", p.attrib.get('rozw', ''))
+ solutions = p.xpath(".//punkt[@rozw='prawda']")
if len(solutions) != 1:
is_single_choice = False
break
- choices = p.xpath(".//*[@nazwa]")
- uniq = set()
- for n in choices:
- uniq.add(n.attrib.get('nazwa', ''))
- if len(choices) != len(uniq):
- is_single_choice = False
- break
self.options = {'single': is_single_choice}
return pre, post
def handle_punkt(self, element):
- if self.options['exercise'] and element.attrib.get('nazwa', None):
+ if self.options['exercise'] and element.attrib.get('rozw', None):
cmd = 'radio' if self.options['single'] else 'checkbox'
+ if self.options['teacher'] and element.attrib['rozw'] == 'prawda':
+ cmd += 'checked'
return u'<cmd name="%s"/>' % cmd, ''
else:
return super(Wybor, self).handle_punkt(element)