diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index d4b92359..d00f105d 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -1110,12 +1110,12 @@ available_notification_agents = sorted(notifiers.available_notification_agents() YYYY Numeric, four digits - Eg., 1999, 2003 + E.g. 1999, 2003 YY Numeric, two digits - Eg., 99, 03 + E.g. 99, 03 @@ -1193,7 +1193,7 @@ available_notification_agents = sorted(notifiers.available_notification_agents() Do Numeric, with suffix - Eg., 1st, 2nd ... 31st. + E.g. 1st, 2nd ... 31st. @@ -1329,12 +1329,12 @@ available_notification_agents = sorted(notifiers.available_notification_agents() ZZ UTC offset - Eg., +0100, -0700 + E.g. +0100, -0700 Z UTC offset - Eg., +01:00, -07:00 + E.g. +01:00, -07:00 @@ -1350,7 +1350,7 @@ available_notification_agents = sorted(notifiers.available_notification_agents() X Unix timestamp - Eg., 1456887825 + E.g. 1456887825 diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index 17f67142..ffce9b4b 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -2006,12 +2006,11 @@ class Scripts(object): logger.error(u"PlexPy Notifiers :: Failed to run script: %s" % e) def return_config_options(self): - config_option = [{'label': 'Warning', - 'description': 'Script notifications are currently experimental!

\ - Supported file types: ' + ', '.join(self.script_exts), + config_option = [{'label': 'Supported File Types', + 'description': ', '.join(self.script_exts), 'input_type': 'help' }, - {'label': 'Script folder', + {'label': 'Script Folder', 'value': plexpy.CONFIG.SCRIPTS_FOLDER, 'name': 'scripts_folder', 'description': 'Add your script folder.', @@ -2253,13 +2252,12 @@ class FacebookNotifier(object): def return_config_options(self): config_option = [{'label': 'Instructions', - 'description': 'Facebook notifications are currently experimental!

\ - Step 1: Visit \ + 'description': 'Step 1: Visit \ Facebook Developers to add a new app using basic setup.
\ Step 2: Go to Settings > Basic and fill in a \ Contact Email.
\ Step 3: Go to Settings > Advanced and fill in \ - Valid OAuth redirect URIs with your PlexPy URL (i.e. http://localhost:8181).
\ + Valid OAuth redirect URIs with your PlexPy URL (e.g. http://localhost:8181).
\ Step 4: Go to App Review and toggle public to Yes.
\ Step 5: Fill in the PlexPy URL below with the exact same URL from Step 3.
\ Step 6: Fill in the App ID and App Secret below.
\ @@ -2270,7 +2268,8 @@ class FacebookNotifier(object): {'label': 'PlexPy URL', 'value': self.redirect_uri, 'name': 'facebook_redirect_uri', - 'description': 'Your PlexPy URL. This will tell Facebook where to redirect you after authorization.', + 'description': 'Your PlexPy URL. This will tell Facebook where to redirect you after authorization.\ + (e.g. http://localhost:8181)', 'input_type': 'text' }, {'label': 'Facebook App ID',