Changeset 137

Show
Ignore:
Timestamp:
Wed Dec 26 06:18:04 2007
Author:
mbutscher
Message:

branches/stable-1.8:

* Bug fixed: Bad handling of empty input in "Open Wiki Word"

dialog.

Files:

Legend:

Unmodified
Added
Removed
Modified
  • branches/stable-1.8/WikidPadStarter.py

    r135 r137  
    25 25 # (2, 0, 200, 0) is 2.0final  
    26 26  
    27   VERSION_TUPLE = ("wikidPad", 1, 8, 111, 0)  
      27 VERSION_TUPLE = ("wikidPad", 1, 8, 112, 0)  
    27 27  
    28   VERSION_STRING = "wikidPad 1.8rc11"  
      28 VERSION_STRING = "wikidPad 1.8rc12"  
    28 28  
    29 29 if not hasattr(sys, 'frozen'):  
  • branches/stable-1.8/wikidpad_unicode.iss

    r135 r137  
    39 39 SolidCompression=true  
    40 40 AppName=WikidPad  
    41   AppVerName=WikidPad 1.8rc11  
      41 AppVerName=WikidPad 1.8rc12  
    41 41 DefaultDirName={pf}\WikidPad  
    42 42 DefaultGroupName=WikidPad  
    43 43 AppID={{22A83C29-58A8-4CAB-8EDC-918D74F8429E}  
    44   VersionInfoVersion=1.8.111.0  
    45   VersionInfoTextVersion=WikidPad 1.8rc11  
      44 VersionInfoVersion=1.8.112.0  
      45 VersionInfoTextVersion=WikidPad 1.8rc12  
    46 46 LicenseFile=C:\DATEN\Projekte\Wikidpad\Current\license.txt  
    47 47 AllowNoIcons=true  
    48 48 ShowLanguageDialog=yes  
    49 49 Compression=lzma/ultra  
    50   OutputBaseFilename=WikidPad-1.8rc11  
      50 OutputBaseFilename=WikidPad-1.8rc12  
    50 50 InternalCompressLevel=ultra  
    51 51 AppCopyright=© 2005-2007 Jason Horman, Michael Butscher, Gerhard Reitmayr  
  • branches/stable-1.8/WikidPadHelp/data/ChangeLog.wiki

    r135 r137  
    2 2  
    3 3  
    4   Nov. 25, 2007 (1.8rc11)  
      4 Dec. 26, 2007 (1.8rc12)  
      5  
      6     * Bug fixed: Bad handling of empty input in  
      7       "Open Wiki Word" dialog  
      8  
      9  
      10  
      11 Nov. 25, 2007 (1.8rc11, repository revision in "stable-1.8" branch: 135)  
    5 12  
    6 13     * Bug fixed: Bad HTML anchors for headings when exporting  
  • branches/stable-1.8/lib/pwiki/AdditionalDialogs.py

    r125 r137  
    34 34          
    35 35         self.pWiki = pWiki  
    36           self.value = None       
      36         self.value = u""       
    36 36         res = wx.xrc.XmlResource.Get()  
    37 37         res.LoadOnDialog(self, self.pWiki, "OpenWikiWordDialog")  
     
    60 60          
    61 61     def OnOk(self, evt):  
      62         if len(self.value) == 0:  
      63             return  
      64  
    62 65         if not self.pWiki.getWikiData().isDefinedWikiWord(self.value):  
    63 66 #             words = self.pWiki.getWikiData().getWikiWordsWith(self.value.lower(),