From 72d3ead0c274bd14d6e2851118049338108a6246 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 8 Jul 2009 01:10:19 +0000 Subject: Use cURL instead of get_file_contents() to do away with warnings. Also more reliable. --- scripts/update_translations.php | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/scripts/update_translations.php b/scripts/update_translations.php index c0919161a..2f4ca8720 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -42,7 +42,7 @@ $languages = get_all_languages(); foreach ($languages as $language) { $code = $language['lang']; - $file = 'http://laconi.ca/pootle/' . $code . + $file_url = 'http://laconi.ca/pootle/' . $code . '/laconica/LC_MESSAGES/laconica.po'; $lcdir = INSTALLDIR . '/locale/' . $code; $msgdir = "$lcdir/LC_MESSAGES"; @@ -59,18 +59,18 @@ foreach ($languages as $language) { } /* Get the remote one */ - $newFile = file_get_contents($file); + $new_file = curl_get_file($file_url); - if ($newfile === FALSE) { - echo "Couldn't retrieve .po file for $code: $file\n"; + if ($new_file === FALSE) { + echo "Couldn't retrieve .po file for $code: $file_url\n"; continue; } // Update if the local .po file is different to the one downloaded, or // if the .mo file is not present. - if (sha1($newFile) != $existingSHA1 || !file_exists($mofile)) { + if (sha1($new_file) != $existingSHA1 || !file_exists($mofile)) { echo "Updating ".$code."\n"; - file_put_contents($pofile, $newFile); + file_put_contents($pofile, $new_file); system(sprintf('msgmerge -U %s %s', $pofile, $laconica_pot)); system(sprintf('msgfmt -f -o %s %s', $mofile, $pofile)); } else { @@ -79,3 +79,19 @@ foreach ($languages as $language) { } echo "Finished\n"; + + +function curl_get_file($url) +{ + $c = curl_init(); + curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($c, CURLOPT_URL, $url); + $contents = curl_exec($c); + curl_close($c); + + if (!empty($contents)) { + return $contents; + } + + return FALSE; +} -- cgit v1.2.3-54-g00ecf From be8d77c923370ed72da85fac39908a57556557b4 Mon Sep 17 00:00:00 2001 From: Robin Millette Date: Tue, 7 Jul 2009 23:27:34 -0400 Subject: Trac #1689: inreplyto hidden value doesn't get cleared after a successful submit (javascript fix) --- js/util.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/util.js b/js/util.js index 9bb7c9128..7a7a5e30b 100644 --- a/js/util.js +++ b/js/util.js @@ -223,6 +223,7 @@ $(document).ready(function(){ } $("#notice_data-text").val(""); $("#notice_data-attach").val(""); + $("#notice_in-reply-to").val(""); $('#notice_data-attach_selected').remove(); counter(); } -- cgit v1.2.3-54-g00ecf