Skip to content

Conversation

@piotr-cz
Copy link
Contributor

@piotr-cz piotr-cz commented Oct 10, 2016

Summary of Changes

Changed EOL from CRLF (Windows) to LF (Unix/ OSX) format

Didn't change for:

  • libraries/phputf8/README (external library)
  • media/editors/codemirror/lib/addons.css (false positive)
  • media/editors/codemirror/lib/addons.js (false positive)

Script I've used:

find . -not -type d -exec file "{}" ";" | grep CRLF

credit: http://stackoverflow.com/a/73969/1012616

Testing Instructions

none

Documentation Changes Required

none

@zero-24
Copy link
Contributor

zero-24 commented Oct 10, 2016

@piotr-cz can you tak a look inti the merge conflicts?

@piotr-cz
Copy link
Contributor Author

piotr-cz commented Oct 10, 2016

resolved

@brianteeman
Copy link
Contributor

Shouldnt the language files be fixed at the source and not here. Otherwise the changes will probably be undone when they are next updated

@piotr-cz
Copy link
Contributor Author

Yes, should be fixed at the source.
I wasn't sure if installation language files are updated by to Joomla or language contributors.
How can I contact contributors to ckb-IQ installation language?

There are links to translation teams on community page.

I've tried to contact contributors to pl-PL but there are links to forum profile and no email, and I haven't received a reply yet.

@infograf768
Copy link
Member

infograf768 commented Oct 13, 2016

@piotr-cz
It is OK to solve these here and merge.
The TT Coordination will remind TTs to make sure they save their ini files with LF.

Note: ini files saved with CRLF do work fine but it is good indeed to normalise.

protected function setUp()
{
$this->options = new JRegistry;
$this->transport = $this->getMock('JHttpTransportStream', array('request'), array($this->options), 'CustomTransport', false);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

protected function setUp()
{
$this->options = new JRegistry;
$this->client = $this->getMock('JMediawikiHttp', array('get', 'post', 'delete', 'patch', 'put'));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

protected function setUp()
{
$this->options = new JRegistry;
$this->client = $this->getMock('JMediawikiHttp', array('get', 'post', 'delete', 'patch', 'put'));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

protected function setUp()
{
$this->options = new JRegistry;
$this->client = $this->getMock('JMediawikiHttp', array('get', 'post', 'delete', 'patch', 'put'));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

protected function setUp()
{
$this->options = new JRegistry;
$this->client = $this->getMock('JMediawikiHttp', array('get', 'post', 'delete', 'patch', 'put'));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

protected function setUp()
{
$this->options = new JRegistry;
$this->client = $this->getMock('JMediawikiHttp', array('get', 'post', 'delete', 'patch', 'put'));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

protected function setUp()
{
$this->options = new JRegistry;
$this->client = $this->getMock('JMediawikiHttp', array('get', 'post', 'delete', 'patch', 'put'));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

protected function setUp()
{
$this->options = new JRegistry;
$this->client = $this->getMock('JMediawikiHttp', array('get', 'post', 'delete', 'patch', 'put'));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the $this->getMockBuilder() rather than $this->getMock() directly. See #12990 for examples

@photodude
Copy link
Contributor

You probably can skip making the changes to use $this->getMockBuilder() rather than $this->getMock() directly. and just fix the merge conflicts after #12990 is merged into staging.

@brianteeman
Copy link
Contributor

@piotr-cz can you look at the merge conflicts please

Fedik and others added 6 commits December 30, 2016 09:46
…s fix some BC issue. (joomla#13387)

* Use user groups instead of view level for TinyMCE builder

* Preload an old parameters where it possible, for BC

* cs

* onDisplayLegacy for BC

* space to tabs

* Warning message about update

* Show warning only in the backend and only twice per session

* Allow to select the user group only once per the set

* Too much code 👽

* Update the warning message

* Update the warning message

* Update tinymce.php

Correcting B/C
Use JPATH_ADMINISTRATOR instead of JPATH_ROOT/administrator.
@photodude
Copy link
Contributor

@piotr-cz can you fix the merge conflicts please... once that is done this PR can move forward

andrepereiradasilva and others added 14 commits December 31, 2016 16:22
…mla#13426)

* Update en-GB.ini

* Update en-GB.lib_joomla.ini

* Update en-GB.ini

* Update en-GB.lib_joomla.ini
* Container added to all batch modals

* Fix overflow & com_modules
* Merge remote-tracking branch 'joomla/staging' into staging

* com_fields language string update

* com_fields language string update

* com_fields language string update

* Small text edit
* simplify language file parse

* revert $php_errormsg

* as suggested by michael
…la#13367)

* Add the description for the source and target sections in TinyMCE builder.

* Spaces to Tabs

* normalise "drag and drop"

* caps for label

* Improve the label for an access field in the set

* Update strings
…into convert-crlf

# Conflicts:
#	installation/language/fa-IR/fa-IR.ini
@joomla-cms-bot joomla-cms-bot removed the Language Change This is for Translators label Jan 2, 2017
@piotr-cz
Copy link
Contributor Author

piotr-cz commented Jan 2, 2017

Rebased on latest staging branch again.

@laoneo
Copy link
Member

laoneo commented Jan 3, 2017

You still want to merge 890 commits with over 2000 file changes? Did you rewrite Joomla during holiday 😉 ?

@infograf768
Copy link
Member

This PR also changes some stuff else than EOL

@rdeutz
Copy link
Contributor

rdeutz commented Jan 3, 2017

This PR does more than it says in the desc. It needs to be re-done

@rdeutz rdeutz closed this Jan 3, 2017
@piotr-cz
Copy link
Contributor Author

piotr-cz commented Jan 3, 2017

I'll prepare new one then

@piotr-cz piotr-cz deleted the convert-crlf branch January 3, 2017 09:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.