User VonC - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T06:34:23Zhttp://stackoverflow.com/feeds/user/6309http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1869630/build-current-working-set-only-in-eclipse/1869723#18697230Answer by VonC for Build Current Working Set Only in EclipseVonC2009-12-08T20:48:03Z2009-12-08T20:48:03Z<p>Another way to tackle this issue is by using tasks with <strong><a href="http://www.eclipse.org/mylyn/" rel="nofollow">Mylyn</a></strong></p>
<p><img src="http://wiki.eclipse.org/images/2/20/Feature-Reference-3.0-New-Task.png" alt="alt text"></p>
<p>Without a repository, a local task is attached to a workspace.<br>
For each task you can attach a <strong>Context</strong> - describes the resources that are most relevant to the task.</p>
http://stackoverflow.com/questions/1866926/unset-ucm-activities/1866947#18669470Answer by VonC for unset UCM activitiesVonC2009-12-08T13:23:54Z2009-12-08T13:53:40Z<p>try within your CCRC snapshot view:</p>
<pre><code>cleartool setact -none
</code></pre>
<p>The trick is, you may not have access to a CLI session to manipulate the CCRC web view, which means you need to go through the GUI.<br>
The CCRC GUI only allows you to work on an activity, not to set "no activity" on a stream.<br>
The solution is then to create a dummy (and empty) activity (in "ClearCase Navigator -> My Activities"), and select it, effectively unsetting any other activity.</p>
<p>As mentioned in the <a href="http://www-01.ibm.com/support/docview.wss?uid=swg21233090" rel="nofollow">Feature Comparison Matrix for CCRC, CCWeb, Native ClearCase and SCM Adapter</a>, Unset Current Activity is only supported with CCRC7.1.<br>
Since you have a CCRC7.0, the previous workarounds (create another activity, or ask to the admin team to unset directly in the web view on the CCRC server) still apply.</p>
http://stackoverflow.com/questions/1866285/how-do-i-find-the-project-of-the-contents-of-an-itextviewer/1866664#18666642Answer by VonC for How do i find the project of the contents of an ITextViewer?VonC2009-12-08T12:31:58Z2009-12-08T12:31:58Z<p>After looking at the article <a href="http://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation%5FAST/index.html" rel="nofollow">Abstract Syntax Tree</a>, may be you could look for the right path by asking the <a href="http://kickjava.com/src/org/eclipse/core/filebuffers/ITextFileBufferManager.java.htm" rel="nofollow"><code>ITextFileBufferManager</code></a> </p>
<pre><code>ITextFileBufferManager bufferManager = FileBuffers.getTextFileBufferManager(); // get the buffer manager
</code></pre>
<p>Use then <a href="http://kickjava.com/src/org/eclipse/core/filebuffers/ITextFileBufferManager.java.htm#ixzz0Z6GM6fsM" rel="nofollow"><code>getTextFileBuffer()</code></a></p>
<pre><code> ITextFileBuffer getTextFileBuffer(IDocument document);
</code></pre>
<p>If you get a <a href="http://kickjava.com/src/org/eclipse/core/filebuffers/ITextFileBuffer.java.htm" rel="nofollow"><code>ITextFileBuffer</code></a>, you can call on it <a href="http://kickjava.com/src/org/eclipse/core/filebuffers/IFileBuffer.java.htm#ixzz0Z6FqeCkJ" rel="nofollow"><code>getLocation()</code></a> and get back its <a href="http://kickjava.com/src/org/eclipse/core/runtime/IPath.java.htm" rel="nofollow"><code>IPath</code></a>.</p>
http://stackoverflow.com/questions/1866323/eclipse-autocompletion-from-class-file/1866375#18663752Answer by VonC for eclipse autocompletion from class file?VonC2009-12-08T11:28:43Z2009-12-08T11:28:43Z<p>The <kbd>CTRL</kbd>+<kbd>Space</kbd> should work, but I would recommend a recent eclipse and PDT.</p>
<p>At the beginning of PDT, there used to be some completion issues like <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=167626" rel="nofollow">bug 167626</a>, but they are fixed by now.<br>
Do indicate to eclipse what Php you are using (4? 5? see <a href="http://dev.eclipse.org/newslists/news.eclipse.tools.pdt/msg03227.html" rel="nofollow">this thread</a>), and make sure your project is opened as a Php one (see <a href="http://dev.eclipse.org/newslists/news.eclipse.tools.php/msg00737.html" rel="nofollow">this thread</a>)</p>
http://stackoverflow.com/questions/1865686/i-installed-eclipse-imp-eclipse-ide-cant-open/1865799#18657990Answer by VonC for I installed Eclipse IMP, eclipse ide can't openVonC2009-12-08T09:33:13Z2009-12-08T09:33:13Z<p>I am not sure IMP is compatible with an eclipse Galileo (3.5).</p>
<p>Their <a href="http://eclipse-imp.sourceforge.net/installing/index.html" rel="nofollow">installation page</a> mentions eclipse3.2</p>
http://stackoverflow.com/questions/1865664/mercurial-get-non-versioned-copy-of-an-earlier-version-of-a-file/1865742#18657420Answer by VonC for Mercurial: Get non-versioned copy of an earlier version of a fileVonC2009-12-08T09:20:30Z2009-12-08T09:20:30Z<p>If you mean: <a href="http://www.isaacsu.com/wilt/articles/mercurial-hg-equivalent-of-svn-export-" rel="nofollow">what is the equivalent of svn export?</a>, that would be:</p>
<pre><code>hg archive ..\project.export
</code></pre>
<p>See also this <a href="http://mercurial.selenic.com/wiki/TipsAndTricks#Make%5Fa%5Fclean%5Fcopy%5Fof%5Fa%5Fsource%5Ftree.2C%5Flike%5FCVS%5Fexport" rel="nofollow">TipsAndTrick section</a></p>
<blockquote>
<p>Make a clean copy of a source tree, like CVS export</p>
</blockquote>
<pre><code>hg clone source export
rm -rf export/.hg
</code></pre>
<blockquote>
<p>or using the archive command</p>
</blockquote>
<pre><code>cd source
hg archive ../export
</code></pre>
<blockquote>
<p>The same thing, but for a tagged release:</p>
</blockquote>
<pre><code>hg clone --noupdate source export-tagged
cd export-tagged
hg update mytag
rm -rf .hg
</code></pre>
<blockquote>
<p>or using the archive command</p>
</blockquote>
<pre><code>cd source
hg archive -r mytag ../export-tagged
</code></pre>
http://stackoverflow.com/questions/1863405/error-when-updating-installing-software-in-eclipse-3-4-2/1865071#18650710Answer by VonC for Error when Updating/Installing software in Eclipse 3.4.2VonC2009-12-08T06:45:12Z2009-12-08T06:45:12Z<p>p2 was barely able to run in 3.4.x (and was still with quite a few bugs like <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=254473" rel="nofollow">this one</a> in early 3.5).<br>
Any chance you can try with a 3.5.1 eclipse installation?</p>
http://stackoverflow.com/questions/1862847/version-control-of-uploaded-images-to-file-system/1862859#18628591Answer by VonC for Version control of uploaded images to file systemVonC2009-12-07T21:01:26Z2009-12-07T21:07:49Z<p>It can work, but I would store those images in a git repository which would then be a <a href="http://stackoverflow.com/questions/540535/managing-large-binary-files-with-git"><strong>submodule</strong> of the git repo</a> with the source code.<br>
That way, a strong relationship exists between the code and and images, even though the images are in their own repo.<br>
Plus, it avoids issues with <code>git gc</code> or <code>git prune</code> being less efficient with large number of binary files: if images are in their own repo, and with few variations for each of them, the maintenance on that repo is fairly light. Whereas the source code repo can evolve much more dynamically, with the usual git maintenance commands in play.</p>
http://stackoverflow.com/questions/1862231/git-exclude-file/1862265#18622656Answer by VonC for Git - exclude fileVonC2009-12-07T19:19:36Z2009-12-07T19:29:31Z<p>You can </p>
<pre><code>git rm myConfigFile
echo myConfigFile > .gitignore
git add .gitignore
git commit -m "from now on, no more myConfigFile"
</code></pre>
<p>The other extreme approach (dangerous especially if you have already pushed your repo to a remote one) would be to entirely remove that file from the history of said repo:</p>
<pre><code>git filter-branch --index-filter 'git update-index --remove myConfigFile' HEAD
</code></pre>
<p>(to use with care, and with a backup first)</p>
<p>The question <a href="http://stackoverflow.com/questions/872565/how-do-i-remove-sensitive-files-from-gits-history">How do I remove sensitive files from git’s history</a> has more on that sensitive topic. </p>
<p>The problems with this process are twofold:</p>
<p>1/ If your repo has already be cloned, you can never guarantee the confidential information will be really "gone" from every other repo.
2/ When others try pull down your latest changes after this, they'll get a message indicating that the the changes can't be applied because it's not a fast-forward. To fix this, they'll have to either delete their existing repository and re-clone it, or follow the instructions under "RECOVERING FROM UPSTREAM REBASE" in the <a href="http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html" rel="nofollow"><code>git-rebase</code> manpage</a>.<br>
In both case, your confidential information will not be "quietly" replaced or erased...</p>
http://stackoverflow.com/questions/1862220/how-can-i-sync-files-in-two-different-git-repositories-not-clones-and-maintain/1862303#18623031Answer by VonC for How can I sync files in two different git repositories (not clones) and maintain history?VonC2009-12-07T19:27:58Z2009-12-07T19:27:58Z<p>The subtree merge strategy, combined with the script <a href="http://stackoverflow.com/questions/1761053/using-git-how-to-merge-a-subtree-from-remote-branch"><strong>git subtree</strong></a>, might help here.<br>
It would work for push and pull.<br>
It has still some <a href="http://stackoverflow.com/questions/1306595/git-confused-when-merging-an-update-into-my-subtree">issue with merges</a>, although Git1.7.0 will fix that with a '<code>-Xsubtree</code>' option, but it still worth looking into.</p>
http://stackoverflow.com/questions/1859522/how-to-git-svn-fetch-older-history/1859789#18597892Answer by VonC for How to git svn fetch older history?VonC2009-12-07T12:52:51Z2009-12-07T12:52:51Z<p>You could follow the possibilities mentioned by <a href="http://stackoverflow.com/users/46058/jakub-narebski">Jakub Narębski</a> in <a href="http://stackoverflow.com/questions/1220557/how-do-i-prepend-history-to-a-git-repo">How do I prepend history to a git repo?</a></p>
<p>Basically, you import again your SVN repo with a larger commit range, then merge the two Git repo together.</p>
http://stackoverflow.com/questions/1858359/should-i-put-my-output-files-in-source-control/1858379#18583793Answer by VonC for Should I put my output files in source control?VonC2009-12-07T07:22:53Z2009-12-07T07:22:53Z<p>Generated output files (in general) are "dangerous" in a VCS because:</p>
<ul>
<li>what you need to version is how to regenerate them: the day you will need to actually update them, chances are you won't remember how to do it</li>
<li>they can contain some private generated file which make them work on the committer desktop, but not on a client one ("works on my machine" <sup>TM</sup> syndrome)</li>
<li>some generated file are not easily stored in delta (binary especially), making them consuming lots of space (and the topic of cleaning that space will come-up someday...)</li>
</ul>
<p>External libraries are not generated directly by your project, and can be put in a VCS, although external repositories like a public Maven repo are better at this kind of management.</p>
http://stackoverflow.com/questions/1730079/indentation-guide-for-the-eclipse-editor/1858296#18582960Answer by VonC for Indentation guide for the eclipse editorVonC2009-12-07T06:53:13Z2009-12-07T06:53:13Z<p>The closest approximation would be to combine:</p>
<ul>
<li>showing the whitespace characters (which shows tabs and spaces, but not just tabs)</li>
<li>code folding (available <a href="http://pydev.org/manual%5Fadv%5Ffeatures.html" rel="nofollow">with PyDev</a>)</li>
</ul>
http://stackoverflow.com/questions/1856241/git-workflow-for-corporate-linux-kernel-development/1856474#18564743Answer by VonC for Git workflow for corporate Linux kernel developmentVonC2009-12-06T20:17:21Z2009-12-06T20:17:21Z<p>Rebase is good for <a href="http://stackoverflow.com/questions/804115/git-rebase-vs-git-merge">integrating upstream branches</a> into one's local branch, provided one does not push said local branch (since the history of that local branch has been rewritten). See for instance <a href="http://stackoverflow.com/questions/457927/git-workflow-and-rebase-vs-merge-questions">"git workflow and rebase vs merge questions"</a>.</p>
<p>A dedicated "public" branch (i.e. meant to be pushed) should be dedicated in each of the developers Git repository, in order to <a href="http://stackoverflow.com/questions/1241720/git-cherry-pick-vs-merge-workflow">merge/cherry-pick</a> the relevant changes to push.<br>
Potentially, several public branches could coexist, one per kernel version to maintain/fix, if needed.</p>
<p>A central repo can then be set to integrate (i.e. pulled) all the developer branches pushed in it.</p>
<p>See also <a href="http://stackoverflow.com/questions/1042400/git-releases-management/1042463#1042463">"git releases management"</a> for more on the merge workflow and publication topics.</p>
http://stackoverflow.com/questions/1855117/which-version-control-system-or-platform-is-the-best-one-for-tracking-and-distrib/1855159#18551593Answer by VonC for Which version control system or platform is the best one for tracking and distributing personal Emacs configurations?VonC2009-12-06T11:45:28Z2009-12-06T11:45:28Z<p>Every time you have to deal with some "distribution" issue, you could be better off considering a <em>Distributed</em> Version Control System (DVCS).</p>
<p>With Git, for instance, you could organize your packages as <a href="http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html" rel="nofollow">submodules</a> within a main emacs configuration project, itself referenced as a submodule within your own project.</p>
<p>That way, you only need to</p>
<pre><code> git submodule update --recursive
</code></pre>
<p>once in a while to be sure getting the latest packages referenced by your central configuration project.<br>
Note: the recursive initialization of those submodules is a bit tricky: see this <a href="http://stackoverflow.com/questions/1535524/git-submodule-inside-of-a-submodule">SO question for more</a>.</p>
http://stackoverflow.com/questions/1849656/how-do-i-easily-add-a-new-method-in-eclipse/1849834#18498342Answer by VonC for How do I easily add a new method in Eclipse?VonC2009-12-04T21:43:05Z2009-12-04T21:43:05Z<p>JDT being one of the main plugins bundled with eclipse (which is an application platform on top of the OSGi-based equinox), it is mainly a Java <em>editor</em>.<br>
Meaning: to create a new method... you just type it in a Java editor.</p>
<p>The only other eclipse environment where you see that kind of feature (click on a class and type new methods) is a UML-oriented editor, like the <a href="http://www.ejb3.org/" rel="nofollow">Omondo product</a>.<br>
(In the <a href="http://www.eclipse.org/modeling/mdt/?project=uml2" rel="nofollow">UML2 project</a>, <a href="http://wiki.eclipse.org/MDT/Papyrus" rel="nofollow">Papyrus</a> or <a href="http://wiki.eclipse.org/MDT-UML2Tools" rel="nofollow">MDT-UML2Tools</a> might provide that sort of editing capabilities <em>eventually</em>)<br>
But aside that kind of plugin, I do not think you can achieve natively this way of creating new methods.</p>
http://stackoverflow.com/questions/1847759/plugin-version-on-log4j-log-file/1848408#18484080Answer by VonC for Plugin version on log4j log fileVonC2009-12-04T17:18:37Z2009-12-04T17:18:37Z<p>You could ask your application to get the version information from a <code>plugin.properties</code> or even a <code>custom my.properties</code> file, like in <a href="http://www.eclipsezone.com/eclipse/forums/t77022.html" rel="nofollow">this thread</a>:</p>
<pre><code>public class MyPlugin extends AbstractUIPlugin {
protected final static String MY_PROPERTIES = "my.properties";
protected PropertyResourceBundle myProperties;
public PropertyResourceBundle getMyProperties(){
if (myProperties == null){
try {
myProperties = new PropertyResourceBundle(
FileLocator.openStream(this.getBundle(),
new Path(MY_PROPERTIES),false));
} catch (IOException e) {
this.logError(e.getMessage());
}
return myProperties;
}
...
</code></pre>
<blockquote>
<p>Then from within your code you would call: </p>
</blockquote>
<pre><code>MyPlugin.getInstance().getMyProperties().getString("foo");
</code></pre>
<p>This could then be store in a static variable for the duration of your session, and reused in your log4j output.</p>
http://stackoverflow.com/questions/1846858/git-branching-question/1847423#18474235Answer by VonC for Git Branching QuestionVonC2009-12-04T14:50:38Z2009-12-04T14:50:38Z<p>The right way in this case would be to:</p>
<ul>
<li>make sure you have B1.1 and B1.2 created (to isolate final fixes in their respective branch)</li>
<li>apply your patch on master</li>
<li>cherry-pick that commit to B1 and B2</li>
</ul>
<p>As mentionned in <a href="http://www.mail-archive.com/libtool-patches@gnu.org/msg03765.html" rel="nofollow">this thread</a>, that would:</p>
<blockquote>
<p>ensures master doesn't regress with respect to an older branch. (Do not use merge unless you want to merge all changes from one branch to another, rather than just the single commit
you mention.)</p>
</blockquote>
http://stackoverflow.com/questions/1846249/how-to-externalize-strings-to-multiple-files-in-eclipse/1846459#18464590Answer by VonC for How to externalize strings to multiple files in EclipseVonC2009-12-04T11:44:31Z2009-12-04T11:44:31Z<p>To my knowledge, no, you cannot from the "Externalize Strings", translate a word into multiple locale.<br>
The best way to mitigate that is to have some file diff tools ready to show you what new lines exist in <code>messages.properties</code> which do not exist in other <code>messages_xx.properties</code>.</p>
http://stackoverflow.com/questions/1804839/eclipse-most-useful-refactorings/1845807#18458071Answer by VonC for Eclipse: Most useful refactoringsVonC2009-12-04T09:16:32Z2009-12-04T09:16:32Z<p>I like the Extract Method (<kbd>Alt</kbd>+<kbd>Shift</kbd>+<kbd>M</kbd>), and since <a href="http://download.eclipse.org/eclipse/downloads/drops/S-3.6M1-200908061400/eclipse-news-M1.html#JDT" rel="nofollow"><strong>3.6M1</strong></a>, it now handles selections that contain continue statements. </p>
<blockquote>
<p>To preserve the semantics of the existing code, the selection needs to include the last statement of the loop. In the extracted method, continue statements are changed to return:</p>
</blockquote>
<p><img src="http://download.eclipse.org/eclipse/downloads/drops/S-3.6M1-200908061400/images/extract-method-continue.png" alt="Extract method refactoring with continue"></p>
<blockquote>
<p>For a selection that would need multiple return values in the extracted method, Eclipse now lists the conflicting variables in the error message:</p>
</blockquote>
<p><img src="http://download.eclipse.org/eclipse/downloads/drops/S-3.6M1-200908061400/images/extract-method-multiple-return-values.png" alt="Extract method refactoring with an ambiguous return value error"> </p>
http://stackoverflow.com/questions/1756604/moving-commits-from-unrelated-repository-in-git-git-p4/1845671#18456711Answer by VonC for moving commits from unrelated repository in git, git-p4VonC2009-12-04T08:42:17Z2009-12-04T08:42:17Z<p>You could try and look into <strong><a href="http://stackoverflow.com/questions/161928/what-are-git-info-grafts-for">git grafts</a></strong>, to see if you can merge the two history (one large in your git repo, and the new short one, from a new p4 clone)</p>
<p>You have more details in the question "<a href="http://stackoverflow.com/questions/1220557/how-do-i-prepend-history-to-a-git-repo">How do I prepend history to a git repo?</a>"</p>
http://stackoverflow.com/questions/1767719/command-click-broken-on-eclipse-3-5-snow-leopard/1845658#18456580Answer by VonC for command-click broken on Eclipse 3.5/Snow LeopardVonC2009-12-04T08:37:45Z2009-12-04T08:37:45Z<p>It depends of the language supported by your eclipse platform.</p>
<p>As <a href="http://stackoverflow.com/users/127269/secko">Secko</a> mentions in the comments, CDT has issue.<br>
PDT also had problems (<a href="http://www.eclipse.org/newsportal/article.php?id=2486&group=eclipse.tools.pdt" rel="nofollow">see this list</a>)</p>
<p>But in general, you can try to restart your eclipse with a '<code>-clean</code>' option to check if it solves this situation.</p>
http://stackoverflow.com/questions/1783516/gitosis-did-not-generate-projects-list-automatically-gitweb-cant-work/1845593#18455930Answer by VonC for gitosis did not generate projects.list automatically, gitweb can't work.VonC2009-12-04T08:20:39Z2009-12-04T08:20:39Z<p>Is this similar to "<a href="http://stackoverflow.com/questions/112613/git-instaweb-gives-403-forbidden-no-projects-found">git instaweb gives 403 Forbidden - No projects found </a>", where you need to remove the <code>$projectroot</code> line from <code>/etc/gitweb.conf</code>?</p>
http://stackoverflow.com/questions/1844517/is-there-anyway-i-can-convert-a-list-of-applications-and-services-to-an-architect/1845246#18452460Answer by VonC for is there anyway i can convert a list of applications and services to an architecture diagramVonC2009-12-04T06:36:47Z2009-12-04T06:36:47Z<p>The closest equivalent I have seen is <a href="http://www.graphviz.org/" rel="nofollow"><strong>Graphviz</strong></a></p>
<blockquote>
<p>Graphviz is open source graph visualization software.<br>
It has several main graph layout programs. See the <a href="http://www.graphviz.org/Gallery.php" rel="nofollow">gallery</a> for some sample layouts.<br>
It also has web and interactive graphical interfaces, and auxiliary tools, libraries, and language bindings. </p>
</blockquote>
<p><img src="http://www.graphviz.org/Gallery/directed/cluster.png" alt="alt text"></p>
<p>It has also several viewers, but not one in C#, as far as I know.</p>
http://stackoverflow.com/questions/1843207/clearcase-ucm-working-with-streams-and-components-how/1843261#18432610Answer by VonC for Clearcase UCM - Working with streams and components, how?VonC2009-12-03T22:02:24Z2009-12-03T22:02:24Z<blockquote>
<ul>
<li>created streams for each functional software package</li>
<li>All developers for function "ABC" now work in the stream (or in some set of child streams) to complete that function</li>
</ul>
</blockquote>
<p>Yes, that's pretty much the two UCM normal usages of stream<br>
(the only very bad usage is the one involving one stream per developer, just for isolation purpose, and that would be madness, as <a href="http://stackoverflow.com/questions/1567135/clearcase-issue/1567308#1567308">specified before</a>)</p>
<p>Those two modes are <strong>system approach</strong> and <strong>component approach</strong>, detailed in <a href="http://stackoverflow.com/questions/1764329/clearcase-ucm-best-practices-using-components">this answer</a>.<br>
Basically, you want to avoid too much merges or rebase during the initial phase of development and keep one coherent system (with all components writable) at the beginning.<br>
Then, when API is stabilized, you can go one stream per writable component.</p>
<p>Note: that does not prevent you to establish "system integration" streams, when you have a set of well-defined baselines referencing a stable state for all your components (read-only), and where you can deploy and test your system.<br>
Those streams are maintained on one or several separate "integration" UCM projects.</p>
http://stackoverflow.com/questions/1842926/error-in-running-git-apply/1842964#18429641Answer by VonC for Error in running 'git apply'VonC2009-12-03T21:14:49Z2009-12-03T21:14:49Z<p>You can try a:</p>
<pre><code>git am -3
</code></pre>
<blockquote>
<p>When the patch does not apply cleanly, fall back on 3-way merge (<a href="http://www.kernel.org/pub/software/scm/git/docs/git-am.html" rel="nofollow"><code>git am</code> doc</a>)</p>
</blockquote>
http://stackoverflow.com/questions/1836025/best-practice-for-passing-values-from-a-non-ui-thread-to-a-ui-thread-in-an-eclips/1841728#18417281Answer by VonC for Best practice for passing values from a non-UI thread to a UI thread in an Eclipse plugin applicationVonC2009-12-03T17:59:07Z2009-12-03T18:05:19Z<p>You could use <a href="http://www.eclipse.org/swt/faq.php#uithread" rel="nofollow">Display.asyncExec()</a></p>
<blockquote>
<p>To allow background threads to perform operations on objects belonging to the UI-thread, the methods <code>syncExec(Runnable runnable)</code> and <code>asyncExec(Runnable runnable)</code> of <code>Display</code> are used.<br>
These are the only methods in <code>SWT</code> that can be called from any thread.<br>
They allow a runnable to be executed by the <code>UI-thread</code>,
- either synchronously, causing the background thread to wait for the runnable to finish,
- or asynchronously allowing the background thread to continue execution without waiting for the result. </p>
<p>A runnable that is executed using <code>syncExec()</code> most closely matches the equivalent direct call to the UI operation because a Java method call always waits for the result before proceeding, just like <code>syncExec()</code>.</p>
</blockquote>
<p>As illustrated by <a href="http://dev.eclipse.org/newslists/news.eclipse.platform.swt/msg45087.html" rel="nofollow">this thread</a>:</p>
<blockquote>
<p>I thought all those runnables or threads I give to <code>Display.sync</code> or <code>asyncExec</code> are '<code>Threads</code>' and they get scheduled by the jvm or something along with the UI thread!<br>
I never knew they are not considered the threads, but only pieces of code executed asynchronously by the UI thread! </p>
</blockquote>
<p>This piece of code asynchronously executed by the UI thread might be a good place to access values (synchronized access) from other thread.</p>
<p>See "<a href="http://stackoverflow.com/questions/1333377/how-to-update-a-gui-from-another-thread-in-java">How to update a GUI from another thread in Java</a>" as a practical example of passing a value to the UI thread.</p>
<p>(Note: the non-eclipse non-SWT way would have been, in Swing, by using a Swing Worker, as <a href="http://stackoverflow.com/questions/292587/interacting-with-ui-threads-in-java-j2me">I mentioned a year ago</a>) </p>
http://stackoverflow.com/questions/1838873/visualizing-branch-topology-in-git/1838946#18389464Answer by VonC for Visualizing branch topology in gitVonC2009-12-03T10:09:30Z2009-12-03T11:44:57Z<p>I like, with <a href="http://www.kernel.org/pub/software/scm/git/docs/git-log.html" rel="nofollow"><code>git log</code></a>, to do:</p>
<pre><code> git log --graph --oneline --branches
</code></pre>
<p>(also with --all, for viewing remote branches as well)</p>
<p>Works with recent Git releases: introduced <a href="http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.3.txt" rel="nofollow">since <strong>1.6.3</strong></a> (<a href="http://git.kernel.org/?p=git/git.git;a=commit;h=f01f1099f40f24fe6f7802185340a6fa3a3d4f35" rel="nofollow">Thu, 7 May 2009</a>)</p>
<blockquote>
<ul>
<li><p>"<code>--pretty=<style></code>" option to the log family of commands can now be spelled as "<code>--format=<style></code>".<br>
In addition, <code>--format=%formatstring</code> is a short-hand for <code>--pretty=tformat:%formatstring</code>.</p></li>
<li><p><strong>"<code>--oneline</code>" is a synonym for "<code>--pretty=oneline --abbrev-commit</code>".</strong></p></li>
</ul>
</blockquote>
<pre><code>PS D:\git\tests\finalRepo> git log --graph --oneline --branches --all
* 4919b68 a second bug10 fix
* 3469e13 a first bug10 fix
* dbcc7aa a first legacy evolution
| * 55aac85 another main evol
| | * 47e6ee1 a second bug10 fix
| | * 8183707 a first bug10 fix
| |/
| * e727105 a second evol for 2.0
| * 473d44e a main evol
|/
* b68c1f5 first evol, for making 1.0
</code></pre>
<p>You can also limit the span of the log display (number of commits):</p>
<pre><code>PS D:\git\tests\finalRepo> git log --graph --oneline --branches --all -5
* 4919b68 a second bug10 fix
* 3469e13 a first bug10 fix
* dbcc7aa a first legacy evolution
| * 55aac85 another main evol
| | * 47e6ee1 a second bug10 fix
</code></pre>
<p>(show only the last 5 commits)</p>
<p><hr></p>
<p>What I do not like about the current selected solution is:</p>
<pre><code> git log --graph
</code></pre>
<p>It displayed way too much info (when I want only to look at a quick summary):</p>
<pre><code>PS D:\git\tests\finalRepo> git log --graph
* commit 4919b681db93df82ead7ba6190eca6a49a9d82e7
| Author: VonC <vonc@laposte.net>
| Date: Sat Nov 14 13:42:20 2009 +0100
|
| a second bug10 fix
|
* commit 3469e13f8d0fadeac5fcb6f388aca69497fd08a9
| Author: VonC <vonc@laposte.net>
| Date: Sat Nov 14 13:41:50 2009 +0100
|
| a first bug10 fix
|
gitk.
</code></pre>
<p>is great, but forces me to leave the shell session for another window, whereas displaying the last n commits quickly is often enough.</p>
http://stackoverflow.com/questions/866262/p4merge-error/867165#8671652Answer by VonC for p4merge errorVonC2009-05-15T06:01:22Z2009-12-03T11:24:36Z<p>You will <a href="http://stackoverflow.com/questions/861995/is-it-possible-for-git-merge-to-ignore-line-ending-differences/862920#862920">see here</a> my config for DiffMerge or KDiff3. </p>
<p>Based on that, I would recommend for p4merge:</p>
<pre><code>git config --global merge.tool merge
git config --global mergetool.merge.cmd "merge.sh \"$PWD/$LOCAL\" \"$PWD/$BASE\" \"$PWD/$REMOTE\" \"$PWD/$MERGED\""
</code></pre>
<p>and <code>merge.sh</code> being a wrapper (copied in a directory referenced by your <code>PATH</code> environment variable), able to take into account the case where no <code>BASE</code> exists.<br>
(when a file is created in two different branches being then merged, there would be no common ancestor for that file)</p>
<pre><code>#!/bin/sh
# Passing the following parameters to mergetool:
# local base remote merge_result
alocal=$1
base=$2
remote=$3
result=$4
if [ -f $base ]
then
p4merge.exe -dl "$base" "$alocal" "$remote" "$result"
else
p4merge.exe -dl "$result" "$alocal" "$remote" "$result"
fi
</code></pre>
<p>You may note:</p>
<ul>
<li>the use of <code>PWD</code> in the config of the merge</li>
<li>the use of "<code>merge</code>" as name of the merge.tool name (since the actual tool is called in the <code>merge.sh</code> script, where you can switch between any number of merge tool you want)</li>
<li>the use of double quotes around <code>$base</code>, <code>$alocal</code>, <code>$remote</code>, <code>$result</code> within the script</li>
<li>the conditional path for calling the tool, based on the existence of a "base" file. </li>
<li>the need to always have 3 files to merge as parameters (even when 'base' does not exist...)</li>
</ul>
<p><hr></p>
<p>Just tested it (it turns out, you can <a href="http://www.perforce.com/perforce/downloads/component.html" rel="nofollow">download and install only p4merge</a> -- section Client/Visual Merge Tool --, even if you do not have any other P4 product installed).</p>
<p>With the settings describe above, MSysGit1.6.3, DOS session or Git bash session:<br>
It just works<sup>TM</sup>.</p>
http://stackoverflow.com/questions/1838432/eclipse-can-you-put-your-cursor-on-all-lines/1838557#18385570Answer by VonC for Eclipse: Can you put your cursor on all lines?VonC2009-12-03T08:45:21Z2009-12-03T08:45:21Z<p>If you refer to the ability to select a group of lines (like a all function), you can use the outline view </p>
<p><img src="http://publib.boulder.ibm.com/infocenter/radhelp/v7r5/topic/org.eclipse.jdt.doc.user/whatsNew/images/drag-and-drop-outline.png" alt="alt text"></p>
<p>From there, you can move/rearrange/delete all block of text.</p>
<p><hr></p>
<p>If it is about column mode, see <a href="http://stackoverflow.com/questions/1802616/how-to-select-column-in-editors-notepad-kate-vim-netbeans-eclips/1803266#1803266">my answer here</a>.</p>
<p><img src="http://update.eclipse.org/downloads/drops/R-3.5-200906111540/images/block-selection-mode.png" alt="alt text"></p>
http://stackoverflow.com/questions/1868724/java-lang-classcastexception-org-apache-xerces-parsers-xincludeawareparserconfigComment by VonC on java.lang.ClassCastException: org.apache.xerces.parsers.XIncludeAwareParserConfiguration incompatible with org.apache.xerces.xni.parser.XMLParserConfigurationVonC2009-12-08T18:28:27Z2009-12-08T18:28:27ZThat would not be linked to an environment variable issue, like <a href="http://issues.apache.org/jira/browse/XERCESJ-1263" rel="nofollow">issues.apache.org/jira/browse/XERCESJ-1263</a> , by any chance?http://stackoverflow.com/questions/1866926/unset-ucm-activities/1866947#1866947Comment by VonC on unset UCM activitiesVonC2009-12-08T13:50:49Z2009-12-08T13:50:49ZCCRC7.1 might offer that under the "Unset Current Activity" line, I have only a CCRC7.0 server.http://stackoverflow.com/questions/1866926/unset-ucm-activities/1866946#1866946Comment by VonC on unset UCM activitiesVonC2009-12-08T13:33:13Z2009-12-08T13:33:13ZNot available through the CCRC GUI (only possible with the classic ClearCase Explorer)http://stackoverflow.com/questions/1855117/which-version-control-system-or-platform-is-the-best-one-for-tracking-and-distrib/1865709#1865709Comment by VonC on Which version control system or platform is the best one for tracking and distributing personal Emacs configurations?VonC2009-12-08T09:25:51Z2009-12-08T09:25:51ZFair points. +1http://stackoverflow.com/questions/1862847/version-control-of-uploaded-images-to-file-systemComment by VonC on Version control of uploaded images to file systemVonC2009-12-07T21:18:29Z2009-12-07T21:18:29Z"use a repository completely separated from the source code": this is not incompatible with the submodule approach: the idea remains for the source code repo to reference a given commit of the images repo, but the latter (the images repo) is still a "completely separated" repo.http://stackoverflow.com/questions/1862860/unable-to-push-code-to-git-remoteComment by VonC on Unable to push code to git remoteVonC2009-12-07T21:09:57Z2009-12-07T21:09:57ZDid you troubleshoot the issue as described in <a href="http://stackoverflow.com/questions/922210/unable-to-git-push-master-to-github" rel="nofollow" title="unable to git push master to github">stackoverflow.com/questions/922210/…</a> ?http://stackoverflow.com/questions/1862423/git-how-to-tell-which-commit-a-tag-points-to/1862542#1862542Comment by VonC on Git - how to tell which commit a tag points toVonC2009-12-07T20:57:50Z2009-12-07T20:57:50ZInteresting. +1http://stackoverflow.com/questions/1846858/git-branching-questionComment by VonC on Git Branching QuestionVonC2009-12-04T17:11:13Z2009-12-04T17:11:13ZJust added a comment in response to your rebase question.http://stackoverflow.com/questions/1846858/git-branching-question/1847423#1847423Comment by VonC on Git Branching QuestionVonC2009-12-04T17:10:42Z2009-12-04T17:10:42ZThat could work (rebase -i or rebase interactive) provided you did not push those branches anywhere: you would rewrite history (actually replacing an history by a new one) of master. Still, B1.1 and B1.2 can still be there for 1.1 or 1.2 specific fixes.http://stackoverflow.com/questions/1833544/clearfsimport-to-new-streamComment by VonC on clearfsimport to new streamVonC2009-12-04T14:17:16Z2009-12-04T14:17:16ZIf you create a CCRC view attached to the same Stream than the one used during the clearfsimport, you should see the files imported there.http://stackoverflow.com/questions/1757794/separate-standard-output-from-standard-error-when-running-a-program-in-eclipse/1836610#1836610Comment by VonC on Separate standard output from standard error when running a program in eclipseVonC2009-12-03T16:46:34Z2009-12-03T16:46:34ZInteresting ideas and links. +1http://stackoverflow.com/questions/866262/p4merge-error/867165#867165Comment by VonC on p4merge errorVonC2009-12-03T11:25:18Z2009-12-03T11:25:18Z@Benjol thank you. I have fixed the typo.http://stackoverflow.com/questions/1838143/java-issues-with-arraylist/1838172#1838172Comment by VonC on java issues with arraylistVonC2009-12-03T07:19:32Z2009-12-03T07:19:32ZMuch more complete answer. +1http://stackoverflow.com/questions/1838143/java-issues-with-arraylist/1838153#1838153Comment by VonC on java issues with arraylistVonC2009-12-03T06:58:16Z2009-12-03T06:58:16Z@cletus: which constructor? I am not talking about the <code>ArrayList</code> (initialized in the constructor of <code>ObjectList</code>), but about the instance of <code>ObjectList</code>http://stackoverflow.com/questions/1567135/clearcase-issueComment by VonC on Clearcase IssueVonC2009-12-02T15:57:22Z2009-12-02T15:57:22ZNo problem, the "one stream per developer" is a classic mistake. If you have anymore questions, do not hesitate to ask them here ;)