├── .gitignore ├── .idea ├── .name ├── vcs.xml ├── modules.xml ├── misc.xml ├── libraries │ ├── com_github_adedayo_intellij_sdk_hg4idea_142_1.xml │ └── com_github_adedayo_intellij_sdk_git4idea_142_1.xml └── uiDesigner.xml ├── lib ├── git4idea-142.1.jar ├── hg4idea-142.1.jar ├── git4idea-142.1-sources.jar └── hg4idea-142.1-sources.jar ├── GitCommitMessagePlugin.jar ├── GitCommitMessage.template ├── screenshots ├── GitCommitMessage1.png ├── GitCommitMessage2.png └── GitCommitMessage3.png ├── src └── de │ └── gatting │ └── scm │ ├── Consts.java │ ├── Template.java │ ├── TemplateFileHandler.java │ ├── OpenPanelAction.java │ ├── template.form │ ├── GetCommitMessageAction.java │ ├── Panel.java │ ├── CommitMessage.java │ ├── PanelDialog.java │ └── panel.form ├── GitCommitMessagePlugin.iml ├── README.md ├── META-INF └── plugin.xml └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | GitCommitMessagePlugin -------------------------------------------------------------------------------- /lib/git4idea-142.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/lib/git4idea-142.1.jar -------------------------------------------------------------------------------- /lib/hg4idea-142.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/lib/hg4idea-142.1.jar -------------------------------------------------------------------------------- /GitCommitMessagePlugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/GitCommitMessagePlugin.jar -------------------------------------------------------------------------------- /lib/git4idea-142.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/lib/git4idea-142.1-sources.jar -------------------------------------------------------------------------------- /lib/hg4idea-142.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/lib/hg4idea-142.1-sources.jar -------------------------------------------------------------------------------- /GitCommitMessage.template: -------------------------------------------------------------------------------- 1 | JiraId: ${ticket:"JiraID-[0-9]{1,10}"} ${shortDescription} 2 | ${longDescription:"(?<=_)[a-zA-Z0-9]+"} -------------------------------------------------------------------------------- /screenshots/GitCommitMessage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/screenshots/GitCommitMessage1.png -------------------------------------------------------------------------------- /screenshots/GitCommitMessage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/screenshots/GitCommitMessage2.png -------------------------------------------------------------------------------- /screenshots/GitCommitMessage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanGatting/GitCommitMessage/HEAD/screenshots/GitCommitMessage3.png -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/de/gatting/scm/Consts.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | public final class Consts { 4 | public static final String TICKET = "ticket"; 5 | public static final String SHORT_DESCRIPTION = "shortDescription"; 6 | public static final String LONG_DESCRIPTION = "longDescription"; 7 | } -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/libraries/com_github_adedayo_intellij_sdk_hg4idea_142_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/libraries/com_github_adedayo_intellij_sdk_git4idea_142_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/de/gatting/scm/Template.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | import com.intellij.openapi.project.Project; 4 | 5 | import javax.swing.*; 6 | 7 | public class Template { 8 | 9 | private JPanel mainPanel; 10 | private JTextArea templateContent; 11 | private JTextPane helpPane; 12 | 13 | public Template(Project project) { 14 | templateContent.setText(TemplateFileHandler.loadFile(project)); 15 | } 16 | 17 | JPanel getMainPanel() { 18 | return mainPanel; 19 | } 20 | 21 | String getTemplateContent() { 22 | return templateContent.getText().trim(); 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /GitCommitMessagePlugin.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Git Commit Message 2 | 3 | Create Git commit messages. 4 | The structure is defined within a template, that is customized by the user himself. 5 | All variables can have an optional RegEx expression, that is parsing the Git or HG Mercurial Branch name. 6 | 7 | 8 | ## Installation 9 | 10 | Install directly from the IDE plugin manager (File > Settings > Plugins > Browser repositories > Git Commit Template) 11 | 12 | ## Usage 13 | Template example: 14 | ``` 15 | JiraId: ${ticket:"JiraID-[0-9]{1,10}"} ${shortDescription} 16 | ${longDescription:"(?<=_)[a-zA-Z0-9]+"} 17 | ``` 18 | 19 | e.g. feature/JiraID-1234_Test_Branch (git branch) -> JiraId-1234 20 | 21 | ## License 22 | 23 | Licensed under the Apache License, Version 2.0 (the "License"); 24 | you may not use this file except in compliance with the License. 25 | You may obtain a copy of the License at 26 | 27 | http://www.apache.org/licenses/LICENSE-2.0 28 | 29 | Unless required by applicable law or agreed to in writing, software 30 | distributed under the License is distributed on an "AS IS" BASIS, 31 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 32 | See the License for the specific language governing permissions and 33 | limitations under the License. -------------------------------------------------------------------------------- /src/de/gatting/scm/TemplateFileHandler.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | import com.intellij.openapi.project.Project; 4 | 5 | import java.io.IOException; 6 | import java.nio.file.Files; 7 | import java.nio.file.Path; 8 | import java.nio.file.Paths; 9 | 10 | public class TemplateFileHandler { 11 | 12 | private static final String SCM_COMMIT_TEMPLATE_FILE = "/GitCommitMessage.template"; 13 | 14 | private static Path path; 15 | 16 | public static String loadFile(final Project project) { 17 | if (path == null) { 18 | path = Paths.get(project.getBasePath() + SCM_COMMIT_TEMPLATE_FILE); 19 | } 20 | try { 21 | if (Files.exists(path)) { 22 | return new String(Files.readAllBytes(path)); 23 | } 24 | return ""; 25 | } catch (IOException e) { 26 | throw new RuntimeException(e); 27 | } 28 | } 29 | 30 | public static void storeFile(final Project project, String templateContent) { 31 | try { 32 | if (path == null) { 33 | path = Paths.get(project.getBasePath() + SCM_COMMIT_TEMPLATE_FILE); 34 | } 35 | Files.write(path, templateContent.getBytes()); 36 | } catch (IOException e) { 37 | throw new RuntimeException(e); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/de/gatting/scm/OpenPanelAction.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | import com.intellij.openapi.actionSystem.AnAction; 4 | import com.intellij.openapi.actionSystem.AnActionEvent; 5 | import com.intellij.openapi.project.DumbAware; 6 | import com.intellij.openapi.ui.DialogWrapper; 7 | import com.intellij.openapi.vcs.CommitMessageI; 8 | import com.intellij.openapi.vcs.VcsDataKeys; 9 | import com.intellij.openapi.vcs.ui.Refreshable; 10 | import org.jetbrains.annotations.Nullable; 11 | 12 | 13 | public class OpenPanelAction extends AnAction implements DumbAware { 14 | 15 | @Override 16 | public void actionPerformed(AnActionEvent actionEvent) { 17 | 18 | final CommitMessageI commitPanel = getCommitPanel(actionEvent); 19 | if (commitPanel == null) 20 | return; 21 | 22 | 23 | PanelDialog dialog = new PanelDialog(actionEvent.getProject()); 24 | dialog.show(); 25 | if (dialog.getExitCode() == DialogWrapper.OK_EXIT_CODE) { 26 | commitPanel.setCommitMessage(dialog.getCommitMessage(actionEvent.getProject())); 27 | } 28 | 29 | } 30 | 31 | @Nullable 32 | private static CommitMessageI getCommitPanel(@Nullable AnActionEvent e) { 33 | if (e == null) { 34 | return null; 35 | } 36 | Refreshable data = Refreshable.PANEL_KEY.getData(e.getDataContext()); 37 | if (data instanceof CommitMessageI) { 38 | return (CommitMessageI) data; 39 | } 40 | return VcsDataKeys.COMMIT_MESSAGE_CONTROL.getData(e.getDataContext()); 41 | } 42 | } -------------------------------------------------------------------------------- /src/de/gatting/scm/template.form: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /META-INF/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | git-commit-message-plugin 3 | Git Commit Message Plugin 4 | 1.3 5 | Jan Gatting 6 | 7 | Create Git commit messages.
9 | The structure is defined within a template, that is customized by the user himself.
10 | Ticket names are extracted from current git branches, that is defined by a RegEx
11 | e.g. feature/JiraId-1234 (git branch) - JiraId-1234 (ticket)
12 |
13 | Donate using PayPal 14 | ]]>
15 | 16 | 19 | 20 | 21 | 22 | 23 | 25 | 28 | com.intellij.modules.vcs 29 | Git4Idea 30 | hg4idea 31 | 32 | 33 | 34 | 35 | 36 | 37 | 41 | 42 | 43 | 47 | 48 | 49 | 50 | 51 | 52 |
-------------------------------------------------------------------------------- /src/de/gatting/scm/GetCommitMessageAction.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | import com.intellij.openapi.actionSystem.AnAction; 4 | import com.intellij.openapi.actionSystem.AnActionEvent; 5 | import com.intellij.openapi.project.Project; 6 | import com.intellij.openapi.vcs.CommitMessageI; 7 | import com.intellij.openapi.vcs.VcsDataKeys; 8 | import com.intellij.openapi.vcs.ui.Refreshable; 9 | import org.jetbrains.annotations.Nullable; 10 | 11 | 12 | public class GetCommitMessageAction extends AnAction { 13 | 14 | @Override 15 | public void actionPerformed(AnActionEvent actionEvent) { 16 | 17 | final CommitMessageI commitPanel = getCommitPanel(actionEvent); 18 | if (commitPanel == null) { 19 | return; 20 | } 21 | commitPanel.setCommitMessage(getCommitMessage(actionEvent.getProject())); 22 | } 23 | 24 | @Nullable 25 | private static CommitMessageI getCommitPanel(@Nullable AnActionEvent e) { 26 | if (e == null) { 27 | return null; 28 | } 29 | 30 | Refreshable data = Refreshable.PANEL_KEY.getData(e.getDataContext()); 31 | if (data instanceof CommitMessageI) { 32 | return (CommitMessageI) data; 33 | } 34 | return VcsDataKeys.COMMIT_MESSAGE_CONTROL.getData(e.getDataContext()); 35 | } 36 | 37 | 38 | private String getCommitMessage(final Project project) { 39 | String templateString = TemplateFileHandler.loadFile(project); 40 | 41 | String branchName = CommitMessage.extractBranchName(project); 42 | 43 | // Ticket 44 | String parsedTicket = CommitMessage.parseBranchNameByRegex(branchName, Consts.TICKET, templateString); 45 | templateString = CommitMessage.replaceVariableWithinTemplate(templateString, Consts.TICKET, parsedTicket); 46 | 47 | // ShortDescription 48 | String parsedShortDescription = CommitMessage.parseBranchNameByRegex(branchName, Consts.SHORT_DESCRIPTION, templateString); 49 | templateString = CommitMessage.replaceVariableWithinTemplate(templateString, Consts.SHORT_DESCRIPTION, parsedShortDescription); 50 | 51 | // LongDescription 52 | String parsedLongDescription = CommitMessage.parseBranchNameByRegex(branchName, Consts.LONG_DESCRIPTION, templateString); 53 | templateString = CommitMessage.replaceVariableWithinTemplate(templateString, Consts.LONG_DESCRIPTION, parsedLongDescription); 54 | 55 | return templateString; 56 | } 57 | 58 | } -------------------------------------------------------------------------------- /src/de/gatting/scm/Panel.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | import com.intellij.openapi.project.Project; 4 | import com.intellij.openapi.ui.DialogBuilder; 5 | import com.intellij.openapi.ui.DialogWrapper; 6 | 7 | import javax.swing.*; 8 | 9 | public class Panel { 10 | private JPanel mainPanel; 11 | private JTextField ticket; 12 | private JTextField shortDescription; 13 | private JTextArea longDescription; 14 | private JButton changeTemplateButton; 15 | 16 | Panel(Project project) { 17 | 18 | String branch = CommitMessage.extractBranchName(project); 19 | if (branch != null) { 20 | // Branch name matches Ticket Name 21 | setTextFieldsBasedOnBranch(branch, project); 22 | } 23 | 24 | changeTemplateButton.addActionListener(e -> { 25 | DialogWrapper dialog = createTemplateDialog(project); 26 | if (dialog.getExitCode() != DialogWrapper.OK_EXIT_CODE) { 27 | dialog.getExitCode(); 28 | } 29 | 30 | }); 31 | } 32 | 33 | private void setTextFieldsBasedOnBranch(String branchName, Project project) { 34 | 35 | String templateString = TemplateFileHandler.loadFile(project); 36 | // Ticket 37 | String parsedTicket = CommitMessage.parseBranchNameByRegex(branchName, Consts.TICKET, templateString); 38 | if (CommitMessage.isRegExForVariableInTemplateDefined(templateString, Consts.TICKET)) { 39 | ticket.setText(parsedTicket); 40 | } 41 | 42 | // ShortDescription 43 | String parsedShortDescription = CommitMessage.parseBranchNameByRegex(branchName, Consts.SHORT_DESCRIPTION, templateString); 44 | if (CommitMessage.isRegExForVariableInTemplateDefined(templateString, Consts.SHORT_DESCRIPTION)) { 45 | shortDescription.setText(parsedShortDescription); 46 | } 47 | 48 | // LongDescription 49 | String parsedLongDescription = CommitMessage.parseBranchNameByRegex(branchName, Consts.LONG_DESCRIPTION, templateString); 50 | if (CommitMessage.isRegExForVariableInTemplateDefined(templateString, Consts.LONG_DESCRIPTION)) { 51 | longDescription.setText(parsedLongDescription); 52 | } 53 | } 54 | 55 | JPanel getMainPanel() { 56 | return mainPanel; 57 | } 58 | 59 | public String getTicket() { 60 | return this.ticket.getText(); 61 | } 62 | 63 | public String getShortDescription() { 64 | return shortDescription.getText().trim(); 65 | } 66 | 67 | public String getLongDescription() { 68 | return longDescription.getText().trim(); 69 | } 70 | 71 | 72 | public DialogWrapper createTemplateDialog(Project project) { 73 | Template template = new Template(project); 74 | 75 | DialogBuilder builder = new DialogBuilder(project); 76 | builder.setTitle("Git / Hg Mercurial Commit Message Template."); 77 | builder.setCenterPanel(template.getMainPanel()); 78 | builder.removeAllActions(); 79 | builder.addOkAction(); 80 | builder.addCancelAction(); 81 | boolean isOk = builder.show() == DialogWrapper.OK_EXIT_CODE; 82 | if (isOk) { 83 | TemplateFileHandler.storeFile(project, template.getTemplateContent()); 84 | } 85 | return builder.getDialogWrapper(); 86 | } 87 | 88 | } -------------------------------------------------------------------------------- /src/de/gatting/scm/CommitMessage.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | import com.intellij.openapi.project.Project; 4 | import com.intellij.openapi.vcs.ProjectLevelVcsManager; 5 | import com.intellij.openapi.vcs.impl.ProjectLevelVcsManagerImpl; 6 | import git4idea.GitLocalBranch; 7 | import git4idea.branch.GitBranchUtil; 8 | import org.apache.commons.lang.StringUtils; 9 | import org.jetbrains.annotations.NotNull; 10 | import org.zmlx.hg4idea.util.HgUtil; 11 | 12 | import java.util.regex.Matcher; 13 | import java.util.regex.Pattern; 14 | 15 | public class CommitMessage { 16 | 17 | private CommitMessage() { 18 | } 19 | 20 | public static String extractBranchName(Project project) { 21 | String branch = ""; 22 | ProjectLevelVcsManager instance = ProjectLevelVcsManagerImpl.getInstance(project); 23 | if (instance.checkVcsIsActive("Git")) { 24 | GitLocalBranch currentBranch = GitBranchUtil.getCurrentRepository(project).getCurrentBranch(); 25 | 26 | if (currentBranch != null) { 27 | // Branch name matches Ticket Name 28 | branch = currentBranch.getName().trim(); 29 | } 30 | } else if (instance.checkVcsIsActive("Mercurial")) { 31 | branch = HgUtil.getCurrentRepository(project).getCurrentBranch().trim(); 32 | } 33 | 34 | return branch; 35 | } 36 | 37 | public static String parseBranchNameByRegex(String branchName, String variable, String templateString) { 38 | String regExFromTemplateVariable = getRegExFromTemplateVariable(variable, templateString); 39 | if (StringUtils.isNotEmpty(regExFromTemplateVariable)) { 40 | Pattern p = Pattern.compile(regExFromTemplateVariable); 41 | Matcher m = p.matcher(branchName); 42 | StringBuilder sb = new StringBuilder(); 43 | while (m.find()) { 44 | sb.append(m.group() + " "); 45 | } 46 | if (sb.length() > 0) { 47 | return sb.toString().trim(); 48 | } 49 | } 50 | return branchName; 51 | } 52 | 53 | private static String getRegExFromTemplateVariable(String variable, String templateString) { 54 | // The optional regEx {ticket:"regEx"} 55 | String result = StringUtils.substringAfterLast(templateString, variable + ":\""); 56 | return StringUtils.substringBefore(result, "\"}"); 57 | } 58 | 59 | public static String replaceVariableWithinTemplate(String templateString, String variable, String variableValue) { 60 | if (isRegExForVariableInTemplateDefined(templateString, variable)) { 61 | return templateString.replace(getVariableWithRegex(variable, templateString), variableValue); 62 | } 63 | return StringUtils.remove(templateString, "${" + variable + "}"); 64 | } 65 | 66 | public static boolean isRegExForVariableInTemplateDefined(String templateString, String variable) { 67 | 68 | if (StringUtils.isNotEmpty(getRegExFromTemplateVariable(variable, templateString))) { 69 | return true; 70 | } 71 | return false; 72 | } 73 | 74 | @NotNull 75 | public static String getVariableWithRegex(String variable, String templateString) { 76 | return "${" + variable + ":\"" + getRegExFromTemplateVariable(variable, templateString) + "\"}"; 77 | } 78 | } -------------------------------------------------------------------------------- /src/de/gatting/scm/PanelDialog.java: -------------------------------------------------------------------------------- 1 | package de.gatting.scm; 2 | 3 | import com.intellij.ide.plugins.IdeaPluginDescriptor; 4 | import com.intellij.ide.plugins.PluginManager; 5 | import com.intellij.openapi.extensions.PluginId; 6 | import com.intellij.openapi.project.Project; 7 | import com.intellij.openapi.ui.DialogWrapper; 8 | import org.apache.commons.lang.StringUtils; 9 | import org.apache.commons.lang.text.StrSubstitutor; 10 | import org.jetbrains.annotations.Nullable; 11 | 12 | import javax.swing.*; 13 | import java.util.HashMap; 14 | import java.util.Map; 15 | 16 | public class PanelDialog extends DialogWrapper { 17 | 18 | private final Panel panel; 19 | 20 | PanelDialog(@Nullable Project project) { 21 | super(project); 22 | panel = new Panel(project); 23 | IdeaPluginDescriptor pluginDescriptor = PluginManager.getPlugin(PluginId.getId("git-commit-message-plugin")); 24 | String version = ""; 25 | if (pluginDescriptor != null) { 26 | version = pluginDescriptor.getVersion(); 27 | } 28 | setTitle("Git / Hg Mercurial Commit Message Plugin. Version: " + version); 29 | setOKButtonText("OK"); 30 | setSize(300, 200); 31 | init(); 32 | } 33 | 34 | @Nullable 35 | @Override 36 | protected JComponent createCenterPanel() { 37 | return panel.getMainPanel(); 38 | } 39 | 40 | String getCommitMessage(Project project) { 41 | String templateString = TemplateFileHandler.loadFile(project); 42 | templateString = CommitMessage.replaceVariableWithinTemplate(templateString, Consts.TICKET, panel.getTicket()); 43 | templateString = CommitMessage.replaceVariableWithinTemplate(templateString, Consts.SHORT_DESCRIPTION, panel.getShortDescription()); 44 | templateString = CommitMessage.replaceVariableWithinTemplate(templateString, Consts.LONG_DESCRIPTION, getLongDescription(templateString)); 45 | return templateString; 46 | } 47 | 48 | private String getLongDescription(String templateString) { 49 | String longDescription = panel.getLongDescription(); 50 | // Get the empty Spaces in templates in new Line and the longDescription Variable 51 | String searchString = CommitMessage.getVariableWithRegex(Consts.LONG_DESCRIPTION, templateString); 52 | String emptySpaces = 53 | StringUtils.substringBetween(templateString, identifyLineDelimiter(templateString), searchString); 54 | String lineDelimiter = identifyLineDelimiter(longDescription); 55 | return StringUtils.replace(longDescription, lineDelimiter, lineDelimiter + emptySpaces).trim(); 56 | } 57 | 58 | 59 | /** 60 | *

Identify which line delimiter is used in a string

61 | *

62 | * This is useful when processing files that were created on different operating systems. 63 | * 64 | * @param str - the string with the mystery line delimiter. 65 | * @return the line delimiter for windows, {@code \r\n},
66 | * unix/linux {@code \n} or legacy mac {@code \r}
67 | * if none can be identified, it falls back to unix {@code \n} 68 | */ 69 | public static String identifyLineDelimiter(String str) { 70 | if (str.matches("(?s).*(\\r\\n).*")) { //Windows //$NON-NLS-1$ 71 | return "\r\n"; //$NON-NLS-1$ 72 | } else if (str.matches("(?s).*(\\n).*")) { //Unix/Linux //$NON-NLS-1$ 73 | return "\n"; //$NON-NLS-1$ 74 | } else if (str.matches("(?s).*(\\r).*")) { //Legacy mac os 9. Newer OS X use \n //$NON-NLS-1$ 75 | return "\r"; //$NON-NLS-1$ 76 | } else { 77 | return "\n"; //fallback onto '\n' if nothing matches. //$NON-NLS-1$ 78 | } 79 | } 80 | 81 | } -------------------------------------------------------------------------------- /src/de/gatting/scm/panel.form: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 |
89 | -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | --------------------------------------------------------------------------------