From 0d9a417255df1620855f232717463097761b09d6 Mon Sep 17 00:00:00 2001 From: Steve Zesch Date: Tue, 9 Oct 2012 11:52:46 -0400 Subject: Fixed fsf addresses. Closes #18. --- timer-applet/src/timerapplet/config.py | 2 +- timer-applet/src/timerapplet/controllers/GlobalController.py | 2 +- timer-applet/src/timerapplet/controllers/TimerApplet.py | 2 +- timer-applet/src/timerapplet/controllers/TimerManagerService.py | 2 +- timer-applet/src/timerapplet/controllers/TimerService.py | 2 +- timer-applet/src/timerapplet/controllers/__init__.py | 2 +- timer-applet/src/timerapplet/core/AppletMateConfWrapper.py | 2 +- timer-applet/src/timerapplet/core/PresetsStore.py | 2 +- timer-applet/src/timerapplet/core/Timer.py | 2 +- timer-applet/src/timerapplet/core/__init__.py | 2 +- timer-applet/src/timerapplet/logger.py | 2 +- timer-applet/src/timerapplet/ui/AddEditPresetDialog.py | 2 +- timer-applet/src/timerapplet/ui/ContinueTimerDialog.py | 2 +- timer-applet/src/timerapplet/ui/DurationChooser.py | 2 +- timer-applet/src/timerapplet/ui/ManagePresetsDialog.py | 2 +- timer-applet/src/timerapplet/ui/Notifier.py | 2 +- timer-applet/src/timerapplet/ui/PieMeter.py | 2 +- timer-applet/src/timerapplet/ui/PreferencesDialog.py | 2 +- timer-applet/src/timerapplet/ui/PulseButton.py | 2 +- timer-applet/src/timerapplet/ui/ScrollableButtonList.py | 2 +- timer-applet/src/timerapplet/ui/StartNextTimerDialog.py | 2 +- timer-applet/src/timerapplet/ui/StartTimerDialog.py | 2 +- timer-applet/src/timerapplet/ui/StatusButton.py | 2 +- timer-applet/src/timerapplet/ui/__init__.py | 2 +- timer-applet/src/timerapplet/utils.py | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) (limited to 'timer-applet/src') diff --git a/timer-applet/src/timerapplet/config.py b/timer-applet/src/timerapplet/config.py index ca8a4f9d..42376845 100644 --- a/timer-applet/src/timerapplet/config.py +++ b/timer-applet/src/timerapplet/config.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import os.path as path diff --git a/timer-applet/src/timerapplet/controllers/GlobalController.py b/timer-applet/src/timerapplet/controllers/GlobalController.py index 860573a6..fd3af2b1 100644 --- a/timer-applet/src/timerapplet/controllers/GlobalController.py +++ b/timer-applet/src/timerapplet/controllers/GlobalController.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from gettext import gettext as _ import gtk diff --git a/timer-applet/src/timerapplet/controllers/TimerApplet.py b/timer-applet/src/timerapplet/controllers/TimerApplet.py index 3c53754a..510b042d 100644 --- a/timer-applet/src/timerapplet/controllers/TimerApplet.py +++ b/timer-applet/src/timerapplet/controllers/TimerApplet.py @@ -13,7 +13,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from gettext import gettext as _ from gettext import ngettext diff --git a/timer-applet/src/timerapplet/controllers/TimerManagerService.py b/timer-applet/src/timerapplet/controllers/TimerManagerService.py index ca902884..b33155a8 100644 --- a/timer-applet/src/timerapplet/controllers/TimerManagerService.py +++ b/timer-applet/src/timerapplet/controllers/TimerManagerService.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import dbus import dbus.service diff --git a/timer-applet/src/timerapplet/controllers/TimerService.py b/timer-applet/src/timerapplet/controllers/TimerService.py index 02976101..a4b25b8a 100644 --- a/timer-applet/src/timerapplet/controllers/TimerService.py +++ b/timer-applet/src/timerapplet/controllers/TimerService.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import dbus import dbus.service diff --git a/timer-applet/src/timerapplet/controllers/__init__.py b/timer-applet/src/timerapplet/controllers/__init__.py index b0b130ef..471dd256 100644 --- a/timer-applet/src/timerapplet/controllers/__init__.py +++ b/timer-applet/src/timerapplet/controllers/__init__.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from GlobalController import GlobalController from TimerApplet import TimerApplet diff --git a/timer-applet/src/timerapplet/core/AppletMateConfWrapper.py b/timer-applet/src/timerapplet/core/AppletMateConfWrapper.py index c5d09619..8e4cecb5 100644 --- a/timer-applet/src/timerapplet/core/AppletMateConfWrapper.py +++ b/timer-applet/src/timerapplet/core/AppletMateConfWrapper.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from os import path import mateconf diff --git a/timer-applet/src/timerapplet/core/PresetsStore.py b/timer-applet/src/timerapplet/core/PresetsStore.py index edd5655a..6c9323b7 100644 --- a/timer-applet/src/timerapplet/core/PresetsStore.py +++ b/timer-applet/src/timerapplet/core/PresetsStore.py @@ -13,7 +13,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA try: from xml.etree import ElementTree as et diff --git a/timer-applet/src/timerapplet/core/Timer.py b/timer-applet/src/timerapplet/core/Timer.py index f4ba57a2..d2f8c695 100644 --- a/timer-applet/src/timerapplet/core/Timer.py +++ b/timer-applet/src/timerapplet/core/Timer.py @@ -13,7 +13,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import datetime import time diff --git a/timer-applet/src/timerapplet/core/__init__.py b/timer-applet/src/timerapplet/core/__init__.py index 861b496d..257837d5 100644 --- a/timer-applet/src/timerapplet/core/__init__.py +++ b/timer-applet/src/timerapplet/core/__init__.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from Timer import Timer from PresetsStore import PresetsStore diff --git a/timer-applet/src/timerapplet/logger.py b/timer-applet/src/timerapplet/logger.py index c40c0aac..489ee9c4 100644 --- a/timer-applet/src/timerapplet/logger.py +++ b/timer-applet/src/timerapplet/logger.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import logging diff --git a/timer-applet/src/timerapplet/ui/AddEditPresetDialog.py b/timer-applet/src/timerapplet/ui/AddEditPresetDialog.py index d6773769..ce9d0aee 100644 --- a/timer-applet/src/timerapplet/ui/AddEditPresetDialog.py +++ b/timer-applet/src/timerapplet/ui/AddEditPresetDialog.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import gtk import gtk.glade as glade diff --git a/timer-applet/src/timerapplet/ui/ContinueTimerDialog.py b/timer-applet/src/timerapplet/ui/ContinueTimerDialog.py index a6b1bfb2..5353139f 100644 --- a/timer-applet/src/timerapplet/ui/ContinueTimerDialog.py +++ b/timer-applet/src/timerapplet/ui/ContinueTimerDialog.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from gettext import gettext as _ import gtk diff --git a/timer-applet/src/timerapplet/ui/DurationChooser.py b/timer-applet/src/timerapplet/ui/DurationChooser.py index 77d0a7ed..bd8d35ae 100644 --- a/timer-applet/src/timerapplet/ui/DurationChooser.py +++ b/timer-applet/src/timerapplet/ui/DurationChooser.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from gettext import gettext as _ import math diff --git a/timer-applet/src/timerapplet/ui/ManagePresetsDialog.py b/timer-applet/src/timerapplet/ui/ManagePresetsDialog.py index 0ee38625..80f97bdb 100644 --- a/timer-applet/src/timerapplet/ui/ManagePresetsDialog.py +++ b/timer-applet/src/timerapplet/ui/ManagePresetsDialog.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import gobject import gtk diff --git a/timer-applet/src/timerapplet/ui/Notifier.py b/timer-applet/src/timerapplet/ui/Notifier.py index 92e814b7..91db1517 100644 --- a/timer-applet/src/timerapplet/ui/Notifier.py +++ b/timer-applet/src/timerapplet/ui/Notifier.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import gobject import pynotify diff --git a/timer-applet/src/timerapplet/ui/PieMeter.py b/timer-applet/src/timerapplet/ui/PieMeter.py index f97d02d7..9bec5e5c 100644 --- a/timer-applet/src/timerapplet/ui/PieMeter.py +++ b/timer-applet/src/timerapplet/ui/PieMeter.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import math import gobject diff --git a/timer-applet/src/timerapplet/ui/PreferencesDialog.py b/timer-applet/src/timerapplet/ui/PreferencesDialog.py index 6341fe8d..d42ae911 100644 --- a/timer-applet/src/timerapplet/ui/PreferencesDialog.py +++ b/timer-applet/src/timerapplet/ui/PreferencesDialog.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import gobject import gtk diff --git a/timer-applet/src/timerapplet/ui/PulseButton.py b/timer-applet/src/timerapplet/ui/PulseButton.py index 8a9fe48c..9694ea48 100644 --- a/timer-applet/src/timerapplet/ui/PulseButton.py +++ b/timer-applet/src/timerapplet/ui/PulseButton.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import math import time diff --git a/timer-applet/src/timerapplet/ui/ScrollableButtonList.py b/timer-applet/src/timerapplet/ui/ScrollableButtonList.py index 2f8bb378..0af6e51d 100644 --- a/timer-applet/src/timerapplet/ui/ScrollableButtonList.py +++ b/timer-applet/src/timerapplet/ui/ScrollableButtonList.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import gtk diff --git a/timer-applet/src/timerapplet/ui/StartNextTimerDialog.py b/timer-applet/src/timerapplet/ui/StartNextTimerDialog.py index ad9aca1b..11886c87 100644 --- a/timer-applet/src/timerapplet/ui/StartNextTimerDialog.py +++ b/timer-applet/src/timerapplet/ui/StartNextTimerDialog.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ The Start Next Timer dialog diff --git a/timer-applet/src/timerapplet/ui/StartTimerDialog.py b/timer-applet/src/timerapplet/ui/StartTimerDialog.py index 69728c73..3d0b4f49 100644 --- a/timer-applet/src/timerapplet/ui/StartTimerDialog.py +++ b/timer-applet/src/timerapplet/ui/StartTimerDialog.py @@ -13,7 +13,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import gobject import gtk diff --git a/timer-applet/src/timerapplet/ui/StatusButton.py b/timer-applet/src/timerapplet/ui/StatusButton.py index cde076fe..23e939ce 100644 --- a/timer-applet/src/timerapplet/ui/StatusButton.py +++ b/timer-applet/src/timerapplet/ui/StatusButton.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import gtk from PulseButton import PulseButton diff --git a/timer-applet/src/timerapplet/ui/__init__.py b/timer-applet/src/timerapplet/ui/__init__.py index 2b0b05ba..a0da1fa4 100644 --- a/timer-applet/src/timerapplet/ui/__init__.py +++ b/timer-applet/src/timerapplet/ui/__init__.py @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from AddEditPresetDialog import AddEditPresetDialog from ContinueTimerDialog import ContinueTimerDialog diff --git a/timer-applet/src/timerapplet/utils.py b/timer-applet/src/timerapplet/utils.py index 53bfdc21..02113501 100644 --- a/timer-applet/src/timerapplet/utils.py +++ b/timer-applet/src/timerapplet/utils.py @@ -13,7 +13,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from gettext import gettext as _ -- cgit v1.2.1