Thomas Keller
4879d64989
If git's author name does not contain valid utf-8 bytes, skip the author
...
lookup in the database, which would otherwise only bring up errors.
2011-06-15 13:50:02 +02:00
William MARTIN
dab8ea63fc
Mark string for translation
2011-06-15 11:35:30 +02:00
William MARTIN
b03d7a04a0
improve rendering of 0% bar
2011-06-15 11:30:11 +02:00
William MARTIN
ef5b93e3f7
Fix the special case of a empty issue tracker, for the issue summary.
2011-06-15 11:18:41 +02:00
William MARTIN
69ae1c08ef
Add an sub-tab under Issue to add a summury view
2011-06-15 09:11:47 +02:00
Thomas Keller
8e4f828cc6
Spelling.
2011-06-13 12:43:39 +02:00
Thomas Keller
c4f92f4569
Access all private methods in a non-static way, now that we have a instance-dependent _diagnoseProblem() method
2011-06-13 12:23:22 +02:00
Thomas Keller
c4d2b99656
Wrong object to call commit() on...
2011-06-13 01:59:21 +02:00
Thomas Keller
d4fe88adab
Disable the fixed context bar if the content is already to big
2011-06-12 17:59:43 +02:00
Thomas Keller
69d0e8313a
Merge branch 'develop' of projects.ceondo.com:indefero into develop
2011-06-11 00:48:38 +02:00
Thomas Keller
11a234e135
Fix the branch links users of the Subversion frontend get when they enter
...
a wrong revision and only display this list if there are any branches
available for all SCMs.
2011-06-11 00:47:54 +02:00
Thomas Keller
2f30e4e2f6
Fix a regression introduced with commit 20c3f14cc
: If we can read from a process'
...
pipe doesn't mean the exit code of the process in question is zero, this is
actually what pclose() returns.
2011-06-11 00:44:32 +02:00
Thomas Keller
118ca9f11f
Now that IDF_Scm::getChanges() is implemented for all SCMs, there is no need for the try-catch anymore.
2011-06-10 23:40:58 +02:00
Thomas Keller
24fc41ee0d
XML node access didn't work and as such renames and copies weren't properly detected.
2011-06-10 23:40:22 +02:00
William MARTIN
c00dbac5e0
Merge branch 'feature.download-md5' into develop
2011-06-10 09:26:20 +02:00
William MARTIN
d7857c5126
Rename the migration script
2011-06-10 09:25:17 +02:00
Thomas Keller
ac6be0d3c0
Implement IDF_Scm::getChanges() for Subversion (closes issue 622)
2011-06-10 02:23:54 +02:00
Thomas Keller
7ff6f09f67
We can actually differentiate between copies and renames in Hg, so lets
...
add support for another change type, 'copies'. The previous implementation
for Hg was also slightly flawed in the way that it mixed sources with
targets.
2011-06-10 01:34:33 +02:00
Thomas Keller
00b576c5a3
Merge branch 'feature.issue-links' into develop
2011-06-10 00:39:39 +02:00
Thomas Keller
2a33510c96
\w doesn't match -, so better use [^)] to match server names
2011-06-06 23:24:00 +02:00
Thomas Keller
d1f79d906d
Do not try to symlink the same file twice (fixes issue 695)
2011-06-06 23:18:06 +02:00
Thomas Keller
aa043f14ac
Two occurrences forgotten
2011-06-06 23:01:25 +02:00
Thomas Keller
638b28399e
Fix issues 695 and 697. Still, public keys aren't added to monotone
...
databases for some weird reason, so issue 696 is still open.
2011-06-05 02:37:47 +02:00
Thomas Keller
1d86f036a3
Add a warning to not configure a global key for all monotone
...
instances in usher.conf.
2011-06-05 01:31:21 +02:00
Thomas Keller
2f6e0f0a22
Include examples how to setup ACLs for different platforms.
2011-06-05 01:13:00 +02:00
Thomas Keller
1b1b00a10c
The server list no longer renders a bogus server entry in case no
...
monotone server has been configured yet in the connected usher instance.
Also display a short info text if the server or connection list for
a running monotone server is empty.
2011-06-04 23:15:58 +02:00
Thomas Keller
8693418d39
Revert "Improve error handling and reporting (partially resolves issue 695)"
...
This reverts commit 8ff15368ce
.
2011-06-04 01:14:22 +02:00
Thomas Keller
8ff15368ce
Improve error handling and reporting (partially resolves issue 695)
2011-06-04 01:03:30 +02:00
Thomas Keller
32cde534bd
Fix some errors in the German translation and unify some of the strings.
...
Thanks to Daniel Steudler <steudlerdaniel@gmail.com> for some of the
pointers. Fixes issue 694.
2011-06-04 00:31:12 +02:00
Thomas Keller
c0e26133bd
Keep the context area in the view if a view scrolls down several pages.
2011-06-02 02:04:52 +02:00
Thomas Keller
592c2ff9ff
Several f'ups in hg's parseLog() method
2011-06-02 01:21:32 +02:00
Thomas Keller
30efd0a2db
Merge branch 'develop' of projects.ceondo.com:indefero into develop
2011-06-02 00:55:17 +02:00
Thomas Keller
20c3f14cc8
git and hg diff views did not show empty context lines, a regression
...
from the commit(s) from issue 633. The diff parser assumed a properly
formatted diff that denotes empty context lines with a single space in
the first column. This single space however was missing, because the
hg and git backends got the diff through PHP's exec() function and
this returns already line-splitted output, but - and this is the actual
problem - removes trailing whitespace at the end of each line, essentially
making " \n" only "\n". When splitting this string now again with
PREG_SPLIT_NO_EMPTY the empty line was completely lost in the diff output.
To make it clear that an empty line does not mark a context line now, but
should stop the diff parsing, the Diff parser now also defaults to 'false'
as line type.
This commit fixes issue 688.
2011-06-02 00:48:38 +02:00
Thomas Keller
80313c88c8
Properly reverse-sort git's tag list again; the rsort on the original output
...
of the command looked bogus: since each tag ref is prefixed by an iso date and
since commit 94da55d1
by hash, the whole string was of course sorted by this
date and later hash, but not the tag name. This should now make more sense.
2011-06-02 00:38:14 +02:00
Thomas Keller
cab1c09ffc
Note that issue 559 has been fixed with the fix for issue 686.
2011-06-02 00:08:13 +02:00
William MARTIN
c421919092
Fix php syntax
2011-06-01 11:20:03 +02:00
William MARTIN
d350876bc1
Update allowed attributes in the Markdown Prefilter, to be less strict.
...
Fix issue 578
2011-06-01 10:10:01 +02:00
William MARTIN
de09c8af56
Merge branch 'develop' of projects.ceondo.com:indefero into develop
2011-05-31 15:40:14 +02:00
William MARTIN
998f4576fe
Fix div collision
2011-05-31 15:39:46 +02:00
William MARTIN
06c57f7da6
Set the SQL type to VARCHAR(32)
...
Process the md5 of each file during the migrationUpdate all IDF_Upload object to process their md5 during the migration
2011-05-31 14:53:44 +02:00
William MARTIN
4d5418a601
Fix migration methods name
2011-05-31 14:01:39 +02:00
William MARTIN
95cc7f627f
Process a md5 on the uploaded file, and display it in the per file view.
...
- The uploader can check that the uploaded file is correct
- The downloader can check his download too
2011-05-31 13:58:12 +02:00
Thomas Keller
2aab4eea3b
Apply (and adapt) the patch from issue 364, which should fix the issue.
2011-05-31 13:41:37 +02:00
Thomas Keller
5bbff9f5a6
Rename the "Go to revision" button in the SVN views to "Switch", so it
...
doesn't break into the next line.
2011-05-31 13:39:55 +02:00
Thomas Keller
b5fcf1636a
String improvements.
2011-05-31 13:34:28 +02:00
Thomas Keller
13012be5d7
Merge branch 'develop' of projects.ceondo.com:indefero into develop
2011-05-31 13:14:21 +02:00
Thomas Keller
ca2ef814fb
Add support for the display of monotone node attributes.
...
(also fix the way the attributes view is displayed, i.e. do not
use single strings, but one string in context which is much easier
to translate)
2011-05-31 13:11:55 +02:00
William MARTIN
b9407f6aee
Add some nobr, to keep the text formated when the message is long
2011-05-31 11:06:39 +02:00
Thomas Keller
9bcb5f9456
Fix a PHP notice / Pluf exception in case any issue type field is cleared.
2011-05-31 10:51:24 +02:00
Thomas Keller
f412099f69
Fix whitespace issues in the timeline.
2011-05-30 14:48:36 +02:00