User Martin Geisler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T00:50:08Zhttp://stackoverflow.com/feeds/user/110204http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1936642/resize-image-size-according-to-size-of-text/1936657#19366572Answer by Martin Geisler for Resize image size according to size of textMartin Geisler2009-12-20T19:10:56Z2009-12-20T20:20:05Z<p>When using a TrueType font, you use the <a href="http://php.net/imageftbbox" rel="nofollow"><code>imageftbbox</code></a> function to obtain the bounding box for a string typeset with your font. The bounding box gives the offsets from the base-point to the four corners in the rectangle occupied by the text. So if you store the bounding box in <code>$bb</code> and use <code>imagefttext</code> to put text at <code>($x, $y)</code>, then the corners will have these coordinates:</p>
<pre><code>($x + $bb[6], $y + $bb[7]) ($x + $bb[4], $y + $bb[5])
+-------+
| Hello |
+-------+
($x + $bb[0], $y + $bb[1]) ($x + $bb[2], $y + $bb[3])
</code></pre>
<p>That tells us that we want an image width of <code>($x + $bb[2]) - ($x + $bb[6]) = $bb[2] - $bb[6]</code> and similarly an image height of <code>$bb[3] - $bb[7]</code>. The text should then be rendered at coordinates <code>(-$bb[6], -$bb[7])</code> inside that picture since we want to have</p>
<pre><code>(0, 0) = ($x + $bb[6], $y + $bb[7]) ==> $x = -$bb[6] and $y = -$bb[7]
</code></pre>
<p>You can try it out with this code. Put it into a file called <code>img.php</code> and browse to <code>img.php?q=Hello</code> to test:</p>
<pre><code><?php
header("Content-type: image/png");
$q = $_REQUEST['q'];
$font = "Impact.ttf";
$size = 30;
$bbox = imageftbbox($size, 0, $font, $q);
$width = $bbox[2] - $bbox[6];
$height = $bbox[3] - $bbox[7];
$im = imagecreatetruecolor($width, $height);
$green = imagecolorallocate($im, 60, 240, 60);
imagefttext($im, $size, 0, -$bbox[6], -$bbox[7], $green, $font, $q);
imagepng($im);
imagedestroy($im);
?>
</code></pre>
<p><hr></p>
<p>If you use the bitmap fonts instead, then look at the <a href="http://php.net/imagefontwidth" rel="nofollow"><code>imagefontwidth</code></a> and <a href="http://php.net/imagefontheight" rel="nofollow"><code>imagefontheight</code></a> functions.</p>
http://stackoverflow.com/questions/1934183/using-code-from-a-book-without-plagiarizing/1934243#19342437Answer by Martin Geisler for Using code from a book without plagiarizingMartin Geisler2009-12-19T21:50:32Z2009-12-20T10:20:28Z<p>A book on data structures is published with the <strong>purpose</strong> of teaching you how to best implement the algorithms. Given that premise, I don't think it's a problem to reproduce the code found in the book. You'll probably have to adapt it to fit your circumstances, and in doing so you'll end up with your own implementation of the original <em>algorithm</em>. This is important since <a href="http://www.ag.gov.au/www/agd/agd.nsf/Page/Copyright%5FWhatdoescopyrightprotect" rel="nofollow">ideas (algorithms) do not fall under copyright</a>. Copyright only applied to a concrete expression (code). That being said, when there is <a href="http://www.iusmentis.com/copyright/software/protection/" rel="nofollow">no originality involved</a> in the translation of an algorithm into code, then that code may itself be copied. After all, there can only be so many ways to insert into a B-tree.</p>
<p>The copyright statement you quote is a standard statement inserted by all publishers and I would interpret it to cover the body text, not the already-known algorithms which were themselves published long ago in scientific papers. Those papers almost certainly had a similar copyright statement attached to them... :-)</p>
<p>By the way, putting in a citation has no significance when it comes to copyright -- though it is nice for future maintainers to know where to look up the algorithm.</p>
http://stackoverflow.com/questions/1932962/htaccess-allow-download-of-mercurial-archive-but-only-that/1933803#19338031Answer by Martin Geisler for .htaccess : allow download of Mercurial archive but only thatMartin Geisler2009-12-19T18:50:06Z2009-12-19T18:50:06Z<p>If you allow public access to all the changeset tarballs, then I suggest simply making the repository public (without allowing push, obviously). That is quite simple: <code>hg push</code> is done with a <code>POST</code> HTTP request, so you only need to <code>Require valid-user</code> for that. See also <a href="http://mercurial.selenic.com/wiki/PublishingRepositories#Restrict%5FPushing%5Fto%5FKnown%5FUsers" rel="nofollow">the wiki</a>.</p>
<p>My thinking is that by giving people access to the tarballs, you have effectively given them access to the entire repository with the exception of the commit messages. So the cleanest solution is probably to just admit that and only restrict <code>hg push</code> :-)</p>
<p>Apart from that piece of wanna-be advice, I suggest you look at the <a href="http://httpd.apache.org/docs/2.2/mod/core.html#location" rel="nofollow"><code><Location></code></a> and <code><LocationMatch></code> directives if you have access to a system-wide configuration file for Apache (they cannot be put in a <code>.htaccess</code> file). I'm not a big Apache guru, so sorry for not giving you a ready-made rule you can insert.</p>
http://stackoverflow.com/questions/1893094/basic-python-numbers/1893442#18934422Answer by Martin Geisler for Basic Python Numbers!Martin Geisler2009-12-12T13:36:17Z2009-12-12T13:36:17Z<p>You might be interested in knowing that Python 3 has improved the situation by changing how <code>repr</code> works. It will now give you the shortest string representation that will be converted back to the original float:</p>
<pre>
Python 3.1.1+ (r311:74480, Oct 11 2009, 20:19:13)
[GCC 4.3.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 0.1
'0.1'
</pre>
<p>Older versions behave like this:</p>
<pre>
Python 2.6.4 (r264:75706, Oct 28 2009, 22:19:17)
[GCC 4.3.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 0.1
'0.10000000000000001'
</pre>
<p>It is only the output of <code>repr</code> (called implicitly when you enter a value in the interactive interpreter) that has changed. The underlying values are still IEEE-754 floating-point numbers, and they still have the usual limitations:</p>
<pre>
Python 3.1.1+ (r311:74480, Oct 11 2009, 20:19:13)
[GCC 4.3.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 0.1
0.1
>>> 0.2
0.2
>>> 0.3
0.3
>>> 0.1 + 0.2
0.30000000000000004
>>> 0.1 + 0.2 - 0.3
5.551115123125783e-17
</pre>
http://stackoverflow.com/questions/1887938/commands-of-mercurialhg-from-dos-prompt-how-do-this/1888891#18888911Answer by Martin Geisler for commands of mercurial(hg) from dos prompt, how do this?Martin Geisler2009-12-11T15:39:59Z2009-12-11T15:39:59Z<p>In addition to the <a href="http://hgbook.red-bean.com/read/" rel="nofollow">Definitive Guide</a> linked by Vincent, see also <code>hg help</code> and the <a href="http://www.selenic.com/mercurial/hg.1.html" rel="nofollow">hg(1) manpage</a>.</p>
http://stackoverflow.com/questions/1878462/how-to-authenticate-users-on-tortoisehg-web-server/1879822#18798221Answer by Martin Geisler for How to authenticate users on TortoiseHg web server?Martin Geisler2009-12-10T09:33:19Z2009-12-10T09:33:19Z<p>Setting <code>allow_push = *</code> will allow anybody to push to your repository served with <code>hg serve</code>. You should of course only do that on a trusted network. Apart from that, you cannot do authentication with <code>hg serve</code> -- you need a webserver in front of it that will authenticate users.</p>
<p>Please see <a href="http://www.selenic.com/mercurial/hgrc.5.html#web" rel="nofollow">hgrc</a> for a terse explanation of <code>allow_push</code> and the <a href="http://mercurial.selenic.com/wiki/PublishingRepositories" rel="nofollow">wiki</a> for a slightly longer explanation about what <code>hg serve</code> is for.</p>
http://stackoverflow.com/questions/1813649/how-many-people-were-involved-in-a-project-based-on-revision-control-system/1851882#18518820Answer by Martin Geisler for How many people were involved in a project? Based on Revision Control SystemMartin Geisler2009-12-05T10:55:52Z2009-12-05T10:55:52Z<p>Mercurial has a powerful template language built-in (see <code>hg help templating</code>). So you can get a list of all people in the project without enabling the churn extension:</p>
<pre><code>hg log --template '{author}\n' | sort -u
</code></pre>
<p>If people have changed their email address (but otherwise kept their name the same), then you can process the <code>author</code> template keyword a bit:</p>
<pre><code>hg log --template '{author|person}\n' | sort -u
</code></pre>
<p>Then add <code>wc -l</code> as appropriate to the above commands.</p>
http://stackoverflow.com/questions/1830705/installing-tortoisehg-on-gnome-in-ubuntu-9-10/1834174#18341741Answer by Martin Geisler for Installing TortoiseHG on Gnome in Ubuntu 9.10?Martin Geisler2009-12-02T16:38:23Z2009-12-02T16:38:23Z<p>It appears you are using Mercurial 1.2.1, which does not have the refactoring done in <a href="http://www.selenic.com/hg/rev/6b5522cb2ad2" rel="nofollow">revision 6b5522cb2ad2</a>. That means that you cannot use the latest version of TortoiseHg with such an old version of Mercurial.</p>
<p>I suggest updating Mercurial to a newer version or use an older version of TortoiseHg.</p>
http://stackoverflow.com/questions/1792397/backing-up-a-mercurial-repository-while-preserving-timestamps/1799367#17993671Answer by Martin Geisler for Backing up a mercurial repository while preserving timestampsMartin Geisler2009-11-25T19:22:57Z2009-11-25T19:22:57Z<p>I suggest using <code>hg pull</code> instead of <code>hg clone</code>. So you'll keep a mirror of the repository on your server and update it periodically with <code>hg pull</code>. You then let your backup program take a backup of <em>that</em>. When you use <code>hg pull</code> you will transfer the newest history and only changed files under <code>.hg/store/data</code> which were actually effected by the pull.</p>
<p>Here I tested this by making a small repo with two files: <code>a.txt</code> and <code>b.txt</code>. I then cloned the repository "to the server" using <code>hg clone --noupdate</code>. That ensures that we have no working copy on the server -- it only needs the history found in <code>.hg</code>.</p>
<p>The timestamps looked like this after the clone:</p>
<pre>
% ll --time-style=full .hg/store/data
total 8.0K
-rw-r--r-- 1 mg mg 76 2009-11-25 20:07:52.000000000 +0100 a.txt.i
-rw-r--r-- 1 mg mg 69 2009-11-25 20:07:52.000000000 +0100 b.txt.i
</pre>
<p>As you noted, they are all identical since the files were all just created by the clone operation. I then changed the original repository (the one on the client) and made a commit. After pulling the changeset I got these timestamps:</p>
<pre>
% ll --time-style=full .hg/store/data
total 8.0K
-rw-r--r-- 1 mg mg 159 2009-11-25 20:08:47.000000000 +0100 a.txt.i
-rw-r--r-- 1 mg mg 69 2009-11-25 20:07:52.000000000 +0100 b.txt.i
</pre>
<p>Notice how the timestamp for <code>a.txt.i</code> has been updated (I only touched <code>a.txt</code> in my commit) while the timestamp for <code>b.txt.i</code> has been left alone.</p>
<p>If your backup software is smart, it will even notice that Mercurial has only appended data to <code>a.txt.i</code>. This means that the new <code>a.txt.i</code> file is identical to the old <code>a.txt.i</code> file up to certain point -- the backup program should therefore only copy the final part of the file. Rsync is an example of a backup program that will notice this.</p>
http://stackoverflow.com/questions/1778602/mercurial-bookmarks-and-git-like-branching/1779037#17790376Answer by Martin Geisler for Mercurial Bookmarks and 'Git like branching'Martin Geisler2009-11-22T15:29:38Z2009-11-22T15:29:38Z<p>Please upgrade to Mercurial 1.4, which was released last week. Then you will be able to switch between heads on a branch without warning.</p>
http://stackoverflow.com/questions/1444077/bazaar-mercurial-or-other-for-single-user-version-control/1444133#144413312Answer by Martin Geisler for Bazaar, Mercurial or other for single user version control?Martin Geisler2009-09-18T12:01:21Z2009-09-18T13:59:42Z<p>If you're just single developer working on small projects, any version control system should be fast enough.</p>
<p>I'm a Mercurial developer myself and will of course recommend that :-) I like how Mercurial has one central concept: the changeset graph. The graph resides inside a repository (a clone). You can have several lines of development in the same clone. This can be in the form of multiple heads, perhaps marked with the <a href="http://mercurial.selenic.com/wiki/BookmarksExtension" rel="nofollow">bookmarks extension</a> or as named branches. You can also use several clones to keep things separated, or you can go back and forth: it is easy to separate a combined clone (use <code>hg clone -r REV</code> to obtain part of the revision graph). See this <a href="http://stevelosh.com/blog/entry/2009/8/30/a-guide-to-branching-in-mercurial/" rel="nofollow">blog post</a> for pretty pictures.</p>
<p>For Windows (and other platforms too) you have <a href="http://bitbucket.org/tortoisehg/stable/" rel="nofollow">TortoiseHg</a>, which gives you a very nice graphical interface. TortoiseHg also integrates with many excellent plugins for Mercurial, in particular the <a href="http://bitbucket.org/tortoisehg/stable/" rel="nofollow">record extension</a>, which lets you pick out individual changes from a file when you commit. Using that, you can edit several files, and then commit those changes as several independent changesets.</p>
<p>Finally, you should also know about <a href="http://hgbook.red-bean.com/" rel="nofollow">Mercurial: The Definitive Guide</a>, the free online book about Mercurial.</p>
http://stackoverflow.com/questions/1429753/is-the-mercurial-hgignore-my-only-option-for-handling-hundreds-of-temp-files-gen/1432209#14322094Answer by Martin Geisler for Is the Mercurial .hgignore my only option for handling hundreds of temp files generated when compiling?Martin Geisler2009-09-16T10:40:13Z2009-09-16T10:40:13Z<p>I think the best solution is to tell Mercurial to ignore specific <em>types of files</em>, not entire directories. I just tried compiling Apache but it required APR, so I tested with that instead.</p>
<p>After checking in a clean <code>apr-1.3.8.tar.bz2</code> I did <code>./configure; make</code> and looked at the output. The first few pattens were easy:</p>
<pre>
syntax: glob
*~
*.o
*.lo
*.la
*.so
.libs/*
</pre>
<p>The remaining new files look like they are specific files generated by the build process. It's easy to add them too:</p>
<pre>
% hg status --unknown --no-status >> .hgignore
</pre>
<p>That also added <code>.hgignore</code> since I hadn't yet scheduled it for addition. Removing that I ended up with this <code>.hgignore</code> file:</p>
<pre>
syntax: glob
*~
*.o
*.lo
*.la
*.so
.libs/*
.make.dirs
Makefile
apr-1-config
apr-config.out
apr.exp
apr.pc
build/apr_rules.mk
build/apr_rules.out
build/pkg/pkginfo
config.log
config.nice
config.status
export_vars.c
exports.c
include/apr.h
include/arch/unix/apr_private.h
libtool
test/Makefile
test/internal/Makefile
</pre>
<p>I consider this a quite robust way to go about this in Mercurial or any other revision control system for that matter.</p>
http://stackoverflow.com/questions/1376431/diverge-a-mercurial-repository-in-to-two-seperate-repositories/1426001#14260010Answer by Martin Geisler for Diverge a Mercurial Repository in to two seperate repositories Martin Geisler2009-09-15T08:57:29Z2009-09-15T08:57:29Z<p>To answer the part of your question concerning <strong>related repositories</strong>: two Mercurial repositories are related if they share a common root.</p>
<p>More precisely, two repositories A and B are related if they share one or more changesets. Let's say A and B share a changeset X. By "changeset X" I mean a changeset with hash X -- the hash value is the identity of a changeset. The hash value is computed recursively from the hash values of the parent changesets, the date, the committer, and the change itself. This implies that both A and B must share the parent changeset of X. Continuing like this, we see that A and B must share a common root changeset, which is an ancestor of changeset X.</p>
<p>This gives us the common definition of being related: they must share a common root. You will normally only have one root changeset and you can look at it like this:</p>
<pre><code>hg log --rev 0
</code></pre>
<p>For your case, my guess is that convert has created the same root changeset in both conversions. You should check with <code>hg log</code> in both clones to verify that they indeed are related. That should also tell you something about why they are related.</p>
<p>If your filemaps really do include different subtrees in the two conversions, then I cannot see how the repositories can be related. So perhaps you have an overlap in your include/exclude rules so that the first changeset is equal in both conversions?</p>
http://stackoverflow.com/questions/1423157/print-php-call-stack/1423168#14231682Answer by Martin Geisler for Print PHP Call StackMartin Geisler2009-09-14T18:25:49Z2009-09-14T18:25:49Z<p>See <a href="http://php.net/manual/en/function.debug-print-backtrace.php" rel="nofollow"><code>debug_print_backtrace</code></a>. I guess you can call <code>flush</code> afterwards if you want.</p>
http://stackoverflow.com/questions/1418825/python-classes-special-methods/1418832#141883211Answer by Martin Geisler for Python classes special methodsMartin Geisler2009-09-13T21:05:41Z2009-09-14T17:54:00Z<p>Please take a look at the <a href="http://docs.python.org/reference/datamodel.html#special-method-names" rel="nofollow">special method names section</a> in the Python language reference.</p>
http://stackoverflow.com/questions/1405153/mercurial-performing-binary-comparison-for-certain-file-types/1413014#14130141Answer by Martin Geisler for Mercurial performing binary comparison for certain file typesMartin Geisler2009-09-11T20:07:10Z2009-09-11T20:07:10Z<p>I don't know about the graphical part of TortoiseHg, but if you use the command line, then the <code>--text</code> flag to <code>hg diff</code> should do the trick: it makes Mercurial treat all files as text.</p>
http://stackoverflow.com/questions/1397658/is-pull-a-synonym-for-clone-in-a-mercurial-source-control-repository/1398713#13987132Answer by Martin Geisler for Is 'pull' a synonym for 'clone' in a Mercurial source-control repository?Martin Geisler2009-09-09T10:07:16Z2009-09-09T10:07:16Z<p>Use clone when you need to make a new repository based on another. Use pull after that to update the clone with new changesets. You cannot use clone to fetch just the newest changesets -- that is what pull is for. The pull command will compare the two repositories, find the missing changesets in your repository and finally transfer those.</p>
<p>However, you are right that there are similarities between clone and pull: they both transfer history between repositories. If you clone first</p>
<pre>
hg clone http://www.selenic.com/hg/
</pre>
<p>then this has the exact same effect as doing</p>
<pre>
hg init hg
cd hg
hg pull http://www.selenic.com/hg/
hg update
</pre>
<p>You get the exact same history in both cases. The clone command is more convenient, though, since it also edits the <code>.hg/hgrc</code> file for you to setup the default path:</p>
<pre>
[paths]
default = http://selenic.com/hg
</pre>
<p>This is what lets you do <code>hg pull</code> in the repository without specifying a URL. Another advantage of using clone is when you work with repositories on the same disk: <code>hg clone a b</code> will be very fast and cheap in disk space since <code>b</code> will share the history with <code>a</code>.</p>
http://stackoverflow.com/questions/1348952/what-version-control-system-is-best-designed-to-prevent-concurrent-editing/1354590#13545901Answer by Martin Geisler for What version control system is best designed to *prevent* concurrent editing?Martin Geisler2009-08-30T18:46:43Z2009-08-30T18:46:43Z<p>You mention Mercurial, and despite being a Mercurial developer, I must agree with the suggestions to use Subversion. Mercurial is all about letting people develop in a distributed fashion. This includes making private commits which are only shared with others at a later time. In other words -- Mercurial makes no attempt to lock files on a central server (there is not even a concept of a central server).</p>
<p>Go with Subversion, it is as fine a centralized revision control system that you'll find (I have only tried the open source systems, I don't know anything of closed source systems). If you want, you can still experiment with <a href="http://bitbucket.org/durin42/hgsubversion/" rel="nofollow">hgsubversion</a> "on the side".</p>
http://stackoverflow.com/questions/1354469/what-does-s-keyname-refer-to-in-emacs-and-how-do-i-tell-emacs-to-ignore-it/1354474#13544745Answer by Martin Geisler for What does "s-[keyname]" refer to in Emacs, and how do I tell Emacs to ignore it?Martin Geisler2009-08-30T18:03:51Z2009-08-30T18:15:34Z<p>It's the <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/emacs/Modifier-Keys.html" rel="nofollow">Super key</a>, like <code>M-</code> is the Meta key (alt key on a PC keyboard, Command key on your keyboard) and <code>C-</code> is the Control key. (I have of course never seen a super key on my keyboard... they are from a long gone era. Wikipedia has an image of this impressive <a href="http://en.wikipedia.org/wiki/Space-cadet%5Fkeyboard" rel="nofollow">"Space Cadet keyboard"</a> which will give you all the modifiers you'll ever need:</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Space-cadet.jpg/800px-Space-cadet.jpg"/></p>
http://stackoverflow.com/questions/1338664/how-to-let-mercurial-ignore-every-thing-except-cs-file/1340221#13402215Answer by Martin Geisler for How to let Mercurial ignore every thing except *.cs file?Martin Geisler2009-08-27T10:35:57Z2009-08-27T10:35:57Z<p>Just add the extensions to your <code>.hgignore</code> file as you come across them:</p>
<pre><code>syntax: glob
*.bin
*.obj
</code></pre>
<p>and so on. It's not a lot of work, and it documents to the rest of the world exactly what kind of files you consider unimportant for revision control.</p>
<p>You can even setup a global ignore file, please see the <a href="http://www.selenic.com/mercurial/hgrc.5.html#ui" rel="nofollow"><code>ignore</code> entry in the <code>[ui]</code> section</a>.</p>
<p>Trying to turn the <code>.hgignore</code> upside-down by using negative lookahead regular expressions and other voodoo is (in my opinion) not a good idea. It will almost surely not work and will only lead to confusion. This is because <code>hg</code> matches all prefixes of a give path name against the <a href="http://www.selenic.com/mercurial/hgignore.5.html" rel="nofollow">rules in <code>.hgignore</code></a>. So a file like</p>
<pre><code>a/b/c.cs
</code></pre>
<p>will be ignored if any of</p>
<pre><code>a/b/c.cs
a/b
a
</code></pre>
<p>is matched by a rule in your <code>.hgignore</code> file. In particular, this means that you cannot use a negative lookahead expression to have <code>a/b/c.cs</code> not-ignored -- the rule will match <code>a/b</code> or <code>a</code>.</p>
http://stackoverflow.com/questions/1312633/examining-a-changeset-in-hg/1313844#13138441Answer by Martin Geisler for Examining a changeset in HGMartin Geisler2009-08-21T19:34:56Z2009-08-21T19:34:56Z<p>You should also take a look at the <a href="http://mercurial.selenic.com/wiki/ParentrevspecExtension" rel="nofollow">parentrevspec extension</a> to enable a more Git-like syntax for specifying revisions.</p>
http://stackoverflow.com/questions/796495/how-to-resolve-merging-conflicts-in-mercurial-v1-0-2/1313716#13137161Answer by Martin Geisler for How to resolve merging conflicts in Mercurial (v1.0.2)?Martin Geisler2009-08-21T19:06:02Z2009-08-21T19:06:02Z<p>Tracking conflicts was introduced in <a href="http://mercurial.selenic.com/wiki/WhatsNew#Version%5F1.1%5F-%5F2008-12-2" rel="nofollow">Mercurial 1.1</a>, which is a newer version that you are using (you should really upgrade, Mercurial 1.1. was released in December 2008).
In that version you gained the <code>resolve</code> command which works similarly to <code>svn resolve</code>.</p>
<p>As I remember it, Mercurial would leave merge markers (the <code><<<<</code> and <code>>>>></code> lines) in your file when there is a conflict, unless you have configured a <a href="http://mercurial.selenic.com/wiki/MergeToolConfiguration" rel="nofollow">merge tool</a>. This also applies to newer versions -- I have no merge tool configured and get the merge markers when conflicts occur. I can then manually fix the file and mark it resolved with <code>hg resolve</code>.</p>
http://stackoverflow.com/questions/1291500/looking-for-alternative-to-tortoisehg-under-win32/1308686#13086862Answer by Martin Geisler for Looking for Alternative to TortoiseHG under Win32Martin Geisler2009-08-20T20:40:50Z2009-08-20T20:40:50Z<p>I have never used a screen reader, so this might be a stupid idea... :-) But from what I can read on Wikipedia, I get the impression that the command line Mercurial client might be a better source than a GUI client?</p>
<p>If it gives too much textual output for a screen reader to read aloud comfortably, then maybe you can solve that by using the template system built into Mercurial. There is a ready-made style called "compact", which you can use like this:</p>
<pre>
% hg log --limit 2 --style compact
9366[tip] 9ff178e7b627 2009-08-18 22:07 -0400 greg-hg
tags: don't crash if unable to write tag cache
9365 b8dc3eba4f9d 2009-08-19 12:51 +0200 dirkjan
mq: get rid of qnext, qprev and qtop
</pre>
<p>For comparison, the normal output looks like this:</p>
<pre>
% hg log --limit 2
changeset: 9366:9ff178e7b627
tag: tip
user: Greg Ward
date: Tue Aug 18 22:07:43 2009 -0400
summary: tags: don't crash if unable to write tag cache
changeset: 9365:b8dc3eba4f9d
user: Dirkjan Ochtman
date: Wed Aug 19 12:51:07 2009 +0200
summary: mq: get rid of qnext, qprev and qtop
</pre>
<p>I don't know of any other styles, but you can try asking on the mailinglist: mercurial@selenic.com.</p>
http://stackoverflow.com/questions/1231853/how-does-mercurial-work-without-python-installed/1283908#12839081Answer by Martin Geisler for How does mercurial work without Python installed?Martin Geisler2009-08-16T09:47:36Z2009-08-16T09:47:36Z<p>Others have answered the first question -- let me give a guess about the second part. </p>
<p>Mercurial will normally use some C extensions for speed. You cannot use those with IronPython.</p>
<p>But we also ship pure Python versions of these modules, and depending on how much IronPython implements of a standard Python 2.4 environment, those modules could be compatible. I have seen reports on IRC about Jython (the Java port of Python) being able to do a few operations using the pure modules. You should download Mercurial and take a look at the <code>mercurial/pure</code> folder. These modules simply has to be moved up one directory level to be found, the <code>setup.py</code> script can do this if you pass the <code>--pure</code> flag. Please see its source or come talk with us on the Mercurial mailinglist/IRC.</p>
http://stackoverflow.com/questions/1212508/how-to-decide-if-the-chosen-password-is-correct/1212636#12126363Answer by Martin Geisler for How to decide if the chosen password is correct?Martin Geisler2009-07-31T13:46:16Z2009-08-03T12:14:52Z<p>Like you suggest, one would expect the plaintext to be of some know format, e.g., a JPEG image, a PDF file, etc. The idea would be that it is very unlikely that a given ciphertext can be decrypted into both a valid JPEG image and a valid PDF file (but see below).</p>
<p>But it is actually not that important. When one talks about a cryptosystem being <em>secure</em>, one (roughly) talks about the odds of you being able to guess the plaintext corresponding to a given ciphertext. So I pick a random message <em>m</em> and encrypts it <em>c</em> = <em>E</em>(<em>m</em>). I give you <em>c</em> and if you cannot guess <em>m</em>, then we say the cryptosystem is secure, otherwise it's broken.</p>
<p>This is just a simple security definition. There are other definitions that require the system to be able to <a href="http://en.wikipedia.org/wiki/Semantic%5Fsecurity" rel="nofollow">hide known plaintexts</a> (semantic security): you give me two messages, I encrypt one of them, and you will not be able to tell which message I chose.</p>
<p>The point is, that in these definitions, we are not concerned with the format of the plaintexts, all we require is that you cannot guess the plaintext that was encrypted. <strong>So there is no step 3 :-)</strong></p>
<p>By not considering your step 3, we make the question of security as clear as possible: instead of arguing about how hard it is to guess which format you used (zip, gzip, bzip2, ...) we only talk about the odds of breaking the system compared to the odds of guessing the <em>key</em>. It is an <a href="http://en.wikipedia.org/wiki/One-time%5Fpad" rel="nofollow">old principle</a> that you should concentrate all your security in the key -- it simplifies things dramatically when your only assumption is the secrecy of the key.</p>
<p>Finally, note that some encryption schemes makes it impossible for you to verify if you have the correct key since all keys are legal. The <a href="http://en.wikipedia.org/wiki/One-time%5Fpad" rel="nofollow">one-time pad</a> is an extreme example such a scheme: you take your plaintext <em>m</em>, choose a perfectly random key <em>k</em> and compute the ciphertext as <em>c</em> = <em>m</em> XOR <em>k</em>. This gives you a completely random ciphertext, it is perfectly secure (the only perfectly secure cryptosystem, btw).</p>
<p>When searching for an encryption key, you cannot know when you've found the right one. This is because <em>c</em> could be an encryption of any file with the same length as <em>m</em>: if you encrypt the message <em>m'</em> with the key *k' = <em>c</em> XOR <em>m'</em> you'll see that you get the same ciphertext again, thus you cannot know if <em>m</em> or <em>m'</em> was the original message.</p>
<p>Instead of thinking of exclusive-or, you can think of the one-time pad like this: I give you the number 42 and tell you that is is the sum of two integers (negative, positive, you don't know). One integer is the message, the other is the key and 42 is the ciphertext. Like above, it makes no sense for you to guess the key -- if you want the message to be 100, you claim the key is -58, if you want the message to be 0, you claim the key is 42, etc. One time pad works exactly like this, but on bit values instead.</p>
<p><strong>About reusing the key in one-time pad:</strong> let's say my key is 7 and you see the ciphertexts 10 and 20, corresponding to plaintexts 3 and 13. From the ciphertexts alone, you now know that the difference in plaintexts is 10. If you somehow gain knowledge of one of the plaintext, you can now derive the other! If the numbers correspond to individual letters, you can begin looking at several such differences and try to solve the resulting crossword puzzle (or let a program do it based on frequency analysis of the language in question).</p>
http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1190937#11909376Answer by Martin Geisler for Surprising software vulnerabilities or exploits?Martin Geisler2009-07-27T22:10:04Z2009-07-27T22:10:04Z<p>The <a href="http://citp.princeton.edu/memory/" rel="nofollow">cold boot attacks</a> are perhaps more a hardware attack, but nevertheless very interesting and surprising.</p>
<p>They showed that you can read the content of ordinary RAM after a reboot. By cooling the chips to -50 °C with a canned air duster spray (not liquid nitrogen or anything like that) they found that less than 1% of the bits were flipped after 10 minutes without power(!)</p>
<p>This is a serious attack on all disk encryption programs. They must keep the decryption key in RAM and if you can reboot the machine, you can probably get access to the key. You might say that you wont let people reboot your machine like that, but think of stolen laptops in standby mode. They will wake up and present a screen saver asking for a password. At that time the disk encryption key is in RAM => a reboot later the key could be in the bad guy's possession...</p>
<p>They have videos and the very readable conference paper on <a href="http://citp.princeton.edu/memory/" rel="nofollow">their homepage</a>.</p>
http://stackoverflow.com/questions/1187858/bitbucket-hg-push-and-hg-update/1190835#11908354Answer by Martin Geisler for bitbucket, "hg push" and "hg update"Martin Geisler2009-07-27T21:48:26Z2009-07-27T21:48:26Z<p>Bitbucket shows you the <strong>repository</strong>. As pointed out by Dave Webb, <code>hg update</code> is concerned with updating the <strong>working copy</strong>. When you do <code>hg push</code> you are transferring changesets in order to update the repository on Bitbucket -- and so the webinterface will show this.</p>
<p>There are no working copies on Bitbucket, as pointed out by Steve Losh. There is also no <code>hg update</code> being done behind your back.</p>
<p>You can experiment with this yourself by making a clone without a working copy:</p>
<pre><code>% hg clone --noupdate repo repo-empty
</code></pre>
<p>then go into <code>repo-empty</code> and do <code>hg log</code>. You will see that even though there are no files there, the <em>history</em> (i.e., the <em>repository</em>) has still been cloned. You can make the files appear with the <code>hg update</code> command:</p>
<pre><code>% hg update
</code></pre>
<p>and disappear again with</p>
<pre><code>% hg update null
</code></pre>
<p>The working copy is only needed if you want to look at the files and make new commits. Otherwise you can remove it to save space. This is normally done in clones that are only used for serving with <code>hg serve</code> or the equivalent thing that Bitbucket uses.</p>
http://stackoverflow.com/questions/876763/mercurial-revert-a-single-hunk/892564#8925640Answer by Martin Geisler for Mercurial: Revert a single hunkMartin Geisler2009-05-21T11:56:16Z2009-07-26T11:30:39Z<p>The <a href="http://mercurial.selenic.com/wiki/RecordExtension" rel="nofollow"><code>record</code> extension</a> is inspired by <code>darcs record</code>. It will allow you to <em>add</em> only specific hunks to the next commit, i.e., the opposite of what you want. But you could add all hunks except the one you want to revert and then do a <code>hg revert</code> to revert it. A little backwards, I know... :-)</p>
<p>You could also do <code>hg diff > patch; hg revert</code>, edit <code>patch</code> to delete the hunk and do <code>hg import --no-commit</code> to reappy the patch. That is likely faster, but requires you to manually edit the patch. I've had great success with the Emacs <code>diff-mode</code>, but since you ask about TortoiseHg you might not want to use Emacs.</p>
http://stackoverflow.com/questions/1181681/po-to-mo-convertor-in-php/1181807#11818072Answer by Martin Geisler for .po to .mo convertor in php?Martin Geisler2009-07-25T10:19:49Z2009-07-25T10:19:49Z<p>I have not tried it, but it looks like this <a href="http://pear.php.net/package/File%5FGettext/" rel="nofollow">PEAR package</a> might help you. It is unmaintained, but maybe you can be the new maintainer?</p>
<p>If you can read Python, then you can take a stab at converting <a href="http://svn.python.org/view/python/trunk/Tools/i18n/msgfmt.py?view=markup" rel="nofollow">their <code>msgfmt.py</code></a> script to PHP. It's only 200 lines or so.</p>
http://stackoverflow.com/questions/919685/how-would-you-use-a-dvcs-mercurial-in-my-case-to-develop-for-different-versions/919858#9198587Answer by Martin Geisler for How would you use a DVCS (mercurial in my case) to develop for different versions of the .NET framework?Martin Geisler2009-05-28T08:52:14Z2009-07-25T10:13:03Z<p>Yes, you can use Mercurial for this. Here is how it would work.</p>
<p>Let's say that your current clone is called <code>new-dot-net</code> since it
support the new .Net version. You make a clone of it and call it
<code>old-dot-net</code> or something like that. The two clones are now identical
and both target .Net 3.5.</p>
<p>Now carefully make small changes in <code>old-dot-net</code> in order to make it
.Net 2.0 compatible. When you make the changes the two clones will
start to diverge:</p>
<pre>
new-dot-net: ... [a] --- [b]
old-dot-net: ... [a] --- [b] --- [c] --- [d]
</pre>
<p>Here you made <code>[c]</code> and <code>[d]</code> changesets to add the .Net 2.0
compatibility. Notice how the <code>old-dot-net</code> clone contains more
changesets than <code>new-dot-net</code> since it has the backwards compatibility
changes that you <em>dont</em> want to see in <code>new-dot-net</code>. As you continue
working, it is important to think of this: <code>net-dot-net</code> will contain
a subset of the changesets in <code>old-dot-net</code>. The changes flow from
<code>new-dot-net</code> to <code>old-dot-net</code>, but <em>never</em> in the opposite direction.</p>
<p>Let's say you make a new change in <code>new-dot-net</code>. You make the change
in <code>new-dot-net</code> and the situation now looks like this:</p>
<pre>
new-dot-net: ... [a] --- [b] --- [x]
old-dot-net: ... [a] --- [b] --- [c] --- [d]
</pre>
<p>You now want to back-port the change to <code>old-dot-net</code> as well, you
change to <code>old-dot-net</code> and pull from <code>net-dot-net</code>:</p>
<pre><code>% cd old-dot-net
% hg pull ../new-dot-net
</code></pre>
<p>This will create a <a href="http://mercurial.selenic.com/wiki/Head" rel="nofollow">new head</a> in <code>old-dot-net</code>:</p>
<pre>
[x]
/
old-dot-net: ... [a] --- [b] --- [c] --- [d]
</pre>
<p>since the <code>[x]</code> changeset has <code>[b]</code> as it's parent changeset. You now
have <a href="http://mercurial.selenic.com/wiki/MultipleHeads" rel="nofollow">multiple heads</a> and have to merge to reduce the number of
heads. By merging you create a new changeset which is your way of
saying "this is how <code>[x]</code> and <code>[d]</code> should be combined". If the <code>[x]</code>
changeset only touches code which is not also touched in <code>[c]</code> and
<code>[d]</code>, then the merge should just work. Otherwise you'll be presented
with a merge tool and have to resolve the conflict. You commit the
merge as chageset <code>[e]</code>:</p>
<pre>
[x] --------------.
/ \
old-dot-net: ... [a] --- [b] --- [c] --- [d] --- [e]
</pre>
<p>And you're done -- you have now incorporated the <code>[x]</code> change into
your .Net 2.0 compatible code.</p>
<p>You repeat this every time there has been a change in <code>new-dot-net</code>.
Let's say that more features are added:</p>
<pre>
new-dot-net: ... [a] --- [b] --- [x] --- [y] --- [z]
</pre>
<p>After pulling them into <code>old-dot-net</code> you get</p>
<pre>
[x] --------------.---- [y] --- [z]
/ \
old-dot-net: ... [a] --- [b] --- [c] --- [d] --- [e]
</pre>
<p>And you now merge <code>[e]</code> and <code>[z]</code>:</p>
<pre>
[x] --------------.---- [y] --- [z]
/ \ \
old-dot-net: ... [a] --- [b] --- [c] --- [d] --- [e] ----------- [f]
</pre>
<p>The important parts to remember are these:</p>
<ul>
<li>make any <strong>new features</strong> in <code>new-dot-net</code>.</li>
<li><strong>pull</strong> changes into <code>old-dot-net</code></li>
<li><strong>never push</strong> from <code>old-dot-net</code> to <code>new-dot-net</code>.</li>
</ul>
<p>Should you at some point find that a change in <code>new-dot-net</code> is not
needed in <code>old-dot-net</code>, then you still need to pull it in and merge
it. But you will then do a <em>dummy merge</em>. If the heads are <code>[w]</code> and
<code>[g]</code>, and you want keep <code>[g]</code>, then do</p>
<pre><code>% HGMERGE=true hg merge -y
% hg revert --all --rev g
% hg commit -m 'Dummy merge with y.'
</code></pre>
<p>The <a href="http://mercurial.selenic.com/wiki/TipsAndTricks#Keep%5F.22My.22%5For%5F.22Their.22%5Ffiles%5Fwhen%5Fdoing%5Fa%5Fmerge" rel="nofollow">trick</a> is to do the merge without caring about the results,
then revert all changes, and commit the unchanged working copy as the
merge. That way you tell the world that "the combination of <code>[w]</code> and
<code>[g]</code> is <code>[g]</code>", i.e., you throw away the changes in <code>[w]</code>. New
changes made in <code>new-dot-net</code> after <code>[w]</code> can then be merged like
normal.</p>
http://stackoverflow.com/questions/1936642/resize-image-size-according-to-size-of-text/1936657#1936657Comment by Martin Geisler on Resize image size according to size of textMartin Geisler2009-12-20T21:28:22Z2009-12-20T21:28:22ZNo problem, I'm glad you got it working! :-)http://stackoverflow.com/questions/1936642/resize-image-size-according-to-size-of-text/1936657#1936657Comment by Martin Geisler on Resize image size according to size of textMartin Geisler2009-12-20T21:02:39Z2009-12-20T21:02:39ZI guess you didn't change the name of the font? I just copied a random font to my webserver for testing. Change the header to <code>Content-type: text/plain</code> to see the errors PHP send back to you.http://stackoverflow.com/questions/1936642/resize-image-size-according-to-size-of-text/1936657#1936657Comment by Martin Geisler on Resize image size according to size of textMartin Geisler2009-12-20T20:21:08Z2009-12-20T20:21:08ZYeah, I'm sorry that I answered the wrong question at first -- I've now given code for TrueType fonts instead.http://stackoverflow.com/questions/1932962/htaccess-allow-download-of-mercurial-archive-but-only-that/1933803#1933803Comment by Martin Geisler on .htaccess : allow download of Mercurial archive but only thatMartin Geisler2009-12-20T10:22:56Z2009-12-20T10:22:56ZCool, having two URLs sounds like a nice solution too (less magic than protecting only some of the URLs).http://stackoverflow.com/questions/1867237/load-multiple-hgrc-files-ie-some-with-machine-specific-settings/1868920#1868920Comment by Martin Geisler on Load multiple .hgrc files - ie, some with machine-specific settings?Martin Geisler2009-12-12T13:54:46Z2009-12-12T13:54:46ZEhm... I'm afraid substitution of environment variables only work some times :-( That is, it works in the <code>[extensions]</code> section and it works for the <code>ui.ignore</code> setting. But we're not yet expanding variables in <code>%include</code> paths and it's also slightly broken in the <code>[paths]</code> section (it only works with a relative path). I'll look into it!http://stackoverflow.com/questions/1878462/how-to-authenticate-users-on-tortoisehg-web-server/1879822#1879822Comment by Martin Geisler on How to authenticate users on TortoiseHg web server?Martin Geisler2009-12-12T12:53:27Z2009-12-12T12:53:27ZYes, you list the user authenticated by the webserver. Mercurial knows nothing about Windows: it only looks in the standard <code>REMOTE_USER</code> environment variable set by the webserver before the CGI script is envoked.http://stackoverflow.com/questions/1830705/installing-tortoisehg-on-gnome-in-ubuntu-9-10/1834174#1834174Comment by Martin Geisler on Installing TortoiseHG on Gnome in Ubuntu 9.10?Martin Geisler2009-12-03T12:26:10Z2009-12-03T12:26:10ZI would still suggest that you try matching versions of Mercurial and TortoiseHg.http://stackoverflow.com/questions/1785609/would-like-to-create-some-defaults-for-my-hgignore-files-in-tortoisehg-mercurialComment by Martin Geisler on Would like to create some defaults for my .hgignore files in TortoiseHG/MercurialMartin Geisler2009-11-28T12:57:21Z2009-11-28T12:57:21ZPlease see this page if you haven't already: <a href="http://www.selenic.com/mercurial/hgignore.5.html" rel="nofollow">selenic.com/mercurial/hgignore.5.html</a>http://stackoverflow.com/questions/1785609/would-like-to-create-some-defaults-for-my-hgignore-files-in-tortoisehg-mercurial/1785668#1785668Comment by Martin Geisler on Would like to create some defaults for my .hgignore files in TortoiseHG/MercurialMartin Geisler2009-11-28T12:56:00Z2009-11-28T12:56:00ZDanThMan: Mercurial uses only simple and transparent text files for its user-configurable data. That holds for <code>.hg/hgrc</code>, <code>.hgignore</code>, <code>.hgtags</code>.http://stackoverflow.com/questions/1778602/mercurial-bookmarks-and-git-like-branching/1779037#1779037Comment by Martin Geisler on Mercurial Bookmarks and 'Git like branching'Martin Geisler2009-11-25T19:01:37Z2009-11-25T19:01:37Zbuymeasoda: thanks a lot for reporting back! PS: I like your username :-)http://stackoverflow.com/questions/1338664/how-to-let-mercurial-ignore-every-thing-except-cs-file/1340221#1340221Comment by Martin Geisler on How to let Mercurial ignore every thing except *.cs file?Martin Geisler2009-11-22T15:18:10Z2009-11-22T15:18:10ZMike: Yes, unfortunately. Please see this issue <a href="http://mercurial.selenic.com/bts/issue712" rel="nofollow">mercurial.selenic.com/bts/issue712</a> where you can leave a comment if you're very interested.http://stackoverflow.com/questions/1700239/how-to-do-push-from-clone-repository-to-remote-server-respository-using-http-ssh/1700291#1700291Comment by Martin Geisler on How to do push from clone repository to Remote server respository using http/ssh protocol?Martin Geisler2009-11-09T17:58:14Z2009-11-09T17:58:14ZThe boolean values are not case-sensitive and you can use "1", "yes", "true", "on", for True and "0", "no", "false", "off" for False.http://stackoverflow.com/questions/1654638/mercurial-use-case-solution/1663865#1663865Comment by Martin Geisler on mercurial use case solutionMartin Geisler2009-11-02T22:47:30Z2009-11-02T22:47:30Z"Stuff like this used to be a big deal and now ... eh" -- cool, I like that :-)http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598937#1598937Comment by Martin Geisler on Git and Mercurial - Compare and ContrastMartin Geisler2009-10-24T11:24:55Z2009-10-24T11:24:55ZDustin: Yeah, users are often confused by the fact that you cannot see the the 1.0 tag in <code>.hgtags</code> when you've checked out revision 1.0. However, you don't need to look inside <code>.hgtags</code> and you you'll find that <code>hg tags</code> still lists all tags. Furthermore, this behavior is a simple consequence of storing tags in a version controlled file -- again the model is easy to grasp and very <i>predictable</i>.http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598937#1598937Comment by Martin Geisler on Git and Mercurial - Compare and ContrastMartin Geisler2009-10-23T23:16:10Z2009-10-23T23:16:10ZI don't think the model ignores tagging: tagging is trivial in Mercurial -- as you know, it's just a file which gives names to SHA-1 hashes. There's not guesswork as to how tags flow around in the system: they move along with pushes and pulls. And if there is a tag conflict, well then it's also trivial to solve it: you solve it like any other conflict. After all, it's just a line in a text file. I think the simplicity of this model is a very nice feature.