-
Notifications
You must be signed in to change notification settings - Fork 231
Consistently headline case inline action links #978
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@spadgett does the patternfly terminology doc specify? @ajacobs21e do you have a preference? this means "View Log" vs "View log" |
Note that sometimes they're longer like "Don't show me again" or "Reload environment variables" |
It's not clear to me these links fall into any of the categories on the Patternfly terminology page |
PF uses headline case. I can link to the documentation tomorrow
…On Fri, Dec 2, 2016 at 3:59 PM, Sam Padgett ***@***.***> wrote:
It's not clear to me these links fall into any of the categories on the
Patternfly terminology page
http://www.patternfly.org/styles/terminology-and-wording
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#978 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGHlfjufo09q4_Y7_6C2evPOFmyCaE3Sks5rEIa9gaJpZM4LC94j>
.
--
Allie Jacobs
UXD
calendar
<https://www.google.com/calendar/b/1/[email protected]&ctz=America/New_York>
|
Should "Show advanced routing, build, deployment and source options" be headline as well? |
i think the ones that are more than about 3 words get terrible to read when in headline case |
@spadgett @jwforres here are two examples of using Headline Case in PatternFly For the long example, we could edit the text or change it to a sentence (like the Links section here http://www.patternfly.org/styles/terminology-and-wording/)
|
adc42cb
to
4f09bc4
Compare
Updated links to headline case. |
@@ -162,7 +162,7 @@ angular.module('openshiftConsole') | |||
!$filter('canI')('builds/log', 'get')) { | |||
return [{ | |||
href: Navigate.resourceURL(build), | |||
label: "View Build" | |||
label: "View build" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you need to remove this change
@@ -153,11 +153,11 @@ | |||
<span ng-if="latestBuild | buildLogURL"> | |||
<!-- Always show a log link for pipeline builds. --> | |||
<span ng-if="latestBuild | isJenkinsPipelineStrategy"> | |||
<a ng-href="{{latestBuild | buildLogURL}}" target="_blank">View Log</a> | |||
<a ng-href="{{latestBuild | buildLogURL}}" target="_blank">View log</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert this and the one right below
@@ -1 +1 @@ | |||
<div ng-if="(build | buildLogURL) && ('builds/log' | canI : 'get')" class="pipeline-link"><a ng-href="{{build | buildLogURL}}" target="_blank">View Log</a></div> | |||
<div ng-if="(build | buildLogURL) && ('builds/log' | canI : 'get')" class="pipeline-link"><a ng-href="{{build | buildLogURL}}" target="_blank">View log</a></div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert
4f09bc4
to
3ac1443
Compare
@jwforres thanks, updated |
LGTM then, will let you decide how to order this and #985 |
just saw your comment in the other PR [merge] |
Evaluated for origin web console merge up to 3ac1443 |
Origin Web Console Merge Results: SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_web_console/802/) (Base Commit: 8bca523) |
We sometimes use headline case and sometimes sentence case for inline action links and links in alerts. Consistently use
sentenceheadline case throughout the console.Fixes #865
See also #805
@jwforres OK with this change? I don't have a strong opinion about headline vs sentence, but I'd like to be consistent.