|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> |
3 | 3 | <beans> |
4 | | - <bean id="wiki.topicDAO" class="fr.paris.lutece.plugins.wiki.business.TopicDAO" /> |
5 | | - <bean id="wiki.topicVersionDAO" class="fr.paris.lutece.plugins.wiki.business.TopicVersionDAO" /> |
6 | | - <bean id="wiki.imageDAO" class="fr.paris.lutece.plugins.wiki.business.ImageDAO" /> |
7 | | - |
8 | | - |
9 | | - <!-- Search Engine --> |
10 | | - <bean id="wiki.wikiSearchEngine" class="fr.paris.lutece.plugins.wiki.search.WikiSearchEngine" /> |
11 | | - |
| 4 | + <bean id="wiki.topicDAO" class="fr.paris.lutece.plugins.wiki.business.TopicDAO" /> |
| 5 | + <bean id="wiki.topicVersionDAO" class="fr.paris.lutece.plugins.wiki.business.TopicVersionDAO" /> |
| 6 | + <bean id="wiki.imageDAO" class="fr.paris.lutece.plugins.wiki.business.ImageDAO" /> |
12 | 7 |
|
13 | | - <!-- Extend resource service --> |
14 | | - <bean id="wiki.extendableResourceService" class="fr.paris.lutece.plugins.wiki.service.WikiExtendableResourceService" /> |
15 | | - |
16 | | - <!-- Parser Options --> |
17 | | - <bean id="wiki.parser.options" class="fr.paris.lutece.plugins.wiki.service.parser.ParserOptions" > |
18 | | - <property name="tableClass"> |
19 | | - <value>table table-condensed table-striped table-bordered</value> |
20 | | - </property> |
21 | | - <property name="imageClass"> |
22 | | - <value>img-responsive</value> |
23 | | - </property> |
24 | | - <property name="sizedImageClass"> |
25 | | - <value></value> |
26 | | - </property> |
27 | | - <property name="tocClass"> |
28 | | - <value>well</value> |
29 | | - </property> |
30 | | - </bean> |
31 | | - |
32 | | - <!-- Macros --> |
33 | | - <bean id="wiki.macroDefault" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
34 | | - <property name="name"> |
35 | | - <value>code</value> |
36 | | - </property> |
37 | | - <property name="before"> |
38 | | - <value><pre class="prettyprint"></value> |
39 | | - </property> |
40 | | - <property name="after"> |
41 | | - <value></pre></value> |
42 | | - </property> |
43 | | - </bean> |
44 | | - <bean id="wiki.macroInfoBox" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
45 | | - <property name="name"> |
46 | | - <value>info</value> |
47 | | - </property> |
48 | | - <property name="before"> |
49 | | - <value><div class="alert alert-info"><span class="glyphicon glyphicon-info-sign" ></span> </value> |
50 | | - </property> |
51 | | - <property name="after"> |
52 | | - <value></div></value> |
53 | | - </property> |
54 | | - </bean> |
55 | | - <bean id="wiki.macroWarningBox" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
56 | | - <property name="name"> |
57 | | - <value>warning</value> |
58 | | - </property> |
59 | | - <property name="before"> |
60 | | - <value><div class="alert alert-danger"><span class="glyphicon glyphicon-warning-sign" ></span> </value> |
61 | | - </property> |
62 | | - <property name="after"> |
63 | | - <value></div></value> |
64 | | - </property> |
65 | | - </bean> |
66 | | - <bean id="wiki.macroBadge" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
67 | | - <property name="name"> |
68 | | - <value>badge</value> |
69 | | - </property> |
70 | | - <property name="before"> |
71 | | - <value><span class="badge" ></value> |
72 | | - </property> |
73 | | - <property name="after"> |
74 | | - <value></span></value> |
75 | | - </property> |
76 | | - </bean> |
77 | | - <bean id="wiki.macroIcon" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
78 | | - <property name="name"> |
79 | | - <value>icon</value> |
80 | | - </property> |
81 | | - <property name="before"> |
82 | | - <value><span class="fa fa-</value> |
83 | | - </property> |
84 | | - <property name="after"> |
85 | | - <value>" ></span></value> |
86 | | - </property> |
87 | | - </bean> |
88 | | - <bean id="wiki.macroLabel" class="fr.paris.lutece.plugins.wiki.service.parser.TextFormatMacro"> |
89 | | - <property name="name"> |
90 | | - <value>label</value> |
91 | | - </property> |
92 | | - <property name="format"> |
93 | | - <value><span class="label label-{0}">{1}</span></value> |
94 | | - </property> |
95 | | - </bean> |
96 | | - <bean id="wiki.macroJumbotron" class="fr.paris.lutece.plugins.wiki.service.parser.TextFormatMacro"> |
97 | | - <property name="name"> |
98 | | - <value>jumbotron</value> |
99 | | - </property> |
100 | | - <property name="format"> |
101 | | - <value><div class="jumbotron" ><h1>{0} <small>{1}</small></h1><p>{2}</p></div></value> |
102 | | - </property> |
103 | | - </bean> |
104 | | - |
105 | | - <!-- Site properties group --> |
106 | | - <bean id="wiki.siteProperties" class="fr.paris.lutece.plugins.wiki.service.WikiSitePropertiesGroup" /> |
| 8 | + |
| 9 | + <!-- Search Engine --> |
| 10 | + <bean id="wiki.wikiSearchEngine" class="fr.paris.lutece.plugins.wiki.search.WikiSearchEngine" /> |
| 11 | + |
| 12 | + |
| 13 | + <!-- Extend resource service --> |
| 14 | + <bean id="wiki.extendableResourceService" class="fr.paris.lutece.plugins.wiki.service.WikiExtendableResourceService" /> |
| 15 | + |
| 16 | + <!-- Parser Options --> |
| 17 | + <bean id="wiki.parser.options" class="fr.paris.lutece.plugins.wiki.service.parser.ParserOptions" > |
| 18 | + <property name="tableClass"> |
| 19 | + <value>table table-condensed table-striped table-bordered</value> |
| 20 | + </property> |
| 21 | + <property name="imageClass"> |
| 22 | + <value>img-responsive</value> |
| 23 | + </property> |
| 24 | + <property name="sizedImageClass"> |
| 25 | + <value></value> |
| 26 | + </property> |
| 27 | + <property name="tocClass"> |
| 28 | + <value>well</value> |
| 29 | + </property> |
| 30 | + </bean> |
| 31 | + |
| 32 | + <!-- Macros --> |
| 33 | + <bean id="wiki.macroDefault" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
| 34 | + <property name="name"> |
| 35 | + <value>code</value> |
| 36 | + </property> |
| 37 | + <property name="before"> |
| 38 | + <value><pre class="prettyprint"></value> |
| 39 | + </property> |
| 40 | + <property name="after"> |
| 41 | + <value></pre></value> |
| 42 | + </property> |
| 43 | + </bean> |
| 44 | + <bean id="wiki.macroInfoBox" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
| 45 | + <property name="name"> |
| 46 | + <value>info</value> |
| 47 | + </property> |
| 48 | + <property name="before"> |
| 49 | + <value><div class="alert alert-info"><span class="glyphicon glyphicon-info-sign" ></span> </value> |
| 50 | + </property> |
| 51 | + <property name="after"> |
| 52 | + <value></div></value> |
| 53 | + </property> |
| 54 | + </bean> |
| 55 | + <bean id="wiki.macroWarningBox" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
| 56 | + <property name="name"> |
| 57 | + <value>warning</value> |
| 58 | + </property> |
| 59 | + <property name="before"> |
| 60 | + <value><div class="alert alert-danger"><span class="glyphicon glyphicon-warning-sign" ></span> </value> |
| 61 | + </property> |
| 62 | + <property name="after"> |
| 63 | + <value></div></value> |
| 64 | + </property> |
| 65 | + </bean> |
| 66 | + <bean id="wiki.macroBadge" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
| 67 | + <property name="name"> |
| 68 | + <value>badge</value> |
| 69 | + </property> |
| 70 | + <property name="before"> |
| 71 | + <value><span class="badge" ></value> |
| 72 | + </property> |
| 73 | + <property name="after"> |
| 74 | + <value></span></value> |
| 75 | + </property> |
| 76 | + </bean> |
| 77 | + <bean id="wiki.macroIcon" class="fr.paris.lutece.plugins.wiki.service.parser.TextWrapperMacro"> |
| 78 | + <property name="name"> |
| 79 | + <value>icon</value> |
| 80 | + </property> |
| 81 | + <property name="before"> |
| 82 | + <value><span class="fa fa-</value> |
| 83 | + </property> |
| 84 | + <property name="after"> |
| 85 | + <value>" ></span></value> |
| 86 | + </property> |
| 87 | + </bean> |
| 88 | + <bean id="wiki.macroLabel" class="fr.paris.lutece.plugins.wiki.service.parser.TextFormatMacro"> |
| 89 | + <property name="name"> |
| 90 | + <value>label</value> |
| 91 | + </property> |
| 92 | + <property name="format"> |
| 93 | + <value><span class="label label-{0}">{1}</span></value> |
| 94 | + </property> |
| 95 | + </bean> |
| 96 | + <bean id="wiki.macroJumbotron" class="fr.paris.lutece.plugins.wiki.service.parser.TextFormatMacro"> |
| 97 | + <property name="name"> |
| 98 | + <value>jumbotron</value> |
| 99 | + </property> |
| 100 | + <property name="format"> |
| 101 | + <value><div class="jumbotron" ><h1>{0} <small>{1}</small></h1><p>{2}</p></div></value> |
| 102 | + </property> |
| 103 | + </bean> |
| 104 | + |
| 105 | + <!-- Site properties group --> |
| 106 | + <bean id="wiki.siteProperties" class="fr.paris.lutece.plugins.wiki.service.WikiSitePropertiesGroup" /> |
107 | 107 | </beans> |
0 commit comments