代码空间


摘要(Abstract)

JIRA是Atlassian公司出品的项目与事务跟踪工具,被广泛应用于缺陷跟踪、客户服务、需求收集、流程审批、任务跟踪、项目跟踪和敏捷管理等工作领域。 JIRA中配置灵活、功能全面、部署简单、扩展丰富,其超过150项特性得到了全球115个国家超过19,000家客户的认可。 中文名 JIRA 出 品 Atlassian 作 用 项目与事务跟踪 曾用名 Godzilla或GojiraAtlassian2002年创建于澳大利亚悉尼,现在在旧金山、阿姆斯特丹也有办公室,2011年收入为1亿美元,较去年增长35%。 [1] 主要产品有JIRA,Confluence,GreenHopper,Bitbucket,Hipchat,Sourcetree等。2010年获美国Accel Partners首轮6000万美元风险投资开箱即用,提供用于缺陷管理的默认工作流 可视化工作流设计器 可视化工作流设计器(9张) 工作流可以自定义,工作流数量不限 每个工作流可以配置多个自定义动作和自定义状态 每一个问题类型都可以单独设置或共用工作流 可视化工作流设计器,使工作流配置更加直观 自定义工作流动作的触发条件 工作流动作执行后,自动执行指定的操作 项目 每个项目都有自己的概览页面包括:项目详细信息、最新更新情况以及一些报告的快捷方式 在项目界面中查看按照状态、是否解决等条件设置的分类统计报告 查看项目最新的活动情况 查看项目的热门问题 可以设置项目类别,将项目分组管理 可以为每个项目设置单独的邮件通知发件地址 自定义安全级别,指定用户对问题的访问 指定组件/模块负责人


主题(Topic)

项目(Project)
keunwoochoi/kapre taktoa/wai-middleware-preprocessor deepduggal/Mozingo IBM/carbon-preprocess-svelte as3k/gridsome-starter-pug-stylus amangpta01/websites_are_boring wangwen1220/CSS-Preprocessors-Comparison cypress-io/cypress-browserify-preprocessor deuill/fawkss pnann/mdbook-nodejs-preprocessor-builder mosqueradvd/PureGames adhywiranata/compare-css-styles SurendraVidiyala/css-preprocessors-less-Sass doczjs/docz-plugin-css danielmalmros/gulp-beast-boilerplate NikolayMakhonin/postcss-js-syntax pixelmund/create-svelte-app peura-lady/Mavic-2-Pro peura-lady/Moderno bezoerb/generator-sf hayaku/hayaku gabrielnvg/generic-gulp-base OrchidAugur/CSS-Styleguide RusuGabriel/C-Language-Preprocessor gabriel-rusu/C-Language-Preprocessor swelcker/cmd.csp.classifier gangelo/LittleWeasel woodem/woo Then make sure `package.json` of your project ends with this block: ```js { // ... "eslintConfig": { "extends": "./node_modules/react-scripts/config/eslint.js" } } ``` Projects generated with `react-scripts@0.2.0` and higher should already have it. If you don’t need ESLint integration with your editor, you can safely delete those three lines from your `package.json`. Finally, you will need to install some packages *globally*: ```sh npm install -g eslint babel-eslint eslint-plugin-react eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-flowtype ``` We recognize that this is suboptimal, but it is currently required due to the way we hide the ESLint dependency. The ESLint team is already [working on a solution to this](https://github.com/eslint/eslint/issues/3458) so this may become unnecessary in a couple of months. ## Installing a Dependency The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`: ``` npm install --save ``` ## Importing a Component This project setup supports ES6 modules thanks to Babel. While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead. For example: ### `Button.js` ```js import React, { Component } from 'react'; class Button extends Component { render() { // ... } } export default Button; // Don’t forget to use export default! ``` ### `DangerButton.js` ```js import React, { Component } from 'react'; import Button from './Button'; // Import a component from another file class DangerButton extends Component { render() { return