anjuta r3935 - in branches/anjuta-2-4: . plugins/project-wizard/templates
- From: sgranjoux svn gnome org
- To: svn-commits-list gnome org
- Subject: anjuta r3935 - in branches/anjuta-2-4: . plugins/project-wizard/templates
- Date: Sat, 17 May 2008 16:05:59 +0000 (UTC)
Author: sgranjoux
Date: Sat May 17 16:05:58 2008
New Revision: 3935
URL: http://svn.gnome.org/viewvc/anjuta?rev=3935&view=rev
Log:
* plugins/project-wizard/templates/terminal.wiz,
plugins/project-wizard/templates/xlib-dock.wiz,
plugins/project-wizard/templates/wxwin.wiz,
plugins/project-wizard/templates/java.wiz,
plugins/project-wizard/templates/django.wiz,
plugins/project-wizard/templates/gnome.wiz,
plugins/project-wizard/templates/anjuta-plugin.wiz,
plugins/project-wizard/templates/gtkmm.wiz,
plugins/project-wizard/templates/python.wiz,
plugins/project-wizard/templates/cpp.wiz,
plugins/project-wizard/templates/sdl.wiz,
plugins/project-wizard/templates/gtk.wiz,
plugins/project-wizard/templates/minimal.wiz,
plugins/project-wizard/templates/xlib.wiz,
plugins/project-wizard/templates/gcj.wiz:
Fix #533346: Create project in path with spaces fails
Modified:
branches/anjuta-2-4/ChangeLog
branches/anjuta-2-4/plugins/project-wizard/templates/anjuta-plugin.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/cpp.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/django.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/gcj.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/gnome.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/gtk.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/gtkmm.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/java.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/minimal.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/python.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/sdl.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/terminal.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/wxwin.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/xlib-dock.wiz
branches/anjuta-2-4/plugins/project-wizard/templates/xlib.wiz
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/anjuta-plugin.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/anjuta-plugin.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/anjuta-plugin.wiz Sat May 17 16:05:58 2008
@@ -105,6 +105,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/cpp.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/cpp.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/cpp.wiz Sat May 17 16:05:58 2008
@@ -77,6 +77,6 @@
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/django.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/django.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/django.wiz Sat May 17 16:05:58 2008
@@ -22,7 +22,7 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && django-admin.py startproject [+NameHLower+]'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && django-admin.py startproject [+NameHLower+]""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
<open file="[+Destination+]/[+NameHLower+]/settings.py"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/gcj.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/gcj.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/gcj.wiz Sat May 17 16:05:58 2008
@@ -82,6 +82,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/gnome.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/gnome.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/gnome.wiz Sat May 17 16:05:58 2008
@@ -81,6 +81,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/gtk.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/gtk.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/gtk.wiz Sat May 17 16:05:58 2008
@@ -78,6 +78,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/gtkmm.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/gtkmm.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/gtkmm.wiz Sat May 17 16:05:58 2008
@@ -77,6 +77,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/java.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/java.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/java.wiz Sat May 17 16:05:58 2008
@@ -78,6 +78,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/minimal.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/minimal.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/minimal.wiz Sat May 17 16:05:58 2008
@@ -56,6 +56,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/python.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/python.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/python.wiz Sat May 17 16:05:58 2008
@@ -78,6 +78,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/sdl.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/sdl.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/sdl.wiz Sat May 17 16:05:58 2008
@@ -68,6 +68,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/terminal.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/terminal.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/terminal.wiz Sat May 17 16:05:58 2008
@@ -68,6 +68,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/wxwin.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/wxwin.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/wxwin.wiz Sat May 17 16:05:58 2008
@@ -73,6 +73,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/xlib-dock.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/xlib-dock.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/xlib-dock.wiz Sat May 17 16:05:58 2008
@@ -79,6 +79,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
Modified: branches/anjuta-2-4/plugins/project-wizard/templates/xlib.wiz
==============================================================================
--- branches/anjuta-2-4/plugins/project-wizard/templates/xlib.wiz (original)
+++ branches/anjuta-2-4/plugins/project-wizard/templates/xlib.wiz Sat May 17 16:05:58 2008
@@ -74,6 +74,6 @@
</content>
<action>
- <run command="sh -c 'cd [+Destination+] && ./autogen.sh'"/>
+ <run command="sh -c "cd [+(raw-shell-str (get "Destination"))+] && ./autogen.sh""/>
<open file="[+Destination+]/[+NameHLower+].anjuta"/>
</action>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]