guyzmo / pida-bugfixing (http://pida.co.uk/)

fork of pida-main

all my bugfixeso

Clone this repository (size: 3.2 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/guyzmo/pida-bugfixing/
commit 1684: fe32034b57cc
parent 1683: 4059537c20ef
branch: default
tags: tip
fixing Ticket #261. Changed sorting order and names, but not made it alphabetical.
guyzmo
7 months ago

Changed (Δ2 bytes):

raw changeset »

pida/services/buffer/buffer.py (1 lines added, 1 lines removed)

pida/services/filemanager/filemanager.py (2 lines added, 2 lines removed)

Up to file-list pida/services/buffer/buffer.py:

@@ -64,8 +64,8 @@ class BufferListView(PidaGladeView):
64
64
                ('creation_time', _('Time Opened')),
65
65
                ('filename', _('File path')),
66
66
                ('basename', _('File name')),
67
                ('doctype', _('Document Type')),
67
68
                ('mimetype', _('Mime Type')),
68
                ('doctype', _('Document Type')),
69
69
                ('length', _('File Length')),
70
70
                ('modified_time', _('Last Modified')),
71
71
                #('Project', _('Project_name'))

Up to file-list pida/services/filemanager/filemanager.py:

@@ -180,9 +180,9 @@ class FilemanagerView(PidaView):
180
180
        self._sort_combo = AttrSortCombo(self.file_list,
181
181
            [
182
182
                ('is_dir_sort', _('Directories First')),
183
                ('path', _('File Path')),
183
184
                ('lower_name', _('File Name')),
184
                ('name', _('Case Sensitive File Name')),
185
                ('path', _('File Path')),
185
                ('name', _('File Name (Case Sensitive)')),
186
186
                ('extension_sort', _('Extension')),
187
187
                ('state', _('Version Control Status')),
188
188
            ],