Wiki source code of News
Version 4.1 by Thomas Mortagne on 2007/12/06
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | #includeMacros("Main.Macros") | ||
2 | #set($wikinames = ["wwwdev", "code", "enterprise", "manager", "watch", "platform"]) | ||
3 | <div> | ||
4 | <div id="webhomeblogdisplay" style="float:left; width: 50%;"> | ||
5 | <div style="padding-right:20px;"> | ||
6 | <h2 class="heading-1-1-1">Blog <a href="$xwiki.getURL("Main.BlogRss", "view", "xpage=rdf")" style=""><img src="$xwiki.getSkinFile("icons/black-rss.png")" alt="rss icon"/></a></h2> | ||
7 | #set($nbstart = $request.nbstart) | ||
8 | #set($category = "") | ||
9 | #set($nbitems = "5") | ||
10 | #includeMacros("Blog.Macros") | ||
11 | </div> | ||
12 | </div> | ||
13 | <div id="webhomeNewsdisplay" style="float:left; width: 50%;"> | ||
14 | <div style="padding-left: 20px;"> | ||
15 | <h2 class="heading-1-1-1">Recent changes <a href="$xwiki.getURL("Main.WebRss", "view", "xpage=rdf")" style=""><img src="$xwiki.getSkinFile("icons/black-rss.png")" alt="rss icon"/></a></h2> | ||
16 | #if(!$xwiki.hasMinorEdit() || $request.getParameter("showminor")) | ||
17 | #set ($sql = "where 1=1 order by doc.date desc") | ||
18 | #else | ||
19 | #set ($sql = ", XWikiRCSNodeInfo as ni where doc.id=ni.id.docId and ni.id.version2=1 group by doc.web, doc.name order by max(ni.date) desc") | ||
20 | #end | ||
21 | #set($showdata = 1) | ||
22 | #if(!$nb) | ||
23 | #set($nb = 30) | ||
24 | #end | ||
25 | #set($formatDate = "yyyy MMMM dd, HH:mm") | ||
26 | #set($documentsTool = $xwiki.parseGroovyFromPage("DocumentsTool")) | ||
27 | #set($list = $documentsTool.getDocumentsModifs($sql, $wikinames, $nb)) | ||
28 | <ul> | ||
29 | #foreach ($bentrydoc in $list) | ||
30 | #set($troubi ="non") | ||
31 | #if ($xwiki.hasAccessLevel("view", $context.user, $bentrydoc.prefixedFullName)) | ||
32 | #set($cclass = $xwiki.getDocument("XWiki.XWikiComments").getxWikiClass()) | ||
33 | #set($comment = $cclass.newObject()) | ||
34 | #if($xwiki.getWebPreferenceAsInt("commentsorder",1)==0) | ||
35 | #set($comments = $bentrydoc.getComments()) | ||
36 | #else | ||
37 | #set($comments = $bentrydoc.getComments(false)) | ||
38 | #end | ||
39 | #set($createur = $xwiki.getUserName($bentrydoc.author)) | ||
40 | <li> | ||
41 | #if($comments.size()>0) | ||
42 | #set($i = 0) | ||
43 | #set($cobj = $comments.get($i)) | ||
44 | #set($comment = $bentrydoc.display("comment", "view", $cobj)) | ||
45 | #set($date = $cobj.getXWikiObject().get("date").value) | ||
46 | #if($date) | ||
47 | #set($date2 = $!xwiki.formatDate($date,"yyyy MM dd HH:mm:ss")) | ||
48 | #end | ||
49 | #if($bentrydoc) | ||
50 | #set($date1 = $!xwiki.formatDate($!bentrydoc.date,"yyyy MM dd HH:mm:ss") ) | ||
51 | #end | ||
52 | #if($date1.equals($date2) ) | ||
53 | [$bentrydoc.name>$bentrydoc.prefixedFullName] <em>- 1 new comment</em> | ||
54 | #set($troubi ="oui") | ||
55 | #set($desc = $cobj.getXWikiObject().get("comment").value) | ||
56 | #else | ||
57 | [$bentrydoc.name in $bentrydoc.web>$bentrydoc.prefixedFullName] | ||
58 | #end | ||
59 | #else | ||
60 | #set($comment = "") | ||
61 | [$bentrydoc.name in $bentrydoc.web>$bentrydoc.prefixedFullName.replaceAll("@","%40")] | ||
62 | #end | ||
63 | $xwiki.formatDate($bentrydoc.date,"yyyy MMM dd") at $xwiki.formatDate($bentrydoc.date,"HH:mm") | ||
64 | #if($troubi =="oui") | ||
65 | #set($createur = $xwiki.getUserName($cobj.author)) | ||
66 | #end | ||
67 | #if ($createur == "XWikiGuest") | ||
68 | Guest | ||
69 | #else | ||
70 | $createur | ||
71 | #end | ||
72 | </li> | ||
73 | #end | ||
74 | #end | ||
75 | </ul> | ||
76 | #if($xwiki.hasMinorEdit()) | ||
77 | #if($request.getParameter("showminor")) | ||
78 | <a href="$xwiki.getURL($tdoc.getFullName(), "view", "")">Hide minor edits</a> | ||
79 | #else | ||
80 | <a href="$xwiki.getURL($tdoc.getFullName(), "view", "showminor")">Show minor edits</a> | ||
81 | #end | ||
82 | #end | ||
83 | </div> | ||
84 | </div> | ||
85 | <div style="clear:both; margin-bottom: 40px;"><!-- --></div> | ||
86 | </div> |