关于JIRA Plugin开发的中文资料相当少,这可能还是由于JIRA Plugin开发在国内比较小众的原因吧,下面介绍下自己的一个JIRA Plugin开发的详细过程. 业务需求 创建JIRA ISSUE时能提供一个字段,字段内容是类似于订单号或手机号这种样式的数据,并且显示出来是一个链接,点击后可跳转到订单详情页或手机号所对应的客户的整个订单页,供用户查看和此任务工单关联的订单数据: 例如: 订单号为123456: 订单详情URL为:http://192.168.11.211?order=1…
(The reason why I write English blog is that I'm trying to improve my written English. The Chinese version will be appended later.) Tips For Your  Maya Plugin Development - Request a block of node id from Autodesk for your studio or company if you ar…
eclipse plugin development: E:\workspaces\Eclipse_workspace_rcp\.metadata\.plugins\org.eclipse.pde.core\Eclipse Application set the preferencestore in where: setPreferenceStore(Activator.getDefault().getPreferenceStore()); eclipse build 假设你的插件已经开发完毕,…
项目中要用到Computed custom field插件,公式不知道怎么写,查了些资料,记录在这里. 1.http://apidock.com/ruby/Time/strftime 查看ruby的字符串格式,用于改写Date/time format只显示日期,不显示时间. 2.https://github.com/annikoff/redmine_plugin_computed_custom_field/issues/34 看到formula里可以写复杂代码,比如增加变量.指定返回值等. 3.…
Description It is often necessary to query the database for a list of posts based on a custom field value. This guide will demonstrate how it is possible using the native WP functions Requirements Understanding of the get_posts() function Understandi…
If none of any built-in security mechanisms works for you, you can always build your own. Though these features should provide enough functionality for the majority of users, an even more powerful feature is available. As stated previously, the Activ…
APP升级到Ionic2之后,如何调用自己写的pulgin,一直测试不成功,现记录这一经过. plugin目前可以分为3类,A类是ionic-native自带的,可以直接导入Typescript类,直接使用,比较简单易用,目前插件大部分是这一类. B类是纯js库类,具体的使用方法可以参考这个官方文档,目前还没有遇见这种情况,等遇见了再来记录. C类是我们自己写的cordova plugin,一般都是用在Ionic1版本中的,问题由此产生,在ionic2中是如何应用的呢? 方法步骤: 1.和ion…
org.eclipse.ui.menus locationURI MenuContribution locationURI = "[Scheme]:[id]?[argument-list]" 1.menu or toolbar 2. problem view popup:org.eclipse.ui.views.ProblemView?after= org.eclipse.ui.main.menu?after= org.eclipse.search.menu?dialogGroup o…
博客地址 http://blog.csdn.net/foxdave 自定义列表的时候有时候需要自定义一些字段来更好地实现列表的功能,本文讲述自定义字段的一般步骤 打开Visual Studio,我们还是使用上次创建的小项目,打开.我们只做一个简单的字段,一个图片超链接,此例没有附带ascx用户控件, 第一步,添加两个自定义字段类,继承SPField和SPFieldControl,最简单的格式如下所示 using Microsoft.SharePoint; using Microsoft.Shar…
xuld/原创 Custom transformer (自定义转换器)是干什么的 简单说,TypeScript 可以将 TS 源码编译成 JS 代码,自定义转换器插件则可以让你定制生成的代码.比如删掉代码里的注释.改变变量的名字.将类转换为函数等等. TypeScript 将 TS 代码编译到 JS 的功能,其实也是通过内置的转换器实现的,从 TS 2.3 开始,TS 将此功能开放,允许开发者编写自定义的转换器. 预备知识 语法树 语法树是用于表示语法的数据结构.具体请参考我的另一个篇文章:ht…