Wiki source code of Applications
Version 11.1 by Guillaume Lerouge on 2009/10/14
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
7.1 | 1 | = Applications = |
![]() |
1.1 | 2 | |
![]() |
7.1 | 3 | As you've learned from the [[Programming feature>>Features.Programming]] it's possible to put code inside XWiki pages. You can combine several pages together to form an application. In other words an application is simply a self-contained set of XWiki pages. You can export these pages into a single archive file named a XAR (it stands for XWiki Archive) which can then be imported again into other wikis. This is a very nice way to create reusable applications. |
![]() |
1.1 | 4 | |
![]() |
5.1 | 5 | Applications offer a powerful way to create advanced content within wiki pages. |
![]() |
1.2 | 6 | |
![]() |
7.1 | 7 | //Screenshot of the Calendar Application// |
![]() |
1.8 | 8 | |
![]() |
7.1 | 9 | image:Calendar.png |
![]() |
1.7 | 10 | |
![]() |
7.1 | 11 | === List of Applications available for download on XWiki.org === |
![]() |
1.4 | 12 | |
![]() |
7.1 | 13 | This is a list of packaged applications you can import in your wiki, coming straight from the [[Code Zone>>code:Applications.WebHome]]. To learn more about the Import/Export process please check the [[Admin Guide's Import/Export page>>AdminGuide.ImportExport]]. |
![]() |
1.4 | 14 | |
![]() |
9.1 | 15 | {{velocity}} |
![]() |
5.1 | 16 | #set ($dummy = $context.setDatabase("code")) |
![]() |
6.1 | 17 | #set ($sql = ", BaseObject as obj where obj.name=doc.fullName and obj.className='XWiki.ApplicationClass' and obj.name<>'XWiki.ApplicationClassTemplate' order by doc.name") |
![]() |
1.4 | 18 | #set ($applications = $xwiki.searchDocuments($sql)) |
19 | #foreach ($item in $applications) | ||
![]() |
11.1 | 20 | * [[code:$item]] |
![]() |
1.4 | 21 | #end |
![]() |
5.1 | 22 | #set ($dummy = $context.setDatabase("platform")) |
![]() |
7.1 | 23 | {{/velocity}} |