Check in another fix for Issue 93: rotated poly points drag ok now. Check in Erik's patch for widgetizing SVG-edit (Issue 99)

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@413 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Jeff Schiller
2009-08-19 03:42:27 +00:00
parent 546c96ed14
commit 8550d59362
8 changed files with 145 additions and 7 deletions

12
widget/Makefile Normal file
View File

@@ -0,0 +1,12 @@
ZIP = zip
PACKAGE = svgedit-2.3
FILEMASK = \*.html \*.css \*.js \*.txt \*.png \*.jpg \*.gif \*.svg \*.xml
clean:
rm -f *.*~
rm -rf ./editor/
widget: clean
rm -f $(PACKAGE).wgt
cp -r ../editor .
$(ZIP) $(PACKAGE).wgt -r . -i $(FILEMASK)

16
widget/config.xml Normal file
View File

@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<widget>
<widgetname>SVG Edit</widgetname>
<description>
A simple SVG Editor.
</description>
<width>800</width>
<height>600</height>
<id>
<name>SVG Edit</name>
<revised>2009-08</revised>
</id>
<feature name="http://xmlns.opera.com/fileio">
<param name="folderhint" value="home" />
</feature>
</widget>

11
widget/index.html Normal file
View File

@@ -0,0 +1,11 @@
<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>

2
widget/style.css Normal file
View File

@@ -0,0 +1,2 @@
body { margin: 0px; padding: 0px; }
#container { width: 100%; height: 100%; border: none; }