├── .gitattributes ├── .gitignore ├── Chapter 1 ├── _DS_Store └── demoplugin │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ ├── _DS_Store │ │ │ └── mypackage │ │ │ ├── _DS_Store │ │ │ ├── api │ │ │ └── MyPluginComponent.java │ │ │ └── impl │ │ │ └── MyPluginComponentImpl.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── demoplugin.css │ │ ├── demoplugin.properties │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ └── js │ │ └── demoplugin.js │ └── test │ ├── _DS_Store │ ├── java │ ├── _DS_Store │ ├── it │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ ├── _DS_Store │ │ │ └── mypackage │ │ │ └── MyComponentWiredTest.java │ └── ut │ │ ├── _DS_Store │ │ └── com │ │ ├── _DS_Store │ │ └── jtricks │ │ ├── _DS_Store │ │ └── mypackage │ │ └── MyComponentUnitTest.java │ └── resources │ └── atlassian-plugin.xml ├── Chapter 10 ├── _DS_Store └── db-utilities │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ ├── _DS_Store │ │ │ ├── entity │ │ │ └── AddressEntity.java │ │ │ ├── jira │ │ │ ├── _DS_Store │ │ │ └── servlet │ │ │ │ ├── DelegatorServlet.java │ │ │ │ └── PropertySetServlet.java │ │ │ └── web │ │ │ └── action │ │ │ └── ManageActiveObjects.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── db-utilities.css │ │ ├── db-utilities.properties │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ ├── js │ │ └── db-utilities.js │ │ └── templates │ │ └── success.vm │ └── test │ └── resources │ └── atlassian-plugin.xml ├── Chapter 11 ├── _DS_Store ├── jtricks-utilities │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── jtricks │ │ │ │ └── jira │ │ │ │ ├── component │ │ │ │ ├── MyPrivateComponent.java │ │ │ │ ├── MyPrivateComponentImp.java │ │ │ │ ├── MyPublicComponent.java │ │ │ │ └── MyPublicComponentImp.java │ │ │ │ ├── dictionary │ │ │ │ ├── DictionaryServlet.java │ │ │ │ ├── UKDictionary.java │ │ │ │ └── USDictionary.java │ │ │ │ ├── jobs │ │ │ │ └── JTricksJob.java │ │ │ │ ├── listeners │ │ │ │ └── JTricksListener.java │ │ │ │ ├── module │ │ │ │ ├── Dictionary.java │ │ │ │ ├── DictionaryModuleDescriptor.java │ │ │ │ └── DictionaryModuleTypeFactory.java │ │ │ │ ├── services │ │ │ │ └── JTricksService.java │ │ │ │ ├── servlet │ │ │ │ ├── JTricksServlet.java │ │ │ │ ├── JTricksServletFilter.java │ │ │ │ └── JTricksServletListener.java │ │ │ │ ├── user │ │ │ │ └── TwitterUserFormat.java │ │ │ │ └── webwork │ │ │ │ ├── MathAction.java │ │ │ │ ├── RedirectAction.java │ │ │ │ └── TranslateAction.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring │ │ │ │ └── plugin-context.xml │ │ │ ├── atlassian-plugin.xml │ │ │ ├── com │ │ │ └── jtricks │ │ │ │ └── services │ │ │ │ └── myjtricksservice.xml │ │ │ ├── css │ │ │ └── jtricks-utilities.css │ │ │ ├── images │ │ │ ├── pluginIcon.png │ │ │ └── pluginLogo.png │ │ │ ├── js │ │ │ └── jtricks-utilities.js │ │ │ ├── jtricks-utilities.properties │ │ │ ├── jtricks-utilities_fr_FR.properties │ │ │ └── templates │ │ │ ├── action │ │ │ ├── math.vm │ │ │ ├── redirect.vm │ │ │ └── translate.vm │ │ │ └── user │ │ │ └── twitterLink.vm │ └── target │ │ └── classes │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── atlassian-plugin.xml │ │ ├── com │ │ └── jtricks │ │ │ ├── jira │ │ │ ├── component │ │ │ │ ├── MyPrivateComponent.class │ │ │ │ ├── MyPrivateComponentImp.class │ │ │ │ ├── MyPublicComponent.class │ │ │ │ └── MyPublicComponentImp.class │ │ │ ├── dictionary │ │ │ │ ├── DictionaryServlet.class │ │ │ │ ├── UKDictionary.class │ │ │ │ └── USDictionary.class │ │ │ ├── jobs │ │ │ │ └── JTricksJob.class │ │ │ ├── listeners │ │ │ │ └── JTricksListener.class │ │ │ ├── module │ │ │ │ ├── Dictionary.class │ │ │ │ ├── DictionaryModuleDescriptor.class │ │ │ │ └── DictionaryModuleTypeFactory.class │ │ │ ├── services │ │ │ │ └── JTricksService.class │ │ │ ├── servlet │ │ │ │ ├── JTricksServlet.class │ │ │ │ ├── JTricksServletFilter.class │ │ │ │ └── JTricksServletListener.class │ │ │ ├── user │ │ │ │ └── TwitterUserFormat.class │ │ │ └── webwork │ │ │ │ ├── MathAction.class │ │ │ │ ├── RedirectAction.class │ │ │ │ └── TranslateAction.class │ │ │ └── services │ │ │ └── myjtricksservice.xml │ │ ├── css │ │ └── jtricks-utilities.css │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ ├── js │ │ └── jtricks-utilities.js │ │ ├── jtricks-utilities.properties │ │ ├── jtricks-utilities_fr_FR.properties │ │ └── templates │ │ ├── action │ │ ├── math.vm │ │ ├── redirect.vm │ │ └── translate.vm │ │ └── user │ │ └── twitterLink.vm ├── licensing-demo │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ │ ├── _DS_Store │ │ ├── main │ │ ├── _DS_Store │ │ ├── java │ │ │ └── com │ │ │ │ └── jtricks │ │ │ │ └── jira │ │ │ │ └── webwork │ │ │ │ └── LicensingDemoAction.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring │ │ │ │ └── plugin-context.xml │ │ │ ├── atlassian-plugin.xml │ │ │ ├── css │ │ │ └── licensing-demo.css │ │ │ ├── images │ │ │ ├── pluginIcon.png │ │ │ └── pluginLogo.png │ │ │ ├── js │ │ │ └── licensing-demo.js │ │ │ ├── licensing-demo.properties │ │ │ └── templates │ │ │ └── action │ │ │ └── licensing-demo.vm │ │ └── test │ │ └── resources │ │ └── atlassian-plugin.xml └── number-utility │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── jtricks │ │ │ └── utilities │ │ │ └── NumberUtility.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── number-utility.css │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ ├── js │ │ └── number-utility.js │ │ └── number-utility.properties │ └── test │ └── resources │ └── atlassian-plugin.xml ├── Chapter 2 ├── _DS_Store ├── action-plugin │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ │ ├── _DS_Store │ │ ├── main │ │ ├── _DS_Store │ │ ├── java │ │ │ ├── _DS_Store │ │ │ └── com │ │ │ │ ├── _DS_Store │ │ │ │ └── jtricks │ │ │ │ ├── _DS_Store │ │ │ │ └── jira │ │ │ │ ├── _DS_Store │ │ │ │ └── webwork │ │ │ │ └── DemoAction.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring │ │ │ │ └── plugin-context.xml │ │ │ ├── _DS_Store │ │ │ ├── action-plugin.properties │ │ │ ├── atlassian-plugin.xml │ │ │ ├── css │ │ │ └── action-plugin.css │ │ │ ├── images │ │ │ ├── pluginIcon.png │ │ │ └── pluginLogo.png │ │ │ ├── js │ │ │ └── action-plugin.js │ │ │ └── templates │ │ │ ├── _DS_Store │ │ │ └── j-tricks-demo-action │ │ │ ├── _DS_Store │ │ │ └── demoaction │ │ │ ├── input.vm │ │ │ ├── joy.vm │ │ │ └── tears.vm │ │ └── test │ │ └── resources │ │ └── atlassian-plugin.xml └── plugin-listener │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ └── PluginListener.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── plugin-listener.css │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ ├── js │ │ └── plugin-listener.js │ │ └── plugin-listener.properties │ └── test │ └── resources │ └── atlassian-plugin.xml ├── Chapter 3 ├── _DS_Store └── customfield-plugin │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ ├── _DS_Store │ │ │ └── jira │ │ │ ├── _DS_Store │ │ │ ├── customfields │ │ │ └── ReadOnlyUserCF.java │ │ │ └── servlet │ │ │ ├── JTricksOptionServlet.java │ │ │ └── JTricksServlet.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── _DS_Store │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── customfield-plugin.css │ │ ├── customfield-plugin.properties │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ ├── js │ │ └── customfield-plugin.js │ │ └── templates │ │ ├── _DS_Store │ │ └── com │ │ ├── _DS_Store │ │ └── jtricks │ │ ├── edit-readonly-user.vm │ │ └── view-readonly-user.vm │ └── test │ └── resources │ └── atlassian-plugin.xml ├── Chapter 4 ├── _DS_Store └── workflow-plugin │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ ├── src │ ├── _DS_Store │ ├── main │ │ ├── _DS_Store │ │ ├── java │ │ │ └── com │ │ │ │ └── jtricks │ │ │ │ └── jira │ │ │ │ └── workflow │ │ │ │ ├── FieldValidator.java │ │ │ │ ├── FieldValidatorFactory.java │ │ │ │ ├── RoleCondition.java │ │ │ │ ├── RoleConditionFactory.java │ │ │ │ ├── SetUserCFFunction.java │ │ │ │ └── SetUserCFFunctionFactory.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring │ │ │ │ └── plugin-context.xml │ │ │ ├── _DS_Store │ │ │ ├── atlassian-plugin.xml │ │ │ ├── css │ │ │ └── workflow-plugin.css │ │ │ ├── images │ │ │ ├── pluginIcon.png │ │ │ └── pluginLogo.png │ │ │ ├── js │ │ │ └── workflow-plugin.js │ │ │ ├── templates │ │ │ ├── conditions │ │ │ │ ├── role-condition-input.vm │ │ │ │ └── role-condition.vm │ │ │ ├── postfunctions │ │ │ │ ├── set-user-cf-function-input.vm │ │ │ │ └── set-user-cf-function.vm │ │ │ └── validators │ │ │ │ ├── field-validator-input.vm │ │ │ │ └── field-validator.vm │ │ │ └── workflow-plugin.properties │ └── test │ │ └── resources │ │ └── atlassian-plugin.xml │ └── target │ ├── classes │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ ├── _DS_Store │ ├── atlassian-plugin.xml │ ├── com │ │ └── jtricks │ │ │ └── jira │ │ │ └── workflow │ │ │ ├── FieldValidator.class │ │ │ ├── FieldValidatorFactory.class │ │ │ ├── RoleCondition.class │ │ │ ├── RoleConditionFactory.class │ │ │ ├── SetUserCFFunction.class │ │ │ └── SetUserCFFunctionFactory.class │ ├── css │ │ └── workflow-plugin.css │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ ├── js │ │ └── workflow-plugin.js │ ├── templates │ │ ├── conditions │ │ │ ├── role-condition-input.vm │ │ │ └── role-condition.vm │ │ ├── postfunctions │ │ │ ├── set-user-cf-function-input.vm │ │ │ └── set-user-cf-function.vm │ │ └── validators │ │ │ ├── field-validator-input.vm │ │ │ └── field-validator.vm │ └── workflow-plugin.properties │ └── test-classes │ └── atlassian-plugin.xml ├── Chapter 5 ├── _DS_Store └── reports-plugin │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ └── com │ │ │ └── jtricks │ │ │ └── jira │ │ │ └── reports │ │ │ ├── AllIssuesReport.java │ │ │ ├── CascadingValuesGenerator.java │ │ │ └── ProjectValuesGenerator.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── _DS_Store │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── reports-plugin.css │ │ ├── gadgets │ │ ├── hello-gadget.xml │ │ └── hello-user-gadget.xml │ │ ├── i18n │ │ └── messages.xml │ │ ├── images │ │ ├── pluginIcon.png │ │ ├── pluginLogo.png │ │ ├── screenshot.png │ │ └── thumbnail.png │ │ ├── js │ │ └── reports-plugin.js │ │ ├── reports-plugin.properties │ │ └── templates │ │ └── allissues │ │ ├── allissues-report-excel.vm │ │ └── allissues-report.vm │ └── test │ └── resources │ └── atlassian-plugin.xml ├── Chapter 6 ├── _DS_Store └── jql-plugin │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ ├── _DS_Store │ │ │ └── jira │ │ │ ├── jql │ │ │ └── ProjectsFunction.java │ │ │ ├── search │ │ │ ├── IssueHTMLView.java │ │ │ ├── SearchRequestHTMLView.java │ │ │ └── SimpleSearchRequestHTMLView.java │ │ │ └── servlet │ │ │ ├── JTricksFilterServlet.java │ │ │ └── JTricksSearchServlet.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── _DS_Store │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── jql-plugin.css │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ ├── jql-plugin.properties │ │ ├── js │ │ └── jql-plugin.js │ │ └── templates │ │ ├── searchrequest-html-body.vm │ │ ├── searchrequest-html-footer.vm │ │ ├── searchrequest-html-header.vm │ │ ├── single-html-footer.vm │ │ ├── single-html-header.vm │ │ └── single-html-view.vm │ └── test │ └── resources │ └── atlassian-plugin.xml ├── Chapter 7 ├── _DS_Store └── issue-manager │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ ├── src │ ├── _DS_Store │ ├── main │ │ ├── _DS_Store │ │ ├── java │ │ │ ├── _DS_Store │ │ │ └── com │ │ │ │ ├── _DS_Store │ │ │ │ └── jtricks │ │ │ │ ├── _DS_Store │ │ │ │ └── jira │ │ │ │ ├── _DS_Store │ │ │ │ ├── servlet │ │ │ │ ├── AttachmentManagerServlet.java │ │ │ │ ├── ChangeLogManagerServlet.java │ │ │ │ ├── CommentManagerServlet.java │ │ │ │ ├── IssueManagerServlet.java │ │ │ │ ├── LinkManagerServlet.java │ │ │ │ └── WorklogManagerServlet.java │ │ │ │ └── webfragment │ │ │ │ └── conditions │ │ │ │ └── UserCondition.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring │ │ │ │ └── plugin-context.xml │ │ │ ├── atlassian-plugin.xml │ │ │ ├── css │ │ │ └── issue-manager.css │ │ │ ├── images │ │ │ ├── pluginIcon.png │ │ │ └── pluginLogo.png │ │ │ ├── issue-manager.properties │ │ │ └── js │ │ │ └── issue-manager.js │ └── test │ │ └── resources │ │ └── atlassian-plugin.xml │ └── target │ ├── classes │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ ├── atlassian-plugin.xml │ ├── com │ │ └── jtricks │ │ │ └── jira │ │ │ ├── servlet │ │ │ ├── AttachmentManagerServlet.class │ │ │ ├── ChangeLogManagerServlet.class │ │ │ ├── CommentManagerServlet.class │ │ │ ├── IssueManagerServlet.class │ │ │ ├── LinkManagerServlet.class │ │ │ └── WorklogManagerServlet.class │ │ │ └── webfragment │ │ │ └── conditions │ │ │ └── UserCondition.class │ ├── css │ │ └── issue-manager.css │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ ├── issue-manager.properties │ └── js │ │ └── issue-manager.js │ └── test-classes │ └── atlassian-plugin.xml ├── Chapter 8 ├── _DS_Store └── ui-plugin │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ ├── _DS_Store │ │ │ ├── jira │ │ │ └── webwork │ │ │ │ ├── JTricksDemoAction.java │ │ │ │ └── TwitterLinkAction.java │ │ │ └── ui │ │ │ ├── _DS_Store │ │ │ ├── conditions │ │ │ └── DeveloperCondition.java │ │ │ ├── context │ │ │ └── UserContextProvider.java │ │ │ ├── links │ │ │ └── FavouritesLinkProvider.java │ │ │ ├── renderer │ │ │ └── TwitterLinkRenderer.java │ │ │ └── tabs │ │ │ ├── JTricksIssueTabPanel.java │ │ │ ├── JTricksProjectTabPanel.java │ │ │ ├── context │ │ │ └── ProjectPanelContextProvider.java │ │ │ └── issueaction │ │ │ └── JTricksAction.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── _DS_Store │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── ui-plugin.css │ │ ├── images │ │ ├── pluginIcon.png │ │ ├── pluginLogo.png │ │ └── twitter.jpg │ │ ├── js │ │ └── ui-plugin.js │ │ ├── templates │ │ ├── issue │ │ │ ├── issue-panel.vm │ │ │ ├── twitterlink-final.vm │ │ │ └── twitterlink.vm │ │ ├── j-tricks-demo-action │ │ │ └── jtricksdemoaction │ │ │ │ └── success.vm │ │ └── project │ │ │ ├── project-navigation-panel.vm │ │ │ ├── project-navigation-panel1.vm │ │ │ ├── project-navigation-panel2.vm │ │ │ └── project-panel.vm │ │ └── ui-plugin.properties │ └── test │ └── resources │ └── atlassian-plugin.xml ├── Chapter 9 ├── _DS_Store ├── rest-client │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── jtricks │ │ ├── AttachmentClient.java │ │ ├── CommentClient.java │ │ ├── ComponentClient.java │ │ ├── IssueClient.java │ │ ├── SearchClient.java │ │ ├── VersionClient.java │ │ └── WorklogClient.java └── rest-plugin │ ├── LICENSE │ ├── README │ ├── _DS_Store │ ├── _classpath.xml │ ├── _project.xml │ ├── pom.xml │ └── src │ ├── _DS_Store │ ├── main │ ├── _DS_Store │ ├── java │ │ ├── _DS_Store │ │ └── com │ │ │ ├── _DS_Store │ │ │ └── jtricks │ │ │ ├── _DS_Store │ │ │ └── rest │ │ │ └── CategoryResource.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ └── plugin-context.xml │ │ ├── atlassian-plugin.xml │ │ ├── css │ │ └── rest-plugin.css │ │ ├── images │ │ ├── pluginIcon.png │ │ └── pluginLogo.png │ │ ├── js │ │ └── rest-plugin.js │ │ └── rest-plugin.properties │ └── test │ └── resources │ └── atlassian-plugin.xml └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 1/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/LICENSE -------------------------------------------------------------------------------- /Chapter 1/demoplugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/README -------------------------------------------------------------------------------- /Chapter 1/demoplugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/pom.xml -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/java/com/jtricks/mypackage/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/java/com/jtricks/mypackage/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/java/com/jtricks/mypackage/api/MyPluginComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/java/com/jtricks/mypackage/api/MyPluginComponent.java -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/java/com/jtricks/mypackage/impl/MyPluginComponentImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/java/com/jtricks/mypackage/impl/MyPluginComponentImpl.java -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/resources/css/demoplugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/resources/demoplugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/resources/demoplugin.properties -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/main/resources/js/demoplugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/it/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/it/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/it/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/it/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/it/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/it/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/it/com/jtricks/mypackage/MyComponentWiredTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/it/com/jtricks/mypackage/MyComponentWiredTest.java -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/ut/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/ut/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/ut/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/ut/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/ut/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/ut/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/java/ut/com/jtricks/mypackage/MyComponentUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/java/ut/com/jtricks/mypackage/MyComponentUnitTest.java -------------------------------------------------------------------------------- /Chapter 1/demoplugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 1/demoplugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 10/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/LICENSE -------------------------------------------------------------------------------- /Chapter 10/db-utilities/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/README -------------------------------------------------------------------------------- /Chapter 10/db-utilities/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/_classpath.xml -------------------------------------------------------------------------------- /Chapter 10/db-utilities/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/_project.xml -------------------------------------------------------------------------------- /Chapter 10/db-utilities/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/pom.xml -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/com/jtricks/entity/AddressEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/com/jtricks/entity/AddressEntity.java -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/com/jtricks/jira/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/com/jtricks/jira/_DS_Store -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/com/jtricks/jira/servlet/DelegatorServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/com/jtricks/jira/servlet/DelegatorServlet.java -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/com/jtricks/jira/servlet/PropertySetServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/com/jtricks/jira/servlet/PropertySetServlet.java -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/java/com/jtricks/web/action/ManageActiveObjects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/java/com/jtricks/web/action/ManageActiveObjects.java -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/css/db-utilities.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/db-utilities.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/resources/db-utilities.properties -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/js/db-utilities.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/main/resources/templates/success.vm: -------------------------------------------------------------------------------- 1 | SUCESS! -------------------------------------------------------------------------------- /Chapter 10/db-utilities/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 10/db-utilities/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 11/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/_DS_Store -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/LICENSE -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/README -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/_DS_Store -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/_classpath.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/_project.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/pom.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPrivateComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPrivateComponent.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPrivateComponentImp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPrivateComponentImp.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPublicComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPublicComponent.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPublicComponentImp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/component/MyPublicComponentImp.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/dictionary/DictionaryServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/dictionary/DictionaryServlet.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/dictionary/UKDictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/dictionary/UKDictionary.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/dictionary/USDictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/dictionary/USDictionary.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/jobs/JTricksJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/jobs/JTricksJob.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/listeners/JTricksListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/listeners/JTricksListener.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/module/Dictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/module/Dictionary.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/module/DictionaryModuleDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/module/DictionaryModuleDescriptor.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/module/DictionaryModuleTypeFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/module/DictionaryModuleTypeFactory.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/services/JTricksService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/services/JTricksService.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/servlet/JTricksServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/servlet/JTricksServlet.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/servlet/JTricksServletFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/servlet/JTricksServletFilter.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/servlet/JTricksServletListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/servlet/JTricksServletListener.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/user/TwitterUserFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/user/TwitterUserFormat.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/webwork/MathAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/webwork/MathAction.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/webwork/RedirectAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/webwork/RedirectAction.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/webwork/TranslateAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/java/com/jtricks/jira/webwork/TranslateAction.java -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/com/jtricks/services/myjtricksservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/com/jtricks/services/myjtricksservice.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/css/jtricks-utilities.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/js/jtricks-utilities.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/jtricks-utilities.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/jtricks-utilities.properties -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/jtricks-utilities_fr_FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/jtricks-utilities_fr_FR.properties -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/templates/action/math.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/templates/action/math.vm -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/templates/action/redirect.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/templates/action/redirect.vm -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/templates/action/translate.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/templates/action/translate.vm -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/src/main/resources/templates/user/twitterLink.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/src/main/resources/templates/user/twitterLink.vm -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPrivateComponent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPrivateComponent.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPrivateComponentImp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPrivateComponentImp.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPublicComponent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPublicComponent.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPublicComponentImp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/component/MyPublicComponentImp.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/dictionary/DictionaryServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/dictionary/DictionaryServlet.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/dictionary/UKDictionary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/dictionary/UKDictionary.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/dictionary/USDictionary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/dictionary/USDictionary.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/jobs/JTricksJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/jobs/JTricksJob.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/listeners/JTricksListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/listeners/JTricksListener.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/module/Dictionary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/module/Dictionary.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/module/DictionaryModuleDescriptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/module/DictionaryModuleDescriptor.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/module/DictionaryModuleTypeFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/module/DictionaryModuleTypeFactory.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/services/JTricksService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/services/JTricksService.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/servlet/JTricksServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/servlet/JTricksServlet.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/servlet/JTricksServletFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/servlet/JTricksServletFilter.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/servlet/JTricksServletListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/servlet/JTricksServletListener.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/user/TwitterUserFormat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/user/TwitterUserFormat.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/webwork/MathAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/webwork/MathAction.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/webwork/RedirectAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/webwork/RedirectAction.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/webwork/TranslateAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/jira/webwork/TranslateAction.class -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/com/jtricks/services/myjtricksservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/com/jtricks/services/myjtricksservice.xml -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/css/jtricks-utilities.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/js/jtricks-utilities.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/jtricks-utilities.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/jtricks-utilities.properties -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/jtricks-utilities_fr_FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/jtricks-utilities_fr_FR.properties -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/templates/action/math.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/templates/action/math.vm -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/templates/action/redirect.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/templates/action/redirect.vm -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/templates/action/translate.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/templates/action/translate.vm -------------------------------------------------------------------------------- /Chapter 11/jtricks-utilities/target/classes/templates/user/twitterLink.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/jtricks-utilities/target/classes/templates/user/twitterLink.vm -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/LICENSE -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/README -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/_DS_Store -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/_classpath.xml -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/_project.xml -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/pom.xml -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/java/com/jtricks/jira/webwork/LicensingDemoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/java/com/jtricks/jira/webwork/LicensingDemoAction.java -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/css/licensing-demo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/js/licensing-demo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/licensing-demo.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/resources/licensing-demo.properties -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/main/resources/templates/action/licensing-demo.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/main/resources/templates/action/licensing-demo.vm -------------------------------------------------------------------------------- /Chapter 11/licensing-demo/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/licensing-demo/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 11/number-utility/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/LICENSE -------------------------------------------------------------------------------- /Chapter 11/number-utility/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/README -------------------------------------------------------------------------------- /Chapter 11/number-utility/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/_DS_Store -------------------------------------------------------------------------------- /Chapter 11/number-utility/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/_classpath.xml -------------------------------------------------------------------------------- /Chapter 11/number-utility/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/_project.xml -------------------------------------------------------------------------------- /Chapter 11/number-utility/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/pom.xml -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/java/com/jtricks/utilities/NumberUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/src/main/java/com/jtricks/utilities/NumberUtility.java -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/resources/css/number-utility.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/resources/js/number-utility.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/main/resources/number-utility.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/src/main/resources/number-utility.properties -------------------------------------------------------------------------------- /Chapter 11/number-utility/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 11/number-utility/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 2/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Chapter 2/action-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/LICENSE -------------------------------------------------------------------------------- /Chapter 2/action-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/README -------------------------------------------------------------------------------- /Chapter 2/action-plugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/_classpath.xml -------------------------------------------------------------------------------- /Chapter 2/action-plugin/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/_project.xml -------------------------------------------------------------------------------- /Chapter 2/action-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/pom.xml -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/java/com/jtricks/jira/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/java/com/jtricks/jira/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/java/com/jtricks/jira/webwork/DemoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/java/com/jtricks/jira/webwork/DemoAction.java -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/action-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/action-plugin.properties -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/css/action-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/js/action-plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/templates/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/templates/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/demoaction/input.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/demoaction/input.vm -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/demoaction/joy.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/demoaction/joy.vm -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/demoaction/tears.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/main/resources/templates/j-tricks-demo-action/demoaction/tears.vm -------------------------------------------------------------------------------- /Chapter 2/action-plugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/action-plugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/LICENSE -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/README -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/_classpath.xml -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/_project.xml -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/pom.xml -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/java/com/jtricks/PluginListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/java/com/jtricks/PluginListener.java -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/resources/css/plugin-listener.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/resources/js/plugin-listener.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/main/resources/plugin-listener.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/main/resources/plugin-listener.properties -------------------------------------------------------------------------------- /Chapter 2/plugin-listener/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 2/plugin-listener/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 3/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/LICENSE -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/README -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/_classpath.xml -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/_project.xml -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/pom.xml -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/customfields/ReadOnlyUserCF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/customfields/ReadOnlyUserCF.java -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/servlet/JTricksOptionServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/servlet/JTricksOptionServlet.java -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/servlet/JTricksServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/java/com/jtricks/jira/servlet/JTricksServlet.java -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/css/customfield-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/customfield-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/customfield-plugin.properties -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/js/customfield-plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/templates/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/templates/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/templates/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/templates/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/templates/com/jtricks/edit-readonly-user.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/main/resources/templates/com/jtricks/edit-readonly-user.vm -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/main/resources/templates/com/jtricks/view-readonly-user.vm: -------------------------------------------------------------------------------- 1 | $!value -------------------------------------------------------------------------------- /Chapter 3/customfield-plugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 3/customfield-plugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 4/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/_DS_Store -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/LICENSE -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/README -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/_classpath.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/_project.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/pom.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/FieldValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/FieldValidator.java -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/FieldValidatorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/FieldValidatorFactory.java -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/RoleCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/RoleCondition.java -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/RoleConditionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/RoleConditionFactory.java -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/SetUserCFFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/SetUserCFFunction.java -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/SetUserCFFunctionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/java/com/jtricks/jira/workflow/SetUserCFFunctionFactory.java -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/_DS_Store -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/css/workflow-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/js/workflow-plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/templates/conditions/role-condition-input.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/templates/conditions/role-condition-input.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/templates/conditions/role-condition.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/templates/conditions/role-condition.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/templates/postfunctions/set-user-cf-function-input.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/templates/postfunctions/set-user-cf-function-input.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/templates/postfunctions/set-user-cf-function.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/templates/postfunctions/set-user-cf-function.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/templates/validators/field-validator-input.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/templates/validators/field-validator-input.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/templates/validators/field-validator.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/templates/validators/field-validator.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/main/resources/workflow-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/main/resources/workflow-plugin.properties -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/_DS_Store -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/FieldValidator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/FieldValidator.class -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/FieldValidatorFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/FieldValidatorFactory.class -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/RoleCondition.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/RoleCondition.class -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/RoleConditionFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/RoleConditionFactory.class -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/SetUserCFFunction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/SetUserCFFunction.class -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/SetUserCFFunctionFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/com/jtricks/jira/workflow/SetUserCFFunctionFactory.class -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/css/workflow-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/js/workflow-plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/templates/conditions/role-condition-input.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/templates/conditions/role-condition-input.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/templates/conditions/role-condition.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/templates/conditions/role-condition.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/templates/postfunctions/set-user-cf-function-input.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/templates/postfunctions/set-user-cf-function-input.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/templates/postfunctions/set-user-cf-function.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/templates/postfunctions/set-user-cf-function.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/templates/validators/field-validator-input.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/templates/validators/field-validator-input.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/templates/validators/field-validator.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/templates/validators/field-validator.vm -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/classes/workflow-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/classes/workflow-plugin.properties -------------------------------------------------------------------------------- /Chapter 4/workflow-plugin/target/test-classes/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 4/workflow-plugin/target/test-classes/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 5/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/_DS_Store -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/LICENSE -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/README -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/_classpath.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/_project.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/pom.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/java/com/jtricks/jira/reports/AllIssuesReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/java/com/jtricks/jira/reports/AllIssuesReport.java -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/java/com/jtricks/jira/reports/CascadingValuesGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/java/com/jtricks/jira/reports/CascadingValuesGenerator.java -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/java/com/jtricks/jira/reports/ProjectValuesGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/java/com/jtricks/jira/reports/ProjectValuesGenerator.java -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/_DS_Store -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/css/reports-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/gadgets/hello-gadget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/gadgets/hello-gadget.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/gadgets/hello-user-gadget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/gadgets/hello-user-gadget.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/i18n/messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/i18n/messages.xml -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/images/screenshot.png -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/images/thumbnail.png -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/js/reports-plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/reports-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/reports-plugin.properties -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/templates/allissues/allissues-report-excel.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/templates/allissues/allissues-report-excel.vm -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/main/resources/templates/allissues/allissues-report.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/main/resources/templates/allissues/allissues-report.vm -------------------------------------------------------------------------------- /Chapter 5/reports-plugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 5/reports-plugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 6/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/LICENSE -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/README -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/_classpath.xml -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/_project.xml -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/pom.xml -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/jql/ProjectsFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/jql/ProjectsFunction.java -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/search/IssueHTMLView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/search/IssueHTMLView.java -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/search/SearchRequestHTMLView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/search/SearchRequestHTMLView.java -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/search/SimpleSearchRequestHTMLView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/search/SimpleSearchRequestHTMLView.java -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/servlet/JTricksFilterServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/servlet/JTricksFilterServlet.java -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/servlet/JTricksSearchServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/java/com/jtricks/jira/servlet/JTricksSearchServlet.java -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/_DS_Store -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/css/jql-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/jql-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/jql-plugin.properties -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/js/jql-plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/templates/searchrequest-html-body.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/templates/searchrequest-html-body.vm -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/templates/searchrequest-html-footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/templates/searchrequest-html-footer.vm -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/templates/searchrequest-html-header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/templates/searchrequest-html-header.vm -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/templates/single-html-footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/templates/single-html-footer.vm -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/templates/single-html-header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/templates/single-html-header.vm -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/main/resources/templates/single-html-view.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/main/resources/templates/single-html-view.vm -------------------------------------------------------------------------------- /Chapter 6/jql-plugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 6/jql-plugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 7/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/LICENSE -------------------------------------------------------------------------------- /Chapter 7/issue-manager/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/README -------------------------------------------------------------------------------- /Chapter 7/issue-manager/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/_classpath.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/_project.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/pom.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/_DS_Store -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/AttachmentManagerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/AttachmentManagerServlet.java -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/ChangeLogManagerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/ChangeLogManagerServlet.java -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/CommentManagerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/CommentManagerServlet.java -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/IssueManagerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/IssueManagerServlet.java -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/LinkManagerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/LinkManagerServlet.java -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/WorklogManagerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/servlet/WorklogManagerServlet.java -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/java/com/jtricks/jira/webfragment/conditions/UserCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/java/com/jtricks/jira/webfragment/conditions/UserCondition.java -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/resources/css/issue-manager.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/resources/issue-manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/main/resources/issue-manager.properties -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/main/resources/js/issue-manager.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/issue-manager/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/AttachmentManagerServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/AttachmentManagerServlet.class -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/ChangeLogManagerServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/ChangeLogManagerServlet.class -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/CommentManagerServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/CommentManagerServlet.class -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/IssueManagerServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/IssueManagerServlet.class -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/LinkManagerServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/LinkManagerServlet.class -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/WorklogManagerServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/com/jtricks/jira/servlet/WorklogManagerServlet.class -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/com/jtricks/jira/webfragment/conditions/UserCondition.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/com/jtricks/jira/webfragment/conditions/UserCondition.class -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/css/issue-manager.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/issue-manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/classes/issue-manager.properties -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/classes/js/issue-manager.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/issue-manager/target/test-classes/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 7/issue-manager/target/test-classes/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 8/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/LICENSE -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/README -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/_classpath.xml -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/_project.xml -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/pom.xml -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/jira/webwork/JTricksDemoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/jira/webwork/JTricksDemoAction.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/jira/webwork/TwitterLinkAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/jira/webwork/TwitterLinkAction.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/conditions/DeveloperCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/conditions/DeveloperCondition.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/context/UserContextProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/context/UserContextProvider.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/links/FavouritesLinkProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/links/FavouritesLinkProvider.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/renderer/TwitterLinkRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/renderer/TwitterLinkRenderer.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/JTricksIssueTabPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/JTricksIssueTabPanel.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/JTricksProjectTabPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/JTricksProjectTabPanel.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/context/ProjectPanelContextProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/context/ProjectPanelContextProvider.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/issueaction/JTricksAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/java/com/jtricks/ui/tabs/issueaction/JTricksAction.java -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/_DS_Store -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/css/ui-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/images/twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/images/twitter.jpg -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/js/ui-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/js/ui-plugin.js -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/issue/issue-panel.vm: -------------------------------------------------------------------------------- 1 | Hey $user, sample Issue Tab Panel! -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/issue/twitterlink-final.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/templates/issue/twitterlink-final.vm -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/issue/twitterlink.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/templates/issue/twitterlink.vm -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/j-tricks-demo-action/jtricksdemoaction/success.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/templates/j-tricks-demo-action/jtricksdemoaction/success.vm -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/project/project-navigation-panel.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/templates/project/project-navigation-panel.vm -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/project/project-navigation-panel1.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/templates/project/project-navigation-panel1.vm -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/project/project-navigation-panel2.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/templates/project/project-navigation-panel2.vm -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/templates/project/project-panel.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/templates/project/project-panel.vm -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/main/resources/ui-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/main/resources/ui-plugin.properties -------------------------------------------------------------------------------- /Chapter 8/ui-plugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 8/ui-plugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 9/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-client/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-client/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/_classpath.xml -------------------------------------------------------------------------------- /Chapter 9/rest-client/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/_project.xml -------------------------------------------------------------------------------- /Chapter 9/rest-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/pom.xml -------------------------------------------------------------------------------- /Chapter 9/rest-client/src/main/java/com/jtricks/AttachmentClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/src/main/java/com/jtricks/AttachmentClient.java -------------------------------------------------------------------------------- /Chapter 9/rest-client/src/main/java/com/jtricks/CommentClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/src/main/java/com/jtricks/CommentClient.java -------------------------------------------------------------------------------- /Chapter 9/rest-client/src/main/java/com/jtricks/ComponentClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/src/main/java/com/jtricks/ComponentClient.java -------------------------------------------------------------------------------- /Chapter 9/rest-client/src/main/java/com/jtricks/IssueClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/src/main/java/com/jtricks/IssueClient.java -------------------------------------------------------------------------------- /Chapter 9/rest-client/src/main/java/com/jtricks/SearchClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/src/main/java/com/jtricks/SearchClient.java -------------------------------------------------------------------------------- /Chapter 9/rest-client/src/main/java/com/jtricks/VersionClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/src/main/java/com/jtricks/VersionClient.java -------------------------------------------------------------------------------- /Chapter 9/rest-client/src/main/java/com/jtricks/WorklogClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-client/src/main/java/com/jtricks/WorklogClient.java -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/LICENSE -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/README -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/_classpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/_classpath.xml -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/_project.xml -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/pom.xml -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/java/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/java/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/java/com/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/java/com/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/java/com/jtricks/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/java/com/jtricks/_DS_Store -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/java/com/jtricks/rest/CategoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/java/com/jtricks/rest/CategoryResource.java -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/resources/META-INF/spring/plugin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/resources/META-INF/spring/plugin-context.xml -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/resources/css/rest-plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/resources/images/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/resources/images/pluginIcon.png -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/resources/images/pluginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/resources/images/pluginLogo.png -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/resources/js/rest-plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/main/resources/rest-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/main/resources/rest-plugin.properties -------------------------------------------------------------------------------- /Chapter 9/rest-plugin/src/test/resources/atlassian-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/Chapter 9/rest-plugin/src/test/resources/atlassian-plugin.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/JIRA-Development-Cookbook-Third-Edition/HEAD/README.md --------------------------------------------------------------------------------