Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg
diff options
context:
space:
mode:
Diffstat (limited to 'cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg')
-rwxr-xr-xcut-n-paste/toolbar-editor/update-toolbareditor-from-libegg21
1 files changed, 21 insertions, 0 deletions
diff --git a/cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg b/cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg
new file mode 100755
index 0000000..fe56a2f
--- /dev/null
+++ b/cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg
@@ -0,0 +1,21 @@
+#!/bin/sh
+# Get latest toolbar editor from libegg
+# Developers using the toolbar editor in their projects can use this script to
+# fetch the latest toolbar editor from libegg
+echo "Obtaining latest version of toolbar editor from libegg"
+
+FILES="egg-editable-toolbar.c \
+ egg-toolbars-model.c \
+ egg-toolbar-editor.c \
+ eggtreemultidnd.c \
+ egg-editable-toolbar.h \
+ egg-toolbars-model.h \
+ egg-toolbar-editor.h \
+ eggtreemultidnd.h \
+ eggmarshalers.list"
+
+for FILE in $FILES
+do
+ svn export http://svn.gnome.org/svn/libegg/trunk/libegg/toolbareditor/$FILE
+done
+