文档更改Home
由 Yang Sheng 于 2025-02-42,18:57 最后修改
摘要
-
页面属性 (1 修改, 0 新增, 0 删除)
细节
- 页面属性
-
- 内容
-
... ... @@ -15,33 +15,96 @@ 15 15 (% class="col-xs-12 col-sm-6" %) 16 16 ((( 17 17 === 近期更新 === 18 - 19 19 {{velocity}} 20 -## 定义HTML内容 21 -#set($htmlContent = """ 22 -<div class="recent-updates"> 23 - <h2>近期更新</h2> 19 +## 定义一级链接列表 20 +#set($topLevelPages = ["Home", "AI For Service", "AIO知识库", "脚本&自动化"]) 24 24 25 - <h3>AIO知识库</h3> 26 - <ul> 27 - <li><a href="https://www.nicebro.fun/bin/view/AIO%E7%9F%A5%E8%AF%86%E5%BA%93/Xwiki%E7%9B%B8%E5%85%B3/%E9%A6%96%E9%A1%B5banner%E5%9B%BE%E6%96%B0%E5%A2%9E/" target="_blank">首页banner图新增</a></li> 28 - <li><a href="https://www.nicebro.fun/bin/view/AIO%E7%9F%A5%E8%AF%86%E5%BA%93/Xwiki%E7%9B%B8%E5%85%B3/" target="_blank">Xwiki相关</a></li> 29 - <li><a href="https://www.nicebro.fun/bin/view/AIO%E7%9F%A5%E8%AF%86%E5%BA%93/Xwiki%E7%9B%B8%E5%85%B3/%E9%A6%96%E9%A1%B5%E5%AF%BC%E8%88%AA%E6%A0%8F%E6%96%B0%E5%A2%9E/" target="_blank">首页导航栏新增</a></li> 30 - </ul> 22 +## 定义需要忽略的页面标题列表 23 +#set($ignoreTitles = ["页面管理", "脚本&自动化"]) 31 31 32 - <h3>脚本&自动化</h3> 33 - <ul> 34 - <li><a href="https://www.nicebro.fun/bin/view/%E8%84%9A%E6%9C%AC%26%E8%87%AA%E5%8A%A8%E5%8C%96/" target="_blank">脚本&自动化</a></li> 35 - <li><a href="https://www.nicebro.fun/bin/view/%E8%84%9A%E6%9C%AC%26%E8%87%AA%E5%8A%A8%E5%8C%96/Remaining_Work_Hours_For_AIO/" target="_blank">剩余工时显示插件</a></li> 36 - </ul> 37 -</div> 38 -""") 39 - 40 -## 使用HTML宏渲染HTML内容 41 -{{html clean="false" wiki="false"}} 42 -${htmlContent} 25 +## 输出CSS样式 26 +{{html}} 27 +<style> 28 + .recent-updates { 29 + font-family: Arial, sans-serif; 30 + margin: 20px; 31 + background-color: #f9f9f9; 32 + padding: 15px; 33 + border-radius: 8px; 34 + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 35 + } 36 + .recent-updates h2 { 37 + font-size: 26px; 38 + color: #2c3e50; 39 + border-bottom: 2px solid #ccc; 40 + padding-bottom: 10px; 41 + } 42 + .recent-updates h3 { 43 + font-size: 22px; 44 + color: #34495e; 45 + margin-top: 20px; 46 + } 47 + .recent-updates ul { 48 + list-style-type: disc; 49 + padding-left: 20px; 50 + } 51 + .recent-updates li { 52 + margin-bottom: 8px; 53 + } 54 + .recent-updates a { 55 + text-decoration: none; 56 + color: #2980b9; 57 + transition: color 0.3s; 58 + } 59 + .recent-updates a:hover { 60 + text-decoration: underline; 61 + color: #3498db; 62 + } 63 +</style> 43 43 {{/html}} 65 + 66 +## 输出内容 67 +<div class="recent-updates"> 68 + <h2>近期更新</h2> 69 + #foreach($topPage in $topLevelPages) 70 + ## 查询每个一级链接下所有子页面的最近更新 71 + #set($hqlQuery = "select doc.fullName from XWikiDocument doc where doc.fullName like :spacePattern and doc.fullName not like '%:WebPreferences' and doc.fullName not like '%:WebHome' and doc.fullName not like '%:WebSearch' and doc.fullName not like '%:WebRss' and doc.fullName not like '%:WebStatistics' order by doc.date desc") 72 + #set($query = $services.query.hql($hqlQuery)) 73 + #set($query = $query.bindValue("spacePattern", "${topPage}.%")) 74 + #set($query = $query.setLimit(3)) 75 + #set($recentDocs = $query.execute()) 76 + 77 + #set($hasUpdates = false) 78 + #foreach($docFullName in $recentDocs) 79 + #set($document = $xwiki.getDocument($docFullName)) 80 + #if($document) 81 + #set($docTitle = $document.getDisplayTitle()) 82 + ## 仅当用户有查看权限时显示 83 + #if($xwiki.hasAccessLevel('view', $xcontext.user, $document.getFullName())) 84 + ## 检查页面标题是否在忽略列表中 85 + #if(!$ignoreTitles.contains($docTitle)) 86 + #if($docTitle == '') 87 + #set($docTitle = "Untitled Document") 88 + #end 89 + #if(!$hasUpdates) 90 + <h3>$topPage</h3> 91 + <ul> 92 + #set($hasUpdates = true) 93 + #end 94 + <li><a href="${document.getExternalURL('view')}" target="_blank">${docTitle}</a></li> 95 + #end 96 + #end 97 + #end 98 + #end 99 + #if($hasUpdates) 100 + </ul> 101 + #end 102 + #end 103 +</div> 44 44 {{/velocity}} 105 + 106 + 107 + 45 45 46 46 ))) 47 47