Roundup的命令行界面
项目描述
roundup-cli 是一个简单的命令行界面,用于Roundup Issue Tracker。它使用XML-RPC接口与Roundup进行通信。
配置
roundup-cli 将按以下顺序查找配置文件 roundup.cf,~/.roundup.cfg。格式基于 configparser。
一个部分描述了roundup实例的参数。例如,url、username 和 password 是必需条目
[foo] url = http://localhost:8000/roundup username = foo password = bar
任何其他条目将用于显示相应的roundup类。它必须是字段名称的逗号分隔列表,第一个字段将用于简短显示
issue = title,priority,status,superseder,nosy,assignedto,keyword user = username,realname,organisation,address msg = author,date,content
摘要
这里是一个简单的场景
$ roundup-cli None: use foo demo: get issue1 title: Add issue creation to roundup-cli priority: feature status: in-progress superseder: nosy: admin,demo assignedto: admin keyword: issue1@demo: show messages messages: ------------------------------------------------------------------------------- msg1 author: demo date: <Date 2011-11-25.20:58:30.768> content: It will be great to create issue from roundup-cli ------------------------------------------------------------------------------- msg2 author: admin date: <Date 2011-11-25.20:59:06.176> content: Agree, I start working on it. ------------------------------------------------------------------------------- issue1@demo: search issue status:in-progress issue1: Add issue creation to roundup-cli
有关更多信息,请访问roundup-cli网站。