将 Phabricator 任务导出到电子表格/csv
Export Phabricator tasks to spreadsheet / csv
我在 Phabricator 上花了超过 15 分钟来寻找“导出到电子表格”功能,但没有成功。我在那里看到 this feature exist。我的目标是远离 Phabricator。
- 您需要实施 PHPExcel 并将其添加到您的 php 配置中
include_path
。
- 然后您可以在每个 Maniphest 页面上使用
Export To Excel
内置的 ind 查询和您的自定义查询。
- 如果您需要自定义格式,您需要自定义现有格式。因此请参阅
./t/phabricator/src/applications/maniphest/export/
中的文件
我在 Phabricator 上花了超过 15 分钟来寻找“导出到电子表格”功能,但没有成功。我在那里看到 this feature exist。我的目标是远离 Phabricator。
- 您需要实施 PHPExcel 并将其添加到您的 php 配置中
include_path
。 - 然后您可以在每个 Maniphest 页面上使用
Export To Excel
内置的 ind 查询和您的自定义查询。 - 如果您需要自定义格式,您需要自定义现有格式。因此请参阅
./t/phabricator/src/applications/maniphest/export/
中的文件