? ? ? Success

User tests: Successful: Unsuccessful:

avatar dgt41
dgt41
11 Oct 2015

What is this?

Another button bellow the editor that allows people to easily insert a module to their article
Once the button get their position inside tinyMCE this will look a lot better.

How to test

Apply this PR with patch tester
Go to discover and install the new plugin
Edit an article (fronted/backend) and make sure that the module is inserted
Also insert a style in the given input, either html5 or none, and observe the changes

Preview

screen shot 2015-10-11 at 11 35 32

avatar dgt41 dgt41 - open - 11 Oct 2015
avatar dgt41 dgt41 - change - 11 Oct 2015
Status New Pending
avatar joomla-cms-bot joomla-cms-bot - change - 11 Oct 2015
Labels Added: ? ?
avatar joomla-cms-bot joomla-cms-bot - change - 11 Oct 2015
Labels Added: ? ?
avatar brianteeman
brianteeman - comment - 11 Oct 2015

Your text says insert article inside article. ??
On 11 Oct 2015 2:36 pm, "Dimitris Grammatiko" notifications@github.com
wrote:

What is this?

Another button bellow the editor that allows people to easily insert an
article to their article
Once the button get their position inside tinyMCE this will look a lot
better.
How to test

Apply this PR with patch tester
Go to discover and install the new plugin
Edit an article (fronted/backend) and make sure that the module is inserted
Preview

[image: screenshot 2015-10-11 16 35 09]

https://cloud.githubusercontent.com/assets/3889375/10417002/1ffbb48e-7036-11e5-8f46-f2b384587038.png

You can view, comment on, or merge this pull request online at:

#8064
Commit Summary

  • init

File Changes

Patch Links:


Reply to this email directly or view it on GitHub
#8064.

avatar dgt41 dgt41 - change - 11 Oct 2015
The description was changed
avatar dgt41
dgt41 - comment - 11 Oct 2015

Thanks Brian,

It’s the fever effect I guess


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

avatar dgt41 dgt41 - change - 11 Oct 2015
The description was changed
f0aac6f 11 Oct 2015 avatar dgt41 init
bec19a6 11 Oct 2015 avatar dgt41 CS
avatar brianteeman
brianteeman - comment - 11 Oct 2015

If the tinymce update that puts the buttons into the toolbar is accepted
then this is a great addition. If its not then it just adds more clutter in
the UI. my 2c
On 11 Oct 2015 2:39 pm, "Dimitris Grammatiko" notifications@github.com
wrote:

Thanks Brian,

It’s the fever effect I guess

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


Reply to this email directly or view it on GitHub
#8064 (comment).

43f5095 11 Oct 2015 avatar dgt41 lang
b04ecfb 11 Oct 2015 avatar dgt41 oops
avatar zero-24 zero-24 - change - 11 Oct 2015
Milestone Added:
avatar dgt41 dgt41 - change - 11 Oct 2015
The description was changed
avatar dgt41 dgt41 - change - 11 Oct 2015
Title
[#jsprint Athens] UX insert module button
UX Editor button to simplify the insertion of a module on an article
avatar dgt41 dgt41 - change - 11 Oct 2015
Title
[#jsprint Athens] UX insert module button
UX Editor button to simplify the insertion of a module on an article
avatar dgt41
dgt41 - comment - 11 Oct 2015

@brianteeman I totally agree, I wouldn’t create the button if it would be displayed under the editor


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

avatar dgt41 dgt41 - change - 11 Oct 2015
The description was changed
avatar brianteeman
brianteeman - comment - 11 Oct 2015

Cool
On 11 Oct 2015 7:28 pm, "Dimitris Grammatiko" notifications@github.com
wrote:

@brianteeman https://github.com/brianteeman I totally agree, I wouldn’t

create the button if it would be displayed under the editor

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


Reply to this email directly or view it on GitHub
#8064 (comment).

avatar zero-24 zero-24 - change - 11 Oct 2015
Easy No Yes
avatar zero-24 zero-24 - change - 11 Oct 2015
Category Plugins
avatar nikosdion nikosdion - test_item - 12 Oct 2015 - Tested successfully
avatar nikosdion
nikosdion - comment - 12 Oct 2015

I have tested this item :white_check_mark: successfully on fdec3ea

Works as advertised. I tried both inserting a specific module and a module position. Perfect results. Thank you, Dimitris!


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

avatar rdeutz rdeutz - test_item - 12 Oct 2015 - Tested successfully
avatar rdeutz
rdeutz - comment - 12 Oct 2015

I have tested this item :white_check_mark: successfully on fdec3ea

works as expected


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

avatar zero-24 zero-24 - change - 12 Oct 2015
Status Pending Ready to Commit
avatar zero-24
zero-24 - comment - 12 Oct 2015

RTC for 3.5. Thanks. :)


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

avatar joomla-cms-bot joomla-cms-bot - change - 12 Oct 2015
Labels Added: ?
avatar infograf768
infograf768 - comment - 12 Oct 2015

@dgt41
This is not multilanguage aware.
Can you filter the available modules in the popup by displaying only those tagged to the current language of the article edited and ALL languages when multilang is enabled?
A bit as we do for "forcedLanguage" but also adding ALL.

avatar infograf768
infograf768 - comment - 12 Oct 2015

For the frontend, it looks possible by adding

        // Modal view should return only specific language and ALL
        if (JFactory::getApplication()->input->get('layout') == 'modal')
        {
            if (JFactory::getApplication()->isSite() && JLanguageMultilang::isEnabled())
            {
                $query->where('a.language in (' . $db->quote(JFactory::getLanguage()->getTag()) . ',' . $db->quote('*') . ')');
            }
        }

But for the backend, we would need to check first the language of the article, if already saved.
Any idea?

avatar infograf768
infograf768 - comment - 12 Oct 2015

Corrected code above


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

avatar dgt41
dgt41 - comment - 12 Oct 2015

@infograf768 I guess we can go away with the current status for the backend? Or we provide current state for not saved articles and do the extra filtering in the other occasion

avatar infograf768
infograf768 - comment - 12 Oct 2015

Agree. Can you update PR?

avatar infograf768
infograf768 - comment - 12 Oct 2015

Also, please add the update(s) sql and the new plugin in administrator/language/en-GB/install.xml

avatar zero-24 zero-24 - change - 12 Oct 2015
Status Ready to Commit Pending
avatar zero-24
zero-24 - comment - 12 Oct 2015

Back to pending


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

avatar joomla-cms-bot joomla-cms-bot - change - 12 Oct 2015
Labels Removed: ?
avatar joomla-cms-bot
joomla-cms-bot - comment - 12 Oct 2015

This PR has received new commits.

CC: @nikosdion, @rdeutz


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

avatar infograf768
infograf768 - comment - 13 Oct 2015

@dgt41
Still missing:

Also, please add the update(s) sql and the new plugin in administrator/language/en-GB/install.xml

avatar zero-24
zero-24 - comment - 13 Oct 2015

As well as the General install sql and the Script.php (com_admin)

avatar zero-24 zero-24 - alter_testresult - 13 Oct 2015 - nikosdion: Not tested
avatar zero-24 zero-24 - alter_testresult - 13 Oct 2015 - rdeutz: Not tested
avatar joomla-cms-bot
joomla-cms-bot - comment - 13 Oct 2015

This PR has received new commits.

CC: @nikosdion, @rdeutz


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

avatar joomla-cms-bot
joomla-cms-bot - comment - 13 Oct 2015

This PR has received new commits.

CC: @nikosdion, @rdeutz


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

avatar infograf768 infograf768 - test_item - 14 Oct 2015 - Tested successfully
avatar infograf768
infograf768 - comment - 14 Oct 2015

I have tested this item :white_check_mark: successfully on ec43648


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

avatar coolman01 coolman01 - test_item - 24 Oct 2015 - Tested unsuccessfully
avatar coolman01
coolman01 - comment - 24 Oct 2015

I have tested this item :red_circle: unsuccessfully on ec43648

I like this - seems far more useful than injecting an article.
Yes it's already possible, but adding a style is cool, and it's definitly simpler to use for newbies.
It worked as decsribed.


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

avatar coolman01 coolman01 - test_item - 24 Oct 2015 - Tested successfully
avatar coolman01
coolman01 - comment - 24 Oct 2015

I have tested this item :white_check_mark: successfully on ec43648

I like this - seems far more useful than injecting an article.
Yes it's already possible, but adding a style is cool, and it's definitly simpler to use for newbies.
It worked as decsribed.


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

avatar pascalelocher pascalelocher - test_item - 24 Oct 2015 - Tested successfully
avatar pascalelocher
pascalelocher - comment - 24 Oct 2015

I have tested this item :white_check_mark: successfully on ec43648


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

avatar Bakual Bakual - change - 24 Oct 2015
Status Pending Ready to Commit
Labels
avatar Bakual
Bakual - comment - 24 Oct 2015

Set to RTC. Leaving for @roland-d to merge into 3.5-dev :smile:

avatar joomla-cms-bot joomla-cms-bot - change - 24 Oct 2015
Labels Added: ?
avatar roland-d roland-d - reference | 06f0d96 - 27 Oct 15
avatar roland-d
roland-d - comment - 27 Oct 2015

Thanks everybody, merged into 3.5-dev with commit 06f0d96

Another hair pulling merge :P

avatar roland-d roland-d - change - 27 Oct 2015
Status Ready to Commit Closed
Closed_Date 0000-00-00 00:00:00 2015-10-27 20:57:25
Closed_By roland-d
avatar roland-d roland-d - close - 27 Oct 2015
avatar dgt41 dgt41 - head_ref_deleted - 28 Oct 2015
avatar zero-24 zero-24 - change - 4 Nov 2015
Labels Added: ?
Removed: ?
avatar zero-24 zero-24 - change - 4 Nov 2015
Labels Added: ?
Removed: ?

Add a Comment

Login with GitHub to post a comment