view tests/test-bookmarks @ 10301:56b50194617f

templates: rename `Last change' column in hgwebdir repository list. This patch changes column headers in the templates that previously said `Last change' to `Last modified'. Neither code nor functionality are changed other than that. For some time now, I have been annoyed by the fact the `Last change' column didn't list the age of the youngest changeset in the repository, or at least tip. It just occurred to me that this is because the wording is slightly misleading; what the column in fact lists is when the repository was last *modified*, that is, when changesets was last added or removed from it. The word `change' can be understood as referring to the changeset itself. Using `changed' would be ever so slightly less amigous. However, the standard nomenclature in this case is `modification date' and `Last modified', which is incidentally entirely unambigous. Hence, `Last modified' is the wording used.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Sun, 24 Jan 2010 20:51:53 +0100
parents 4ba89b6d0e05
children 717c35d55fb3
line wrap: on
line source

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "bookmarks=" >> $HGRCPATH

hg init

echo % no bookmarks
hg bookmarks

echo % bookmark rev -1
hg bookmark X

echo % list bookmarks
hg bookmarks

echo a > a
hg add a
hg commit -m 0

echo % bookmark X moved to rev 0
hg bookmarks

echo % look up bookmark
hg log -r X

echo % second bookmark for rev 0
hg bookmark X2

echo % bookmark rev -1 again
hg bookmark -r null Y

echo % list bookmarks
hg bookmarks

echo b > b
hg add b
hg commit -m 1

echo % bookmarks X and X2 moved to rev 1, Y at rev -1
hg bookmarks

echo % bookmark rev 0 again
hg bookmark -r 0 Z

echo c > c
hg add c
hg commit -m 2

echo % bookmarks X and X2 moved to rev 2, Y at rev -1, Z at rev 0
hg bookmarks

echo % rename nonexistent bookmark
hg bookmark -m A B

echo % rename to existent bookmark
hg bookmark -m X Y

echo % force rename to existent bookmark
hg bookmark -f -m X Y

echo % list bookmarks
hg bookmark

echo % rename without new name
hg bookmark -m Y

echo % delete without name
hg bookmark -d

echo % delete nonexistent bookmark
hg bookmark -d A

echo % bookmark name with spaces should be stripped
hg bookmark ' x  y '

echo % list bookmarks
hg bookmarks

echo % look up stripped bookmark name
hg log -r 'x  y'

echo % reject bookmark name with newline
hg bookmark '
'

echo % bookmark with existing name
hg bookmark Z

echo % force bookmark with existing name
hg bookmark -f Z

echo % list bookmarks
hg bookmark

echo % revision but no bookmark name
hg bookmark -r .

true