Initial Commit
This commit is contained in:
parent
0aa9be6edb
commit
375faeee05
|
@ -0,0 +1,74 @@
|
|||
|
||||
<project name="PosteritaAjaxUI" default="war" basedir=".">
|
||||
<description>
|
||||
This buildfile is used to build the Adempiere-Posterita WebUI system.
|
||||
</description>
|
||||
<!-- set global properties for this build -->
|
||||
<!--<property environment="env"/>-->
|
||||
<property name="src.dir" value="${basedir}/WEB-INF/src"/>
|
||||
<property name="classes.dir" value="${basedir}/WEB-INF/classes"/>
|
||||
<property name="dist.dir" value="${basedir}/dist"/>
|
||||
<property name="WEBINF.dir" value="${basedir}/WEB-INF"/>
|
||||
<property name="Adempiere.dir" value="${basedir}/../../../lib"></property>
|
||||
|
||||
<property name="war.name" value="webui"/>
|
||||
<property name="compile.debug" value="true"/>
|
||||
<property name="compile.deprecation" value="false"/>
|
||||
<property name="compile.optimize" value="true"/>
|
||||
|
||||
<path id="compile.classpath">
|
||||
<pathelement location="${basedir}"/>
|
||||
<pathelement location="${basedir}/WEB-INF/classes"/>
|
||||
<pathelement location="${basedir}/WEB-INF/src"/>
|
||||
|
||||
<fileset dir="${Adempiere.dir}">
|
||||
<include name="*.jar"/>
|
||||
</fileset>
|
||||
|
||||
<fileset dir="${basedir}/WEB-INF/lib">
|
||||
<include name="*.jar"/>
|
||||
</fileset>
|
||||
</path>
|
||||
|
||||
<target name="clean" description="delete class directory">
|
||||
<delete dir="${classes.dir}/org" />
|
||||
</target>
|
||||
|
||||
<target name="compile" depends="clean" description="Compile Java sources">
|
||||
<mkdir dir="${classes.dir}"/>
|
||||
<javac srcdir="WEB-INF/src"
|
||||
destdir="${classes.dir}"
|
||||
debug="${compile.debug}"
|
||||
deprecation="${compile.deprecation}"
|
||||
optimize="${compile.optimize}">
|
||||
<classpath refid="compile.classpath"/>
|
||||
</javac>
|
||||
</target>
|
||||
|
||||
<target name="war" depends="compile">
|
||||
<delete dir="${dist.dir}" />
|
||||
|
||||
<mkdir dir="${dist.dir}"/>
|
||||
|
||||
<war
|
||||
warfile="${dist.dir}/${war.name}.war"
|
||||
webxml="${WEBINF.dir}/web.xml">
|
||||
<fileset dir="${basedir}" excludes="
|
||||
.settings/**,
|
||||
bin/**,
|
||||
dist/**,
|
||||
.*,
|
||||
work/**,
|
||||
WEB-INF/src/**,
|
||||
**/web.xml,
|
||||
**/test/**,
|
||||
lib/*-sources.jar,
|
||||
**/test.zul"
|
||||
>
|
||||
|
||||
</fileset>
|
||||
</war>
|
||||
|
||||
<copy file="${dist.dir}/${war.name}.war" tofile="../../../lib/${war.name}.war"/>
|
||||
</target>
|
||||
</project>
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (C) 2007 Ashley G Ramdass.
|
||||
-->
|
||||
<window use="org.adempiere.webui.AdempiereWebUI"/>
|
|
@ -0,0 +1,47 @@
|
|||
<html><head><title>Release Notes - Open SaaS: 0.2</title>
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
<!--
|
||||
#FogBugzReleaseNotes { font-family: Verdana,Arial,sans-serif }
|
||||
#FogBugzReleaseNotes h1 { border-bottom: 1px solid #449; font-size: 1.2em; color: #449; }
|
||||
#FogBugzReleaseNotes h2 { font-size: 1em; }
|
||||
#FogBugzReleaseNotes p { font-family: Georgia,'Times New Roman',serif; margin-left: 0.5in; font-size: 0.9em; }
|
||||
#FogBugzFooter { font-size: 10px; text-align:center }
|
||||
-->
|
||||
</style></head><body>
|
||||
<div id="FogBugzReleaseNotes">
|
||||
|
||||
|
||||
<h1>Release Notes - Open SaaS: 0.2</h1>
|
||||
|
||||
<h2>564: Business Partner Search Info</h2>
|
||||
<p>ADD: Info Panels to search information for invoice, asset,order, in/out, payment, cashline and assignment</p>
|
||||
|
||||
<h2>567: Payment Rule</h2>
|
||||
<p>ADD: Panel for selecting a Payment Rule (e.g. for customer invoicing)</p>
|
||||
|
||||
<h2>568: Location Editor</h2>
|
||||
<p>ADD: Editor to display location info of business partner</p>
|
||||
|
||||
<h2>569: Product Search Info</h2>
|
||||
<p>ADD: Panel enabling product searching</p>
|
||||
|
||||
<h2>570: Invoice Search Info</h2>
|
||||
<p>ADD: Panel for searching invoices</p>
|
||||
|
||||
<h2>571: Order Search Info</h2>
|
||||
<p>ADD: Panel for searching orders</p>
|
||||
|
||||
<h2>536: Generate Charges Custom Form</h2>
|
||||
<p>ADD: Generate Charges Custom Form</p>
|
||||
|
||||
<h2>556: Bug in Search Editor</h2>
|
||||
<p>FIX: Search Editor displayed User Info instead of Invoices</p>
|
||||
|
||||
|
||||
<div id="FogBugzFooter">Produced by <a href="http://www.fogcreek.com/FogBugz">FogBugz</a></div>
|
||||
</div>
|
||||
|
||||
</body></html>
|
Loading…
Reference in New Issue