dir structure cleanup
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@431 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
YUI=yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar
|
||||
YUI=yuicompressor-*.jar
|
||||
|
||||
# minify spin button
|
||||
java -jar $YUI editor/spinbtn/JQuerySpinBtn.js > editor/spinbtn/JQuerySpinBtn.min.js
|
||||
@@ -8,7 +8,6 @@ java -jar $YUI editor/spinbtn/JQuerySpinBtn.js > editor/spinbtn/JQuerySpinBtn.mi
|
||||
java -jar $YUI editor/svg-editor.js > editor/svg-editor.min.js
|
||||
java -jar $YUI editor/svgcanvas.js > editor/svgcanvas.min.js
|
||||
|
||||
|
||||
# CSS files do not work remotely
|
||||
# java -jar $YUI editor/spinbtn/JQuerySpinBtn.css > editor/spinbtn/JQuerySpinBtn.min.css
|
||||
# java -jar $YUI editor/svg-editor.css > editor/svg-editor.min.css
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<widget>
|
||||
<widgetname>SVG Edit</widgetname>
|
||||
<description>
|
||||
A simple SVG Editor.
|
||||
A simple SVG Editor.
|
||||
</description>
|
||||
<width>800</width>
|
||||
<height>600</height>
|
||||
@@ -13,4 +13,4 @@
|
||||
<feature name="http://xmlns.opera.com/fileio">
|
||||
<param name="folderhint" value="home" />
|
||||
</feature>
|
||||
</widget>
|
||||
</widget>
|
||||
@@ -1,11 +1,11 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>SVG Edit</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
</head>
|
||||
<html>
|
||||
<head>
|
||||
<title>SVG Edit</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<object id="container" data="editor/svg-editor.html">
|
||||
Failed to load for some reason.
|
||||
</object>
|
||||
</body>
|
||||
</html>
|
||||
</object>
|
||||
</body>
|
||||
</html>
|
||||
2
opera-widget/style.css
Normal file
2
opera-widget/style.css
Normal file
@@ -0,0 +1,2 @@
|
||||
body { margin: 0px; padding: 0px; }
|
||||
#container { width: 100%; height: 100%; border: none; }
|
||||
@@ -1,2 +0,0 @@
|
||||
body { margin: 0px; padding: 0px; }
|
||||
#container { width: 100%; height: 100%; border: none; }
|
||||
@@ -1,8 +0,0 @@
|
||||
src.dir = src
|
||||
lib.dir = lib
|
||||
doc.dir = doc
|
||||
build.dir = build
|
||||
product.name = yuicompressor
|
||||
version.number = 2.4.2
|
||||
jar.name = ${product.name}-${version.number}.jar
|
||||
dist.package.name = ${product.name}-${version.number}
|
||||
@@ -1,66 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<project name="YUI Compressor" default="build.jar" basedir=".">
|
||||
|
||||
<target name="clean" depends="-load.properties">
|
||||
<delete dir="${build.dir}" quiet="true"/>
|
||||
</target>
|
||||
|
||||
<target name="-load.properties">
|
||||
<property file="ant.properties"/>
|
||||
</target>
|
||||
|
||||
<target name="-init" depends="-load.properties">
|
||||
<mkdir dir="${build.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="build.classes" depends="-init">
|
||||
<mkdir dir="${build.dir}/classes"/>
|
||||
<javac srcdir="${src.dir}"
|
||||
destdir="${build.dir}/classes"
|
||||
includes="**/*.java"
|
||||
deprecation="off"
|
||||
debug="on"
|
||||
source="1.4">
|
||||
<classpath>
|
||||
<pathelement location="${lib.dir}/jargs-1.0.jar"/>
|
||||
<pathelement location="${lib.dir}/rhino-1.6R7.jar"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
</target>
|
||||
|
||||
<target name="build.jar" depends="build.classes">
|
||||
<mkdir dir="${build.dir}/jar"/>
|
||||
<!-- The order is important here. Rhino MUST be unjarred first!
|
||||
(some of our own classes will override the Rhino classes) -->
|
||||
<unjar src="${lib.dir}/jargs-1.0.jar" dest="${build.dir}/jar"/>
|
||||
<unjar src="${lib.dir}/rhino-1.6R7.jar" dest="${build.dir}/jar"/>
|
||||
<copy todir="${build.dir}/jar">
|
||||
<fileset dir="${build.dir}/classes" includes="**/*.class"/>
|
||||
</copy>
|
||||
<jar destfile="${build.dir}/${jar.name}" basedir="${build.dir}/jar">
|
||||
<manifest>
|
||||
<attribute name="Main-Class" value="com.yahoo.platform.yui.compressor.Bootstrap"/>
|
||||
</manifest>
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
<target name="build.dist.package" depends="build.jar">
|
||||
<mkdir dir="${build.dir}/${dist.package.name}"/>
|
||||
<mkdir dir="${build.dir}/${dist.package.name}/build"/>
|
||||
<copy file="${build.dir}/${jar.name}" todir="${build.dir}/${dist.package.name}/build"/>
|
||||
<copy todir="${build.dir}/${dist.package.name}">
|
||||
<fileset dir=".">
|
||||
<include name="ant.properties"/>
|
||||
<include name="build.xml"/>
|
||||
<include name="doc/**/*"/>
|
||||
<include name="lib/**/*"/>
|
||||
<include name="src/**/*"/>
|
||||
<exclude name="**/CVS"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<zip destfile="${build.dir}/${dist.package.name}.zip"
|
||||
basedir="${build.dir}"
|
||||
includes="${dist.package.name}/**/*"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,6 +0,0 @@
|
||||
Manifest-Version: 1.0
|
||||
Ant-Version: Apache Ant 1.6.5
|
||||
Created-By: 1.5.0_07-b03 (Sun Microsystems Inc.)
|
||||
Main-Class: org.mozilla.javascript.tools.shell.Main
|
||||
Class-Path: xbean.jar
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user