? ? Success
Pull Request for # 10910

User tests: Successful: Unsuccessful:

avatar C-Lodder
C-Lodder
23 Jun 2016

Pull Request for Issue #10910

Summary of Changes

  • Removes "envelope" icon
  • Adds "Message(s)" label after the count badge
  • Adds separators in between each button group

Testing Instructions

Very simple. Apply the patch and match again the screenshots below:

Before:
before

After:
after

avatar C-Lodder C-Lodder - open - 23 Jun 2016
avatar C-Lodder C-Lodder - change - 23 Jun 2016
Status New Pending
avatar joomla-cms-bot joomla-cms-bot - change - 23 Jun 2016
Labels Added: ? ?
avatar joomla-cms-bot joomla-cms-bot - change - 23 Jun 2016
Labels Added: ? ?
avatar MATsxm MATsxm - test_item - 23 Jun 2016 - Tested successfully
avatar MATsxm
MATsxm - comment - 23 Jun 2016

I have tested this item successfully on d5320ba

?

I love this way. Thanks


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar MATsxm
MATsxm - comment - 23 Jun 2016

Side note, see with Multilingual Sites...
Is there a way for a "conditional" separator?
89c104d074f864ad3b6624fa5a3c5439

avatar joomla-cms-bot
joomla-cms-bot - comment - 23 Jun 2016

This PR has received new commits.

CC: @MATsxm


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar C-Lodder
C-Lodder - comment - 23 Jun 2016

@MATsxm - done ;)

avatar andrepereiradasilva andrepereiradasilva - test_item - 23 Jun 2016 - Tested unsuccessfully
avatar andrepereiradasilva
andrepereiradasilva - comment - 23 Jun 2016

I have tested this item ? unsuccessfully on 73aff5a

doesn't work on RTL languages (Arabic for instance).

also it seems generatecss.php has not run to generate the css from less files.


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar brianteeman brianteeman - change - 23 Jun 2016
Category Administration Modules
avatar brianteeman brianteeman - change - 23 Jun 2016
Rel_Number 0 10910
Relation Type Pull Request for
Labels
avatar brianteeman
brianteeman - comment - 23 Jun 2016

After applying the PR my site doesnt look exactly the same as your screenshot. The separator is not evenly spaced

avatar MATsxm MATsxm - test_item - 23 Jun 2016 - Tested successfully
avatar MATsxm
MATsxm - comment - 23 Jun 2016

I have tested this item successfully on 73aff5a

Works fine here with the multilingual mod_ enabled.

Didn't test on RTL


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar brianteeman
brianteeman - comment - 23 Jun 2016

When you only have multilingual mod enabled you have a seperator hanging on
its own

On 23 June 2016 at 17:21, Marc-Antoine Thevenet notifications@github.com
wrote:

I have tested this item successfully on 73aff5a
73aff5a

Works fine here with the multilingual mod_ enabled.

Didn't test on RTL

This comment was created with the J!Tracker Application
https://github.com/joomla/jissues at issues.joomla.org/joomla-cms/10918
https://issues.joomla.org/tracker/joomla-cms/10918.


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
#10918 (comment),
or mute the thread
https://github.com/notifications/unsubscribe/ABPH8YbIJMts9eGDNSuxuRHY9O3dZQZDks5qOrKdgaJpZM4I87vN
.

Brian Teeman
Co-founder Joomla! and OpenSourceMatters Inc.
http://brian.teeman.net/

avatar ggppdk
ggppdk - comment - 23 Jun 2016

When you only have multilingual mod enabled you have a seperator hanging on its own

Yes, because it is a different module maybe better remove it from this module

About RTL it works, if you copy new CSS into the RTL css file (or into the less files),

About extra spacing in seperators it is because of isis CSS rule:

.btn-group + .btn-group {
    margin-left: 5px;
}

And in RTL same effect with extra spacing seperators is because of isis CSS rule:

 .btn-group + .btn-group {
    margin-right: 5px;
    margin-left: 0px;
}

we could add this to fix it:

#status .btn-group + .btn-group {
    margin: 0px;
}


But it seems like and unneeded hack to do this, because the seperator is inside the btn-group, i have tested moving the separator out of the btn-group:

//...  Remove seperator from all $output[] and then:

// Output the items.
/*foreach ($output as $item)
{
    echo $item;
}*/

echo implode('<span class="btn-group separator"></span>', $output);

and the result is proper in both cases (RTL, non-RTL)

avatar infograf768
infograf768 - comment - 24 Jun 2016

Concerning Messages, I guess the tooltip is no more necessary.

avatar C-Lodder
C-Lodder - comment - 24 Jun 2016

@infograf768 - I used new language strings bacause the ones already provided add a number to the beginning of the string, hence the %d. The number is already shown in the badge so no need to show it again.

I'll double check on RTL....always forget this

avatar infograf768
infograf768 - comment - 24 Jun 2016

@C-Lodder
Yep, saw that and deleted my post. ;)
but I still think the tooltip is now useless.

avatar joomla-cms-bot
joomla-cms-bot - comment - 24 Jun 2016

This PR has received new commits.

CC: @andrepereiradasilva, @MATsxm


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar C-Lodder
C-Lodder - comment - 24 Jun 2016

I've now applied the change to RTL languages and also fixed the whitespace issue as mentioned by @brianteeman

Oh and removed the tooltip

avatar joomla-cms-bot
joomla-cms-bot - comment - 24 Jun 2016

This PR has received new commits.

CC: @andrepereiradasilva, @MATsxm


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar brianteeman brianteeman - test_item - 24 Jun 2016 - Tested successfully
avatar brianteeman
brianteeman - comment - 24 Jun 2016

I have tested this item successfully on 6d6544e


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar brianteeman
brianteeman - comment - 24 Jun 2016

Sorry to be a pain but because of some stupid rules we dont remove unused strings

avatar joomla-cms-bot
joomla-cms-bot - comment - 24 Jun 2016

This PR has received new commits.

CC: @andrepereiradasilva, @brianteeman, @MATsxm


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar C-Lodder
C-Lodder - comment - 24 Jun 2016

Added them back in.

Why on earth are language strings that are no longer used not removed?

avatar brianteeman
brianteeman - comment - 24 Jun 2016

Don't even go there

avatar MATsxm MATsxm - test_item - 24 Jun 2016 - Tested successfully
avatar MATsxm
MATsxm - comment - 24 Jun 2016

I have tested this item successfully on f14c5a4

Thanks for the great job and a big HA!!!! for the obsolete strings...


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar brianteeman brianteeman - test_item - 24 Jun 2016 - Tested successfully
avatar brianteeman
brianteeman - comment - 24 Jun 2016

I have tested this item successfully on f14c5a4


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar brianteeman brianteeman - change - 24 Jun 2016
Status Pending Ready to Commit
Labels
avatar brianteeman
brianteeman - comment - 24 Jun 2016

RTC


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar joomla-cms-bot joomla-cms-bot - change - 24 Jun 2016
Labels Added: ?
avatar brianteeman brianteeman - change - 24 Jun 2016
Category Administration Modules Administration Language & Strings Modules
avatar brianteeman brianteeman - change - 24 Jun 2016
Labels
avatar brianteeman brianteeman - change - 24 Jun 2016
Milestone Added:
avatar mbabker
mbabker - comment - 24 Jun 2016

Why on earth are language strings that are no longer used not removed?

Don't even go there

It's about as logical as brexit. #toosoon?

avatar infograf768
infograf768 - comment - 25 Jun 2016

Please alpha order the new lang strings. It should be:

MOD_STATUS_MESSAGES_0="%d Messages"
MOD_STATUS_MESSAGES_1="%d Message"
MOD_STATUS_MESSAGES_LABEL_0="Messages"
MOD_STATUS_MESSAGES_LABEL_1="Message"
MOD_STATUS_MESSAGES_LABEL_MORE="Messages"
MOD_STATUS_MESSAGES_MORE="%d Messages"

Also, It looks likee you did not run correctly the generatecss.php as there is a change in Hathor that was not done by a former css patch I guess. My generatecss also adds this:

diff --git a/administrator/templates/hathor/css/template.css b/administrator/templates/hathor/css/template.css
index 32d3ffe..d61e93c 100644
--- a/administrator/templates/hathor/css/template.css
+++ b/administrator/templates/hathor/css/template.css
@@ -3455,8 +3455,4 @@
    margin-bottom: 10px;
 }
-fieldset.uploadform .control-group,
-fieldset.uploadform .form-actions {
-   display: inline-block;
-}
 #installer-database,
 #installer-discover,
avatar joomla-cms-bot
joomla-cms-bot - comment - 27 Jun 2016

This PR has received new commits.

CC: @andrepereiradasilva, @brianteeman, @MATsxm


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10918.

avatar C-Lodder
C-Lodder - comment - 27 Jun 2016

@infograf768 - alpha ordered the language strings. No idea what you mean by the generatecss.php. I didn't touch this at all. I simply forked the latest, made my changes, then compiled the LESS using the button in the Isis toolbar

avatar infograf768
infograf768 - comment - 28 Jun 2016

When you modify a .less file you have to run a CLI called generatecss.php, NOT use the Isis compilation.
I.e. cd to your local repository (on Mac it is called Terminal) and enter
php build/generatecss.php
It will do the job for you on the .css files.

avatar C-Lodder
C-Lodder - comment - 28 Jun 2016

@infograf768 - Erm ok, never heard about this before, nor have I ever done it. Is there some sort of "Contributing guidelines" wiki that I can refer to for future reference?

avatar C-Lodder
C-Lodder - comment - 28 Jun 2016

I don't mean that. I mean a guideline as to what steps to take when contributing to Joomla. Where does it say that people need to build the generatecss.php?

avatar mbabker
mbabker - comment - 28 Jun 2016

It doesn't say it explicitly anywhere but if you make a change to any LESS file in core you should run the generatecss.php script to ensure all resources are correctly updated. Since your changes only affect Isis it probably isn't a major issue this time but if you changed something in the media directory as an example it would affect multiple templates.

avatar wilsonge
wilsonge - comment - 21 Jul 2016

@C-Lodder I can't merge this until you run the generatecss.php stuff. I can run you through it if it helps?

avatar wilsonge wilsonge - change - 21 Jul 2016
Status Ready to Commit Pending
Labels
avatar wilsonge
wilsonge - comment - 21 Jul 2016

I'm removing the RTC label for now

avatar joomla-cms-bot joomla-cms-bot - change - 21 Jul 2016
Labels Removed: ?
avatar wilsonge wilsonge - change - 21 Jul 2016
Milestone Removed:
avatar C-Lodder
C-Lodder - comment - 21 Jul 2016

@wilsonge I'll run it tomorrow

avatar C-Lodder
C-Lodder - comment - 22 Jul 2016

@wilsonge - all done

avatar wilsonge wilsonge - change - 25 Jul 2016
Labels Added: ?
avatar wilsonge
wilsonge - comment - 25 Jul 2016

RTC

avatar joomla-cms-bot joomla-cms-bot - change - 25 Jul 2016
Labels Removed: ?
avatar wilsonge wilsonge - change - 25 Jul 2016
Status Pending Ready to Commit
Labels
avatar wilsonge wilsonge - change - 25 Jul 2016
Labels Added: ?
avatar wilsonge
wilsonge - comment - 25 Jul 2016

Bad bot

avatar rdeutz rdeutz - change - 13 Aug 2016
Status Ready to Commit Fixed in Code Base
Closed_Date 0000-00-00 00:00:00 2016-08-13 17:04:27
Closed_By rdeutz
avatar zero-24
zero-24 - comment - 13 Aug 2016

Come on @joomla-cms-bot

avatar joomla-cms-bot joomla-cms-bot - change - 13 Aug 2016
Labels Removed: ?

Add a Comment

Login with GitHub to post a comment