[Bug 1502331] Re: /usr/bin/epoptes:TypeError:on_clients_selection_changed:isDefaultGroupSelected

2015-10-02 Thread Fotis Tsamis
** Package changed: epoptes (Ubuntu) => epoptes

** Changed in: epoptes
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1502331

Title:
  /usr/bin/epoptes:TypeError:on_clients_selection_changed:isDefaultGroupSelected

To manage notifications about this bug go to:
https://bugs.launchpad.net/epoptes/+bug/1502331/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 931565] Re: The methods Shutdown and RequestShutdown in org.gnome.SessionManager do the same

2015-05-14 Thread Fotis Tsamis
** Also affects: epoptes (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/931565

Title:
  The methods Shutdown and RequestShutdown in org.gnome.SessionManager
  do the same

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/931565/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338051] Re: Epoptes does not honor group membership granted on per-session basis via pam_group

2014-07-09 Thread Fotis Tsamis
** Package changed: epoptes (Ubuntu) = epoptes

** Changed in: epoptes
   Status: New = Confirmed

** Changed in: epoptes
 Assignee: (unassigned) = Fotis Tsamis (phantomas)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338051

Title:
  Epoptes does not honor group membership granted on per-session basis
  via pam_group

To manage notifications about this bug go to:
https://bugs.launchpad.net/epoptes/+bug/1338051/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1309698] Re: Lubuntu does not handle /etc/xdg/autostart

2014-05-06 Thread Fotis Tsamis
Indeed, no application in /etc/xdg/autostart starts automatically in
Lubuntu 14.04. Though, if you copy a .desktop file in
~/.config/autostart (which is what lxsession-default-apps does when you
untick and then tick an application in the Autostart tab) then it auto-
starts normally.

Below is the list of applications affected on a clean/default Lubuntu 14.04 
installation:
update-notifier
nm-applet
light-locker (you can't lock your screen in Lubuntu unless you manually run 
light-locker first)
xdg-user-dirs-gtk-update

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1309698

Title:
  Lubuntu does not handle /etc/xdg/autostart

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxsession/+bug/1309698/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1250481] Re: Option show full name not saved between sessions

2013-11-14 Thread Fotis Tsamis
That is correct. If you want new versions earlier you can always add the 
Epoptes stable PPA in your sources by executing the following:
sudo add-apt-repository ppa:epoptes
sudo apt-get update

** Package changed: epoptes (Ubuntu) = epoptes

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1250481

Title:
  Option show full name not saved between sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/epoptes/+bug/1250481/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1250481] Re: Option show full name not saved between sessions

2013-11-12 Thread Fotis Tsamis
Hello Rüdiger and thanks for your report! I'd like to inform you that
this bug is fixed in trunk, and will be available in the next epoptes
release.

** Changed in: epoptes (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1250481

Title:
  Option show full name not saved between sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/epoptes/+bug/1250481/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 978654] Re: type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode byte 0xc3 in position 24: ordinal not in range(128)

2012-09-14 Thread Fotis Tsamis
It seems that Alkis is correct!

The variable 'value' inside the last_package method
(aptdaemon/pkcompat.py, line 670), which is called a little after the
'Check' button is pressed, contains the package name, the available new
version, the architecture AND the PPA's description string (separated
with a semicolon).

E.g.: numlockx;1.2-4;i386;Αποθετήριο Τεχνικής Στήριξης ΣΕΠΕΗΥ

Now, if the PPA's description contains only ascii letters it's all good. If not 
(as in the example above) we have an exception.
In line 671, the 'value' variable (a str object) is passed as a parameter to 
the dbus.String() function which expects a unicode object. So dbus.String tries 
to convert it using a plain .decode() which uses ascii as the default codec and 
boom: 'ascii codec can't decode [...]' :)

As Alkis stated the solution is to convert the 'value' variable to a
unicode object with value.decode('utf-8') before passing it to
dbus.String() so it will try to convert the str to unicode using the
utf-8 codec instead of ascii.

I have included a patch fixing the problem.
Fotis

** Attachment added: patch
   
https://bugs.launchpad.net/ubuntu/+source/aptdaemon/+bug/978654/+attachment/3315542/+files/patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/978654

Title:
  type 'exceptions.UnicodeDecodeError': 'ascii' codec can't decode
  byte 0xc3 in position 24: ordinal not in range(128)

To manage notifications about this bug go to:
https://bugs.launchpad.net/aptdaemon/+bug/978654/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs