From 10c8bd3678f1a13e9ff4dc59b7907c4a7726d67e Mon Sep 17 00:00:00 2001 From: necoro <> Date: Fri, 24 Nov 2006 11:49:51 +0000 Subject: Renamed to portato --- geneticone/gui/__init__.py | 4 ++-- geneticone/gui/gtk/__init__.py | 4 ++-- geneticone/gui/gtk/dialogs.py | 6 +++--- geneticone/gui/gtk/glade/geneticone.glade | 2 +- geneticone/gui/gtk/windows.py | 24 ++++++++++++------------ geneticone/gui/gtk/wrapper.py | 6 +++--- geneticone/gui/gui_helper.py | 14 +++++++------- geneticone/gui/wrapper.py | 4 ++-- 8 files changed, 32 insertions(+), 32 deletions(-) (limited to 'geneticone/gui') diff --git a/geneticone/gui/__init__.py b/geneticone/gui/__init__.py index 25123c8..6248ece 100644 --- a/geneticone/gui/__init__.py +++ b/geneticone/gui/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# File: geneticone/gui/__init__.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato/gui/__init__.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of diff --git a/geneticone/gui/gtk/__init__.py b/geneticone/gui/gtk/__init__.py index e7b1bb5..85938b4 100644 --- a/geneticone/gui/gtk/__init__.py +++ b/geneticone/gui/gtk/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# File: geneticone/gui/gtk/__init__.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato/gui/gtk/__init__.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of diff --git a/geneticone/gui/gtk/dialogs.py b/geneticone/gui/gtk/dialogs.py index ba74524..68cd629 100644 --- a/geneticone/gui/gtk/dialogs.py +++ b/geneticone/gui/gtk/dialogs.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# File: geneticone/gui/gtk/dialogs.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato/gui/gtk/dialogs.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of @@ -48,7 +48,7 @@ def nothing_found_dialog (): def changed_flags_dialog (what = "flags"): hintMB = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, gtk.BUTTONS_OK, - "You have changed %s. Genetic/One will write these changes into the appropriate files. Please backup them if you think it is necessairy." % what) + "You have changed %s. Portato will write these changes into the appropriate files. Please backup them if you think it is necessairy." % what) ret = hintMB.run() hintMB.destroy() return ret diff --git a/geneticone/gui/gtk/glade/geneticone.glade b/geneticone/gui/gtk/glade/geneticone.glade index 89f5950..cf187c7 100644 --- a/geneticone/gui/gtk/glade/geneticone.glade +++ b/geneticone/gui/gtk/glade/geneticone.glade @@ -554,7 +554,7 @@ True 0 0 - Genetic/One - A Portage GUI + Portato - A Portage GUI True diff --git a/geneticone/gui/gtk/windows.py b/geneticone/gui/gtk/windows.py index ee50ca4..f4a37fe 100644 --- a/geneticone/gui/gtk/windows.py +++ b/geneticone/gui/gtk/windows.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# File: geneticone/gui/gtk/windows.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato/gui/gtk/windows.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of @@ -18,14 +18,14 @@ import gtk.glade import gobject #our backend stuff -from geneticone.helper import * -from geneticone.constants import CONFIG_LOCATION, VERSION, DATA_DIR -from geneticone import backend -from geneticone.backend import flags -from geneticone.backend.exceptions import * +from portato.helper import * +from portato.constants import CONFIG_LOCATION, VERSION, DATA_DIR +from portato import backend +from portato.backend import flags +from portato.backend.exceptions import * # more GUI stuff -from geneticone.gui.gui_helper import Database, Config, EmergeQueue +from portato.gui.gui_helper import Database, Config, EmergeQueue from dialogs import * from wrapper import GtkTree, GtkConsole @@ -37,7 +37,7 @@ from portage_util import unique_array class Window: def __init__ (self): - self.tree = gtk.glade.XML(DATA_DIR+"geneticone.glade", root = self.__class__.__name__) + self.tree = gtk.glade.XML(DATA_DIR+"portato.glade", root = self.__class__.__name__) self.tree.signal_autoconnect(self) self.window = self.tree.get_widget(self.__class__.__name__) @@ -102,7 +102,7 @@ class AboutWindow (AbstractDialog): label = self.tree.get_widget("aboutLabel") label.set_markup(""" -Genetic/One v.%s +Portato v.%s A Portage-GUI This software is licensed under the terms of the GPLv2. @@ -561,7 +561,7 @@ class MainWindow (Window): # main window stuff Window.__init__(self) - self.window.set_title(("Genetic/One (%s)" % VERSION)) + self.window.set_title(("Portato (%s)" % VERSION)) mHeight = 800 if gtk.gdk.screen_height() <= 800: mHeight = 600 self.window.set_geometry_hints (self.window, min_width = 600, min_height = mHeight, max_height = gtk.gdk.screen_height(), max_width = gtk.gdk.screen_width()) @@ -619,7 +619,7 @@ class MainWindow (Window): self.packageTable.table.hide_all() # popup - popupTree = gtk.glade.XML(DATA_DIR+"geneticone.glade", root = "queuePopup") + popupTree = gtk.glade.XML(DATA_DIR+"portato.glade", root = "queuePopup") popupTree.signal_autoconnect(self) self.queuePopup = popupTree.get_widget("queuePopup") diff --git a/geneticone/gui/gtk/wrapper.py b/geneticone/gui/gtk/wrapper.py index 7597a8a..7066acb 100644 --- a/geneticone/gui/gtk/wrapper.py +++ b/geneticone/gui/gtk/wrapper.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# File: geneticone/gui/gtk/wrapper.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato/gui/gtk/wrapper.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of @@ -10,7 +10,7 @@ # # Written by René 'Necoro' Neumann -from geneticone.gui.wrapper import Tree, Console +from portato.gui.wrapper import Tree, Console class GtkTree (Tree): """The implementation of the abstract tree.""" diff --git a/geneticone/gui/gui_helper.py b/geneticone/gui/gui_helper.py index bbc4bb9..6cc09a3 100644 --- a/geneticone/gui/gui_helper.py +++ b/geneticone/gui/gui_helper.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# File: geneticone/gui/gui_helper.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato/gui/gui_helper.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of @@ -11,12 +11,12 @@ # Written by René 'Necoro' Neumann # some backend things -from geneticone import backend -from geneticone.backend import flags -from geneticone.helper import * +from portato import backend +from portato.backend import flags +from portato.helper import * # parser -from geneticone.config_parser import ConfigParser +from portato.config_parser import ConfigParser # the wrapper from wrapper import Console, Tree @@ -381,7 +381,7 @@ class EmergeQueue: @param oneshot: True if this package should not be added to the world-file. @type oneshot: boolean - @raises geneticone.backend.PackageNotFoundException: if trying to add a package which does not exist""" + @raises portato.backend.PackageNotFoundException: if trying to add a package which does not exist""" if not unmerge: # emerge # insert dependencies diff --git a/geneticone/gui/wrapper.py b/geneticone/gui/wrapper.py index 3616d21..def5c50 100644 --- a/geneticone/gui/wrapper.py +++ b/geneticone/gui/wrapper.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# File: geneticone/gui/wrapper.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato/gui/wrapper.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of -- cgit v1.2.3-54-g00ecf