From 6097196dd72c1499e4de6ea274ee77616da0e515 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 8 Jan 2013 15:52:56 -0500 Subject: [PATCH 1/4] CC-4813: Users -> Do not save username on User Management page -fixed --- airtime_mvc/application/controllers/UserController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/airtime_mvc/application/controllers/UserController.php b/airtime_mvc/application/controllers/UserController.php index a2abefba3..340c1a9f0 100644 --- a/airtime_mvc/application/controllers/UserController.php +++ b/airtime_mvc/application/controllers/UserController.php @@ -58,7 +58,6 @@ class UserController extends Zend_Controller_Action $user = new Application_Model_User($formData['user_id']); $user->setFirstName($formData['first_name']); $user->setLastName($formData['last_name']); - $user->setLogin($formData['login']); // We don't allow 6 x's as a password. // The reason is because we that as a password placeholder // on the client side. From 9755ea6a2044decfd8a412e751bafa39de2ebf93 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 8 Jan 2013 16:47:00 -0500 Subject: [PATCH 2/4] CC-4814: System->Streams: Tool tips' content of output stream's admin user field is not listed in airtime.po file -fixed --- airtime_mvc/application/controllers/LocaleController.php | 1 + airtime_mvc/public/js/airtime/preferences/streamsetting.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/LocaleController.php b/airtime_mvc/application/controllers/LocaleController.php index d0e3dabd8..3fa1a0a5a 100644 --- a/airtime_mvc/application/controllers/LocaleController.php +++ b/airtime_mvc/application/controllers/LocaleController.php @@ -180,6 +180,7 @@ class LocaleController extends Zend_Controller_Action "If your live streaming client does not ask for a username, this field should be 'source'." => _("If your live streaming client does not ask for a username, this field should be 'source'."), "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted." => _("If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."), + "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." => _("This is the admin username and password for Icecast/SHOUTcast to get listener statistics."), //preferences/support-setting.js "Image must be one of jpg, jpeg, png, or gif" => _("Image must be one of jpg, jpeg, png, or gif"), //schedule/add-show.js diff --git a/airtime_mvc/public/js/airtime/preferences/streamsetting.js b/airtime_mvc/public/js/airtime/preferences/streamsetting.js index 7fa712a58..69c76cc99 100644 --- a/airtime_mvc/public/js/airtime/preferences/streamsetting.js +++ b/airtime_mvc/public/js/airtime/preferences/streamsetting.js @@ -357,7 +357,7 @@ function setupEventListeners() { $(".admin_username_help_icon").qtip({ content: { - text: $.i18n._("This admin username and password for Icecast to get listener statistics.") + text: $.i18n._("This is the admin username and password for Icecast/SHOUTcast to get listener statistics.") }, hide: { delay: 500, From 22e4811b224fca56d52dba0ea35f361cf3c264ba Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 8 Jan 2013 16:51:11 -0500 Subject: [PATCH 3/4] Add gettext wrapper function to string missing it --- .../application/views/scripts/dashboard/stream-player.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/views/scripts/dashboard/stream-player.phtml b/airtime_mvc/application/views/scripts/dashboard/stream-player.phtml index bee262fbd..a86c27977 100644 --- a/airtime_mvc/application/views/scripts/dashboard/stream-player.phtml +++ b/airtime_mvc/application/views/scripts/dashboard/stream-player.phtml @@ -1,6 +1,6 @@