From 94568d83c554c3111971a0d95108487d68c57516 Mon Sep 17 00:00:00 2001 From: Suzanne Scala Date: Thu, 17 Mar 2016 10:52:57 -0700 Subject: [PATCH 1/2] updated container path tooltip --- src/js/components/LocalVolumesComponent.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/components/LocalVolumesComponent.jsx b/src/js/components/LocalVolumesComponent.jsx index b838b94b9..ee2876952 100644 --- a/src/js/components/LocalVolumesComponent.jsx +++ b/src/js/components/LocalVolumesComponent.jsx @@ -55,8 +55,8 @@ var LocalVolumesComponent = React.createClass({ var containerPathTooltipMessage = ( The path to the directory where your application will - read and write data. The path must be non-nested, - e.g. `/var/lib/mysql`. + read and write data. The path must be non-nested and cannot contain slashes, e.g. `data`, + but not `../../../etc/opt` or `/user/data/`. Read more. ); From 2ad8e11cf1b3853785aff1bb1affb23b73a858cf Mon Sep 17 00:00:00 2001 From: Suzanne Scala Date: Thu, 17 Mar 2016 10:55:29 -0700 Subject: [PATCH 2/2] added link to persistent volumes page Note: this page is not yet live --- src/js/constants/ExternalLinks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/constants/ExternalLinks.js b/src/js/constants/ExternalLinks.js index abb52faa2..c101c879c 100644 --- a/src/js/constants/ExternalLinks.js +++ b/src/js/constants/ExternalLinks.js @@ -3,8 +3,8 @@ const ExternalLinks = { "marathon-ui.html#application-status-reference", DOCS_HEALTH: "https://mesosphere.github.io/marathon/docs/" + "marathon-ui.html#application-health-reference", - LOCAL_VOLUMES: "about:blank", - CONTAINER_PATH: "about:blank", + LOCAL_VOLUMES: "https://mesosphere.github.io/marathon/docs/persistent-volumes.html", + CONTAINER_PATH: "http://mesosphere.github.io/marathon/docs/persistent-volumes.html", PORTS: "https://mesosphere.github.io/marathon/docs/ports.html", JSON_EDITOR: "about:blank" };