wiki

Azure DevOps Wiki for multiple projects

限于喜欢 提交于 2021-02-08 05:29:53
问题 I have newly started exploring capabilities of Azure DevOps Wiki. I have multiple projects in Azure DevOps. I want to create one separate project to store Business & Technical documentation for all my projects in a centralize place. How can I add multiple Wiki pages to keep this organize. Second question is I have a predefined structure for the documentation. For eg. Purpose Of Application, Local Build Steps, Deployment Steps, Third Party Control used, etc. How can I create & store this as a

Rewrite URL parameters as directories - like a Wikipedia URL

喜欢而已 提交于 2021-01-28 08:07:16
问题 I'm running a wiki and the URLs look like this: /wiki/index.php?title=MyTitle But I'd like it to look like this: /wiki/MyTitle How can I do this? I assume this can be done with .htaccess and rewrite rules, and I've looked around on this site and on google but I can't find anything that's really helping me. Right now I've got this, in the .htaccess for the /wiki/ directory. RewriteEngine on RewriteOptions MaxRedirects=1 RewriteRule ^(.+) index\.php\?title=$1 [L] But that just redirects me to

How do I programmatically create new groups with specific set of rights on XWiki?

那年仲夏 提交于 2020-03-25 05:51:31
问题 I'm writing my own XWiki Authenticator (that extends XWikiAuthServiceImpl ) and therein, I want to create few groups, each with different sets of rights. How do I do it programmatically? Example, XWiki.MyStandardGroup - view , edit , comment XWiki.MyClassicGroup - view , edit , comment , script XWiki.MyAdminGroup - view , edit , commit , script , delete , admin Also, I create the users programmatically. How do I give different access rights to different sets of users? On the conceptual level,

基于gollum的wiki搭建

给你一囗甜甜゛ 提交于 2020-03-05 15:12:07
基于gollum的wiki搭建 gollum是个啥 gollum是一个基于git的,解析markdown文件的wiki系统;gollum项目托管在github上: gollum ( https://github.com/gollum/gollum),项目的wiki地址:https://github.com/gollum/gollum/wiki github的wiki据说也是基于gollum搭建的;没确认; 搭建 gollum是基于ruby编写的;所以在安装gollum之前,需要先安装ruby环境; 安装依赖包 gollum依赖的包还是蛮多的,包括了ruby ,ruby-devel ,git 等等;看自己服务器的情况增加依赖包; yum -y install ruby ruby-devel rubygems make gcc libxml2-devel libxslt-devel git libicu-devel ruby版本建议在2.0+; git最好用最新版吧; 2. 安装gollum gem install gollum 中文目录/文件名问题解决 注意:建议安装 Rugged;这个是gollum所需要的git adapter ;默认的git adapter 是grit;但实际在用这个适配器的时候,会发现这个适配器不支持中文文件名、目录的问题;使用 rugged是没有问题的;