diff --git a/modules.json b/modules.json index 0762d9e..5e06be0 100644 --- a/modules.json +++ b/modules.json @@ -50,6 +50,11 @@ {"name": "publik-alt", "title": "Publik", "description": "Gestion de la Relation Usager", + "private": false + }, + {"name": "au-quotidien-victor", + "title": "Au quotidien", + "description": "Téléservices en ligne", "private": true } ] diff --git a/publish.py b/publish.py index 14fbe5c..727ff51 100755 --- a/publish.py +++ b/publish.py @@ -117,7 +117,7 @@ def publish_mallard(module, branch, directory): cmd.extend(page_files) subprocess.call(cmd, **kws) - if os.path.exists(cache_file): + if os.path.exists(cache_file) and False: latex_file = os.path.join(temp_dir, 'doc-%s.tex' % module_name) cmd = ['xsltproc', '-o', latex_file, '../mal2latex/mal2latex.xsl', cache_file]