[mistelix] Change Mistelix home page



commit 5557ca97fc3db7cd39f0df44b98bc08175b72e31
Author: Jordi Mas <jmas softcatala org>
Date:   Sun Jan 16 15:40:32 2011 +0100

    Change Mistelix home page

 README                              |    2 +-
 mistelix.doap                       |    2 +-
 src/Core/Dependencies.cs            |    3 ++-
 src/Defines.cs.in                   |    4 ++++
 src/Dialogs/AboutDialog.cs          |    2 +-
 src/Dialogs/ThemeSelectionDialog.cs |    4 +++-
 src/mistelix.cs                     |    2 +-
 7 files changed, 13 insertions(+), 6 deletions(-)
---
diff --git a/README b/README
index be1513c..65dee7d 100644
--- a/README
+++ b/README
@@ -3,6 +3,6 @@ Introduction
 Mistelix is a DVD authoring application with also Theora slideshow creation 
 capabilities
 
-See http://www.mistelix.org for instructions on installation and use
+See http://live.gnome.org/Mistelix for instructions on installation and use
 
 
diff --git a/mistelix.doap b/mistelix.doap
index 02d50ae..73ba2b7 100644
--- a/mistelix.doap
+++ b/mistelix.doap
@@ -6,7 +6,7 @@
 
   <name xml:lang="en">Mistelix</name>
   <shortdesc xml:lang="en">Author DVDs and slideshows</shortdesc>
-  <homepage rdf:resource="http://www.mistelix.org/"; />
+  <homepage rdf:resource="http://live.gnome.org/Mistelix"; />
   <mailing-list rdf:resource="http://groups.google.com/group/mistelix"; />
   <bug-database rdf:resource="" />
 
diff --git a/src/Core/Dependencies.cs b/src/Core/Dependencies.cs
index 33da7a2..cef7d94 100644
--- a/src/Core/Dependencies.cs
+++ b/src/Core/Dependencies.cs
@@ -215,7 +215,8 @@ namespace Mistelix.Core
 			}
 
 			DependencyList.Add (new Dependency (used [(int) Codecs.MPEG2VIDEO], founds [(int) Codecs.MPEG2VIDEO],
-				Catalog.GetString ("Missing ffmpeg2video codec. Many distributions do not expose MPEG2 encoding capabilities in their GStreamer FFmpeg Plug-ins package. Visit 'http://www.mistelix.org/Download' for instructions on how to fix this.")));
+				String.Format (Catalog.GetString ("Missing ffmpeg2video codec. Many distributions do not expose MPEG2 encoding capabilities in their GStreamer FFmpeg Plug-ins package. Visit '{0}' for instructions on how to fix this."),
+				Defines.PROJECT_URL)));
 
 			DependencyList.Add (new Dependency (used [(int) Codecs.FFMUX_DVD], founds [(int) Codecs.FFMUX_DVD],
 				Catalog.GetString ("Missing ffmux_dvd muxer. Probably you have an old version of GStreamer plug-in that does not exposes the DVD muxer.")));
diff --git a/src/Defines.cs.in b/src/Defines.cs.in
index 1f663f5..25ca5a1 100644
--- a/src/Defines.cs.in
+++ b/src/Defines.cs.in
@@ -43,4 +43,8 @@ static public class Defines
 	public const string MAIN_MENU_FILE = "menu.mpeg";
 	public const string THEMES_FILE = "Themes.xml";
 	public const string PREFERENCES_FILE = "Preferences.xml";
+
+	public const string PROJECT_URL = "http://live.gnome.org/Mistelix";;
+	public const string MANUAL_URL = "http://live.gnome.org/Mistelix/Manual";;
+	public const string THEMES_URL = "http://live.gnome.org/Mistelix/Themes";;
 }
diff --git a/src/Dialogs/AboutDialog.cs b/src/Dialogs/AboutDialog.cs
index 6f29d9d..233e731 100644
--- a/src/Dialogs/AboutDialog.cs
+++ b/src/Dialogs/AboutDialog.cs
@@ -53,7 +53,7 @@ namespace Mistelix.Dialogs
 
 			Copyright = "Jordi Mas i Hern\u00e0ndez <jmas softcatala org>";
 			Comments = Catalog.GetString ("Mistelix is a DVD authoring application also with slideshow creation capabilities.");
-			Website = "http://www.mistelix.org";;
+			Website = Defines.PROJECT_URL;
 			WebsiteLabel = Catalog.GetString ("Mistelix web site");
 			TranslatorCredits = translators;
 			Response += delegate (object o, Gtk.ResponseArgs e) {Destroy ();};
diff --git a/src/Dialogs/ThemeSelectionDialog.cs b/src/Dialogs/ThemeSelectionDialog.cs
index 6570fbd..a71dc8a 100644
--- a/src/Dialogs/ThemeSelectionDialog.cs
+++ b/src/Dialogs/ThemeSelectionDialog.cs
@@ -248,7 +248,9 @@ namespace Mistelix.Dialogs
 
 			Gtk.TextBuffer buffer_intro = new Gtk.TextBuffer (new Gtk.TextTagTable ());
 			textview_intro.Buffer = buffer_intro;
-			buffer_intro.Text = Catalog.GetString ("Menu themes define how the main DVD menu looks. Here you define the default background image and the type of buttons. For more information visit: http://www.mistelix.org/Themes";);		
+			buffer_intro.Text = String.Format (
+				Catalog.GetString ("Menu themes define how the main DVD menu looks. Here you define the default background image and the type of buttons. For more information visit: {0}"),
+				Defines.THEMES_URL);
 		}
 
 		void PrepareTree ()
diff --git a/src/mistelix.cs b/src/mistelix.cs
index c38437c..c14b014 100644
--- a/src/mistelix.cs
+++ b/src/mistelix.cs
@@ -581,7 +581,7 @@ namespace Mistelix
 
 		void OnDocumentation (object sender, EventArgs args)
 		{
-			Process.Start ("http://www.mistelix.org/UserManual";);
+			Process.Start (Defines.MANUAL_URL);
 		}
 	
 		void OnCheckDependencies (object sender, EventArgs args)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]