Enable Time Tracking
https://confluence.atlassian.com/display/JIRA/Configuring+Time+Tracking
Workflow:
https://confluence.atlassian.com/display/JIRA/How+to+clear+the+resolution+field+when+the+issue+is+reopened
Startup options:
https://answers.atlassian.com/
Export more than 1000 rows:
&pager/start=1001
Edit Closed:
jira.issue.editable false
OR
You should have two properties set for this to work. The first makes the issue editable. The second specifies what group can edit at that specific workflow step.
1. Property Key = jira.issue.editable
Property value = true
2. Property Key = jira.permission.edit.group
Property Value = type-your-group-name
SQL examples for Jira
http://confluence.atlassian.com/display/JIRACOM/Example+SQL+queries+for+JIRA
Velocity templates
https://developer.atlassian.com/display/JIRADEV/Velocity+Context+for+Email+Templates
review and typical values for velocity engine
https://developer.atlassian.com/display/JIRADEV/Adding+Custom+Fields+to+Email
Confluence user rename
https://confluence.atlassian.com/display/DOC/Changing+Usernames
https://bobswift.atlassian.net/wiki/display/SCRP/Script+Plugin+for+Confluence
Crowd development
https://developer.atlassian.com/display/CROWDDEV/Event+Listeners
Crowd export users to CSV
Customizing E-mail templates:
https://confluence.atlassian.com/display/JIRA/Customising+Email+Content
Custom events description:
https://confluence.atlassian.com/display/JIRA052/Adding+a+Custom+Event
Transition screen html label:
Message Custom Field (for edit) custom field. Html inside <div id="adminMessages" class="notify info">xxx</div>
Change comments auto expand
Resolution
Add the following line into your jira-config.properties file:
jira.comment.collapsing.minimum.hidden=0
(info) The jira-config.properties file is not created by default in a new JIRA installation. For further details on adding this file and its location, please refer to Advanced JIRA Configuration
OR
Navigate to Administration >> System >> General Configuration >> Advanced Settings and modify the jira.comment.collapsing.minimum.hidden to 0
Connect plugin to another DB then main
https://answers.atlassian.com/questions/87456/connecting-a-plugin-to-a-database-different-from-jira
Groovy script runner
https://jamieechlin.atlassian.net/wiki/display/GRV/Script+Runner
Crowd Soap:
https://docs.atlassian.com/crowd/current/com/atlassian/crowd/service/soap/server/SecurityServer.html
jira Soap:
https://docs.atlassian.com/rpc-jira-plugin/latest/com/atlassian/jira/rpc/soap/JiraSoapService.html
Step permissions:
http://www.j-tricks.com/1/post/2011/02/permissions-based-on-workflow-status.html
Add columns in sub-task panel:
https://confluence.atlassian.com/pages/viewpage.action?pageId=314449374
Keppler's plugins - very useful:
http://jira-plugins.kepler-rominfo.com/x/
Workflow properties:
https://confluence.atlassian.com/display/JIRA/Workflow+properties
Disable Cloning
I have tried this in workflow step's properties -->
jira.permission.create.clone = denied
Jira Python
http://jira-python.readthedocs.org/en/latest/index.html
Broken gadgets
OS Hstory
select ACTION_ID from OS_HISTORYSTEP where ENTRY_ID=(select WORKFLOW_ID from jiraissue where pkey='TP-1');
Burndown chart - show SP from sub-task
J-Tricks, notification messages
http://www.j-tricks.com/tutorials/jira-notification-messages
Disable inline Edit for the field - place to the field configuration schema / description
<script type="text/javascript">
var removeCTE = setInterval(function() {
var editableElms = AJS.$('#customfield_15365-val')
if (editableElms.length) {
editableElms.removeClass('inactive');
editableElms.removeClass('editable-field');
editableElms.removeAttr('title');
editableElms.find('span.overlay-icon').hide();
}},500);
</script>
Announcement Banner colour:
Place the following code in the announcement banner
<script> (function($){ $(document).ready(function(){ $(".alertHeader").css("background-color","red"); }); })(AJS.$); </script>
or
<div class="global-warning" width="100%" align="center">Text</div>
https://confluence.atlassian.com/display/CONFKB/How+to+Add+a+Site-Wide+Banner
<!-- Message Banner --> <div style="background-color: yellow; border: 2px solid red; margin: 4px; padding: 2px; font-weight: bold; text-align: center;"> Your important message... </div>
Configuring Agile Cards:
https://confluence.atlassian.com/display/AGILE/Configuring+your+Card+Styles
Locked Agile fields:
https://jira.atlassian.com/browse/JRA-35937
JAVA_HOME
https://answers.atlassian.com/questions/3660/setting-javahome
<script> AJS.$.ajaxSetup({ timeout: 120000 // Milliseconds, 60 seconds in this example. }); </script>
Broken WOrkflow: 2018-10-25 17:41:02,769 ajp-nio-8010-exec-576 ERROR ZHOV002 1060x55153x42 1ufyy28 162.49.177.169 /secure/admin/ViewFieldScreens.jspa [webwork.util.ValueStack] METHOD: "workflowTransitionVie ws", exception: java.lang.IllegalArgumentException: Cannot find Screen with id '17320'. at com.atlassian.jira.workflow.WorkflowActionsBean.getFieldScreenForView(WorkflowActionsBean.java:73) at com.atlassian.jira.workflow.AbstractJiraWorkflow.loadFieldScreenActions(AbstractJiraWorkflow.java:417) at com.atlassian.jira.workflow.AbstractJiraWorkflow.getActionsForScreen(AbstractJiraWorkflow.java:404) at com.atlassian.jira.web.action.admin.issuefields.screens.ViewFieldScreens.getWorkflowTransitionViews(ViewFieldScreens.java:139) at sun.reflect.GeneratedMethodAccessor4240.invoke(Unknown Source) ... 1 filtered SELECT * FROM jiraworkflows WHERE DESCRIPTOR LIKE '%17320%';
Drop found WF or update descriptor through
UPDATE jiraworkflows SET DESCRIPTOR = REPLACE (DESCRIPTOR, '<meta name="jira.fieldscreen.id">11100</meta>', '<meta name="jira.fieldscreen.id">3</meta>');
Get Dashboard subscribers (id - dashboard ID):
select * from favouriteassociations where entityid='17683';
PostgreSQL Collation:
createdb -U postgres -E UNICODE -l C -T template0 jiradb
pg_restore -c -i -U postgres -d jiradb -v "/backups/postgresql/jiradb.tar"
SIL
https://confluence.kepler-rominfo.com/display/SIL/Simple+Issue+Language+Usage
Error on Create Issue in Agile:
Benchmark for disk:
https://confluence.atlassian.com/kb/testing-disk-access-speed-for-a-java-application-818577561.html
Benchmark for DB:
https://confluence.atlassian.com/jirakb/testing-database-access-speed-54362302.html