Show
Ignore:
Timestamp:
03/20/11 13:12:05 (2 years ago)
Author:
mbutscher
Message:

branches/stable-2.1:
* Support for URL appendix "prnr" to create a relative link which is

not relocated (modified) when exported as HTML to a different
destination (backported to 2.1 to provide some backward compatibility
to old behavior)

* Bug fixed: Favorite wiki icons may open wrong wiki
* Bug fixed: Misleading error message and bad error handling for

corrupted wiki config file

* Internal: Default maximum length of compatible filename reduced from

250 to 120

branches/mbutscher/work:
* Less jumping around of selection in doc structure window when adding

text (thanks to Christian Ziemski)

* Support for spaces in bracketed URLs
* Option to control type of URL (bracketed or not) on drag&drop
* Support for URL appendix "prnr" to create a relative link which is

not relocated (modified) when exported as HTML to a different
destination

* Option to sort list in "Open Wiki Word" dialog in reverse

alphabetical order

* Shortcuts introduced to move one or more selected logical lines one

line up or down

* Bug fixed: Favorite wiki icons may open wrong wiki
* Bug fixed: Misleading error message and bad error handling for

corrupted wiki config file

* Internal: Deprecated makeRelUrlAbsolute() and makeAbsPathRelUrl() in

PersonalWikiFrame?, call functions in WikiDocument? instead

* Internal: Default maximum length of compatible filename reduced from

250 to 120

* File cleanup now in usable state (orphaned files complete, missing

files need work yet)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/mbutscher/work/lib/pwiki/AdditionalDialogs.py

    r251 r263  
    230230         
    231231        if orderChoice == 1: 
     232            # Newest visited 
    232233            orderBy = "visited" 
    233234            descend = True 
    234235        elif orderChoice == 2: 
     236            # Oldest visited 
    235237            orderBy = "visited" 
    236238            descend = False 
     239        elif orderChoice == 3: 
     240            # Alphabetically reverse 
     241            orderBy = "word" 
     242            descend = True 
    237243        else:   # orderChoice == 0: 
     244            # Alphabetically 
    238245            orderBy = "word" 
    239246            descend = False 
    240          
     247 
    241248        if searchTxt == u"%": 
    242249            self.listContent = self.pWiki.getWikiData()\ 
     
    244251                    descend=descend) 
    245252            return 
    246          
     253 
    247254        self.listContent = self.pWiki.getWikiData().getWikiWordMatchTermsWith( 
    248255                searchTxt, orderBy=orderBy, descend=descend)