blob: b03ba20b1e55369c85f5d189ddd5f48e4c409a21 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2007, 2013 THALES GLOBAL SERVICES
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Obeo - Initial API and implementation
-->
<project name="org.eclipse.sirius.doc" default="generate-html">
<property name="wikitext.standalone" value="${basedir}/lib" description="Path to the WikiText standalone JARs" />
<path id="wikitext.classpath">
<fileset dir="${wikitext.standalone}">
<include name="org.eclipse.mylyn.wikitext.*core*.jar" />
</fileset>
</path>
<taskdef classpathref="wikitext.classpath" resource="org/eclipse/mylyn/wikitext/core/util/anttask/tasks.properties" />
<target name="generate-html" description="Generate Eclipse help from textile source">
<wikitext-to-html markupLanguage="Textile" formatOutput="true">
<fileset dir="${basedir}">
<include name="doc/**/*.textile" />
</fileset>
<stylesheet url="/help/topic/org.eclipse.emf.ecoretools.doc/doc/css/custom.css" />
<!-- We don't have any CQ tracked yet for bootstrap & co
<stylesheet url="/help/topic/org.eclipse.sirius.doc/doc/resources/bootstrap.css" />
-->
</wikitext-to-html>
</target>
<target name="generate-site-html" description="Generate Eclipse help from textile source">
<wikitext-to-html markupLanguage="Textile" formatOutput="true">
<fileset dir="${basedir}">
<include name="doc/**/*.textile" />
</fileset>
<!-- We don't have any CQ tracked yet for bootstrap & co
<stylesheet url="/sirius/doc/resources/bootstrap.css" />
<stylesheet url="/sirius/doc/resources/custom.css" />
-->
</wikitext-to-html>
</target>
</project>