home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / options.ini < prev    next >
Encoding:
INI File  |  2004-03-24  |  9.8 KB  |  453 lines

  1. preservedocbooktags = false
  2.  
  3. ;; used to highlight the {@source} inline tag, @filesource tag, and @example tag
  4. [highlightSourceTokens]
  5. ;; format:
  6. ;; T_CONSTANTNAME = open
  7. ;; /T_CONSTANTNAME = close
  8. T_CLASS = <font color="blue">
  9. /T_CLASS = </font>
  10. T_INCLUDE = <font color="blue">
  11. /T_INCLUDE = </font>
  12. T_INCLUDE_ONCE = <font color="blue">
  13. /T_INCLUDE_ONCE = </font>
  14. T_REQUIRE_ONCE = <font color="blue">
  15. /T_REQUIRE_ONCE = </font>
  16. T_FUNCTION = <font color="blue">
  17. /T_FUNCTION = </font>
  18. T_VARIABLE = <strong>
  19. /T_VARIABLE = </strong>
  20. T_CONSTANT_ENCAPSED_STRING = <font color="#66cccc">
  21. /T_CONSTANT_ENCAPSED_STRING = </font>
  22. T_COMMENT = <font color="green">
  23. /T_COMMENT = </font>
  24. T_OBJECT_OPERATOR = <strong>
  25. /T_OBJECT_OPERATOR = </strong>
  26. T_RETURN = <font color="blue">
  27. /T_RETURN = </font>
  28. T_IF = <font color="blue">
  29. /T_IF = </font>
  30. T_FOREACH = <font color="blue">
  31. /T_FOREACH = </font>
  32. T_FOR = <font color="blue">
  33. /T_FOR = </font>
  34. T_VAR = <font color="blue">
  35. /T_VAR = </font>
  36. T_EXTENDS = <font color="blue">
  37. /T_EXTENDS = </font>
  38. T_RETURN = <font color="blue">
  39. /T_RETURN = </font>
  40. T_GLOBAL = <font color="blue">
  41. /T_GLOBAL = </font>
  42. T_DOUBLE_COLON = <strong>
  43. /T_DOUBLE_COLON = </strong>
  44. T_OBJECT_OPERATOR = <strong>
  45. /T_OBJECT_OPERATOR = </strong>
  46. T_OPEN_TAG = <strong>
  47. /T_OPEN_TAG = </strong>
  48. T_CLOSE_TAG = <strong>
  49. /T_CLOSE_TAG = </strong>
  50.  
  51. [highlightSource]
  52. ;; this is for highlighting things that aren't tokens like "&"
  53. ;; format:
  54. ;; word = open
  55. ;; /word = close
  56. @ = <strong>
  57. /@ = </strong>
  58. & = <strong>
  59. /& = </strong>
  60. [ = <strong>
  61. /[ = </strong>
  62. ] = <strong>
  63. /] = </strong>
  64. ! = <strong>
  65. /! = </strong>
  66. ; = <strong>
  67. /; = </strong>
  68. ( = <strong>
  69. /( = </strong>
  70. ) = <strong>
  71. /) = </strong>
  72. , = <strong>
  73. /, = </strong>
  74. { = <strong>
  75. /{ = </strong>
  76. } = <strong>
  77. /} = </strong>
  78.  
  79. [highlightDocBlockSourceTokens]
  80. ;; this is for docblock tokens, using by phpDocumentor_HighlightParser
  81. ;; tagphptype is for "string" in @param string description, for example
  82. docblock = <font color="#009999">
  83. /docblock = </font>
  84. tagphptype = <em>
  85. /tagphptype = </em>
  86. tagvarname = <strong>
  87. /tagvarname = </strong>
  88. coretag = <strong><font color = "#0099FF">
  89. /coretag = </font></strong>
  90. tag = <strong><font color="#009999">
  91. /tag = </font></strong>
  92. inlinetag = <em><font color="#0099FF">
  93. /inlinetag = </font></em>
  94. internal = <em><font color = "#6699cc">
  95. /internal = </font></em>
  96. closetemplate = <strong><font color="blue">
  97. /closetemplate = </font></strong>
  98. docblocktemplate = <font color="blue">
  99. /docblocktemplate = </font color="blue">
  100.  
  101. ;; used for translation of html in DocBlocks
  102. [desctranslate]
  103. ul = <ul>
  104. /ul = </ul>
  105. ol = <ol>
  106. /ol = </ol>
  107. li = <li>
  108. /li = </li>
  109. code = <code><pre>
  110. /code = </pre></code>
  111. var = <var>
  112. /var = </var>
  113. samp = <samp>
  114. /samp = </samp>
  115. kbd = <kbd>
  116. /kbd = </kbd>
  117. pre = <pre>
  118. /pre = </pre>
  119. p = <p>
  120. /p = </p>
  121. b = <strong>
  122. /b = </strong>
  123. i = <em>
  124. /i = </em>
  125. br = <br />
  126.  
  127. [ppage]
  128. ;; this is the DocBook package page translation section.  All DocBook tags
  129. ;; that have a corresponding html tag must be listed here
  130. ;;
  131. ;; examples:
  132. ;; 1)
  133. ;; tagname = newtagname
  134. ;;
  135. ;; This is the simplest case, where all attributes will be added into the
  136. ;; starting tag and the ending tag will be html/xml style </tranlatedtagname>
  137. ;; <tagname></tagname> becomes <newtagname></newtagname> and
  138. ;; <tagname attr="value"></tagname> becomes
  139. ;; <newtagname attr="value"></newtagname>
  140. ;;
  141. ;; 2)
  142. ;; tagname = newtagname
  143. ;; tagname->attr = newattrname
  144. ;;
  145. ;; in this case, everything will be like the first case, except tags like:
  146. ;; <tagname attr="value"></tagname> will become
  147. ;; <newtagname newattrname="value"></newtagname>
  148. ;;
  149. ;; 3)
  150. ;; tagname = newtagname
  151. ;; tagname->attr = newattrname
  152. ;; tagname->attr+value = newvalue
  153. ;;
  154. ;; in this case, the value is also translated to another.  This can be useful
  155. ;; for instances such as focus="middle" changing to align="center" or something
  156. ;; of that nature.
  157. ;; <tagname attr="value"></tagname> will become
  158. ;; <newtagname newattrname="newvalue"></newtagname>
  159. ;;
  160. ;; 4)
  161. ;; tagname = newtagname
  162. ;; tagname->attr1 = newattrname
  163. ;; tagname->attr2 = newattrname
  164. ;; tagname->attr1+value|attr2+value = newvalue
  165. ;;
  166. ;; in this case, two attributes combine to make one new attribute, and the combined
  167. ;; value is translated into a new value
  168. ;; <tagname attr1="value1" attr2="value2"></tagname> will become
  169. ;; <newtagname newattrname="newvalue"></newtagname>
  170. ;;
  171. ;; 5)
  172. ;; tagname = newtagname
  173. ;; tagname!attr = dummy
  174. ;;
  175. ;; here, the attribute will be ignored.  dummy is not used and may be any value
  176. ;; <tagname attr="value"></tagname> will become
  177. ;; <newtagname></newtagname>
  178. ;;
  179. ;; 6)
  180. ;; tagname = newtagname
  181. ;; tagname! = dummy
  182. ;;
  183. ;; here, all attributes will be ignored.  dummy is not used and may be any value
  184. ;; <tagname attr1="value" attr2="foo"></tagname> will become
  185. ;; <newtagname></newtagname>
  186. ;;
  187. ;; 7)
  188. ;; tagname = newtagname
  189. ;; tagname/ = 1
  190. ;;
  191. ;; here, the tag will be translated as a single tag with no closing tag, and all
  192. ;; attributes
  193. ;; <tagname attr="val">{text text}</tagname> will become
  194. ;; <newtagname attr="val" />
  195. ;;
  196. ;; 8)
  197. ;; tagname = <starttaginfo />
  198. ;; /tagname = closetagtext
  199. ;;
  200. ;; in this case, the text <starttaginfo> will be inserted exactly as entered for
  201. ;; <tagname> and closetagtext for </tagname>
  202. ;; <tagname attr="val"></tagname> will become
  203. ;; <starttaginfo />closetagtext
  204. ;;
  205. ;; 9)
  206. ;; $attr$my_attribute = newattrname
  207. ;;
  208. ;; tagname = newtagname
  209. ;;
  210. ;; in this case, all occurences of my_attribute in any tag will be changed to
  211. ;; newattrname.  This is useful for changing things like role="php" to
  212. ;; class="php," for example.  Note that the text "$attr$" MUST be on the line
  213. ;; start for phpDocumentor to recognize it.
  214. ;;
  215. ;; 10)
  216. ;; &entity; = translation text
  217. ;; " = "
  218. ;; " = """
  219. ;; < = <
  220. ;;
  221. ;; Use this to control translation of entities to their appropriate values
  222.  
  223.   =  
  224. " = "
  225. ” = ”
  226. “ = “
  227. & = &
  228. < = <
  229. > = >
  230. © = ©
  231.  
  232. $attr$role = class
  233.  
  234. abbrev = abbr
  235.  
  236. blockquote = blockquote
  237.  
  238. arg = span
  239. arg->choice = class
  240.  
  241. author = <font size="-1"><strong>by <em>
  242. /author = </em></strong></font>
  243. author! = 0
  244.  
  245. authorblurb = blockquote
  246.  
  247. authorgroup = <strong>Authors:</strong><br />
  248. /authorgroup = 
  249. authorgroup! = 0
  250.  
  251. caution = <table border="1"><th align="center">Caution</th><tr><td>
  252. /caution = </td></tr></table>
  253. caution! = 0
  254.  
  255. command = <b class="cmd">
  256. /command = </b>
  257.  
  258. cmdsynopsis = <div id="cmdsynopsis">
  259. /cmdsynopsis = </div>
  260.  
  261. copyright = <em>
  262. /copyright = </em><br />
  263.  
  264. emphasis = strong
  265.  
  266. example = <table class="example" width="100%" border="1"><tr><td>
  267. /example = </td></tr></table>
  268. example! = 0
  269.  
  270. formalpara = p
  271.  
  272. important = u
  273.  
  274. informalequation = blockquote
  275.  
  276. informalexample = pre
  277.  
  278. inlineequation = em
  279.  
  280. itemizedlist = ul
  281.  
  282. listitem = li
  283.  
  284. literal = code
  285.  
  286. literallayout = pre
  287.  
  288. option = " "
  289. /option = 
  290.  
  291. orderedlist = ol
  292.  
  293. para = p
  294.  
  295. programlisting = <table border="0" bgcolor="#E0E0E0" cellpadding="5"><tr><td><pre class="php">
  296. /programlisting = </pre></td></tr></table>
  297. programlisting! = 0
  298.  
  299. refentry = div
  300.  
  301. refnamediv = <div class="refname">
  302. /refnamediv = </div>
  303. refnamediv! = 0
  304.  
  305. refname = h1
  306.  
  307. refpurpose = <h2 class="refpurpose"><em>
  308. /refpurpose = </em></h2>
  309.  
  310. refsynopsisdiv = <div class="refsynopsis">
  311. /refsynopsisdiv = </div>
  312. refsynopsisdiv! = 0
  313.  
  314. refsect1 = span
  315.  
  316. refsect2 = 
  317. /refsect2 = <hr />
  318.  
  319. refsect3 = 
  320. /refsect3 = <br />
  321.  
  322. releaseinfo = (
  323. /releaseinfo = )<br />
  324.  
  325. simpara = 
  326. /simpara = <br />
  327. simpara! = 0
  328.  
  329. subscript = sub
  330.  
  331. superscript = super
  332.  
  333. table = table
  334.  
  335. table->colsep = rules
  336. table->rowsep = rules
  337. table->colsep+1|rowsep+1 = all
  338. table->colsep+1|rowsep+0 = cols
  339. table->colsep+0|rowsep+1 = rows
  340.  
  341. table->frame = frame
  342. table->frame+all = border
  343. table->frame+none = void
  344. table->frame+sides = vsides
  345. table->frame+top = above
  346. table->frame+topbot = hsides
  347.  
  348. thead = thead
  349.  
  350. tfoot = tfoot
  351.  
  352. tbody = tbody
  353.  
  354. colspec = col
  355.  
  356. tgroup = colgroup
  357. tgroup/ = 1
  358. tgroup->cols = span
  359.  
  360. row = tr
  361.  
  362. entry = td
  363. entry->morerows = colspan
  364. entry->morerows+1 = 2
  365. entry->morerows+2 = 3
  366. entry->morerows+3 = 4
  367. entry->morerows+4 = 5
  368. entry->morerows+5 = 6
  369. entry->morerows+6 = 7
  370. entry->morerows+7 = 8
  371. entry->morerows+8 = 9
  372. entry->morerows+9 = 10
  373. entry->morerows+10 = 11
  374. ;; add more if you need more colspans
  375.  
  376. warning = <table border="1"><tr><td>
  377. /warning = </td></tr></table>
  378. warning! = 0
  379.  
  380. ;; now begins the attributes that should be tags in cdata
  381. [$attr$id]
  382. open = a
  383. ;close = /a
  384. cdata! = true
  385. quotevalues = true
  386. separator = "="
  387. ;separateall = true
  388. $id = name
  389.  
  390. ;; now begins the sections that deal with <title>
  391. [refsynopsisdiv_title]
  392. ;tag_attr = true
  393. ;attr_name = title
  394. cdata_start = true
  395. ;cdata_end = true
  396. open = <h1 class="title" align="center">
  397. close = </h1>
  398.  
  399. [refsect1_title]
  400. ;tag_attr = true
  401. ;attr_name = title
  402. cdata_start = true
  403. ;cdata_end = true
  404. open = <h2 class="title" align="center">
  405. close = </h1>
  406.  
  407. [refsect2_title]
  408. ;tag_attr = true
  409. ;attr_name = title
  410. cdata_start = true
  411. ;cdata_end = true
  412. open = <h2 class="title" align="center">
  413. close = </h2>
  414.  
  415. [refsect3_title]
  416. ;tag_attr = true
  417. ;attr_name = title
  418. cdata_start = true
  419. ;cdata_end = true
  420. open = <h3 class="title" align="center">
  421. close = </h3>
  422.  
  423. [para_title]
  424. ;tag_attr = true
  425. ;attr_name = title
  426. cdata_start = true
  427. ;cdata_end = true
  428. open = <strong class="title" align="center">
  429. close = </strong>
  430.  
  431. [formalpara_title]
  432. ;tag_attr = true
  433. ;attr_name = title
  434. cdata_start = true
  435. ;cdata_end = true
  436. open = <strong class="title" align="center">
  437. close = </strong>
  438.  
  439. [example_title]
  440. ;tag_attr = true
  441. ;attr_name = title
  442. ;cdata_start = true
  443. cdata_end = true
  444. open = </td></tr><tr><td><strong>
  445. close = </strong>
  446.  
  447. [table_title]
  448. ;tag_attr = true
  449. ;attr_name = true
  450. cdata_start = true
  451. open = <caption>
  452. close = </caption>
  453.