se.oxygen.xpr 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project version="20.1">
  3. <meta>
  4. <filters directoryPatterns="" filePatterns="se.oxygen.xpr" positiveFilePatterns="" showHiddenFiles="false"/>
  5. <options>
  6. <serialized version="20.1" xml:space="preserve">
  7. <serializableOrderedMap>
  8. <entry>
  9. <String>enable.project.master.files.support</String>
  10. <Boolean>true</Boolean>
  11. </entry>
  12. <entry>
  13. <String>keys.context</String>
  14. <String>file:/Users/a.binder/procesy5-dita-templates-druki/sebaraszczyk_root.ditamap</String>
  15. </entry>
  16. <entry>
  17. <String>profiling.conditions.list</String>
  18. <profileConditionInfo-array>
  19. <profileConditionInfo>
  20. <field name="attributeName">
  21. <String>audience</String>
  22. </field>
  23. <field name="allowsMultipleValues">
  24. <Boolean>true</Boolean>
  25. </field>
  26. <field name="allowedValues">
  27. <profileConditionValue-array>
  28. <profileConditionValue>
  29. <field name="value">
  30. <String>dostawca</String>
  31. </field>
  32. <field name="description">
  33. <String>dostawca</String>
  34. </field>
  35. <field name="level">
  36. <Integer>0</Integer>
  37. </field>
  38. <field name="renderName">
  39. <String>dostawca</String>
  40. </field>
  41. </profileConditionValue>
  42. <profileConditionValue>
  43. <field name="value">
  44. <String>expert</String>
  45. </field>
  46. <field name="description">
  47. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  48. </field>
  49. <field name="level">
  50. <Integer>0</Integer>
  51. </field>
  52. <field name="renderName">
  53. <null/>
  54. </field>
  55. </profileConditionValue>
  56. <profileConditionValue>
  57. <field name="value">
  58. <String>klient</String>
  59. </field>
  60. <field name="description">
  61. <String>klient</String>
  62. </field>
  63. <field name="level">
  64. <Integer>0</Integer>
  65. </field>
  66. <field name="renderName">
  67. <String>klient</String>
  68. </field>
  69. </profileConditionValue>
  70. <profileConditionValue>
  71. <field name="value">
  72. <String>novice</String>
  73. </field>
  74. <field name="description">
  75. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  76. </field>
  77. <field name="level">
  78. <Integer>0</Integer>
  79. </field>
  80. <field name="renderName">
  81. <null/>
  82. </field>
  83. </profileConditionValue>
  84. <profileConditionValue>
  85. <field name="value">
  86. <String>person.Dyrektor_Gdanskiego_Urzedu_Pracy</String>
  87. </field>
  88. <field name="description">
  89. <String>person.Dyrektor_Gdanskiego_Urzedu_Pracy</String>
  90. </field>
  91. <field name="level">
  92. <Integer>0</Integer>
  93. </field>
  94. <field name="renderName">
  95. <String>person.Dyrektor_Gdanskiego_Urzedu_Pracy</String>
  96. </field>
  97. </profileConditionValue>
  98. <profileConditionValue>
  99. <field name="value">
  100. <String>person.Valentyna_Binder</String>
  101. </field>
  102. <field name="description">
  103. <String>person.Valentyna_Binder</String>
  104. </field>
  105. <field name="level">
  106. <Integer>0</Integer>
  107. </field>
  108. <field name="renderName">
  109. <String>person.Valentyna_Binder</String>
  110. </field>
  111. </profileConditionValue>
  112. <profileConditionValue>
  113. <field name="value">
  114. <String>www.account</String>
  115. </field>
  116. <field name="description">
  117. <String>Kontent ten będize dostępny dla użytkownika, który założył konto i podał maila</String>
  118. </field>
  119. <field name="level">
  120. <Integer>0</Integer>
  121. </field>
  122. <field name="renderName">
  123. <String>www.account</String>
  124. </field>
  125. </profileConditionValue>
  126. <profileConditionValue>
  127. <field name="value">
  128. <String>www.anonymous</String>
  129. </field>
  130. <field name="description">
  131. <String>Kontent ten bedzie dostepny dla kazdego użytkownika</String>
  132. </field>
  133. <field name="level">
  134. <Integer>0</Integer>
  135. </field>
  136. <field name="renderName">
  137. <String>www.anonymous</String>
  138. </field>
  139. </profileConditionValue>
  140. <profileConditionValue>
  141. <field name="value">
  142. <String>www.subscripion</String>
  143. </field>
  144. <field name="description">
  145. <String>kontent ten będize dla użytkownika, który zapłacił subskrybcje</String>
  146. </field>
  147. <field name="level">
  148. <Integer>0</Integer>
  149. </field>
  150. <field name="renderName">
  151. <String>www.subscripion</String>
  152. </field>
  153. </profileConditionValue>
  154. </profileConditionValue-array>
  155. </field>
  156. <field name="documentTypePattern">
  157. <String>*DITA*</String>
  158. </field>
  159. <field name="valuesSeparator">
  160. <String> </String>
  161. </field>
  162. <field name="attributeRenderName">
  163. <String>Audience</String>
  164. </field>
  165. </profileConditionInfo>
  166. <profileConditionInfo>
  167. <field name="attributeName">
  168. <String>platform</String>
  169. </field>
  170. <field name="allowsMultipleValues">
  171. <Boolean>true</Boolean>
  172. </field>
  173. <field name="allowedValues">
  174. <profileConditionValue-array>
  175. <profileConditionValue>
  176. <field name="value">
  177. <String>ciezarna</String>
  178. </field>
  179. <field name="description">
  180. <String>ciezarna</String>
  181. </field>
  182. <field name="level">
  183. <Integer>0</Integer>
  184. </field>
  185. <field name="renderName">
  186. <String>ciezarna</String>
  187. </field>
  188. </profileConditionValue>
  189. <profileConditionValue>
  190. <field name="value">
  191. <String>nie_trenowaly</String>
  192. </field>
  193. <field name="description">
  194. <String>nie_trenowaly - osoby ktore nie trenowaly</String>
  195. </field>
  196. <field name="level">
  197. <Integer>0</Integer>
  198. </field>
  199. <field name="renderName">
  200. <String>nie_trenowaly</String>
  201. </field>
  202. </profileConditionValue>
  203. <profileConditionValue>
  204. <field name="value">
  205. <String>trenujace</String>
  206. </field>
  207. <field name="description">
  208. <String>trenujace - dla kogos kto trenowal</String>
  209. </field>
  210. <field name="level">
  211. <Integer>0</Integer>
  212. </field>
  213. <field name="renderName">
  214. <String>trenujace</String>
  215. </field>
  216. </profileConditionValue>
  217. <profileConditionValue>
  218. <field name="value">
  219. <String>waga.chuda</String>
  220. </field>
  221. <field name="description">
  222. <String>waga.chuda</String>
  223. </field>
  224. <field name="level">
  225. <Integer>0</Integer>
  226. </field>
  227. <field name="renderName">
  228. <String>waga.chuda</String>
  229. </field>
  230. </profileConditionValue>
  231. <profileConditionValue>
  232. <field name="value">
  233. <String>waga.gruba</String>
  234. </field>
  235. <field name="description">
  236. <String>waga.gruba</String>
  237. </field>
  238. <field name="level">
  239. <Integer>0</Integer>
  240. </field>
  241. <field name="renderName">
  242. <String>waga.gruba</String>
  243. </field>
  244. </profileConditionValue>
  245. <profileConditionValue>
  246. <field name="value">
  247. <String>waga.normalna</String>
  248. </field>
  249. <field name="description">
  250. <String>waga.normalna</String>
  251. </field>
  252. <field name="level">
  253. <Integer>0</Integer>
  254. </field>
  255. <field name="renderName">
  256. <String>waga.normalna</String>
  257. </field>
  258. </profileConditionValue>
  259. <profileConditionValue>
  260. <field name="value">
  261. <String>windows</String>
  262. </field>
  263. <field name="description">
  264. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  265. </field>
  266. <field name="level">
  267. <Integer>0</Integer>
  268. </field>
  269. <field name="renderName">
  270. <null/>
  271. </field>
  272. </profileConditionValue>
  273. </profileConditionValue-array>
  274. </field>
  275. <field name="documentTypePattern">
  276. <String>*DITA*</String>
  277. </field>
  278. <field name="valuesSeparator">
  279. <String> </String>
  280. </field>
  281. <field name="attributeRenderName">
  282. <String>Platform</String>
  283. </field>
  284. </profileConditionInfo>
  285. <profileConditionInfo>
  286. <field name="attributeName">
  287. <String>product</String>
  288. </field>
  289. <field name="allowsMultipleValues">
  290. <Boolean>true</Boolean>
  291. </field>
  292. <field name="allowedValues">
  293. <profileConditionValue-array>
  294. <profileConditionValue>
  295. <field name="value">
  296. <String>blog_tresc</String>
  297. </field>
  298. <field name="description">
  299. <null/>
  300. </field>
  301. <field name="level">
  302. <Integer>0</Integer>
  303. </field>
  304. <field name="renderName">
  305. <null/>
  306. </field>
  307. </profileConditionValue>
  308. <profileConditionValue>
  309. <field name="value">
  310. <String>book_piekna_zdrowa_mama</String>
  311. </field>
  312. <field name="description">
  313. <String>book_piekna_zdrowa_mama</String>
  314. </field>
  315. <field name="level">
  316. <Integer>0</Integer>
  317. </field>
  318. <field name="renderName">
  319. <String>book_piekna_zdrowa_mama</String>
  320. </field>
  321. </profileConditionValue>
  322. <profileConditionValue>
  323. <field name="value">
  324. <String>brand.Kosmetologia_Estetyczna_Valentyna_Binder</String>
  325. </field>
  326. <field name="description">
  327. <null/>
  328. </field>
  329. <field name="level">
  330. <Integer>0</Integer>
  331. </field>
  332. <field name="renderName">
  333. <null/>
  334. </field>
  335. </profileConditionValue>
  336. <profileConditionValue>
  337. <field name="value">
  338. <String>dieta_popoludniu</String>
  339. </field>
  340. <field name="description">
  341. <String>dieta_popoludniu</String>
  342. </field>
  343. <field name="level">
  344. <Integer>0</Integer>
  345. </field>
  346. <field name="renderName">
  347. <String>dieta_popoludniu</String>
  348. </field>
  349. </profileConditionValue>
  350. <profileConditionValue>
  351. <field name="value">
  352. <String>dieta_rano</String>
  353. </field>
  354. <field name="description">
  355. <String>dieta_rano</String>
  356. </field>
  357. <field name="level">
  358. <Integer>0</Integer>
  359. </field>
  360. <field name="renderName">
  361. <String>dieta_rano</String>
  362. </field>
  363. </profileConditionValue>
  364. <profileConditionValue>
  365. <field name="value">
  366. <String>dieta_wieczor</String>
  367. </field>
  368. <field name="description">
  369. <String>dieta_wieczor</String>
  370. </field>
  371. <field name="level">
  372. <Integer>0</Integer>
  373. </field>
  374. <field name="renderName">
  375. <String>dieta_wieczor</String>
  376. </field>
  377. </profileConditionValue>
  378. <profileConditionValue>
  379. <field name="value">
  380. <String>odzywianie</String>
  381. </field>
  382. <field name="description">
  383. <String>przepisy</String>
  384. </field>
  385. <field name="level">
  386. <Integer>0</Integer>
  387. </field>
  388. <field name="renderName">
  389. <String>odzywianie</String>
  390. </field>
  391. </profileConditionValue>
  392. <profileConditionValue>
  393. <field name="value">
  394. <String>oferta_wlasna</String>
  395. </field>
  396. <field name="description">
  397. <String>oferta_wlasna</String>
  398. </field>
  399. <field name="level">
  400. <Integer>0</Integer>
  401. </field>
  402. <field name="renderName">
  403. <String>oferta_wlasna</String>
  404. </field>
  405. </profileConditionValue>
  406. <profileConditionValue>
  407. <field name="value">
  408. <String>person.address_group</String>
  409. </field>
  410. <field name="description">
  411. <String>person.address_group</String>
  412. </field>
  413. <field name="level">
  414. <Integer>0</Integer>
  415. </field>
  416. <field name="renderName">
  417. <String>person.address_group</String>
  418. </field>
  419. </profileConditionValue>
  420. <profileConditionValue>
  421. <field name="value">
  422. <String>person.contact_group</String>
  423. </field>
  424. <field name="description">
  425. <String>person.contact_group - do tel i mail</String>
  426. </field>
  427. <field name="level">
  428. <Integer>0</Integer>
  429. </field>
  430. <field name="renderName">
  431. <String>person.contact_group</String>
  432. </field>
  433. </profileConditionValue>
  434. <profileConditionValue>
  435. <field name="value">
  436. <String>person.name</String>
  437. </field>
  438. <field name="description">
  439. <String>person.name - imie i nazwisko</String>
  440. </field>
  441. <field name="level">
  442. <Integer>0</Integer>
  443. </field>
  444. <field name="renderName">
  445. <String>person.name</String>
  446. </field>
  447. </profileConditionValue>
  448. <profileConditionValue>
  449. <field name="value">
  450. <String>person.person_no</String>
  451. </field>
  452. <field name="description">
  453. <String>person.person_no - obiekt osoby caly</String>
  454. </field>
  455. <field name="level">
  456. <Integer>0</Integer>
  457. </field>
  458. <field name="renderName">
  459. <String>person.person_no</String>
  460. </field>
  461. </profileConditionValue>
  462. <profileConditionValue>
  463. <field name="value">
  464. <String>person.pesel</String>
  465. </field>
  466. <field name="description">
  467. <String>person.pesel - dla pesela</String>
  468. </field>
  469. <field name="level">
  470. <Integer>0</Integer>
  471. </field>
  472. <field name="renderName">
  473. <String>person.pesel</String>
  474. </field>
  475. </profileConditionValue>
  476. <profileConditionValue>
  477. <field name="value">
  478. <String>pismo.data</String>
  479. </field>
  480. <field name="description">
  481. <String>pismo.data - data pisma</String>
  482. </field>
  483. <field name="level">
  484. <Integer>0</Integer>
  485. </field>
  486. <field name="renderName">
  487. <String>pismo.data</String>
  488. </field>
  489. </profileConditionValue>
  490. <profileConditionValue>
  491. <field name="value">
  492. <String>pismo.pismo_no</String>
  493. </field>
  494. <field name="description">
  495. <String>- ze cos jest pismem - wnioskiem</String>
  496. </field>
  497. <field name="level">
  498. <Integer>0</Integer>
  499. </field>
  500. <field name="renderName">
  501. <String>pismo.pismo_no</String>
  502. </field>
  503. </profileConditionValue>
  504. <profileConditionValue>
  505. <field name="value">
  506. <String>plan_diety</String>
  507. </field>
  508. <field name="description">
  509. <String>plan diety</String>
  510. </field>
  511. <field name="level">
  512. <Integer>0</Integer>
  513. </field>
  514. <field name="renderName">
  515. <String>plan_diety</String>
  516. </field>
  517. </profileConditionValue>
  518. <profileConditionValue>
  519. <field name="value">
  520. <String>program_treningowy_4tyg</String>
  521. </field>
  522. <field name="description">
  523. <String>program_treningowy_4tyg</String>
  524. </field>
  525. <field name="level">
  526. <Integer>0</Integer>
  527. </field>
  528. <field name="renderName">
  529. <String>program_treningowy_4tyg</String>
  530. </field>
  531. </profileConditionValue>
  532. <profileConditionValue>
  533. <field name="value">
  534. <String>szablon.szablon_no</String>
  535. </field>
  536. <field name="description">
  537. <String>szablon.szablon_no - cos jest szablonem</String>
  538. </field>
  539. <field name="level">
  540. <Integer>0</Integer>
  541. </field>
  542. <field name="renderName">
  543. <String>szablon.szablon_no</String>
  544. </field>
  545. </profileConditionValue>
  546. <profileConditionValue>
  547. <field name="value">
  548. <String>technologia</String>
  549. </field>
  550. <field name="description">
  551. <String>technologia</String>
  552. </field>
  553. <field name="level">
  554. <Integer>0</Integer>
  555. </field>
  556. <field name="renderName">
  557. <String>technologia</String>
  558. </field>
  559. </profileConditionValue>
  560. <profileConditionValue>
  561. <field name="value">
  562. <String>trening</String>
  563. </field>
  564. <field name="description">
  565. <String>trening</String>
  566. </field>
  567. <field name="level">
  568. <Integer>0</Integer>
  569. </field>
  570. <field name="renderName">
  571. <String>trening</String>
  572. </field>
  573. </profileConditionValue>
  574. <profileConditionValue>
  575. <field name="value">
  576. <String>www_binderafit_pl</String>
  577. </field>
  578. <field name="description">
  579. <String>www_binderafit_pl</String>
  580. </field>
  581. <field name="level">
  582. <Integer>0</Integer>
  583. </field>
  584. <field name="renderName">
  585. <String>www_binderafit_pl</String>
  586. </field>
  587. </profileConditionValue>
  588. <profileConditionValue>
  589. <field name="value">
  590. <String>bibliografia</String>
  591. </field>
  592. <field name="description">
  593. <null/>
  594. </field>
  595. <field name="level">
  596. <Integer>0</Integer>
  597. </field>
  598. <field name="renderName">
  599. <null/>
  600. </field>
  601. </profileConditionValue>
  602. <profileConditionValue>
  603. <field name="value">
  604. <String>galeria</String>
  605. </field>
  606. <field name="description">
  607. <null/>
  608. </field>
  609. <field name="level">
  610. <Integer>0</Integer>
  611. </field>
  612. <field name="renderName">
  613. <null/>
  614. </field>
  615. </profileConditionValue>
  616. </profileConditionValue-array>
  617. </field>
  618. <field name="documentTypePattern">
  619. <String>*DITA*</String>
  620. </field>
  621. <field name="valuesSeparator">
  622. <String> </String>
  623. </field>
  624. <field name="attributeRenderName">
  625. <String>Product</String>
  626. </field>
  627. </profileConditionInfo>
  628. <profileConditionInfo>
  629. <field name="attributeName">
  630. <String>props</String>
  631. </field>
  632. <field name="allowsMultipleValues">
  633. <Boolean>true</Boolean>
  634. </field>
  635. <field name="allowedValues">
  636. <profileConditionValue-array>
  637. <profileConditionValue>
  638. <field name="value">
  639. <String>blog</String>
  640. </field>
  641. <field name="description">
  642. <null/>
  643. </field>
  644. <field name="level">
  645. <Integer>0</Integer>
  646. </field>
  647. <field name="renderName">
  648. <null/>
  649. </field>
  650. </profileConditionValue>
  651. <profileConditionValue>
  652. <field name="value">
  653. <String>cwiczenie</String>
  654. </field>
  655. <field name="description">
  656. <null/>
  657. </field>
  658. <field name="level">
  659. <Integer>0</Integer>
  660. </field>
  661. <field name="renderName">
  662. <null/>
  663. </field>
  664. </profileConditionValue>
  665. <profileConditionValue>
  666. <field name="value">
  667. <String>dieta</String>
  668. </field>
  669. <field name="description">
  670. <String>dieta uzywac kiedy cos jest dieta</String>
  671. </field>
  672. <field name="level">
  673. <Integer>0</Integer>
  674. </field>
  675. <field name="renderName">
  676. <String>dieta</String>
  677. </field>
  678. </profileConditionValue>
  679. <profileConditionValue>
  680. <field name="value">
  681. <String>korespondencja</String>
  682. </field>
  683. <field name="description">
  684. <String>korespondencja</String>
  685. </field>
  686. <field name="level">
  687. <Integer>0</Integer>
  688. </field>
  689. <field name="renderName">
  690. <String>korespondencja</String>
  691. </field>
  692. </profileConditionValue>
  693. <profileConditionValue>
  694. <field name="value">
  695. <String>oferta.cena_sprzedazy</String>
  696. </field>
  697. <field name="description">
  698. <String>oferta.cena_sprzedazy</String>
  699. </field>
  700. <field name="level">
  701. <Integer>0</Integer>
  702. </field>
  703. <field name="renderName">
  704. <String>oferta.cena_sprzedazy</String>
  705. </field>
  706. </profileConditionValue>
  707. <profileConditionValue>
  708. <field name="value">
  709. <String>oferta.cena_zakupu</String>
  710. </field>
  711. <field name="description">
  712. <String>oferta.cena_zakupu</String>
  713. </field>
  714. <field name="level">
  715. <Integer>0</Integer>
  716. </field>
  717. <field name="renderName">
  718. <String>oferta.cena_zakupu</String>
  719. </field>
  720. </profileConditionValue>
  721. <profileConditionValue>
  722. <field name="value">
  723. <String>oferta.referencja</String>
  724. </field>
  725. <field name="description">
  726. <String>oferta.referencja</String>
  727. </field>
  728. <field name="level">
  729. <Integer>0</Integer>
  730. </field>
  731. <field name="renderName">
  732. <String>oferta.referencja</String>
  733. </field>
  734. </profileConditionValue>
  735. <profileConditionValue>
  736. <field name="value">
  737. <String>owoc</String>
  738. </field>
  739. <field name="description">
  740. <String>owoc</String>
  741. </field>
  742. <field name="level">
  743. <Integer>0</Integer>
  744. </field>
  745. <field name="renderName">
  746. <String>owoc</String>
  747. </field>
  748. </profileConditionValue>
  749. <profileConditionValue>
  750. <field name="value">
  751. <String>problem</String>
  752. </field>
  753. <field name="description">
  754. <String>jest to jakis problem</String>
  755. </field>
  756. <field name="level">
  757. <Integer>0</Integer>
  758. </field>
  759. <field name="renderName">
  760. <String>problem</String>
  761. </field>
  762. </profileConditionValue>
  763. <profileConditionValue>
  764. <field name="value">
  765. <String>produkt</String>
  766. </field>
  767. <field name="description">
  768. <String>produkt</String>
  769. </field>
  770. <field name="level">
  771. <Integer>0</Integer>
  772. </field>
  773. <field name="renderName">
  774. <String>produkt</String>
  775. </field>
  776. </profileConditionValue>
  777. <profileConditionValue>
  778. <field name="value">
  779. <String>prop1</String>
  780. </field>
  781. <field name="description">
  782. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  783. </field>
  784. <field name="level">
  785. <Integer>0</Integer>
  786. </field>
  787. <field name="renderName">
  788. <null/>
  789. </field>
  790. </profileConditionValue>
  791. <profileConditionValue>
  792. <field name="value">
  793. <String>prop2</String>
  794. </field>
  795. <field name="description">
  796. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  797. </field>
  798. <field name="level">
  799. <Integer>0</Integer>
  800. </field>
  801. <field name="renderName">
  802. <null/>
  803. </field>
  804. </profileConditionValue>
  805. <profileConditionValue>
  806. <field name="value">
  807. <String>warzywo</String>
  808. </field>
  809. <field name="description">
  810. <String>warzywo</String>
  811. </field>
  812. <field name="level">
  813. <Integer>0</Integer>
  814. </field>
  815. <field name="renderName">
  816. <String>warzywo</String>
  817. </field>
  818. </profileConditionValue>
  819. <profileConditionValue>
  820. <field name="value">
  821. <String>opryszczka</String>
  822. </field>
  823. <field name="description">
  824. <null/>
  825. </field>
  826. <field name="level">
  827. <Integer>0</Integer>
  828. </field>
  829. <field name="renderName">
  830. <null/>
  831. </field>
  832. </profileConditionValue>
  833. <profileConditionValue>
  834. <field name="value">
  835. <String>baseline_error</String>
  836. </field>
  837. <field name="description">
  838. <null/>
  839. </field>
  840. <field name="level">
  841. <Integer>0</Integer>
  842. </field>
  843. <field name="renderName">
  844. <null/>
  845. </field>
  846. </profileConditionValue>
  847. <profileConditionValue>
  848. <field name="value">
  849. <String>baseline_shopping_cart</String>
  850. </field>
  851. <field name="description">
  852. <null/>
  853. </field>
  854. <field name="level">
  855. <Integer>0</Integer>
  856. </field>
  857. <field name="renderName">
  858. <null/>
  859. </field>
  860. </profileConditionValue>
  861. <profileConditionValue>
  862. <field name="value">
  863. <String>baseline_new_releases</String>
  864. </field>
  865. <field name="description">
  866. <null/>
  867. </field>
  868. <field name="level">
  869. <Integer>0</Integer>
  870. </field>
  871. <field name="renderName">
  872. <null/>
  873. </field>
  874. </profileConditionValue>
  875. <profileConditionValue>
  876. <field name="value">
  877. <String>baseline_photo_album</String>
  878. </field>
  879. <field name="description">
  880. <null/>
  881. </field>
  882. <field name="level">
  883. <Integer>0</Integer>
  884. </field>
  885. <field name="renderName">
  886. <null/>
  887. </field>
  888. </profileConditionValue>
  889. <profileConditionValue>
  890. <field name="value">
  891. <String>baseline_description</String>
  892. </field>
  893. <field name="description">
  894. <null/>
  895. </field>
  896. <field name="level">
  897. <Integer>0</Integer>
  898. </field>
  899. <field name="renderName">
  900. <null/>
  901. </field>
  902. </profileConditionValue>
  903. </profileConditionValue-array>
  904. </field>
  905. <field name="documentTypePattern">
  906. <String>*DITA*</String>
  907. </field>
  908. <field name="valuesSeparator">
  909. <String> </String>
  910. </field>
  911. <field name="attributeRenderName">
  912. <String>Props</String>
  913. </field>
  914. </profileConditionInfo>
  915. <profileConditionInfo>
  916. <field name="attributeName">
  917. <String>otherprops</String>
  918. </field>
  919. <field name="allowsMultipleValues">
  920. <Boolean>true</Boolean>
  921. </field>
  922. <field name="allowedValues">
  923. <profileConditionValue-array>
  924. <profileConditionValue>
  925. <field name="value">
  926. <String>dostawca</String>
  927. </field>
  928. <field name="description">
  929. <String>dostawca</String>
  930. </field>
  931. <field name="level">
  932. <Integer>0</Integer>
  933. </field>
  934. <field name="renderName">
  935. <String>dostawca</String>
  936. </field>
  937. </profileConditionValue>
  938. <profileConditionValue>
  939. <field name="value">
  940. <String>prop1</String>
  941. </field>
  942. <field name="description">
  943. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  944. </field>
  945. <field name="level">
  946. <Integer>0</Integer>
  947. </field>
  948. <field name="renderName">
  949. <null/>
  950. </field>
  951. </profileConditionValue>
  952. <profileConditionValue>
  953. <field name="value">
  954. <String>prop2</String>
  955. </field>
  956. <field name="description">
  957. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  958. </field>
  959. <field name="level">
  960. <Integer>0</Integer>
  961. </field>
  962. <field name="renderName">
  963. <null/>
  964. </field>
  965. </profileConditionValue>
  966. </profileConditionValue-array>
  967. </field>
  968. <field name="documentTypePattern">
  969. <String>*DITA*</String>
  970. </field>
  971. <field name="valuesSeparator">
  972. <String> </String>
  973. </field>
  974. <field name="attributeRenderName">
  975. <String>Other</String>
  976. </field>
  977. </profileConditionInfo>
  978. <profileConditionInfo>
  979. <field name="attributeName">
  980. <String>rev</String>
  981. </field>
  982. <field name="allowsMultipleValues">
  983. <Boolean>false</Boolean>
  984. </field>
  985. <field name="allowedValues">
  986. <profileConditionValue-array>
  987. <profileConditionValue>
  988. <field name="value">
  989. <String>1.0</String>
  990. </field>
  991. <field name="description">
  992. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  993. </field>
  994. <field name="level">
  995. <Integer>0</Integer>
  996. </field>
  997. <field name="renderName">
  998. <null/>
  999. </field>
  1000. </profileConditionValue>
  1001. <profileConditionValue>
  1002. <field name="value">
  1003. <String>2.0</String>
  1004. </field>
  1005. <field name="description">
  1006. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1007. </field>
  1008. <field name="level">
  1009. <Integer>0</Integer>
  1010. </field>
  1011. <field name="renderName">
  1012. <null/>
  1013. </field>
  1014. </profileConditionValue>
  1015. <profileConditionValue>
  1016. <field name="value">
  1017. <String>TODO</String>
  1018. </field>
  1019. <field name="description">
  1020. <String>- todo now do zrobienia</String>
  1021. </field>
  1022. <field name="level">
  1023. <Integer>0</Integer>
  1024. </field>
  1025. <field name="renderName">
  1026. <String>TODO</String>
  1027. </field>
  1028. </profileConditionValue>
  1029. </profileConditionValue-array>
  1030. </field>
  1031. <field name="documentTypePattern">
  1032. <String>*DITA*</String>
  1033. </field>
  1034. <field name="valuesSeparator">
  1035. <String> </String>
  1036. </field>
  1037. <field name="attributeRenderName">
  1038. <String>Revision</String>
  1039. </field>
  1040. </profileConditionInfo>
  1041. <profileConditionInfo>
  1042. <field name="attributeName">
  1043. <String>arch</String>
  1044. </field>
  1045. <field name="allowsMultipleValues">
  1046. <Boolean>false</Boolean>
  1047. </field>
  1048. <field name="allowedValues">
  1049. <profileConditionValue-array>
  1050. <profileConditionValue>
  1051. <field name="value">
  1052. <String>i386</String>
  1053. </field>
  1054. <field name="description">
  1055. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1056. </field>
  1057. <field name="level">
  1058. <Integer>0</Integer>
  1059. </field>
  1060. <field name="renderName">
  1061. <null/>
  1062. </field>
  1063. </profileConditionValue>
  1064. <profileConditionValue>
  1065. <field name="value">
  1066. <String>i486</String>
  1067. </field>
  1068. <field name="description">
  1069. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1070. </field>
  1071. <field name="level">
  1072. <Integer>0</Integer>
  1073. </field>
  1074. <field name="renderName">
  1075. <null/>
  1076. </field>
  1077. </profileConditionValue>
  1078. </profileConditionValue-array>
  1079. </field>
  1080. <field name="documentTypePattern">
  1081. <String>DocBook*</String>
  1082. </field>
  1083. <field name="valuesSeparator">
  1084. <String>;</String>
  1085. </field>
  1086. <field name="attributeRenderName">
  1087. <String>Architecture</String>
  1088. </field>
  1089. </profileConditionInfo>
  1090. <profileConditionInfo>
  1091. <field name="attributeName">
  1092. <String>condition</String>
  1093. </field>
  1094. <field name="allowsMultipleValues">
  1095. <Boolean>true</Boolean>
  1096. </field>
  1097. <field name="allowedValues">
  1098. <profileConditionValue-array>
  1099. <profileConditionValue>
  1100. <field name="value">
  1101. <String>condition1</String>
  1102. </field>
  1103. <field name="description">
  1104. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1105. </field>
  1106. <field name="level">
  1107. <Integer>0</Integer>
  1108. </field>
  1109. <field name="renderName">
  1110. <null/>
  1111. </field>
  1112. </profileConditionValue>
  1113. <profileConditionValue>
  1114. <field name="value">
  1115. <String>condition2</String>
  1116. </field>
  1117. <field name="description">
  1118. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1119. </field>
  1120. <field name="level">
  1121. <Integer>0</Integer>
  1122. </field>
  1123. <field name="renderName">
  1124. <null/>
  1125. </field>
  1126. </profileConditionValue>
  1127. </profileConditionValue-array>
  1128. </field>
  1129. <field name="documentTypePattern">
  1130. <String>DocBook*</String>
  1131. </field>
  1132. <field name="valuesSeparator">
  1133. <String>;</String>
  1134. </field>
  1135. <field name="attributeRenderName">
  1136. <String>Condition</String>
  1137. </field>
  1138. </profileConditionInfo>
  1139. <profileConditionInfo>
  1140. <field name="attributeName">
  1141. <String>conformance</String>
  1142. </field>
  1143. <field name="allowsMultipleValues">
  1144. <Boolean>false</Boolean>
  1145. </field>
  1146. <field name="allowedValues">
  1147. <profileConditionValue-array>
  1148. <profileConditionValue>
  1149. <field name="value">
  1150. <String>lsb</String>
  1151. </field>
  1152. <field name="description">
  1153. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1154. </field>
  1155. <field name="level">
  1156. <Integer>0</Integer>
  1157. </field>
  1158. <field name="renderName">
  1159. <null/>
  1160. </field>
  1161. </profileConditionValue>
  1162. </profileConditionValue-array>
  1163. </field>
  1164. <field name="documentTypePattern">
  1165. <String>DocBook*</String>
  1166. </field>
  1167. <field name="valuesSeparator">
  1168. <String>;</String>
  1169. </field>
  1170. <field name="attributeRenderName">
  1171. <String>Conformance</String>
  1172. </field>
  1173. </profileConditionInfo>
  1174. <profileConditionInfo>
  1175. <field name="attributeName">
  1176. <String>os</String>
  1177. </field>
  1178. <field name="allowsMultipleValues">
  1179. <Boolean>true</Boolean>
  1180. </field>
  1181. <field name="allowedValues">
  1182. <profileConditionValue-array>
  1183. <profileConditionValue>
  1184. <field name="value">
  1185. <String>linux</String>
  1186. </field>
  1187. <field name="description">
  1188. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1189. </field>
  1190. <field name="level">
  1191. <Integer>0</Integer>
  1192. </field>
  1193. <field name="renderName">
  1194. <null/>
  1195. </field>
  1196. </profileConditionValue>
  1197. <profileConditionValue>
  1198. <field name="value">
  1199. <String>mac</String>
  1200. </field>
  1201. <field name="description">
  1202. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1203. </field>
  1204. <field name="level">
  1205. <Integer>0</Integer>
  1206. </field>
  1207. <field name="renderName">
  1208. <null/>
  1209. </field>
  1210. </profileConditionValue>
  1211. <profileConditionValue>
  1212. <field name="value">
  1213. <String>solaris</String>
  1214. </field>
  1215. <field name="description">
  1216. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1217. </field>
  1218. <field name="level">
  1219. <Integer>0</Integer>
  1220. </field>
  1221. <field name="renderName">
  1222. <null/>
  1223. </field>
  1224. </profileConditionValue>
  1225. <profileConditionValue>
  1226. <field name="value">
  1227. <String>windows</String>
  1228. </field>
  1229. <field name="description">
  1230. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1231. </field>
  1232. <field name="level">
  1233. <Integer>0</Integer>
  1234. </field>
  1235. <field name="renderName">
  1236. <null/>
  1237. </field>
  1238. </profileConditionValue>
  1239. </profileConditionValue-array>
  1240. </field>
  1241. <field name="documentTypePattern">
  1242. <String>DocBook*</String>
  1243. </field>
  1244. <field name="valuesSeparator">
  1245. <String>;</String>
  1246. </field>
  1247. <field name="attributeRenderName">
  1248. <String>Operating System</String>
  1249. </field>
  1250. </profileConditionInfo>
  1251. <profileConditionInfo>
  1252. <field name="attributeName">
  1253. <String>revision</String>
  1254. </field>
  1255. <field name="allowsMultipleValues">
  1256. <Boolean>false</Boolean>
  1257. </field>
  1258. <field name="allowedValues">
  1259. <profileConditionValue-array>
  1260. <profileConditionValue>
  1261. <field name="value">
  1262. <String>1.0</String>
  1263. </field>
  1264. <field name="description">
  1265. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1266. </field>
  1267. <field name="level">
  1268. <Integer>0</Integer>
  1269. </field>
  1270. <field name="renderName">
  1271. <null/>
  1272. </field>
  1273. </profileConditionValue>
  1274. <profileConditionValue>
  1275. <field name="value">
  1276. <String>1.1</String>
  1277. </field>
  1278. <field name="description">
  1279. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1280. </field>
  1281. <field name="level">
  1282. <Integer>0</Integer>
  1283. </field>
  1284. <field name="renderName">
  1285. <null/>
  1286. </field>
  1287. </profileConditionValue>
  1288. </profileConditionValue-array>
  1289. </field>
  1290. <field name="documentTypePattern">
  1291. <String>DocBook*</String>
  1292. </field>
  1293. <field name="valuesSeparator">
  1294. <String>;</String>
  1295. </field>
  1296. <field name="attributeRenderName">
  1297. <String>Revision</String>
  1298. </field>
  1299. </profileConditionInfo>
  1300. <profileConditionInfo>
  1301. <field name="attributeName">
  1302. <String>revisionflag</String>
  1303. </field>
  1304. <field name="allowsMultipleValues">
  1305. <Boolean>false</Boolean>
  1306. </field>
  1307. <field name="allowedValues">
  1308. <profileConditionValue-array>
  1309. <profileConditionValue>
  1310. <field name="value">
  1311. <String>added</String>
  1312. </field>
  1313. <field name="description">
  1314. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1315. </field>
  1316. <field name="level">
  1317. <Integer>0</Integer>
  1318. </field>
  1319. <field name="renderName">
  1320. <null/>
  1321. </field>
  1322. </profileConditionValue>
  1323. <profileConditionValue>
  1324. <field name="value">
  1325. <String>changed</String>
  1326. </field>
  1327. <field name="description">
  1328. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1329. </field>
  1330. <field name="level">
  1331. <Integer>0</Integer>
  1332. </field>
  1333. <field name="renderName">
  1334. <null/>
  1335. </field>
  1336. </profileConditionValue>
  1337. </profileConditionValue-array>
  1338. </field>
  1339. <field name="documentTypePattern">
  1340. <String>DocBook*</String>
  1341. </field>
  1342. <field name="valuesSeparator">
  1343. <String>;</String>
  1344. </field>
  1345. <field name="attributeRenderName">
  1346. <String>Revision Flag</String>
  1347. </field>
  1348. </profileConditionInfo>
  1349. <profileConditionInfo>
  1350. <field name="attributeName">
  1351. <String>security</String>
  1352. </field>
  1353. <field name="allowsMultipleValues">
  1354. <Boolean>false</Boolean>
  1355. </field>
  1356. <field name="allowedValues">
  1357. <profileConditionValue-array>
  1358. <profileConditionValue>
  1359. <field name="value">
  1360. <String>high</String>
  1361. </field>
  1362. <field name="description">
  1363. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1364. </field>
  1365. <field name="level">
  1366. <Integer>0</Integer>
  1367. </field>
  1368. <field name="renderName">
  1369. <null/>
  1370. </field>
  1371. </profileConditionValue>
  1372. <profileConditionValue>
  1373. <field name="value">
  1374. <String>low</String>
  1375. </field>
  1376. <field name="description">
  1377. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1378. </field>
  1379. <field name="level">
  1380. <Integer>0</Integer>
  1381. </field>
  1382. <field name="renderName">
  1383. <null/>
  1384. </field>
  1385. </profileConditionValue>
  1386. </profileConditionValue-array>
  1387. </field>
  1388. <field name="documentTypePattern">
  1389. <String>DocBook*</String>
  1390. </field>
  1391. <field name="valuesSeparator">
  1392. <String>;</String>
  1393. </field>
  1394. <field name="attributeRenderName">
  1395. <String>Security</String>
  1396. </field>
  1397. </profileConditionInfo>
  1398. <profileConditionInfo>
  1399. <field name="attributeName">
  1400. <String>status</String>
  1401. </field>
  1402. <field name="allowsMultipleValues">
  1403. <Boolean>false</Boolean>
  1404. </field>
  1405. <field name="allowedValues">
  1406. <profileConditionValue-array>
  1407. <profileConditionValue>
  1408. <field name="value">
  1409. <String>devel</String>
  1410. </field>
  1411. <field name="description">
  1412. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1413. </field>
  1414. <field name="level">
  1415. <Integer>0</Integer>
  1416. </field>
  1417. <field name="renderName">
  1418. <null/>
  1419. </field>
  1420. </profileConditionValue>
  1421. <profileConditionValue>
  1422. <field name="value">
  1423. <String>draft</String>
  1424. </field>
  1425. <field name="description">
  1426. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1427. </field>
  1428. <field name="level">
  1429. <Integer>0</Integer>
  1430. </field>
  1431. <field name="renderName">
  1432. <null/>
  1433. </field>
  1434. </profileConditionValue>
  1435. </profileConditionValue-array>
  1436. </field>
  1437. <field name="documentTypePattern">
  1438. <String>DocBook*</String>
  1439. </field>
  1440. <field name="valuesSeparator">
  1441. <String>;</String>
  1442. </field>
  1443. <field name="attributeRenderName">
  1444. <String>Status</String>
  1445. </field>
  1446. </profileConditionInfo>
  1447. <profileConditionInfo>
  1448. <field name="attributeName">
  1449. <String>userlevel</String>
  1450. </field>
  1451. <field name="allowsMultipleValues">
  1452. <Boolean>false</Boolean>
  1453. </field>
  1454. <field name="allowedValues">
  1455. <profileConditionValue-array>
  1456. <profileConditionValue>
  1457. <field name="value">
  1458. <String>advanced</String>
  1459. </field>
  1460. <field name="description">
  1461. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1462. </field>
  1463. <field name="level">
  1464. <Integer>0</Integer>
  1465. </field>
  1466. <field name="renderName">
  1467. <null/>
  1468. </field>
  1469. </profileConditionValue>
  1470. <profileConditionValue>
  1471. <field name="value">
  1472. <String>beginner</String>
  1473. </field>
  1474. <field name="description">
  1475. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1476. </field>
  1477. <field name="level">
  1478. <Integer>0</Integer>
  1479. </field>
  1480. <field name="renderName">
  1481. <null/>
  1482. </field>
  1483. </profileConditionValue>
  1484. </profileConditionValue-array>
  1485. </field>
  1486. <field name="documentTypePattern">
  1487. <String>DocBook*</String>
  1488. </field>
  1489. <field name="valuesSeparator">
  1490. <String>;</String>
  1491. </field>
  1492. <field name="attributeRenderName">
  1493. <String>User Level</String>
  1494. </field>
  1495. </profileConditionInfo>
  1496. <profileConditionInfo>
  1497. <field name="attributeName">
  1498. <String>vendor</String>
  1499. </field>
  1500. <field name="allowsMultipleValues">
  1501. <Boolean>false</Boolean>
  1502. </field>
  1503. <field name="allowedValues">
  1504. <profileConditionValue-array>
  1505. <profileConditionValue>
  1506. <field name="value">
  1507. <String>vendor1</String>
  1508. </field>
  1509. <field name="description">
  1510. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1511. </field>
  1512. <field name="level">
  1513. <Integer>0</Integer>
  1514. </field>
  1515. <field name="renderName">
  1516. <null/>
  1517. </field>
  1518. </profileConditionValue>
  1519. <profileConditionValue>
  1520. <field name="value">
  1521. <String>vendor2</String>
  1522. </field>
  1523. <field name="description">
  1524. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1525. </field>
  1526. <field name="level">
  1527. <Integer>0</Integer>
  1528. </field>
  1529. <field name="renderName">
  1530. <null/>
  1531. </field>
  1532. </profileConditionValue>
  1533. </profileConditionValue-array>
  1534. </field>
  1535. <field name="documentTypePattern">
  1536. <String>DocBook*</String>
  1537. </field>
  1538. <field name="valuesSeparator">
  1539. <String>;</String>
  1540. </field>
  1541. <field name="attributeRenderName">
  1542. <String>Vendor</String>
  1543. </field>
  1544. </profileConditionInfo>
  1545. <profileConditionInfo>
  1546. <field name="attributeName">
  1547. <String>wordsize</String>
  1548. </field>
  1549. <field name="allowsMultipleValues">
  1550. <Boolean>false</Boolean>
  1551. </field>
  1552. <field name="allowedValues">
  1553. <profileConditionValue-array>
  1554. <profileConditionValue>
  1555. <field name="value">
  1556. <String>32bit</String>
  1557. </field>
  1558. <field name="description">
  1559. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1560. </field>
  1561. <field name="level">
  1562. <Integer>0</Integer>
  1563. </field>
  1564. <field name="renderName">
  1565. <null/>
  1566. </field>
  1567. </profileConditionValue>
  1568. <profileConditionValue>
  1569. <field name="value">
  1570. <String>64bit</String>
  1571. </field>
  1572. <field name="description">
  1573. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1574. </field>
  1575. <field name="level">
  1576. <Integer>0</Integer>
  1577. </field>
  1578. <field name="renderName">
  1579. <null/>
  1580. </field>
  1581. </profileConditionValue>
  1582. </profileConditionValue-array>
  1583. </field>
  1584. <field name="documentTypePattern">
  1585. <String>DocBook*</String>
  1586. </field>
  1587. <field name="valuesSeparator">
  1588. <String>;</String>
  1589. </field>
  1590. <field name="attributeRenderName">
  1591. <String>Word Size</String>
  1592. </field>
  1593. </profileConditionInfo>
  1594. <profileConditionInfo>
  1595. <field name="attributeName">
  1596. <String>lang</String>
  1597. </field>
  1598. <field name="allowsMultipleValues">
  1599. <Boolean>false</Boolean>
  1600. </field>
  1601. <field name="allowedValues">
  1602. <profileConditionValue-array>
  1603. <profileConditionValue>
  1604. <field name="value">
  1605. <String>en</String>
  1606. </field>
  1607. <field name="description">
  1608. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1609. </field>
  1610. <field name="level">
  1611. <Integer>0</Integer>
  1612. </field>
  1613. <field name="renderName">
  1614. <null/>
  1615. </field>
  1616. </profileConditionValue>
  1617. <profileConditionValue>
  1618. <field name="value">
  1619. <String>fr</String>
  1620. </field>
  1621. <field name="description">
  1622. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1623. </field>
  1624. <field name="level">
  1625. <Integer>0</Integer>
  1626. </field>
  1627. <field name="renderName">
  1628. <null/>
  1629. </field>
  1630. </profileConditionValue>
  1631. </profileConditionValue-array>
  1632. </field>
  1633. <field name="documentTypePattern">
  1634. <String>DocBook 4</String>
  1635. </field>
  1636. <field name="valuesSeparator">
  1637. <String>;</String>
  1638. </field>
  1639. <field name="attributeRenderName">
  1640. <String>Language</String>
  1641. </field>
  1642. </profileConditionInfo>
  1643. <profileConditionInfo>
  1644. <field name="attributeName">
  1645. <String>xml:lang</String>
  1646. </field>
  1647. <field name="allowsMultipleValues">
  1648. <Boolean>false</Boolean>
  1649. </field>
  1650. <field name="allowedValues">
  1651. <profileConditionValue-array>
  1652. <profileConditionValue>
  1653. <field name="value">
  1654. <String>en</String>
  1655. </field>
  1656. <field name="description">
  1657. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1658. </field>
  1659. <field name="level">
  1660. <Integer>0</Integer>
  1661. </field>
  1662. <field name="renderName">
  1663. <null/>
  1664. </field>
  1665. </profileConditionValue>
  1666. <profileConditionValue>
  1667. <field name="value">
  1668. <String>fr</String>
  1669. </field>
  1670. <field name="description">
  1671. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1672. </field>
  1673. <field name="level">
  1674. <Integer>0</Integer>
  1675. </field>
  1676. <field name="renderName">
  1677. <null/>
  1678. </field>
  1679. </profileConditionValue>
  1680. </profileConditionValue-array>
  1681. </field>
  1682. <field name="documentTypePattern">
  1683. <String>DocBook 5</String>
  1684. </field>
  1685. <field name="valuesSeparator">
  1686. <String>;</String>
  1687. </field>
  1688. <field name="attributeRenderName">
  1689. <String>Language</String>
  1690. </field>
  1691. </profileConditionInfo>
  1692. <profileConditionInfo>
  1693. <field name="attributeName">
  1694. <String>audience</String>
  1695. </field>
  1696. <field name="allowsMultipleValues">
  1697. <Boolean>true</Boolean>
  1698. </field>
  1699. <field name="allowedValues">
  1700. <profileConditionValue-array>
  1701. <profileConditionValue>
  1702. <field name="value">
  1703. <String>expert</String>
  1704. </field>
  1705. <field name="description">
  1706. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1707. </field>
  1708. <field name="level">
  1709. <Integer>0</Integer>
  1710. </field>
  1711. <field name="renderName">
  1712. <null/>
  1713. </field>
  1714. </profileConditionValue>
  1715. <profileConditionValue>
  1716. <field name="value">
  1717. <String>novice</String>
  1718. </field>
  1719. <field name="description">
  1720. <String>Sample value. You can change it from the "Profiling/Conditional Text" preferences page.</String>
  1721. </field>
  1722. <field name="level">
  1723. <Integer>0</Integer>
  1724. </field>
  1725. <field name="renderName">
  1726. <null/>
  1727. </field>
  1728. </profileConditionValue>
  1729. </profileConditionValue-array>
  1730. </field>
  1731. <field name="documentTypePattern">
  1732. <String>DocBook 5</String>
  1733. </field>
  1734. <field name="valuesSeparator">
  1735. <String>;</String>
  1736. </field>
  1737. <field name="attributeRenderName">
  1738. <String>Audience</String>
  1739. </field>
  1740. </profileConditionInfo>
  1741. </profileConditionInfo-array>
  1742. </entry>
  1743. <entry>
  1744. <String>profiling.conditions.set.list</String>
  1745. <profileConditionsSetInfo-array>
  1746. <profileConditionsSetInfo>
  1747. <field name="conditions">
  1748. <serializableOrderedMap>
  1749. <entry>
  1750. <String>product</String>
  1751. <String-array>
  1752. <String>book_piekna_zdrowa_mama</String>
  1753. <String>program_treningowy_4tyg</String>
  1754. <String>www_binderafit_pl</String>
  1755. </String-array>
  1756. </entry>
  1757. </serializableOrderedMap>
  1758. </field>
  1759. <field name="documentTypePattern">
  1760. <String>*DITA*</String>
  1761. </field>
  1762. <field name="conditionSetName">
  1763. <String>condition set trening_do_pdf</String>
  1764. </field>
  1765. <field name="ditavalFile">
  1766. <String></String>
  1767. </field>
  1768. <field name="useDITAVAL">
  1769. <Boolean>false</Boolean>
  1770. </field>
  1771. <field name="shortcut">
  1772. <null/>
  1773. </field>
  1774. </profileConditionsSetInfo>
  1775. <profileConditionsSetInfo>
  1776. <field name="conditions">
  1777. <serializableOrderedMap>
  1778. <entry>
  1779. <String>audience</String>
  1780. <String-array>
  1781. <String>person.Dyrektor_Gdanskiego_Urzedu_Pracy</String>
  1782. </String-array>
  1783. </entry>
  1784. </serializableOrderedMap>
  1785. </field>
  1786. <field name="documentTypePattern">
  1787. <String>*DITA*</String>
  1788. </field>
  1789. <field name="conditionSetName">
  1790. <String>condition set do Dyrektor Gdanskiego Urzedu Pracy</String>
  1791. </field>
  1792. <field name="ditavalFile">
  1793. <String></String>
  1794. </field>
  1795. <field name="useDITAVAL">
  1796. <Boolean>false</Boolean>
  1797. </field>
  1798. <field name="shortcut">
  1799. <null/>
  1800. </field>
  1801. </profileConditionsSetInfo>
  1802. <profileConditionsSetInfo>
  1803. <field name="conditions">
  1804. <serializableOrderedMap>
  1805. <entry>
  1806. <String>audience</String>
  1807. <String-array>
  1808. <String>dostawca</String>
  1809. <String>expert</String>
  1810. <String>klient</String>
  1811. <String>novice</String>
  1812. <String>person.Dyrektor_Gdanskiego_Urzedu_Pracy</String>
  1813. <String>person.Valentyna_Binder</String>
  1814. </String-array>
  1815. </entry>
  1816. <entry>
  1817. <String>otherprops</String>
  1818. <String-array>
  1819. <String>dostawca</String>
  1820. <String>prop1</String>
  1821. <String>prop2</String>
  1822. </String-array>
  1823. </entry>
  1824. <entry>
  1825. <String>platform</String>
  1826. <String-array>
  1827. <String>windows</String>
  1828. </String-array>
  1829. </entry>
  1830. <entry>
  1831. <String>product</String>
  1832. <String-array>
  1833. <String>book_piekna_zdrowa_mama</String>
  1834. <String>oferta_wlasna</String>
  1835. <String>person.address_group</String>
  1836. <String>person.contact_group</String>
  1837. <String>person.name</String>
  1838. <String>person.person_no</String>
  1839. <String>person.pesel</String>
  1840. <String>pismo.data</String>
  1841. <String>pismo.pismo_no</String>
  1842. <String>program_treningowy_4tyg</String>
  1843. <String>szablon.szablon_no</String>
  1844. <String>technologia</String>
  1845. <String>www_binderafit_pl</String>
  1846. </String-array>
  1847. </entry>
  1848. <entry>
  1849. <String>props</String>
  1850. <String-array>
  1851. <String>korespondencja</String>
  1852. <String>oferta.cena_sprzedazy</String>
  1853. <String>oferta.cena_zakupu</String>
  1854. <String>oferta.referencja</String>
  1855. <String>prop1</String>
  1856. <String>prop2</String>
  1857. </String-array>
  1858. </entry>
  1859. </serializableOrderedMap>
  1860. </field>
  1861. <field name="documentTypePattern">
  1862. <String>*DITA*</String>
  1863. </field>
  1864. <field name="conditionSetName">
  1865. <String>condition set all</String>
  1866. </field>
  1867. <field name="ditavalFile">
  1868. <String></String>
  1869. </field>
  1870. <field name="useDITAVAL">
  1871. <Boolean>false</Boolean>
  1872. </field>
  1873. <field name="shortcut">
  1874. <null/>
  1875. </field>
  1876. </profileConditionsSetInfo>
  1877. <profileConditionsSetInfo>
  1878. <field name="conditions">
  1879. <serializableOrderedMap/>
  1880. </field>
  1881. <field name="documentTypePattern">
  1882. <String>*DITA*</String>
  1883. </field>
  1884. <field name="conditionSetName">
  1885. <String>condition set binderafit na www ditaval </String>
  1886. </field>
  1887. <field name="ditavalFile">
  1888. <String>/Users/valentyna/binderafit/ksiazka_programy_www/www_binderafit_pl.ditaval</String>
  1889. </field>
  1890. <field name="useDITAVAL">
  1891. <Boolean>true</Boolean>
  1892. </field>
  1893. <field name="shortcut">
  1894. <null/>
  1895. </field>
  1896. </profileConditionsSetInfo>
  1897. <profileConditionsSetInfo>
  1898. <field name="conditions">
  1899. <serializableOrderedMap>
  1900. <entry>
  1901. <String>otherprops</String>
  1902. <String-array>
  1903. <String>dostawca</String>
  1904. <String>prop1</String>
  1905. <String>prop2</String>
  1906. </String-array>
  1907. </entry>
  1908. <entry>
  1909. <String>platform</String>
  1910. <String-array>
  1911. <String>trenujace</String>
  1912. </String-array>
  1913. </entry>
  1914. <entry>
  1915. <String>product</String>
  1916. <String-array>
  1917. <String>trening</String>
  1918. </String-array>
  1919. </entry>
  1920. <entry>
  1921. <String>props</String>
  1922. <String-array>
  1923. <String>dieta</String>
  1924. <String>korespondencja</String>
  1925. <String>oferta.cena_sprzedazy</String>
  1926. <String>oferta.cena_zakupu</String>
  1927. <String>oferta.referencja</String>
  1928. <String>owoc</String>
  1929. <String>produkt</String>
  1930. <String>prop1</String>
  1931. <String>prop2</String>
  1932. <String>warzywo</String>
  1933. <String>cwiczenie</String>
  1934. <String>blog</String>
  1935. </String-array>
  1936. </entry>
  1937. </serializableOrderedMap>
  1938. </field>
  1939. <field name="documentTypePattern">
  1940. <String>*DITA*</String>
  1941. </field>
  1942. <field name="conditionSetName">
  1943. <String>condition set trenujace </String>
  1944. </field>
  1945. <field name="ditavalFile">
  1946. <String></String>
  1947. </field>
  1948. <field name="useDITAVAL">
  1949. <Boolean>false</Boolean>
  1950. </field>
  1951. <field name="shortcut">
  1952. <null/>
  1953. </field>
  1954. </profileConditionsSetInfo>
  1955. <profileConditionsSetInfo>
  1956. <field name="conditions">
  1957. <serializableOrderedMap>
  1958. <entry>
  1959. <String>product</String>
  1960. <String-array>
  1961. <String>odzywianie</String>
  1962. </String-array>
  1963. </entry>
  1964. </serializableOrderedMap>
  1965. </field>
  1966. <field name="documentTypePattern">
  1967. <String>*DITA*</String>
  1968. </field>
  1969. <field name="conditionSetName">
  1970. <String>condition set odzywianie</String>
  1971. </field>
  1972. <field name="ditavalFile">
  1973. <String></String>
  1974. </field>
  1975. <field name="useDITAVAL">
  1976. <Boolean>false</Boolean>
  1977. </field>
  1978. <field name="shortcut">
  1979. <null/>
  1980. </field>
  1981. </profileConditionsSetInfo>
  1982. <profileConditionsSetInfo>
  1983. <field name="conditions">
  1984. <serializableOrderedMap/>
  1985. </field>
  1986. <field name="documentTypePattern">
  1987. <String>*DITA*</String>
  1988. </field>
  1989. <field name="conditionSetName">
  1990. <String>condition set odzywianie dv</String>
  1991. </field>
  1992. <field name="ditavalFile">
  1993. <String>/Users/a.binder/procesy5-dita-templates-druki/binderafit/ksiazka_programy_www/www_binderafit_pl.ditaval</String>
  1994. </field>
  1995. <field name="useDITAVAL">
  1996. <Boolean>true</Boolean>
  1997. </field>
  1998. <field name="shortcut">
  1999. <null/>
  2000. </field>
  2001. </profileConditionsSetInfo>
  2002. </profileConditionsSetInfo-array>
  2003. </entry>
  2004. <entry>
  2005. <String>scenario.associations</String>
  2006. <scenarioAssociation-array>
  2007. <scenarioAssociation>
  2008. <field name="url">
  2009. <String>../../procesy5-dita-templates-druki/6872-bocian-energa-oferta-system-req.git/raport.powiazan/bocian_raport_powi_za.ditamap</String>
  2010. </field>
  2011. <field name="scenarioIds">
  2012. <list>
  2013. <String>DITA Map PDF - based on XSL-FO - Copy</String>
  2014. </list>
  2015. </field>
  2016. <field name="scenarioTypes">
  2017. <list>
  2018. <String>DITAMAP</String>
  2019. </list>
  2020. </field>
  2021. </scenarioAssociation>
  2022. <scenarioAssociation>
  2023. <field name="url">
  2024. <String>../../../../opt/local/pl.procesy5/p5build_SE/temp/WPS_Functions/default_db/CRM_PROCES_tree/relations-136_000006_/BI_audit_ENERGA_RUM_KONTRAHENCI/BI_audit_ENERGA_RUM_KONTRAHENCI.4570____UKR_analiza.dita</String>
  2025. </field>
  2026. <field name="scenarioIds">
  2027. <list>
  2028. <String>DITA Map PDF - based on XSL-FO - Copy</String>
  2029. </list>
  2030. </field>
  2031. <field name="scenarioTypes">
  2032. <list>
  2033. <String>DITAMAP</String>
  2034. </list>
  2035. </field>
  2036. </scenarioAssociation>
  2037. <scenarioAssociation>
  2038. <field name="url">
  2039. <String>../../../../opt/local/pl.procesy5/p5build_SE/temp/WPS_Functions/default_db/CRM_PROCES_tree/relations-136_000006_/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.410252____APT_trasy.dita</String>
  2040. </field>
  2041. <field name="scenarioIds">
  2042. <list>
  2043. <String>DITA Map PDF - based on XSL-FO - Copy</String>
  2044. </list>
  2045. </field>
  2046. <field name="scenarioTypes">
  2047. <list>
  2048. <String>DITAMAP</String>
  2049. </list>
  2050. </field>
  2051. </scenarioAssociation>
  2052. <scenarioAssociation>
  2053. <field name="url">
  2054. <String>../../../../opt/local/pl.procesy5/p5build_SE/temp/WPS_Functions/default_db/CRM_PROCES_tree/relations-136_000006_/graph_to_image/BI_audit_ENERGA_PRACOWNICY_APU4_umowy_APU4-DPW_BI_audit_ENERGA_PRACOWNICY.432.gnuplot.dita</String>
  2055. </field>
  2056. <field name="scenarioIds">
  2057. <list>
  2058. <String>DITA Map PDF - based on XSL-FO - Copy</String>
  2059. </list>
  2060. </field>
  2061. <field name="scenarioTypes">
  2062. <list>
  2063. <String>DITAMAP</String>
  2064. </list>
  2065. </field>
  2066. </scenarioAssociation>
  2067. <scenarioAssociation>
  2068. <field name="url">
  2069. <String>../../../../opt/local/pl.procesy5/p5build_SE/temp/WPS_Functions/default_db/CRM_PROCES_tree/relations-136_000004/relations-136_000004.ditamap</String>
  2070. </field>
  2071. <field name="scenarioIds">
  2072. <list>
  2073. <String>DITA Map PDF - based on XSL-FO - Copy</String>
  2074. </list>
  2075. </field>
  2076. <field name="scenarioTypes">
  2077. <list>
  2078. <String>DITAMAP</String>
  2079. </list>
  2080. </field>
  2081. </scenarioAssociation>
  2082. <scenarioAssociation>
  2083. <field name="url">
  2084. <String>SE/schema/WPS_Functions/render-vis-js-in-electron--v0.0.1/p5.nodeCoords__x3A__tree_to_dita.xsl</String>
  2085. </field>
  2086. <field name="scenarioIds">
  2087. <list>
  2088. <String>p5 babbelki</String>
  2089. </list>
  2090. </field>
  2091. <field name="scenarioTypes">
  2092. <list>
  2093. <String>XML</String>
  2094. </list>
  2095. </field>
  2096. </scenarioAssociation>
  2097. <scenarioAssociation>
  2098. <field name="url">
  2099. <String>../../../../opt/local/pl.procesy5/p5build_SE/temp/WPS_Functions/default_db/CRM_PROCES_tree/BI_audit_BENFORD_24/BI_audit_BENFORD_24.ditamap</String>
  2100. </field>
  2101. <field name="scenarioIds">
  2102. <list>
  2103. <String>DITA Map PDF - based on XSL-FO - Copy</String>
  2104. </list>
  2105. </field>
  2106. <field name="scenarioTypes">
  2107. <list>
  2108. <String>DITAMAP</String>
  2109. </list>
  2110. </field>
  2111. </scenarioAssociation>
  2112. </scenarioAssociation-array>
  2113. </entry>
  2114. <entry>
  2115. <String>scenarios</String>
  2116. <scenario-array>
  2117. <ditaScenario>
  2118. <field name="useXEP">
  2119. <Boolean>false</Boolean>
  2120. </field>
  2121. <field name="useAntennaHouse">
  2122. <Boolean>false</Boolean>
  2123. </field>
  2124. <field name="baseDir">
  2125. <String>${cfd}</String>
  2126. </field>
  2127. <field name="outputDir">
  2128. <String>/Users/a.binder/Downloads/${cfn}/out</String>
  2129. </field>
  2130. <field name="tempDir">
  2131. <String>/Users/a.binder/Downloads/${cfn}/temp</String>
  2132. </field>
  2133. <field name="transtype">
  2134. <String>pdf2</String>
  2135. </field>
  2136. <field name="filters">
  2137. <ditavalFilters>
  2138. <field name="useDitavalFilePath">
  2139. <Boolean>false</Boolean>
  2140. </field>
  2141. <field name="useAppliedConditionSet">
  2142. <Boolean>true</Boolean>
  2143. </field>
  2144. <field name="appliedConditionSet">
  2145. <null/>
  2146. </field>
  2147. <field name="ditavalFilePath">
  2148. <null/>
  2149. </field>
  2150. <field name="simpleFiltersList">
  2151. <list/>
  2152. </field>
  2153. </ditavalFilters>
  2154. </field>
  2155. <field name="addOxygenJars">
  2156. <Boolean>true</Boolean>
  2157. </field>
  2158. <field name="skinCssFile">
  2159. <null/>
  2160. </field>
  2161. <field name="lastCustomSkinCssPath">
  2162. <null/>
  2163. </field>
  2164. <field name="webhelpResponsiveTemplate">
  2165. <null/>
  2166. </field>
  2167. <field name="publishingTemplateDataPO">
  2168. <null/>
  2169. </field>
  2170. <field name="additionalAntArgs">
  2171. <String></String>
  2172. </field>
  2173. <field name="buildTarget">
  2174. <String></String>
  2175. </field>
  2176. <field name="buildFilePath">
  2177. <String></String>
  2178. </field>
  2179. <field name="ditaParams">
  2180. <list>
  2181. <ditaParameter>
  2182. <field name="name">
  2183. <String>dita.dir</String>
  2184. </field>
  2185. <field name="description">
  2186. <null/>
  2187. </field>
  2188. <field name="value">
  2189. <String>/Applications/dita-ot-3.2</String>
  2190. </field>
  2191. <field name="defaultValue">
  2192. <null/>
  2193. </field>
  2194. <field name="type">
  2195. <Integer>3</Integer>
  2196. </field>
  2197. <field name="possibleValues">
  2198. <null/>
  2199. </field>
  2200. <field name="possibleValuesDescriptions">
  2201. <null/>
  2202. </field>
  2203. </ditaParameter>
  2204. <ditaParameter>
  2205. <field name="name">
  2206. <String>xep.failOnError</String>
  2207. </field>
  2208. <field name="description">
  2209. <String>Allowed values:
  2210. "true"</String>
  2211. </field>
  2212. <field name="value">
  2213. <null/>
  2214. </field>
  2215. <field name="defaultValue">
  2216. <null/>
  2217. </field>
  2218. <field name="type">
  2219. <Integer>4</Integer>
  2220. </field>
  2221. <field name="possibleValues">
  2222. <String-array>
  2223. <null/>
  2224. <String>true</String>
  2225. </String-array>
  2226. </field>
  2227. <field name="possibleValuesDescriptions">
  2228. <null/>
  2229. </field>
  2230. </ditaParameter>
  2231. </list>
  2232. </field>
  2233. <field name="jvmArgs">
  2234. <String>-Xmx1384m</String>
  2235. </field>
  2236. <field name="useCustomJavaHome">
  2237. <Boolean>false</Boolean>
  2238. </field>
  2239. <field name="customJavaHomeDir">
  2240. <String></String>
  2241. </field>
  2242. <field name="useCustomANTHome">
  2243. <Boolean>false</Boolean>
  2244. </field>
  2245. <field name="customANTHomeDir">
  2246. <String></String>
  2247. </field>
  2248. <field name="workingDir">
  2249. <null/>
  2250. </field>
  2251. <field name="showConsoleAlways">
  2252. <Boolean>true</Boolean>
  2253. </field>
  2254. <field name="advancedOptionsMap">
  2255. <null/>
  2256. </field>
  2257. <field name="name">
  2258. <String>DITA Map PDF - based on XSL-FO - Copy</String>
  2259. </field>
  2260. <field name="baseURL">
  2261. <null/>
  2262. </field>
  2263. <field name="footerURL">
  2264. <null/>
  2265. </field>
  2266. <field name="fOPMethod">
  2267. <null/>
  2268. </field>
  2269. <field name="fOProcessorName">
  2270. <null/>
  2271. </field>
  2272. <field name="headerURL">
  2273. <null/>
  2274. </field>
  2275. <field name="inputXSLURL">
  2276. <null/>
  2277. </field>
  2278. <field name="inputXMLURL">
  2279. <null/>
  2280. </field>
  2281. <field name="defaultScenario">
  2282. <Boolean>false</Boolean>
  2283. </field>
  2284. <field name="isFOPPerforming">
  2285. <Boolean>false</Boolean>
  2286. </field>
  2287. <field name="type">
  2288. <String>DITAMAP</String>
  2289. </field>
  2290. <field name="saveAs">
  2291. <Boolean>true</Boolean>
  2292. </field>
  2293. <field name="openInBrowser">
  2294. <Boolean>true</Boolean>
  2295. </field>
  2296. <field name="outputFile">
  2297. <null/>
  2298. </field>
  2299. <field name="outputResource">
  2300. <null/>
  2301. </field>
  2302. <field name="openOtherLocationInBrowser">
  2303. <Boolean>false</Boolean>
  2304. </field>
  2305. <field name="locationToOpenInBrowserURL">
  2306. <String></String>
  2307. </field>
  2308. <field name="openInEditor">
  2309. <Boolean>false</Boolean>
  2310. </field>
  2311. <field name="showInHTMLPane">
  2312. <Boolean>false</Boolean>
  2313. </field>
  2314. <field name="showInXMLPane">
  2315. <Boolean>false</Boolean>
  2316. </field>
  2317. <field name="showInSVGPane">
  2318. <Boolean>false</Boolean>
  2319. </field>
  2320. <field name="showInResultSetPane">
  2321. <Boolean>false</Boolean>
  2322. </field>
  2323. <field name="useXSLTInput">
  2324. <Boolean>false</Boolean>
  2325. </field>
  2326. <field name="xsltParams">
  2327. <list/>
  2328. </field>
  2329. <field name="cascadingStylesheets">
  2330. <String-array/>
  2331. </field>
  2332. <field name="xslTransformer">
  2333. <String>DITA-OT</String>
  2334. </field>
  2335. <field name="extensionURLs">
  2336. <String-array/>
  2337. </field>
  2338. </ditaScenario>
  2339. <scenario>
  2340. <field name="advancedOptionsMap">
  2341. <serializableOrderedMap>
  2342. <entry>
  2343. <String>Saxon-PE</String>
  2344. <xsltSaxonBAdvancedOptions>
  2345. <field name="allowCallsOnExtensionFunctions">
  2346. <Boolean>true</Boolean>
  2347. </field>
  2348. <field name="registerSaxonCEExtensions">
  2349. <Boolean>true</Boolean>
  2350. </field>
  2351. <field name="enableAssertions">
  2352. <Boolean>false</Boolean>
  2353. </field>
  2354. <field name="showVersionWarnings">
  2355. <Boolean>false</Boolean>
  2356. </field>
  2357. <field name="dtdSourceValidation">
  2358. <Boolean>false</Boolean>
  2359. </field>
  2360. <field name="dtdSourceValidationRecover">
  2361. <Boolean>false</Boolean>
  2362. </field>
  2363. <field name="lineNumbering">
  2364. <Boolean>false</Boolean>
  2365. </field>
  2366. <field name="initialMode">
  2367. <String>{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/render-vis-js-in-electron--v0.0.1/p5RvJiE.xsd}system_cache__dita.preprocess.root</String>
  2368. </field>
  2369. <field name="initialTemplate">
  2370. <null/>
  2371. </field>
  2372. <field name="traceXPathExpression">
  2373. <Boolean>true</Boolean>
  2374. </field>
  2375. <field name="expandAttributeDefaults">
  2376. <Boolean>true</Boolean>
  2377. </field>
  2378. <field name="errorRecoverPolicy">
  2379. <String>saxon.recover.with.warning</String>
  2380. </field>
  2381. <field name="stripWS">
  2382. <String>saxon.strip.ws.none</String>
  2383. </field>
  2384. <field name="optimizationEnabled">
  2385. <Boolean>true</Boolean>
  2386. </field>
  2387. <field name="useConfigFile">
  2388. <Boolean>false</Boolean>
  2389. </field>
  2390. <field name="configSystemID">
  2391. <null/>
  2392. </field>
  2393. <field name="initializer">
  2394. <String></String>
  2395. </field>
  2396. </xsltSaxonBAdvancedOptions>
  2397. </entry>
  2398. </serializableOrderedMap>
  2399. </field>
  2400. <field name="name">
  2401. <String>p5 babbelki</String>
  2402. </field>
  2403. <field name="baseURL">
  2404. <String></String>
  2405. </field>
  2406. <field name="footerURL">
  2407. <String></String>
  2408. </field>
  2409. <field name="fOPMethod">
  2410. <String>pdf</String>
  2411. </field>
  2412. <field name="fOProcessorName">
  2413. <String>Apache FOP</String>
  2414. </field>
  2415. <field name="headerURL">
  2416. <String></String>
  2417. </field>
  2418. <field name="inputXSLURL">
  2419. <String>${pdu}/SE/schema/WPS_Functions/render-vis-js-in-electron--v0.0.1/p5.nodeCoords__x3A__tree_to_dita.xsl</String>
  2420. </field>
  2421. <field name="inputXMLURL">
  2422. <String>${pdu}/SE/schema/WPS_Functions/render-vis-js-in-electron--v0.0.1/install/examples/input.row.xml</String>
  2423. </field>
  2424. <field name="defaultScenario">
  2425. <Boolean>false</Boolean>
  2426. </field>
  2427. <field name="isFOPPerforming">
  2428. <Boolean>false</Boolean>
  2429. </field>
  2430. <field name="type">
  2431. <String>XML</String>
  2432. </field>
  2433. <field name="saveAs">
  2434. <Boolean>true</Boolean>
  2435. </field>
  2436. <field name="openInBrowser">
  2437. <Boolean>false</Boolean>
  2438. </field>
  2439. <field name="outputFile">
  2440. <null/>
  2441. </field>
  2442. <field name="outputResource">
  2443. <null/>
  2444. </field>
  2445. <field name="openOtherLocationInBrowser">
  2446. <Boolean>false</Boolean>
  2447. </field>
  2448. <field name="locationToOpenInBrowserURL">
  2449. <null/>
  2450. </field>
  2451. <field name="openInEditor">
  2452. <Boolean>false</Boolean>
  2453. </field>
  2454. <field name="showInHTMLPane">
  2455. <Boolean>false</Boolean>
  2456. </field>
  2457. <field name="showInXMLPane">
  2458. <Boolean>true</Boolean>
  2459. </field>
  2460. <field name="showInSVGPane">
  2461. <Boolean>false</Boolean>
  2462. </field>
  2463. <field name="showInResultSetPane">
  2464. <Boolean>false</Boolean>
  2465. </field>
  2466. <field name="useXSLTInput">
  2467. <Boolean>true</Boolean>
  2468. </field>
  2469. <field name="xsltParams">
  2470. <list/>
  2471. </field>
  2472. <field name="cascadingStylesheets">
  2473. <String-array/>
  2474. </field>
  2475. <field name="xslTransformer">
  2476. <String>Saxon-PE</String>
  2477. </field>
  2478. <field name="extensionURLs">
  2479. <String-array/>
  2480. </field>
  2481. </scenario>
  2482. </scenario-array>
  2483. </entry>
  2484. <entry>
  2485. <String>validation.scenarios</String>
  2486. <validationScenario-array>
  2487. <validationScenario>
  2488. <field name="pairs">
  2489. <list>
  2490. <validationUnit>
  2491. <field name="validationType">
  2492. <validationUnitType>
  2493. <field name="validationInputType">
  2494. <String>text/xml</String>
  2495. </field>
  2496. </validationUnitType>
  2497. </field>
  2498. <field name="url">
  2499. <String>${currentFileURL}</String>
  2500. </field>
  2501. <field name="validationEngine">
  2502. <validationEngine>
  2503. <field name="engineType">
  2504. <String>&lt;Default engine></String>
  2505. </field>
  2506. <field name="allowsAutomaticValidation">
  2507. <Boolean>true</Boolean>
  2508. </field>
  2509. </validationEngine>
  2510. </field>
  2511. <field name="allowAutomaticValidation">
  2512. <Boolean>true</Boolean>
  2513. </field>
  2514. <field name="extensions">
  2515. <null/>
  2516. </field>
  2517. <field name="validationSchema">
  2518. <validationUnitSchema>
  2519. <field name="dtdSchemaPublicID">
  2520. <null/>
  2521. </field>
  2522. <field name="schematronPhase">
  2523. <null/>
  2524. </field>
  2525. <field name="type">
  2526. <Integer>2</Integer>
  2527. </field>
  2528. <field name="uri">
  2529. <String>file:/Users/a.binder/Documents/se/SE/schema/WPS_Functions/graph_gnuplot/p5gnuplot.xsd</String>
  2530. </field>
  2531. </validationUnitSchema>
  2532. </field>
  2533. </validationUnit>
  2534. </list>
  2535. </field>
  2536. <field name="type">
  2537. <String>Validation_scenario</String>
  2538. </field>
  2539. <field name="name">
  2540. <String>BI_audit_BENFORD_24BI_audit_BENFORD debug table</String>
  2541. </field>
  2542. </validationScenario>
  2543. </validationScenario-array>
  2544. </entry>
  2545. </serializableOrderedMap>
  2546. </serialized>
  2547. </options>
  2548. </meta>
  2549. <projectTree name="se.oxygen.xpr">
  2550. <folder masterFiles="true" name="Master Files">
  2551. <file name="SE/schema/default_db_xml_cache.public/ADMIN_USERS__documents.xsl"/>
  2552. <file name="SE/schema/default_db_xml_cache.public/ADMIN_USERS__wyposazenie.xsl"/>
  2553. <file name="SE/schema/default_db_xml_cache.public/default_db/bocian-graph-to-html/bcgtht.tree_to_dita.import.xsl"/>
  2554. <file name="SE/schema/WPS_Functions/bocian-graph-to-html/bcgtht.tree_to_dita.test.xsl"/>
  2555. <file name="SE/schema/WPS_Functions/bocian-graph-to-html/bcgtht.tree_to_dita.working.xsl"/>
  2556. <file name="SE/schema/default_db_xml_cache.public/default_db/Benford.xsl"/>
  2557. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_and_BI_audit_ENERGA_RUM_UMOWY_errors/BI_audit_ENERGA_RUM_KONTRAHENCI_and_BI_audit_ENERGA_RUM_UMOWY_errors_tree_to_dita.xsl"/>
  2558. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA.dita.xsd"/>
  2559. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA.universal.xsl"/>
  2560. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_ENERGA_RUM_UMOWY.xsl"/>
  2561. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_person.xsl"/>
  2562. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.xsl"/>
  2563. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_LISTA.ends.desc.table.xsl"/>
  2564. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_LISTA.xsl"/>
  2565. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_statystyka_pracownik.xsl"/>
  2566. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_tree_to_dita.func.xsl"/>
  2567. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_tree_to_dita.sources.xsl"/>
  2568. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_tree_to_dita.stats_all.xsl"/>
  2569. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_tree_to_dita.xsl"/>
  2570. <file name="SE/schema/default_db_xml_cache.public/default_db/big_values_format.xsl"/>
  2571. <file name="SE/schema/ant-url_action/default_db.bi_audit_energa_rum_kontrahenci_powiazania/CRM_PROCES_tree/build_CRM_PROCES_tree.postproces.xsl"/>
  2572. <file name="SE/schema/ant-url_action/default_db.in7_dziennik_koresp/CRM_PROCES_tree/build_CRM_PROCES_tree.postproces.xsl"/>
  2573. <file name="SE/schema/WPS_Functions/default_db/CRM_PROCES_tree/build_CRM_PROCES_tree.postproces.xsl"/>
  2574. <file name="SE/schema/default_db_xml_cache.public/build_object_install_se_ant_object.xsl"/>
  2575. <file name="SE/schema/WPS_Functions/object_install_se_ant_object/build_object_install_se_ant_object.xsl"/>
  2576. <file name="SE/schema/WPS_Functions/object_modeling_new/build_object_modeling_new.child.xsl"/>
  2577. <file name="SE/schema/default_db_xml_cache.public/build_qgis_make_user_style.xsl"/>
  2578. <file name="SE/schema/WPS_Functions/default_db/qgis_make_user_style/build_qgis_make_user_style.xsl"/>
  2579. <file name="SE/schema/default_db_xml_cache.public/build_recurse_ant.xsl"/>
  2580. <file name="SE/schema/default_db_xml_cache.public/build_recurse_ant_cache_control.xsl"/>
  2581. <file name="SE/schema/default_db_xml_cache.public/build_recurse_ant_merge_dita_from_temp.xsl"/>
  2582. <file name="SE/schema/default_db_xml_cache.public/build_recurse_ant_old.xsl"/>
  2583. <file name="SE/schema/default_db_xml_cache.public/build_recurse_ant_xsl_xpath_filter.xsl"/>
  2584. <file name="SE/schema/WPS_Functions/build_WPS_Functions.xsl"/>
  2585. <file name="SE/schema/default_db_xml_cache.public/builds_to_ant.xsl"/>
  2586. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/clean-map.xsl"/>
  2587. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/conref.xsl"/>
  2588. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/conref_template.xsl"/>
  2589. <file name="SE/schema/WPS_Functions/dita-to-ant/d2a.ditamap.write.xsl"/>
  2590. <file name="SE/schema/WPS_Functions/dita-to-ant/d2a.ditamap.xsl"/>
  2591. <file name="SE/schema/default_db_xml_cache.public/default_db/dateTime.xsl"/>
  2592. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.body.xsl"/>
  2593. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.deal_analys.xsl"/>
  2594. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.fields.xsl"/>
  2595. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.info.xsl"/>
  2596. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.overwiev_table.xsl"/>
  2597. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.podglad_analizy_liczb.records.xsl"/>
  2598. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.podglad_analizy_liczb.xsl"/>
  2599. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.xsl"/>
  2600. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_BENFORD/default_db__x3A__BI_audit_BENFORD.BI_audit_operational_raport_note.xsl"/>
  2601. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.docbook/xsl/dita2docbook_template.xsl"/>
  2602. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsecontent/xsl/dita2dynamicdita.xsl"/>
  2603. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsecontent/xsl/dita2dynamicdita_template.xsl"/>
  2604. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/dita2html-base_template.xsl"/>
  2605. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/dita2html.xsl"/>
  2606. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.html5/xsl/dita2html5.xsl"/>
  2607. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.html5/xsl/dita2html5_template.xsl"/>
  2608. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.html5/xsl/xslhtml/dita2html5Impl.xsl"/>
  2609. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.odt/xsl/dita2odt.xsl"/>
  2610. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.odt/xsl/dita2odt_template.xsl"/>
  2611. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.wordrtf/xsl/dita2rtf.xsl"/>
  2612. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.wordrtf/xsl/dita2rtf_template.xsl"/>
  2613. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.troff/xsl/dita2troff-ast-shell.xsl"/>
  2614. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.troff/xsl/dita2troff-ast-shell_template.xsl"/>
  2615. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.troff/xsl/dita2troff-step2-shell.xsl"/>
  2616. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.troff/xsl/dita2troff-step2-shell_template.xsl"/>
  2617. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/dita2xhtml.xsl"/>
  2618. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsehelp/xsl/dita2xhtml_eclipsehelp.xsl"/>
  2619. <file name="SE/schema/WPS_Functions/documentation_generator/documentation_generator.xsl"/>
  2620. <file name="SE/schema/default_db_xml_cache.public/default_db/enter_to_ph.xsl"/>
  2621. <file name="SE/schema/default_db_xml_cache.public/default_db/extract_text.xsl"/>
  2622. <file name="SE/schema/WPS_Functions/fix_se_defaultdb_schema/fix_se_defaultdb_schema.from_schema.xsl"/>
  2623. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/flag.xsl"/>
  2624. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/flag_template.xsl"/>
  2625. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/fo/flagging-preprocess.xsl"/>
  2626. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/fo/flagging-preprocess_template.xsl"/>
  2627. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/com.sophos.tocjs/xsl/frameset.xsl"/>
  2628. <file name="SE/schema/default_db_xml_cache.public/get_wfs_recurse_xsl.xsl"/>
  2629. <file name="SE/schema/WPS_Functions/get_wfs_recurse_xsl/get_wfs_recurse_xsl.xsl"/>
  2630. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplot.simpletable__x3A__from_rows.xsl"/>
  2631. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplot.simpletable__x3A__from_rows__x3A__analyze.xsl"/>
  2632. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplot.xsl"/>
  2633. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics.header.xsl"/>
  2634. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics.xsl"/>
  2635. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics__x3A__dat.xsl"/>
  2636. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics__x3A__detect.xsl"/>
  2637. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics__x3A__fix.xsl"/>
  2638. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics__x3A__plot.xsl"/>
  2639. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics__x3A__set.xsl"/>
  2640. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__ytics.color.xsl"/>
  2641. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__ytics.xaxis.xsl"/>
  2642. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__ytics.xsl"/>
  2643. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__ytics.yaxis.xsl"/>
  2644. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat__x3A__init.xsl"/>
  2645. <file name="SE/schema/WPS_Functions/graph_tree_TODO_PROJ6806/graph_tree_yed.xsl"/>
  2646. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/fo/i18n-postprocess.xsl"/>
  2647. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/fo/i18n-postprocess_template.xsl"/>
  2648. <file name="SE/schema/default_db_xml_cache.public/default_db/Linear_regression/Linear_regression.xsl"/>
  2649. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.docbook/xsl/map2docbook.xsl"/>
  2650. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsehelp/xsl/map2eclipse.xsl"/>
  2651. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsehelp/xsl/map2eclipse_template.xsl"/>
  2652. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.htmlhelp/xsl/map2hhc.xsl"/>
  2653. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.htmlhelp/xsl/map2hhc_template.xsl"/>
  2654. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.htmlhelp/xsl/map2hhp.xsl"/>
  2655. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.htmlhelp/xsl/map2hhp_template.xsl"/>
  2656. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/map2html-cover.xsl"/>
  2657. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/map2html-coverImpl.xsl"/>
  2658. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/map2html-coverImpl_template.xsl"/>
  2659. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.html5/xsl/map2html5-cover.xsl"/>
  2660. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.html5/xsl/map2html5-cover_template.xsl"/>
  2661. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.html5/xsl/map2html5toc.xsl"/>
  2662. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.html5/xsl/map2html5toc_template.xsl"/>
  2663. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/map2htmltoc_template.xsl"/>
  2664. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.javahelp/xsl/map2javahelpmap.xsl"/>
  2665. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.javahelp/xsl/map2javahelptoc.xsl"/>
  2666. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsecontent/xsl/map2plugin-cp.xsl"/>
  2667. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsehelp/xsl/map2plugin.xsl"/>
  2668. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.eclipsehelp/xsl/map2plugin_template.xsl"/>
  2669. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/xslhtml/map2TOC.xsl"/>
  2670. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/map2xhtml-cover.xsl"/>
  2671. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.xhtml/xsl/map2xhtmltoc.xsl"/>
  2672. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/maplink.xsl"/>
  2673. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/maplink_template.xsl"/>
  2674. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/mappull.xsl"/>
  2675. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/mappull_template.xsl"/>
  2676. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/mapref.xsl"/>
  2677. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/mapref_template.xsl"/>
  2678. <file name="SE/schema/WPS_Functions/exslt/math/math.xsl"/>
  2679. <file name="SE/schema/WPS_Functions/object_modeling_build_infrastructure/object_modeling_build_infrastructure.xsl"/>
  2680. <file name="SE/schema/default_db_xml_cache.public/object_modeling_new_by_xml_schema.xsl"/>
  2681. <file name="SE/schema/WPS_Functions/ant_interface/p5ant-interface.import.xsl"/>
  2682. <file name="SE/schema/WPS_Functions/ant_interface/p5ant-interface.Macrodef.xsl"/>
  2683. <file name="SE/schema/WPS_Functions/ant_interface/p5ant-interface.xsl"/>
  2684. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.debug.xsl"/>
  2685. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.dita-ot.test-build-pdf.xsl"/>
  2686. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.say.xsl"/>
  2687. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.signature.fix.xsl"/>
  2688. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.wordindex.merged.ditafiles.topic.xsl"/>
  2689. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.wordindex.strings.merge.xsl"/>
  2690. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.wordindex.strings.xsl"/>
  2691. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.wordindex.xsl"/>
  2692. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.ditafiles.xsl"/>
  2693. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.entities-generated.xsl"/>
  2694. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.entities.submodel.xsl"/>
  2695. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.generated.xsl"/>
  2696. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.map.budzet_rola.xsl"/>
  2697. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.map.entities.xsl"/>
  2698. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.map.wymagania.xsl"/>
  2699. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.map.xsl"/>
  2700. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.messaging.xsl"/>
  2701. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.Wykaz_Wymagania_Etapy_Budzet.dita.xsl"/>
  2702. <file name="SE/schema/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsl"/>
  2703. <file name="SE/schema/WPS_Functions/flat_relation_cache/p5frc.xsl"/>
  2704. <file name="SE/schema/WPS_Functions/system_ui_info_speech/p5suis.DIAGNOSE.xsl"/>
  2705. <file name="SE/schema/WPS_Functions/upgrade_procesy5_bocian/p5up5b.xsl"/>
  2706. <file name="SE/schema/ant-tool/DownloadProcesToDita/parse_dita_templ.xsl"/>
  2707. <file name="SE/schema/default_db_xml_cache.public/PROCES_INCLUDE.xsl"/>
  2708. <file name="SE/schema/default_db_xml_cache.public/PROCESY5_TO_BPMN_one_file.xsl"/>
  2709. <file name="SE/schema/WPS_Functions/stock_optimize_calculations_raszczyk/stock_optimize_calculations_raszczyk.xsl"/>
  2710. <file name="SE/schema/WPS_Functions/system_ui_info_speech/system_ui_info_speech.xsl"/>
  2711. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/com.sophos.tocjs/xsl/tocjs.xsl"/>
  2712. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/fo/topic2fo_shell.xsl"/>
  2713. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2.axf/xsl/fo/topic2fo_shell_axf.xsl"/>
  2714. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2.axf/xsl/fo/topic2fo_shell_axf_template.xsl"/>
  2715. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2.fop/xsl/fo/topic2fo_shell_fop.xsl"/>
  2716. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2.fop/xsl/fo/topic2fo_shell_fop_template.xsl"/>
  2717. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/fo/topic2fo_shell_template.xsl"/>
  2718. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2.xep/xsl/fo/topic2fo_shell_xep.xsl"/>
  2719. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2.xep/xsl/fo/topic2fo_shell_xep_template.xsl"/>
  2720. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/common/topicmerge.xsl"/>
  2721. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.wordrtf/xsl/topicmerge.xsl"/>
  2722. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/plugins/org.dita.pdf2/xsl/common/topicmerge_template.xsl"/>
  2723. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/topicpull.xsl"/>
  2724. <file name="SE/schema/WPS_Functions/dita-ot/dita-ot-2.3.3/xsl/preprocess/topicpull_template.xsl"/>
  2725. <file name="SE/schema/ant-object/default_db.TEST_PERMS/TestPermsAnt/Triggers/After/INPUT/Transaction.xsl"/>
  2726. <file name="SE/schema/ant-object/default_db.TEST_PERMS/TestPermsAnt/Triggers/Before/INPUT/Transaction.xsl"/>
  2727. <file name="SE/schema/default_db_xml_cache.public/default_db/tree_to_dita.element.xsl"/>
  2728. <file name="SE/schema/default_db_xml_cache.public/default_db/tree_to_dita.files.xsl"/>
  2729. <file name="SE/schema/default_db_xml_cache.public/default_db/tree_to_dita.localname.translate.xsl"/>
  2730. <file name="SE/schema/default_db_xml_cache.public/default_db/tree_to_dita.xsl"/>
  2731. <file name="SE/schema/default_db_xml_cache.public/default_db/system_cache__dita__x3A__to_merge/tree_to_dita__x3A__audience.xsl"/>
  2732. <file name="SE/schema/default_db_xml_cache.public/default_db/system_cache__dita__x3A__to_merge/tree_to_dita__x3A__indexterm.xsl"/>
  2733. <file name="SE/schema/default_db_xml_cache.public/default_db/system_cache__dita.map.title__x3A__to_merge/tree_to_dita__x3A__map.title.default_db__x3A__BI_audit_BENFORD.BI_audit_BENFORD.xsl"/>
  2734. <file name="SE/schema/default_db_xml_cache.public/default_db/system_cache__dita.map.title__x3A__to_merge/tree_to_dita__x3A__map.title.xsl"/>
  2735. <file name="SE/schema/default_db_xml_cache.public/default_db/system_cache__dita__x3A__to_merge/tree_to_dita__x3A__parts.xsl"/>
  2736. <file name="SE/schema/default_db_xml_cache.public/default_db/system_cache__dita__x3A__to_merge/tree_to_dita__x3A__parts__x3A__map.title.xsl"/>
  2737. <file name="SE/schema/default_db_xml_cache.public/default_db/tree_to_dita__x3A__to_merge.xsl"/>
  2738. <file name="SE/schema/default_db_xml_cache.public/web_ui.xsl"/>
  2739. <file name="SE/schema/default_db_xml_cache.public/default_db/www.opengis.net.wfs.xsl"/>
  2740. <file name="SE/schema/default_db_xml_cache.public/xinclude_p5_recurse/xinclude_p5_recurse.xsl"/>
  2741. <file name="SE/schema/WPS_Functions/xinclude_p5_recurse/xp5r.testing.xsl"/>
  2742. <file name="SE/schema/default_db_xml_cache.public/default_db/xsd_to_dita.xsl"/>
  2743. </folder>
  2744. <folder name="ditamaps">
  2745. <file name="../../procesy5-dita-templates-druki/__REVISION__/__REV__.ditamap"/>
  2746. <file name="../../procesy5-dita-templates-druki/__ROOT___RES_ONLY__.ditamap"/>
  2747. <file name="../../procesy5-dita-templates-druki/__ROOT_DITAMAP__SPECS__/__ROOT_DITAMAP__SPECS__.ditamap"/>
  2748. </folder>
  2749. <folder name="schema-featured-wps">
  2750. <file name="SE/schema/default_db_xml_cache.public/default_db/tree_to_dita.xsl"/>
  2751. </folder>
  2752. <folder name="xmschema">
  2753. <folder path="../../procesy5-dita-templates-druki/xmlschema_procesy5/src-xmlschema/public_html/"/>
  2754. <file name="SE/schema/default_db_xml_cache.public/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_tree_to_dita.xsl"/>
  2755. </folder>
  2756. <folder path="../../../../Applications/"/>
  2757. <folder path="../../../../opt/local/pl.procesy5/p5build_SE/temp/"/>
  2758. <folder path="../dita-ot-css-pdf/"/>
  2759. <folder path="."/>
  2760. <folder path="SE/schema/ant-object/default_db.BI_audit_KW_requested_person/"/>
  2761. <folder path="../../procesy5-dita-templates-druki/"/>
  2762. <folder path="../../procesy5-dita-templates-druki/6927.Projekt_Badawczo_Roz_Procesy5_Stratego/sebastianbinder/raszczyk2.0/custom_template_webhelp/SebaRaszczyk/"/>
  2763. <folder path="../../procesy5-dita-templates-druki/xmlschema_procesy5/src-xmlschema/public_html/"/>
  2764. <file name="SE/schema/default_db_xml_cache.public/default_db/graph_gnuplot/graph_gnuplotdat.row__x3A__from__xtics.xsl"/>
  2765. </projectTree>
  2766. </project>