Changeset 133
- Timestamp:
- Fri Oct 26 05:59:50 2007
- Files:
-
- branches/stable-1.8/WikidPadStarter.py (modified) (diff)
- branches/stable-1.8/extensions/WikidPadHooks.py (modified) (diff)
- branches/stable-1.8/wikidpad_unicode.iss (modified) (diff)
- branches/stable-1.8/WikidPadHelp/WikidPadHelp.wiki (modified) (diff)
- branches/stable-1.8/WikidPadHelp/data/WIKIWORDPROPS.grl (modified)
- branches/stable-1.8/WikidPadHelp/data/WIKIRELATIONS.grl (modified)
- branches/stable-1.8/WikidPadHelp/data/TODOS.grl (modified)
- branches/stable-1.8/WikidPadHelp/data/ChangeLog.wiki (modified) (diff)
- branches/stable-1.8/WikidPadHelp/data/WikiDocumentAttributes.wiki (modified) (diff)
- branches/stable-1.8/WikidPadHelp/data/WIKIWORDS.grl (modified)
- branches/stable-1.8/lib/pwiki/SearchAndReplaceDialogs.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/stable-1.8/WikidPadStarter.py
r128 r133 4 4 os.stat_float_times(True) 5 5 6 VERSION_STRING = "wikidPad 1.8rc9" 6 7 # VERSION_TUPLE is structured (branch, major, minor, stateAndMicro, helper) 8 # where branch is normally string "wikidPad", but should be changed if somebody 9 # develops a derived version of WikidPad. 10 # 11 # major and minor are the main versions, 12 # stateAndMicro is: 13 # between 0 and 99 for "beta" 14 # between 100 and 199 for "rc" (release candidate) 15 # 200 for "final" 16 # 17 # the unit and tenth place form the micro version. 18 # 19 # helper is a sub-micro version, if needed, normally 0. 20 # 21 # Examples: 22 # (1, 8, 107, 0) is 1.8rc7 23 # (1, 9, 4, 0) is 1.9beta4 24 # (1, 9, 4, 2) is something after 1.9beta4 25 # (2, 0, 200, 0) is 2.0final 26 27 VERSION_TUPLE = ("wikidPad", 1, 8, 110, 0) 28 29 VERSION_STRING = "wikidPad 1.8rc10" 7 30 8 31 if not hasattr(sys, 'frozen'): -
branches/stable-1.8/extensions/WikidPadHooks.py
r27 r133 1 from os.path import join1 1 1 2 2 WIKIDPAD_PLUGIN = (("hooks", 1),) -
branches/stable-1.8/wikidpad_unicode.iss
r128 r133 39 39 SolidCompression=true 40 40 AppName=WikidPad 41 AppVerName=WikidPad 1.8rc 941 AppVerName=WikidPad 1.8rc10 41 41 DefaultDirName={pf}\WikidPad 42 42 DefaultGroupName=WikidPad 43 43 AppID={{22A83C29-58A8-4CAB-8EDC-918D74F8429E} 44 VersionInfoVersion=1.8 45 VersionInfoTextVersion=WikidPad 1.8rc9 44 VersionInfoVersion=1.8.110.0 45 VersionInfoTextVersion=WikidPad 1.8rc10 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.8rc 950 OutputBaseFilename=WikidPad-1.8rc10 50 50 InternalCompressLevel=ultra 51 51 AppCopyright=© 2005-2007 Jason Horman, Michael Butscher, Gerhard Reitmayr -
branches/stable-1.8/WikidPadHelp/WikidPadHelp.wiki
r128 r133 4 4 [main] 5 5 footnotes_as_wikiwords = False 6 last_wiki_word = ChangeLog6 last_wiki_word = WikidPadHelp 6 6 filestorage_identity_moddatemustmatch = False 7 7 wiki_name = WikidPadHelp -
branches/stable-1.8/WikidPadHelp/data/ChangeLog.wiki
r128 r133 2 2 3 3 4 Sep. 26, 2007 (1.8rc9) 4 Oct. 26, 2007 (1.8rc10) 5 6 * When hiding the focused tree, focus is transferred to 7 main area panel 8 * Internal: Introduced VERSION_TUPLE 9 10 11 12 Sep. 26, 2007 (1.8rc9, repository revision in "stable-1.8" branch: 128) 5 13 6 14 * Bug fixed: Updating wikis from WikidPad 1.1 failed -
branches/stable-1.8/WikidPadHelp/data/WikiDocumentAttributes.wiki
r77 r133 117 117 118 118 119 *export: Export this page* 120 Control if the page containing this attribute should be exported. Only possible value is "false". 121 The HTML exporter respects this attribute, others, like the multipage text exporter, do not. 122 123 119 124 *template: page which content should be used as template* 120 125 See [Templates]. -
branches/stable-1.8/lib/pwiki/SearchAndReplaceDialogs.py
r125 r133 1289 1289 setWindowSize(self, (width, height)) 1290 1290 setWindowPos(self, fullVisible=True) 1291 1291 1291 1291 # Fixes focus bug under Linux 1292 1292 self.resultBox.SetFocus() … … 1299 1299 def OnKillFocus(self, evt): 1300 1300 self.Close() 1301 1302 1301 1302 1303 1303 def OnClose(self, evt): 1304 1304 width, height = self.GetSizeTuple() … … 1319 1319 sarOp.wildCard = 'regex' 1320 1320 sarOp.wikiWide = True 1321 1321 1321 1321 return sarOp 1322 1322 … … 1338 1338 sarOp = self.buildSearchReplaceOperation() 1339 1339 # self.mainControl.saveCurrentDocPage() 1340 1340 1340 1340 if len(sarOp.searchStr) > 0: 1341 1341 self.foundPages = self.mainControl.getWikiDocument().searchWiki(sarOp)
