-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Add more hints to settings #4540
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| #global_credentials { | ||
| padding: 0 30px; | ||
| margin-bottom: 0px; | ||
| } | ||
|
|
||
| #files_external { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,14 +24,17 @@ | |
| ?> | ||
| <div id="<?php p($_['appid']); ?>" class="section workflowengine"> | ||
| <h2 class="inlineblock"><?php p($_['heading']); ?></h2> | ||
|
|
||
| <?php if (!empty($_['docs'])): ?> | ||
| <a target="_blank" rel="noreferrer" class="icon-info svg" | ||
| title="<?php p($l->t('Open documentation'));?>" | ||
| href="<?php p(link_to_docs($_['docs'])); ?>"> | ||
| </a> | ||
| <?php endif; ?> | ||
|
|
||
| <?php if (!empty($_['settings-hint'])): ?> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is what
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So please revert and add the class to the actual description
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @nickvergessen I disagree. We need to separate these into two paragraphs for readability. One is an explanation for what you can use it for, the other is a description for how to use it. The first one is important for anyone who wants to find out if this is useful. The second one we actually could show below the form because it’s only relevant when you decided you want to use it.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree with @jancborchardt here too. |
||
| <p class="settings-hint"><?php p($_['settings-hint']); ?></p> | ||
| <?php endif; ?> | ||
|
|
||
| <?php if (!empty($_['description'])): ?> | ||
| <p><?php p($_['description']); ?></p> | ||
| <?php endif; ?> | ||
|
|
||
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.
Well ... if we do this here (Hint to Nextcloud and ownCloud, Pydio) then we need to do that everywhere, don't we? Wouldn't be a more neutral word like "supported federation server" better? 😬
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.
That's tech-speak and unhelpful though. The question is mainly to @karlitschek if we can/should use the word "ownCloud" there.
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 would say it is fine, but @karlitschek has the last decision here.
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.
In general it is fine of course to show the name of other projects. It is a shared standard after all. But on a different note. I think we should hide product names all together, including Nextcloud, when using branding?
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.
Makes sense.
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.
Let me remove this for now and merge the PR. We should look into the branding of this text in a separate PR.
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.
#4561