Sample.ini 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. ;============================
  2. ; INI file for plugin CHMDir
  3. ;============================
  4. ;---------------
  5. ; main settings
  6. ;---------------
  7. [CHMDir]
  8. ;------------------
  9. ; Unpacker options
  10. ; show (1) special CHM files like #STRINGS (started with # or $) or no (0).
  11. ; Dialog control: Show special CHM files in 'CHMDir plugin settings'.
  12. ; Default = 0
  13. show_spec_files=1
  14. ; show (1) special IStorage format files or no (0).
  15. ; NB: this files contain compressed section files (shown in file window)
  16. ; and information about compression — so profit from these files is questionable.
  17. ; Dialog control: Show special ITS files.
  18. ; Default = 0
  19. show_stor_files=0
  20. ; mark (1) or not (0) special CHM and IStorage file with attributes.
  21. ; CHM files — hidden, IStorage — system.
  22. ; Dialog field: Use file attributes.
  23. ; Default = 0
  24. use_file_attrib=1
  25. ; how much CHM files will be cached.
  26. ; NB: Each cached archive need about 0.5 Mb RAM.
  27. ; Dialog control: Files in cache.
  28. ; Default = 0
  29. arc_cache_count=2
  30. ;----------------
  31. ; Packer options
  32. ; calculate listing chunk size (1) or not (0): if total size of listing less then 32 kb,
  33. ; then single chunk will be created. If not, dir_chunk_size will be used. It allows
  34. ; making smaller CHM (about dir_chunk_size).
  35. ; Dialog control: Calculate optimal size of listing chunk.
  36. ; Default = 0
  37. calc_chunk_size=1
  38. ; file names that will be used as default topic when generate #SYSTEM and .hhc files.
  39. ; First come from list will be used.
  40. ; Dialog control: Default topic filenames (index.htm;index.html;readme.htm;).
  41. ; Default = index.htm;index.html;contents.htm;contents.html;readme.htm;readme.html
  42. default_topics=index.htm;index.html;contents.htm;contents.html;readme.htm;readme.html
  43. ; directory listing chunk size in bytes (4096).
  44. ; Dialog control: Dir listing chunk size.
  45. ; Default = 4096
  46. dir_chunk_size=4096
  47. ; extensions to not compress in form gif;jpg (without point, separated by semicolon).
  48. ; Will be used if its_use_store=1. Wildcards may be used (* and ?).
  49. ; Dialog control: Store files by ext. (jpg;png;gif;).
  50. ; Default = gif;jpg;png;zip;rar;swf
  51. its_store_ext=gif;jpg;png;swf;avi;zip;rar;cab;ch?;hx?
  52. ; store (1) or not (0) files with extension from its_store_ext.
  53. ; Dialog control: Store files by ext. (jpg;png;gif;) check box.
  54. ; Default = 0
  55. its_use_store=1
  56. ; LZX window size code 0 - 6 inclusive. 0 - 32k, 1 - 64k, 2 - 128k, ... 6 - 2M bytes.
  57. ; Only if use_itss_dll=0
  58. ; Greater window size —> better compress and less speed (in geometrical progression).
  59. ; Dialog control: LZX compression window size.
  60. ; Default = 1
  61. lzx_wsize_code=1
  62. ; sort files by extension before packing (better compression) (1) or not (0).
  63. ; Dialog control: Sort dir listing by extension before compress.
  64. ; Default = 0
  65. sort_dir_by_ext=1
  66. ; LCID for storing in #SYSTEM, ITS file header and ITS dir header.
  67. ; Default = GetUserDefaultLCID()
  68. htmlhelp_LCID=0x0419
  69. ; set (1) or not (0) priority to THREAD_PRIORITY_LOWEST when packing.
  70. ; Dialog control: Low priority.
  71. ; Default = 0
  72. low_priority=0
  73. ; if your system supports IStorage COM interface, use it (1) for packing.
  74. ; Dialog control: Use IStorage COM interface (itss.dll) for packing.
  75. ; Default = 1
  76. use_itss_dll=1
  77. ; title of topic that have not <TITLE> tag in <HEAD> section.
  78. ; Dialog control: Title of topic without <TITLE> tag.
  79. ; Default = No Title
  80. title_stub=Untitled Topic
  81. ; use (1) or not (0) custom window type.
  82. ; Dialog control: Use custom window.
  83. ; Default = 0
  84. use_custom_wintype=1
  85. ; store (1) or not (0) file's last update date and time.
  86. ; File #CHMDir_FTimes will be created in root dir of archive.
  87. store_filetime=1
  88. ;----------------------------
  89. ; HtmlHelp window properties
  90. ; For more information see htmlhelp.h from HtmlHelp Workshop
  91. ; Clear stored data about used CHMs (1) or not (0).
  92. ; File hh.dat stores the Favourites and Search history for each CHM file.
  93. ; It also caches window type information for each CHM. It is usually located
  94. ; in the users profile directory under Application Data\Microsoft\HTML Help
  95. ; and also has the ITSF format.
  96. ; Dialog control: Delete information about file from hh.dat in dialog 'HtmlHelp windows properties'.
  97. ; Default = 1
  98. clear_chm_data=1
  99. ; Which values of wintype (properties of window) are valid.
  100. ; Sum of:
  101. ; 2= Navigation pane style.
  102. ; 4= Window style flags.
  103. ; 8= Window extended style flags.
  104. ; 16= Initial window position.
  105. ; 64= Window show state.
  106. ; 256= Buttons.
  107. ; 512= Navigation Pane initially closed state.
  108. ; Dialog control: Help properties, Toolbar buttons. Window position, Show state, Window styles
  109. ; and Ex. Window styles check boxes.
  110. ; Default = 258
  111. wt_valid_members=770
  112. ; A bit feild of navigation pane styles (262432). Sum of: 64= No text on toolbar buttons
  113. ; 256= When the current topic changes automatically sync contents and index.
  114. ; 1024= Include search tab in navigation pane
  115. ; 2048= Include history tab in navigation pane
  116. ; 4096= Include favorites tab in navigation pane
  117. ; 8196= Put current HTML title in title bar
  118. ; 32768= Don't display a toolbar
  119. ; 65536= Menu
  120. ; 131072= Advanced FTS UI.
  121. ; 262144= After initial creation, user controls window size/position
  122. ; Dialog control: check boxes in group Help properties.
  123. ; Default = 262432
  124. wt_properties=373088
  125. ; Whether or not the navigation pane is initially closed. 1 = closed, 0 = open
  126. ; Dialog control: Hide TOC & index.
  127. ; Default = 0
  128. wt_hide_panes=1
  129. ; A bit field of the buttons to show (12294). Sum of:
  130. ; 2= Hide/Show button hides/shows the navigation pane.
  131. ; 4= Back button.
  132. ; 8= Forward button.
  133. ; 16= Stop button.
  134. ; 32= Refresh button.
  135. ; 64= Home button.
  136. ; 2048= Locate button. Jumps to the current topic in the contents pane.
  137. ; 4096= Options button.
  138. ; 8192= Print button.
  139. ; 262144= Jump1 buuton.
  140. ; 524288= Jump2 buuton.
  141. ; 1048576= Font button. Changes the size of the text shown in the IE HTML display pane.
  142. ; 2097152= Next button. Jumps to the next topic in the contents pane. Requires Binary TOC.
  143. ; 4194304= Previous button. Jumps to the previous topic in the contents pane. Requires Binary TOC.
  144. ; Dialog control: check boxes in group Toolbar buttons.
  145. ; Default = 12294
  146. wt_buttons=6158
  147. ; Initial position of the window on the screen: left, top, right, bottom coordinates.
  148. ; Dialog control: edit fields in Window position.
  149. ; Default = 10,10,610,410
  150. wt_rect=10,10,610,410
  151. ; current language in English
  152. Language=English