提交 e3798318 编写于 作者: J Junio C Hamano

Merge branch 'mm/mediawiki-encoding-fix'

* mm/mediawiki-encoding-fix:
  git-remote-mediawiki: fix encoding issue for UTF-8 media files
  git-remote-mediawiki: allow stop/start-ing the test server
...@@ -461,7 +461,12 @@ sub download_mw_mediafile { ...@@ -461,7 +461,12 @@ sub download_mw_mediafile {
my $response = $mediawiki->{ua}->get($download_url); my $response = $mediawiki->{ua}->get($download_url);
if ($response->code == HTTP_CODE_OK) { if ($response->code == HTTP_CODE_OK) {
return $response->decoded_content; # It is tempting to return
# $response->decoded_content({charset => "none"}), but
# when doing so, utf8::downgrade($content) fails with
# "Wide character in subroutine entry".
$response->decode();
return $response->content();
} else { } else {
print {*STDERR} "Error downloading mediafile from :\n"; print {*STDERR} "Error downloading mediafile from :\n";
print {*STDERR} "URL: ${download_url}\n"; print {*STDERR} "URL: ${download_url}\n";
......
...@@ -20,6 +20,8 @@ usage () { ...@@ -20,6 +20,8 @@ usage () {
echo " install | -i : Install a wiki on your computer." echo " install | -i : Install a wiki on your computer."
echo " delete | -d : Delete the wiki and all its pages and " echo " delete | -d : Delete the wiki and all its pages and "
echo " content." echo " content."
echo " start | -s : Start the previously configured lighttpd daemon"
echo " stop : Stop lighttpd daemon."
} }
...@@ -33,6 +35,14 @@ case "$1" in ...@@ -33,6 +35,14 @@ case "$1" in
wiki_delete wiki_delete
exit 0 exit 0
;; ;;
"start" | "-s")
start_lighttpd
exit
;;
"stop")
stop_lighttpd
exit
;;
"--help" | "-h") "--help" | "-h")
usage usage
exit 0 exit 0
......
...@@ -58,6 +58,25 @@ test_expect_success 'git clone works on previously created wiki with media files ...@@ -58,6 +58,25 @@ test_expect_success 'git clone works on previously created wiki with media files
test_cmp mw_dir_clone/Foo.txt mw_dir/Foo.txt test_cmp mw_dir_clone/Foo.txt mw_dir/Foo.txt
' '
test_expect_success 'git push can upload media (File:) files containing valid UTF-8' '
wiki_reset &&
git clone mediawiki::'"$WIKI_URL"' mw_dir &&
(
cd mw_dir &&
"$PERL_PATH" -e "print STDOUT \"UTF-8 content: éèàéê€.\";" >Bar.txt &&
git add Bar.txt &&
git commit -m "add a text file with UTF-8 content" &&
git push
)
'
test_expect_success 'git clone works on previously created wiki with media files containing valid UTF-8' '
test_when_finished "rm -rf mw_dir mw_dir_clone" &&
git clone -c remote.origin.mediaimport=true \
mediawiki::'"$WIKI_URL"' mw_dir_clone &&
test_cmp mw_dir_clone/Bar.txt mw_dir/Bar.txt
'
test_expect_success 'git push & pull work with locally renamed media files' ' test_expect_success 'git push & pull work with locally renamed media files' '
wiki_reset && wiki_reset &&
git clone mediawiki::'"$WIKI_URL"' mw_dir && git clone mediawiki::'"$WIKI_URL"' mw_dir &&
......
...@@ -289,7 +289,6 @@ start_lighttpd () { ...@@ -289,7 +289,6 @@ start_lighttpd () {
# Kill daemon lighttpd and removes files and folders associated. # Kill daemon lighttpd and removes files and folders associated.
stop_lighttpd () { stop_lighttpd () {
test -f "$WEB_TMP/pid" && kill $(cat "$WEB_TMP/pid") test -f "$WEB_TMP/pid" && kill $(cat "$WEB_TMP/pid")
rm -rf "$WEB"
} }
# Create the SQLite database of the MediaWiki. If the database file already # Create the SQLite database of the MediaWiki. If the database file already
...@@ -415,6 +414,7 @@ wiki_reset () { ...@@ -415,6 +414,7 @@ wiki_reset () {
wiki_delete () { wiki_delete () {
if test $LIGHTTPD = "true"; then if test $LIGHTTPD = "true"; then
stop_lighttpd stop_lighttpd
rm -fr "$WEB"
else else
# Delete the wiki's directory. # Delete the wiki's directory.
rm -rf "$WIKI_DIR_INST/$WIKI_DIR_NAME" || rm -rf "$WIKI_DIR_INST/$WIKI_DIR_NAME" ||
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册