Use a cyrilic unicode sample in the demo instead of japanese so that the pdf build is easier.

This commit is contained in:
Christophe de Vienne 2013-04-09 11:56:40 +02:00
parent 20690279b1
commit 6b0441d154
2 changed files with 6 additions and 3 deletions
doc
examples/demo

@ -191,7 +191,7 @@ htmlhelp_basename = 'WebServicesMadeEasydoc'
# -- Options for LaTeX output --------------------------------------------------
# The paper size ('letter' or 'a4').
#latex_paper_size = 'letter'
latex_paper_size = 'a4'
# The font size ('10pt', '11pt' or '12pt').
#latex_font_size = '10pt'
@ -218,7 +218,10 @@ latex_documents = [
#latex_show_urls = False
# Additional stuff for the LaTeX preamble.
#latex_preamble = ''
latex_preamble = '''
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
'''
# Documents to append as an appendix to all manuals.
#latex_appendices = []

@ -49,7 +49,7 @@ class DemoRoot(WSRoot):
@expose(unicode)
def helloworld(self):
return u"こんにちは世界 (<- Hello World in Japanese !)"
return u"Здраво, свете (<- Hello World in Serbian !)"
@expose(Person)
def getperson(self):