# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. Index: versioncontrol/mercurial/src/org/netbeans/modules/mercurial/FileInformation.java --- versioncontrol/mercurial/src/org/netbeans/modules/mercurial/FileInformation.java Base (1.5) +++ versioncontrol/mercurial/src/org/netbeans/modules/mercurial/FileInformation.java Locally Modified (Based On 1.5) @@ -253,6 +253,8 @@ } private void readEntry(File file) { + // Fetches File info from .svn directory: + // entry = Subversion.getInstance().getClient(true).getSingleStatus(file); entry = null; // TODO: read your detailed information about the file here, or disregard the entry field } Index: versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/annotate/AnnotateAction.java --- versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/annotate/AnnotateAction.java Base (1.9) +++ versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/annotate/AnnotateAction.java Locally Modified (Based On 1.9) @@ -249,7 +249,7 @@ AnnotateLine [] lines = new AnnotateLine[annotations.size()]; int i = 0; - Pattern p = Pattern.compile("^\\s*(\\w+\\b)\\s+(\\d+)\\s+(\\b.*):\\s(.*)$"); //NOI18N + Pattern p = Pattern.compile("^\\s*(\\w+\\b)\\s+(\\d+)\\s+(\\b\\S*):\\s(.*)$"); //NOI18N for (String line : annotations) { Matcher m = p.matcher(line); if (!m.matches()){