Skip to content
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

Deprecate PSR-0 class loading #13672

Merged
merged 15 commits into from
Jan 22, 2017
Merged

Conversation

laoneo
Copy link
Member

@laoneo laoneo commented Jan 21, 2017

As PSR-0 is deprecated, this PR offers to register namespaces also for PSR-4. The plan is to remove support for PSR-0 in J4 probably.

Maintainer review.

Ping @wilsonge

@laoneo laoneo changed the base branch from 4.0-dev to staging January 21, 2017 19:03
@mbabker
Copy link
Contributor

mbabker commented Jan 21, 2017

Why can't both be supported? True that PSR-0 is deprecated but that doesn't mean it is unusable. When I see a platform like Composer deprecate/drop PSR-0 support I might find this acceptable but for now I don't see any reason to do anything but add a deprecation notice and leave it be until the greater PHP ecosystem drops it in full.

Also, this change will 100% break the patch tester component because it does use the PSR-0 autoloader as I've namespaced the component classes. The only way to therefore create a 3.x/4.x compatible build is to ship my own Composer autoloader since there won't be a path that allows me to load namespaced code in JLoader compatible with both versions.

@wilsonge
Copy link
Contributor

You cannot use both PSR-4 and PSR-0 code at the same time. So are we going to be stuck using PSR-0 code for another 5 years until composer removes support?

@mbabker
Copy link
Contributor

mbabker commented Jan 21, 2017

You can use both. Look at our Framework packages as an example. Are you saying I cannot install joomla/application and joomla/session together because the former uses PSR-4 and the latter PSR-0?

@mbabker
Copy link
Contributor

mbabker commented Jan 21, 2017

What you cannot do is register a path that's designed for PSR-4 support to a PSR-0 autoloader or vice versa. But you can most assuredly have an autoloader for each variant.

@wilsonge
Copy link
Contributor

No but you must register each namespace with the relevant autoloader. Are we really going to introduce a registerPSR4Namespace method to register those namespaces differently.

@mbabker
Copy link
Contributor

mbabker commented Jan 21, 2017

I would suggest for 4.0 that you support both. Otherwise you're making the 4.0 upgrade path more complicated for the sake of it.

@mbabker
Copy link
Contributor

mbabker commented Jan 21, 2017

Either way I will now update the patch tester to isolate itself from the core autoloader to prevent possible unneeded breakage either now or in the future.

@wilsonge
Copy link
Contributor

img_5991

Fiiiiine

@laoneo
Copy link
Member Author

laoneo commented Jan 21, 2017

When this one will be accepted PR #13673 needs to be adjusted as well.

@@ -380,18 +382,21 @@ public static function registerAlias($alias, $original, $version = false)
/**
* Register a namespace to the autoloader. When loaded, namespace paths are searched in a "last in, first out" order.
*
* This function will be changed in J4 to support PSR-4 namespace registering.
Copy link
Contributor

Choose a reason for hiding this comment

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

Can you mark this was @note please

* @return array The array of namespace => path values for the autoloader.
*
* @since 12.3
*/
public static function getNamespaces()
public static function getNamespaces($type = 'psr0')
{
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we add an InvalidArgumentException if the type is not psr0 or psr4 please?

*
* @return void
*
* @throws RuntimeException
*
* @since 12.3
*/
public static function registerNamespace($namespace, $path, $reset = false, $prepend = false)
public static function registerNamespace($namespace, $path, $reset = false, $prepend = false, $type = 'psr0')
{
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we add an InvalidArgumentException if the type is not psr0 or psr4 please?

foreach (self::$namespaces['psr4'] as $ns => $paths)
{
$nsPath = trim(str_replace('\\', DIRECTORY_SEPARATOR, $ns), DIRECTORY_SEPARATOR);
if (strpos($class, $ns) === 0)
Copy link
Contributor

Choose a reason for hiding this comment

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

Please add a clean line before the if

if ($type != 'psr0' && $type != 'psr4')
{
throw new InvalidArgumentException('Type needs to be prs0 or psr4!');
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Here please too :)

Copy link
Contributor

@zero-24 zero-24 left a comment

Choose a reason for hiding this comment

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

Here should be a clean line after the closing } and before the return

@zero-24
Copy link
Contributor

zero-24 commented Jan 21, 2017

Travis error:

FILE: /home/travis/build/joomla/joomla-cms/libraries/loader.php

FOUND 1 ERROR(S) AFFECTING 1 LINE(S)

391 | ERROR | Parameters must appear immediately after the comment

UPGRADE TO PHP_CODESNIFFER 2.0 TO FIX ERRORS AUTOMATICALLY

@wilsonge
Copy link
Contributor

Merging on review, given this is never going to get tests and we need it to progress in the sprint

@wilsonge wilsonge merged commit baef935 into joomla:staging Jan 22, 2017
@wilsonge wilsonge added this to the Joomla 3.7.0 milestone Jan 22, 2017
zero-24 added a commit that referenced this pull request Jan 22, 2017
@zero-24
Copy link
Contributor

zero-24 commented Jan 22, 2017

I have just fixed some smal CS Issues introduced from here ;)
f0d9270

@wilsonge
Copy link
Contributor

Thanks!

dneukirchen added a commit to joomla-projects/media-manager-improvement that referenced this pull request Feb 12, 2017
commit 612f6a4505f7fe23d82049447f89c02ab3fb71a9
Merge: 4077cd0 3833aa0
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sat Jan 28 14:54:11 2017 +0000

    Merge branch 'staging' into milestone1

commit 3833aa0671bd056f8e3c4690c3b0e44b7a1e7f25
Author: marrouchi <marrouchi.mohamed@gmail.com>
Date:   Sat Jan 28 11:41:34 2017 +0100

    [Improvement] Backend menu item edit form : Add Itemid to the alias link value (#13776)

    * Add Itemid to the alias link value

    The link field of an alias menu item displays "index.php?Item=" without the actual item id.

    * Remove extra white space

    * CodeSniffer fix : Blank line before new comment

commit 3d3e2d6ca722c1169484460c01091aec1f2b7dcc
Author: Luca Marzo <luca.marzo@live.com>
Date:   Fri Jan 27 22:26:18 2017 +0100

    3.8.x description proposal (#13782)

    I tried to change the wording about the 3.8.x branch.

commit 6f20a8c2d633fa8bd7b1f68fb8d008497ff88082
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Jan 27 22:12:37 2017 +0100

    Remove from global option for the display functionality (#13773)

commit 7dc3d68365a07cdec8c29bf08fdc3ec1298c8606
Merge: 7c1cc9d 14c6fcb
Author: Luca Marzo <luca.marzo@live.com>
Date:   Fri Jan 27 20:55:51 2017 +0100

    Merge pull request #13758 from rdeutz/move_checkout_to_helper

    [com_associations] moved "checked out" check to a helper function

commit 7c1cc9d24a01c72f3e2db8883e0eac4739ba9810
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Fri Jan 27 18:29:13 2017 +0000

    [com_fields] Responsive subform.repeatable-table (#13769)

    * Responsive table subforms

    * RTL support

    * Wrap in media query

    * Final tweaks

    * Query fix

commit 67a60716044106310d86d4b5244c58473b6a04f2
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:28:23 2017 +0100

    Remove semicolon before UNION ALL (#13767)

commit 6be6bd64c907d2b89ea1c6daaa8b0ca29dd7de66
Author: Peter van Westen <info@regularlabs.com>
Date:   Fri Jan 27 19:27:36 2017 +0100

    Fixes: EXTRA_QUERY not added to update record (#13756)

commit 959fc6b1487fa335cb04c7b54e3864e168960118
Author: Roberto Segura <roberto@phproberto.com>
Date:   Fri Jan 27 19:26:47 2017 +0100

    [fix] using core categories system should not be mandatory to use core tag system (#13737)

commit 2d82f4cc2d2577aa42e1e2cbd85c96cb083010c3
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Fri Jan 27 19:24:41 2017 +0100

    Add a parameter to trigger the additional plugin events in the news module (#13703)

commit 2a859660c9718548691ddfb56dd41d212d9c5be1
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Fri Jan 27 19:23:32 2017 +0100

    Add "id" attribute to <input> element (#13610)

commit 1b036c6f7bc4e57ad362ae988ce18ac0b778d8f2
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:22:40 2017 +0100

    Speed up of saving new articles (#13505)

    * Fast table reorder for mysql, postgresql, mssql and sqlite

    * Two versions of selectRowNumber for postgreSQL

commit 7f402748ca66b213cf10f4aabd329696d5b3443f
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Fri Jan 27 19:21:44 2017 +0100

    [com_fields] Custom Fields Media Field if class is empty still class is shown as attribute (#13462)

    * fixes #13400 dont let the class tag alone if no class is set

    * Update imagelist.php

    * Update media.php

    * Update imagelist.php

    * Update imagelist.php

    * Update media.php

    * Update media.php

    * Update imagelist.php

commit bc9dcd36e6228ddca395e02ef553a202b2e21433
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Fri Jan 27 18:18:38 2017 +0000

    [com_contact] review config global default options (#12970)

    * config.xml

    * Update joomla.sql

    * Update joomla.sql

    * Update joomla.sql

    * sincronize with staging

    * fix conflicts

    * fix show_user_custom_fields

commit a3194fa5985575dc517a8d0ff7d2a80c99f15ba6
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:17:44 2017 +0100

    3.7 Improve Cache Controller (#12312)

    * Improve Cache Controller

    * PHPCS fix

commit d7eb53581f616a843fb194c88cfddc2d2ea6a3c7
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:17:13 2017 +0100

    Fix item alias (#11343)

commit d525244dc030dd9dc3cb6c1f703e91eccabf2c63
Author: Klas <klas.berlic@gmail.com>
Date:   Fri Jan 27 14:18:59 2017 +0100

    JUserTest needs to clear JAccess stats for allowed test. ALso JUserTest::testGetGroupsByUser() has expected and actual reversed. (#13777)

commit 14c6fcbf365d0d06d2d75950ba333b287befeed2
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Fri Jan 27 11:21:46 2017 +0100

    fix for checked out items

    If the item at the left is checked out nothing can be done till the item is checked in

commit 5104562e13195562072caac980b0d167e534d29c
Merge: 12257e5 c421382
Author: Luca Marzo <luca.marzo@live.com>
Date:   Thu Jan 26 23:37:06 2017 +0100

    Merge pull request #13759 from Bakual/SQLNotSql

    [com_fields] SQL not Sql

commit 12257e51f9993c6f93167facdaab9790468ecb32
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Thu Jan 26 13:29:43 2017 +0100

    [com_fields] Load language files from components (#13745)

    * Load language files from components

    * Add JPath::clean()

commit e0fbf61c6cd4def712dfbd744d4b104b18bf658e
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Jan 26 13:24:19 2017 +0100

    [com_fields] Default the gallery directory when empty (#13761)

    * Default the gallery directory when empty

    * Fix comment

commit 61189b3188474314761894086a13ef242ebb5efa
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Jan 26 09:48:46 2017 +0100

    [com_associations] Display only site menu types on searchTools (#13763)

    merged on review

commit 8f567003c6c4e72a749882628a60a6994949bd05
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Thu Jan 26 13:28:12 2017 +0530

    Give protected menu items container its own place independent of heading type. (#13749)

    * Give protected menu items container its own place independent of heading type.

    * Added missed client id check for container menu type.

commit c4213828398502f66979290fdff3e4feacc0622d
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Jan 25 22:51:16 2017 +0100

    SQL not Sql

commit 6e67ba17183e165fe126bc0863518bb9b36d154b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 25 22:02:37 2017 +0100

    moved checked our check to a helper function for less gussing

commit f04e15c8c48e272d5cfbd6d0ec19abd7d13afc5b
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 25 18:05:28 2017 +0100

    Remove unneded properties for fields render layout (#13750)

commit b455cf6dd3ae8b69f89a29af295475f0332654bd
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Wed Jan 25 12:13:57 2017 +0000

    Remove max-width on login lang field (#13740)

commit dc7e6157b23feea20d8453562a35d3f65fcfe18a
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Wed Jan 25 13:04:01 2017 +0530

    Fixed issue - backend menu manager checks for important menu items in top level only (#13650)

commit 23704123a22ed6aee5536777f7beb0e7653c74e9
Author: infograf768 <infografjms@gmail.com>
Date:   Wed Jan 25 08:33:37 2017 +0100

    [com_fields] Improving fields dropdown for Translation (#13710)

commit 4635900088efcd3b78640d5fbabb0588d22aa3e2
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 24 13:39:14 2017 +0000

    Revert previous commit

commit 7c25d368c8fdb905798d607263bdb5f23def7cb1
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 24 13:38:56 2017 +0000

    legacy libs

commit d151ef4ce7cb68898bc56eb25d8e888647aea9a9
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Jan 24 09:18:20 2017 +0100

    [com_newsfeeds] - "Filter field"  in News Feeds - list layout (#11899)

    * [com_newsfeed] - "Filter field" parameter in "List News Feeds in a Category"

    fix "Filter field" parameter in "List News Feeds in a Category"  behaviour

    * fix for filter fields and table headings 1/3

    fix for filter fields and table headings 1/3

    * fix filter fields and table headings 2/3

    fix for filter fields and table headings

    * fix for filter fields and table headings 3/3

    fix for filter fields and table headings 3/3

    * removed 2nd layout

    removed 2nd layout as requested

    * removed 2nd layout

    removed 2nd layout

commit 8b0b5129381de26c69f5a01daa3fd0bf9d9a54a2
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Mon Jan 23 22:47:54 2017 +0100

    fix for a failing install (#13727)

commit c437fce02ce86a8506369208b767593125445907
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 19:56:53 2017 +0100

    [com_fields] Remove unneeded fields from com_fields (#13621)

    * Remove unneeded fields from com_fields

    * Remove columns from installation

commit 57277287cef077b694d02eaf28eaba6fc36c3ce5
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Mon Jan 23 18:27:49 2017 +0000

    Use bootstrap tooltips (#13713)

commit 465ff03b6ebfba189fe8992addd295064a7b5ca6
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 13:51:45 2017 +0100

    Another typo

    Thanks @brianteeman

commit e83ac894b290c6dc4a640dd7ebc2147b7d3f2139
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 13:34:55 2017 +0100

    Typo in CONTRIBUTING.md

commit 6e6edfcc01d3eba29022c3a63125038072fb5151
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Jan 23 11:48:10 2017 +0100

    Adding the 3.8.x branche with the definitions by @wilsonge

commit 0e4b98fa9f21de6ed1c3d03a744b9985d1ba708a
Author: jo-sf <jo-sf@users.noreply.github.com>
Date:   Mon Jan 23 10:10:03 2017 +0100

    Always save validated data in the session (#11491)

commit 91e6de5195e208e5105d65b898c4da90a43fdf1e
Author: jo-sf <jo-sf@users.noreply.github.com>
Date:   Sun Jan 22 15:58:32 2017 +0100

    Use type="number" in TCP port configuration fields (#11492)

    * Leave numeric field empty if not required and not set

    * Numeric field might be empty if not required

    * Allow empty value if field is not required

    * Test adapted to code change

    Due to the code change in `libraries/joomla/form/fields/number.php` (set field value to the minimum value only if the field is required and a minimum value is given and there is no value given) the "Min" test needs a change, moreover a new test "MinRequired" wit the former result of the "Min" test was introduced.

    * Forgot to change the expected result

    The code `required aria-required="true"` was missing in the expected result - added.

    * Replace "and" with "&&"

    * Replace "and" with "&&"

    * Replace "and" with "&&"

    * use type=number for port fields in configuration

    * Added clean line before the if

    * smtpport field: hint added

    * LDAP port field: hint added

commit f3dc74bd349e4142e15684bb5600bd1258132f03
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sun Jan 22 15:57:17 2017 +0100

    Changes the contact user groups form field to fieldgroups (#13607)

commit 293d57e531af7b04c561ed0e45875fa4e7f7e912
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 22 15:53:39 2017 +0100

    Fixing ACL inheritance for fields and fieldgroups (#13676)

commit af71e6036e719c2dff7940095fe15d1c2c0affec
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 22 15:52:58 2017 +0100

    Adding proper disabled and readonly properties to the color formfield layouts (#13677)

commit 4370ef7bd630fa88f05bcbce3a1db65265da3f4c
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Sun Jan 22 13:50:26 2017 +0000

    fix IE 11 error (#13685)

commit f38dfcbcfc4174cebb88908e7645b62337a49ff4
Merge: 81127c3 f0d9270
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Jan 22 11:41:16 2017 +0000

    Merge branch 'staging' of github.com:joomla/joomla-cms into staging

commit f0d927051091a6725cc6bfe1e3b5ba13b81b8b4c
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sun Jan 22 12:41:06 2017 +0100

    Fix CS issues introduced with https://github.com/joomla/joomla-cms/pull/13672

commit 81127c3bcdb7b035a1f02c49932c4154b9be8583
Merge: 7d34d41 4d44c25
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Jan 22 11:41:03 2017 +0000

    Merge branch '3.7.x' into staging

commit baef935fa1cf872091f7b708cf87682462749a79
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sun Jan 22 12:33:45 2017 +0100

    Deprecate PSR-0 class loading (#13672)

    * Deprecate PSR-0 class loading

    * Fix typo

    * Add PSR4 support, not just the deprecated message

    * Fix deploy version

    * Throwing exceptions when invalid type is passed

    * Return type specific namespaces

    * Fix the test errors

    * Travis

    * Please travis be nice to me

    * Last try otherwise I go to the bar

    * Small tweaks

    * Update loader.php

commit 6efb945b964850e8f15a6d10db86771bfc5d4b41
Author: Martijn Maandag <martijn@reisverslagen.net>
Date:   Sun Jan 22 11:43:51 2017 +0100

    Update en-GB.com_languages.sys.ini (#13681)

commit f81a1ee697447953e1c25e25b7e9148f0ee30cbd
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Sun Jan 22 17:24:08 2017 +0700

    Clean up legacy controller + model classes (#13679)

    * Clean up JControllerForm

    * Clean up JModelAdmin

    * Clean up JModelList class

commit b222a8dcdacb38efd16968137db49583b965f508
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Jan 21 20:08:59 2017 +0100

    Properly merge tag params (#13643)

    * Properly merge tag params

    * Fixing a typo and yet another bug (wrong parameter read)

commit 7d34d41223bfe41799cd2c08b339e3c382a400d6
Author: Georgios Papadakis <ggppdk@users.noreply.github.com>
Date:   Fri Jan 20 22:24:15 2017 +0200

    Fix SEF plugin breaking HTML while trying to make inline background url paths absolute (#11266)

    * Fix SEF plugin some times breaking HTML while trying to make inline background url paths absolute

    * Added handling of &#34; and &#39;

    * Code style, fix too long line

    * Removed redudant pipe character

    * Update sef.php

commit 339eb9afbc272efa599d379d2c842c66a6519525
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Jan 20 15:10:29 2017 +0100

    [com_fields] Useless strings (#13659)

commit 483abb81381907aadb3834a1d55c7eb41e27f6d7
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Fri Jan 20 17:25:27 2017 +0700

    Clean up JControllerAdmin (#13635)

commit f2d72e5f3a85e7601274df8e938c8b354d43a47b
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Jan 20 11:17:04 2017 +0100

    Correcting Notice when saving Global Configuration (#13612)

    * Correcting Notice

    * simplifying. thanks joomladonation

commit b4b08b2e3a17998b7266c3331f5038d3dc6d2d1b
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Wed Jan 18 21:49:32 2017 +0100

    Fix dev status and move it from beta to dev as we are currently in the dev mode for the beta release

commit cdeee8bf59a2bc858799b2a8489eaeebcff9732b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 21:29:06 2017 +0100

    bump version for development

commit 71a1c5ec9c13bf6b6c98acd973c8324f0c3e9487
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 20:25:12 2017 +0100

    prepare 3.7.0-alpha2 release

commit c9f4ce5d30e2b0d34dae39f5b21d854400eb06fb
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 15:24:44 2017 +0100

    update for menu (#13619)

commit a9f872e543bb549d429805007e7f11894a726362
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 18 15:22:26 2017 +0100

    [com_fields] Inherit url scheme restriction from fields plugin (#13554)

    * Type safe null check for plugin inheritance parameter

    * Remove default scheme to allow any valid scheme

    * Revert changes from conflict

commit 382766735c251377185352b8955acbd15c047bf7
Author: Jelle Kok <schumacher1986@hotmail.com>
Date:   Wed Jan 18 15:11:36 2017 +0100

    Fix CS  on com_admin script (#13636)

    * Fix CS  on com_admin script

    * revert to 1.x changes

commit 100c5a4e49f278af3ceae13695014fbe7d2ee2f5
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Jan 18 12:01:50 2017 +0000

    Fix typo

commit 853f9af7a85845ab12fbee74a98c22e0f94cb70b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 12:55:04 2017 +0100

    prepare update script for 3.7

    Added pre and postfight functions to handle installation of a menu item

commit 1d177d5b144cb299ff33c690ba29d7bb19be615a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Wed Jan 18 12:33:21 2017 +0100

    [com_fields]- mssql installation fieldsplugin (#13626)

    * [plugins] - fields mssql installation

    plugins  fields mssql installation #13616

    * [com_fields] - mssql updates #13319

    [com_fields] - mssql updates #13319

    * remove duplicate extension id 462 for mssql

    removed id 462 to avoid duplicated id with #13626

    cause now fields are managed with plugins

    Pull Request for Issue #13616 (comment)

commit 38ae97ea48e217201ebcfa3142d73ded595c8634
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 12:26:32 2017 +0100

    fixed an obvius wrong use of $this-parent

commit b9d0d32defe49a890b0130432c4e08151c4b34aa
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Jan 18 09:06:26 2017 +0000

    Fix typo (Thanks Dario)

commit 0daf6f75207c1083cfcf98e2849296a28fe19c02
Author: infograf768 <infografjms@gmail.com>
Date:   Tue Jan 17 18:56:53 2017 +0100

    Updating install.xml en-GB administrator (#13623)

commit 77af51f7391f4d7f50eccbe622d81af084f0ebc8
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Tue Jan 17 14:47:12 2017 +0100

    Routing: Remove IDs from tags URLs, use menu item of tags view as default for tag view (#11166)

    * Remove id from tags, use tags list menu item as default for tag

    * Code style, remove useless code, feature: first Itemid for tags view, second Itemid for default tag view

commit 326036f0bdc5d163d30a2f31284da86444655432
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Jan 17 13:59:34 2017 +0100

    sync admin menu menutype (#13618)

commit f3780c5f2b3d4dc1b897dec96a9ae6525df6b4ee
Author: Raghav Jajodia <jajodia.raghav@gmail.com>
Date:   Tue Jan 17 18:29:01 2017 +0530

    [com_fields] Improved description in the "description" tooltip Fixes #13392 (#13557)

    * Fixes #13195: Added margin bottom to sidebar menu

    * Fixes #13392: Changed description field tooltip

    * Fixes #13392: Changed description field tooltip

    * Fixes #13392: Changed description field tooltip

commit 56ad6aa5779d15953b35ccd058a8c9344745c58a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Jan 17 13:42:50 2017 +0100

    [com_associations] - mssql updates (#13617)

    the missed mssql updates for #13537

commit 4a5ee882cd55948782137e7ca845a99a23ff9581
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Jan 17 12:46:25 2017 +0100

    Adding the Multilanguage Associations Manager (#13537)

    * Merge Associations rewrite

    * updated searchtool with the new way

    * udpated edit view title

    * added contact associationshelper class

    * temp fix

    * fix for category filter

    * added newsfeeds associations helper

    * CAPS for params

    * lang tag and added a helper function

    * added land tags

    * code style fix

    * better title in associations view

    * better title

    * use the usual naming

    * fix language tag, thanks to brian teeman and twitter :-)

    * initial review

    * on simple change

    * on simple change 2

    * simple

    * some more helper changes

    * Update associations.php

    * Update associations.php

    * app isn’t set a model property

    * correct return value

    * simplify code adn use helper method

    * use typename directly

    * changed the tooltip position

    * Correct menu helper

    * remove unreacable code

    * correcting checked_out

    * com_menus

    * fixed not supportted message

    * installation

    * fix menu install

    * Spaces -> tabs

commit 40cf34d4c04ff4785d16d4a0e41af420dc5a8356
Author: Nick Savov <nicksavov@users.noreply.github.com>
Date:   Tue Jan 17 05:42:23 2017 -0600

    Add SMS to External URL menu item type (#13615)

    Allows data like sms://+15555555555 to be used instead of getting "Save Not Permitted"

commit 4e156fa0ad46cfcbc089311a66fe8b99d21b49eb
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Tue Jan 17 16:11:40 2017 +0530

    Menu manager for Joomla Backend Menu (#13036)

    * Added client id column to menu_type table.
    Allow creating and editing of "menutype" records with client_id = 1
    Add client_id filters in menu and menu items list views
    Sync menu type filter and client_id filter allowing only menu type in the URL query parameter (B/C)
    Both Lists now also filtered by client id.
    Client id selection updates the menu type list options to show choices only for that client id

    TBD:
    Reserved menu types: main & menu

    * In modal list view we currently hide client_id filter and show only site menu types, will be updated once we have more clear vision.
    Menu type assignment to backend mod_menu config from both menu manager and module manager. Though that is not functional within the module itself.

    * Add/edit menu item redirect with clientId from list filter.
    Load menu item form based on active client id
    Menu type dropdown choices limited to active client id value
    Show menu-item-type choices (modal) trigger with client id parameter in the url
    Switch edit layout based on client id

    * Menu item type loading from component metadata xml or mvc not identifies backend and frontend application separately. Not yet able to load menu item type from backend so returns empty list. Front-end is still intact and unaffected.

    * Edit menu item and create menu item set to follow client id and menu type value consistenty.
    When creating menu item alias, the referenced menu must also belong to same client id.
    Client id field removed from form, this should be auto-calculated from the menu type when saving.

    * Adding layout metadata xml in backend to reference menu item types as it was in front-end.
    Removed unnecessary admin specific layout added earlier as it is so far same as original edit.php, may be added back when needed.
    Remove page specific meta data fields from backend component type menu items.
    For now disable/unsupport association for backend menu items.
    Disallow change of client id for existing menu items, unexpected conflicts may occur if allowed so better be safe.

    Ref to #2

    * Created each backend menu items using menu manager as a replica of existing Joomla backend menu. These are to be used for testing during upgrading menu module.
    language keys are not yet translated. Translation will be done as we are ready with most new or modified language keys application wide.
    Backend menu items does not require all those parameters as that with front-end menu items. Therefore segregated entire menu item xml for backend/frontend.

    Ref #2

    * [a11y] Protostar back to top (#12446)

    * [a11y] Protostar - back to top link

    * Oops Andre was right

    * add anchor for non-js enabled browsers

    * Restructure mod_menu to load preset menu items as an option (default). Other options will be the menu-type and will cause us to load from database. Ref #2

    * Disallow editing and set to home of protected menu type menu items viz. 'main' and 'menu'
    Allow explicit filtering by protected menu type choices in menu items list view. Not limited to #__menutypes table entries only. Unfiltered list still excludes those menu items. (B/C ok)
    Menu items created during installation of a component are now saved as published. When unpublished we won't load it in customised menu's component menu container. They will still be loaded irrespective of state as previously when preset is in use. (B/C ok)
    Home page can now be set one per client instead of one overall.
    Menu module only loads item from 'main' and 'menu' type menu items when requested for component menu items. This filter is now required because we are now going to have other custom menu types for backend which should not be included.

    Ref #2

    * Load menu items from databases in correct hierarchy. Remove any extra separator type menu items created due to exclusion of certain menu items based on various conditions.
    Populate menu items loaded from db into the AdminCssMenu object for final rendering.
    Load new installed components menu items dynamically under the specified menu item with “components container” flag. Any unpublished menu items from the protected menutypes (viz. “main” and “menu”) will be skipped.
    When loading from system preset menu items, these components menu items are all included regardless of their published state. (B/C ok).

    Ref #2

    * View manifests for menu item type and related language key updates. ref #2

    * Minor mistake fix.

    * Translate menu item titles in list view. Ref #2

    * Reset the preset menu structure to be same as the current J37 branch state, dropping implicit inclusion of joomla/joomla-cms#10657 improvement. Ref #2

    * Allow the existing components to leverage the menu/submenu entries in their install manifest for admin menu manager menu link types.
    This provides ability to create links for then without requiring them to add layout manifests. Hence, full B/C solution. Ref #2

    * Minor fix

    * Remove temporary dev phase files

    * Preparing for PR, database and install script updates.
    Ref #2

    * Minor fix

    * Codestyle fix

    * CS fix

    * Don’t sort menu items

    * Sort lang keys
    Allow ‘component’ as first level alias in admin menu items
    Fix lang key
    Remove ‘home’ setting from admin menu items

    * apply in hathor

    * menu item alias check for site only

    * Post merge fixes.

    * Fixes as suggested by @infograf768

    1. Group menu types by client id in lists and default admin menu
    2. Hide association tab for admin menu items.
    3. Hide client id filter for association mapping modal.

    * Add recovery mode for menu where the selected admin menu does not contain link to module manager and/or menu manager.

    * minor bug fix

    * Remove assoc column for admin menu items.
    Make recovery mode message more straight forward.
    Change radio to toggle buttons.

commit 72dfde2a2c756c7f0cb4cf582fda3c83b32d9966
Author: Raghav Jajodia <jajodia.raghav@gmail.com>
Date:   Tue Jan 17 16:10:15 2017 +0530

    Fixes #13177: Added where clause with block status (#13545)

commit e8043e836f7cddd58b6bf56db03476362c76956c
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Mon Jan 16 10:55:51 2017 +0100

    [com_fields] Add base list plugin class which activates the list plugin (#13546)

    * Add base list plugin class

    * Update fieldslistplugin.php

commit 0bc385d7e1ddf3d72c1143ff5d8f3d06a5df8dab
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sun Jan 15 21:09:47 2017 +0000

    Delete UCM content entries when Joomla articles are deleted (#13592)

commit 44779442a19c9dfe99b772f890154dec197c0d5e
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 15 22:08:19 2017 +0100

    Show text "No Information Entered" in users profile when no value is set (#13589)

commit caa0b7579ef1fe12be78fa0694577795fc86d5df
Author: Vio Cassel <viocassel@users.noreply.github.com>
Date:   Mon Jan 16 00:07:59 2017 +0300

    Update jQuery Autocomplete to 1.2.27 (#13282)

commit 07da22f8927755aa8e36541ead69ea0f02c2686e
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sun Jan 15 19:45:50 2017 +0000

    Fix issue where fields is false (#13574)

commit 678deb148dd69626513364c04f82c1c1ae8131de
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Jan 15 14:40:35 2017 -0500

    Make clear Exception messages in JTable (#13603)

commit cff76a11fa89521a279cf5b2c5ba4ac10b3ab03e
Author: joomlabeat <jotsib@gmail.com>
Date:   Sun Jan 15 19:55:50 2017 +0200

    Fix for Issue #13588 - mod_articles_categories - Fatal error: Class 'ContentHelperRoute' not found... (#13590)

    * Update helper.php

    Remove JLoader::register('ContentHelperRoute', JPATH_SITE . '/components/com_content/helpers/route.php');

    * Update mod_articles_categories.php

commit 88e5c18d0eccc794577630835552b409c2945acf
Author: infograf768 <infografjms@gmail.com>
Date:   Sun Jan 15 16:24:43 2017 +0100

    Correcting sidebar display LTR and RTL (replaces #13548) (#13593)

commit 8176c702775b777dd3a841473e91f8e680e19f1c
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sun Jan 15 13:44:48 2017 +0000

    PHPMailer update (#13575)

commit 9fee146dd160daf09d6e60b3c1133757e55b5f4c
Author: Yves Hoppe <yves@compojoom.com>
Date:   Sun Jan 15 12:56:03 2017 +0100

    Added css classes to the mod_login submit buttons (#13379)

    * Added css classes to the mod_login submit buttons

    * Added css classes to the mod_login submit buttons

    * Changed class to login-button in both modules

commit f495ce0b0ba5103e9edb18e6648473b0780300c4
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sun Jan 15 13:54:37 2017 +0200

    Fix for issue #13531 (#13535)

    * Fix for issue #13531
    - [AND] and [OR] operators were not functioning correctly. Fixed.
    - some cleanup of whitespaces in XML file and removal of rulers when the encapsulated fields are not showing.

    * Removed $key, as it was an unused leftover

    * CS Fix

    * Whitespace Fix

    * Whitespace Fix

    * Whitespace Fix#2

    * Conflict resolution (hopefully, Don't have a complete dev-environment right now.)

commit 8cd1c25dbaec5591e7ffaa99949a454fd1da3f97
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 15 02:49:48 2017 +0100

    TranslateFormat in all other forms (#13158)

    * TranslateFormat in all other forms

    * Revert for tracks filter bar

commit 417fdbd44f76389eb4a9b5ed7798c665487a6739
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Sun Jan 15 00:58:00 2017 +0100

    PostgreSQL - return the same string each time of call __toString() on update query (#13284)

commit 4f537745adedefc543ec1e1f06e383bbe12f9d17
Author: Georgios Papadakis <ggppdk@users.noreply.github.com>
Date:   Sat Jan 14 22:17:55 2017 +0200

    [com_fields] Add Joomla loading overlay when form submit is triggered by category selector change (#13320)

    * Added overlay box and message box for submit and reload form after category change

    * Removed commented testing code

    * Added language strings

    * CS fix, added missing spaces

    * Used Joomla logo spinner instead of fixed message

    * Reverted changes in admin lang file

    * CS

    * Revert frontend lang changes

    * Added Joomla loading overlay to new field form when changing field type

    * Added Joomla.loadingLayer show to typeHasChanged JS method too

commit cc5d44010d9271311b090e18a75c4c6fff4b4f4a
Author: Fedir Zinchuk <getthesite@gmail.com>
Date:   Sat Jan 14 22:17:00 2017 +0200

    Make the calendar work in the subform field (#13153)

commit 494a0ba4a353d3d98d4b20eeb45d79b40c5f36af
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Sun Jan 15 03:15:52 2017 +0700

    Clean up ModulesModelModule class (#13380)

commit 7ea954613877ace996abb1d80fe8d514f9220c1d
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Jan 14 21:12:20 2017 +0100

    $field->assigned_cat_ids may not exist. (#13570)

commit 830cda6217ecbd50ecb51de37fae93ede55c74e2
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Jan 14 20:58:04 2017 +0100

    Fixing Showon in plugins/modules/templates (#13549)

    * Adding field group to JFormHelper::parseShowOnConditions and rearranged argument order.

    * codestyle

commit ca6928e11224c7b073e5d621bf78f806096b67d9
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sat Jan 14 19:56:57 2017 +0000

    Fix BS grid (#13560)

commit 28d0f53e8f60078b32a83dc7828e224020436962
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sat Jan 14 19:54:29 2017 +0000

    Rsponsive article edit fields (#13586)

commit 4e5e000641e9496affaf90dbfdb8fb4d4c8db253
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Fri Jan 13 19:27:08 2017 +0000

    Add more email cloaking unit tests and fix email cloaking bug (#13446)

commit 4077cd0bcb7e1d26efd7abf74e316b0d43817818
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Jan 13 08:53:34 2017 +0100

    Readd wrongly deleted controller during merge from staging

commit 0482905ac32aa95fe3e1c21cff89d063aed49b03
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Jan 13 08:46:08 2017 +0100

    Happy new year 2017!

commit b66c2c699f027fba4693adc4ea2dbe16e5b837a6
Merge: a9a3081 d016a6c
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Jan 13 08:45:19 2017 +0100

    Merge branch 'staging' into milestone1

    Conflicts:
    	administrator/components/com_media/controllers/file.json.php
    	administrator/components/com_media/controllers/file.php
    	administrator/components/com_media/controllers/folder.php
    	administrator/components/com_media/helpers/media.php
    	administrator/components/com_media/layouts/toolbar/deletemedia.php
    	administrator/components/com_media/layouts/toolbar/newfolder.php
    	administrator/components/com_media/layouts/toolbar/uploadmedia.php
    	administrator/components/com_media/models/list.php
    	administrator/components/com_media/models/manager.php
    	administrator/components/com_media/views/images/tmpl/default.php
    	administrator/components/com_media/views/images/view.html.php
    	administrator/components/com_media/views/imageslist/tmpl/default.php
    	administrator/components/com_media/views/imageslist/tmpl/default_folder.php
    	administrator/components/com_media/views/imageslist/tmpl/default_image.php
    	administrator/components/com_media/views/imageslist/view.html.php
    	administrator/components/com_media/views/media/tmpl/default_folders.php
    	administrator/components/com_media/views/media/tmpl/default_navigation.php
    	administrator/components/com_media/views/media/view.html.php
    	administrator/components/com_media/views/medialist/tmpl/default.php
    	administrator/components/com_media/views/medialist/tmpl/details.php
    	administrator/components/com_media/views/medialist/tmpl/details_docs.php
    	administrator/components/com_media/views/medialist/tmpl/details_folders.php
    	administrator/components/com_media/views/medialist/tmpl/details_imgs.php
    	administrator/components/com_media/views/medialist/tmpl/details_up.php
    	administrator/components/com_media/views/medialist/tmpl/details_videos.php
    	administrator/components/com_media/views/medialist/tmpl/thumbs.php
    	administrator/components/com_media/views/medialist/tmpl/thumbs_docs.php
    	administrator/components/com_media/views/medialist/tmpl/thumbs_folders.php
    	administrator/components/com_media/views/medialist/tmpl/thumbs_imgs.php
    	administrator/components/com_media/views/medialist/tmpl/thumbs_up.php
    	administrator/components/com_media/views/medialist/tmpl/thumbs_videos.php
    	administrator/components/com_media/views/medialist/view.html.php

commit d016a6c2aede57915c8517b5fce2aca98ec172da
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Thu Jan 12 19:30:55 2017 +0100

    Clean up old code in cache.php file (#12183)

    * Clean up in cache - part 1

    * Remove old php4 style to catch exception which currently is useless.
    * Add shorten version of ternary pperators.

    * Add fix for contains()

commit aa059af809e9bf3c6ddb6660f56f79967b8ce50b
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Thu Jan 12 19:07:39 2017 +0100

    Fixing search for MySQL (#13571)

    * Use $query->castAsChar instead of casting to integer

    * Codestyle

commit 6ab2a6e9010e7e04c260b9eba17dc76e866dd3e6
Author: Frank Mayer <frank@frankmayer.net>
Date:   Thu Jan 12 15:15:09 2017 +0200

    Unnecessary double quotes in  /libraries/joomla (#13372)

    * Replace unnecessary double quotes in /libraries/joomla

    * Formatting

    * CS Fix

    * Fixes, based on @andrepereiradasilva's comments.

    * Change remove string concatenations for some occurrences.

    * Fixes, based on @andrepereiradasilva's comments.

    * Fixes, based on @andrepereiradasilva's comments.

    * Fixes, based on @andrepereiradasilva's comments.

commit 435222909af7f27f385dab381a1d0c1ce35ed947
Author: Frank Mayer <frank@frankmayer.net>
Date:   Thu Jan 12 14:52:31 2017 +0200

    Some improvements in tests #3: (#13402)

    * Some improvements in tests #3:
    - call static methods correctly

    * Fix T_PAAMAYIM_NEKUDOTAYIM (for all PHP 5.x)

    * Remove forgotten call

    * Changed a few things after conversation with @mbabker

    * Fixes according to @andrepereiradasilva's comments

commit 6e07ca6fadd8a5d1db3337cf0357d782646f5411
Merge: 7a9c907 f4e07d8
Author: Luca Marzo <luca.marzo@live.com>
Date:   Thu Jan 12 13:26:01 2017 +0100

    Merge pull request #13573 from wilsonge/copyright

    It's 2017. Happy New Year

commit f4e07d895496acea9be233e78c6bffb50e5fc429
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Thu Jan 12 12:16:47 2017 +0000

    It's 2017. Happy New Year

commit 7a9c90760881c014f0cbe0a52967ba83bfdf55ea
Merge: 24f3b4f 17821a0
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Thu Jan 12 12:12:39 2017 +0000

    Merge pull request #13481 from dgt41/+++++++tinymce_update

    Update tinymce 4.5.2

commit 24f3b4f943d5cbb3f321b328f7910a51e4c267d2
Merge: 0fbd154 2e8ad39
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Thu Jan 12 12:12:18 2017 +0000

    Merge pull request #13556 from Digital-Peak/calendar-field-default-value

    [com_fields] Remove default value from the field params to inherit from plugin

commit 0fbd1546240e21cd14ccaa05cc30127cc14db1a7
Merge: cc0ce55 1acd6b7
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Thu Jan 12 11:17:44 2017 +0000

    Merge pull request #13485 from joomdonation/patch-13

    Clean up JModelForm

commit cc0ce55cf81e22cc6ea946db7f9d7c3ac934ee24
Merge: d37d5c3 dec96ec
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Thu Jan 12 11:03:42 2017 +0000

    Merge pull request #13547 from Digital-Peak/checkboxes-fix

    [com_fields] Catch "expects parameter 2 to be string" error

commit d37d5c32740007b4ecc75d4e4e46dfb180e4b255
Merge: f8b41cd bd2d25d
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Thu Jan 12 11:00:02 2017 +0000

    Merge pull request #13555 from Digital-Peak/user-field-no-multiple

    [com_fields] Remove multiple parameter from user field

commit f8b41cdbe8823356336a1e15087c0b6168b2796c
Merge: e3d8732 143cd04
Author: Luca Marzo <luca.marzo@live.com>
Date:   Wed Jan 11 21:31:56 2017 +0100

    Merge pull request #13564 from joomla/Bakual-patch-1

    Fixing a typo in gallery plugin language file

commit 143cd04b3d6806d88137e9d3f8ffc177d45a4bd9
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Jan 11 21:02:49 2017 +0100

    Fixing a typo in gallery plugin language files

commit e3d873298ed21eaaceda1f1c15380a53658ecd78
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Wed Jan 11 20:44:33 2017 +0100

    Add stripslashes to mssql result columns. (#13534)

commit d3e1cc5dc34cbd8cc48bb9096fbcd8762eeb81f8
Author: Minei3oat <Minei3oat@users.noreply.github.com>
Date:   Wed Jan 11 20:35:52 2017 +0100

    remove unneeded space from btn-group/radio/checkboxes (#12003)

    * remove unneeded space from btn-group/radio/checkboxes

    In vertical from there was unneeded space between the label and the
    controls under it.
    Removed padding-top of btn-group to align with label.
    Added 2px padding-top to btn-group-yes in isis to compensate 2px less
    padding-top of each button to have the buttons aligned with the label.

    * move code from forms.less to protostar / isis

    This reverts commit a0868504cee94a1dd6d820b3690417d7cfd514dd.

    * correct comment

    * removed unit from zero values

commit b8f12937f9d3d031ec2d1bac746668a391ad633c
Author: infograf768 <infografjms@gmail.com>
Date:   Wed Jan 11 19:25:08 2017 +0100

    typo (#13563)

commit 2e8ad390660935a959468b98d6430d604300a376
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 11 07:44:48 2017 +0100

    Remove default value from the field params to inherit from plugin

commit bd2d25dfab033faef3f033987c3c09e3b8c93f87
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 11 06:47:35 2017 +0100

    Remove multiple parameter from user field

commit 0ea8dadbae6f22e26ef3382c9da8f5fcef09e7d8
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Jan 11 00:02:34 2017 +0100

    Fix name of component helper in fieldshelper (#13539)

commit 3e8867fa8028c1a7b38add62485822747d0f282f
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 10 22:51:20 2017 +0000

    remove duplicated code (#13550)

commit 192e04dd5b2ceb08be9f71ad0ccd51b2492acc9f
Author: Phil Taylor <phil@phil-taylor.com>
Date:   Tue Jan 10 19:47:28 2017 +0000

    Fix invalid string that causes the ini file not to load (#13544)

    closes #13541

commit dec96ec83b2e7840e575e36db20ca568f2038767
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Tue Jan 10 19:31:59 2017 +0100

    Catch "expects parameter 2 to be string" error

commit 418e72c2fe99158f27296912432d0cbddc05bae6
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Tue Jan 10 18:28:24 2017 +0100

    Take complete context for group lookup (#13538)

commit c418c439cd189d6bf9b8607cf15bea0e126b1bf5
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 10 17:27:58 2017 +0000

    [Mssql] Fix syntax error when installing a language in backend (#13512)

    * Update languages.php

    * ups

commit 5c7681c73373220ca8d99e6ec5ea09e57697fab7
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 10 13:58:35 2017 +0000

    Normalize #__categories table across 3 db systems and add default values (#13514)

    * installation sql changes

    * updates sql

commit fd002902cce4e13698a524fb9cb170df3869ee76
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 10 13:58:20 2017 +0000

    Normalize #__ucm_content table across 3 db systems and add default values (#13513)

    * normalize ucm_content table in install sql

    * postgresql modification updates

    * sqlazure on update

    * mysql updates

    * remove text - copy paste error

commit 02bb81dbf016dcb48b8a249ecfe864f555f87015
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 10 13:57:27 2017 +0000

    Update config.xml (#13503)

commit a6316f020e47796b6942d8ada8d6b7641b862d4b
Author: Phil Taylor <phil@phil-taylor.com>
Date:   Tue Jan 10 13:36:56 2017 +0000

    Fix “You are not authorised to view this” when mod_expires enabled (#13516)

    * Fix “You are not authorised to view this” when mod_expires enabled

    Closes #8731 Dec 18, 2015
    Closes #8757 Dec 21, 2015
    Closes #9013 Jan 28, 2016
    Closes #9145 Feb 17, 2016
    Closes #9615 Mar 26, 2016
    Closes #10753 Jun 7, 2016

    * code style

    * Unit test refactoring (cannot do it the old way as relative dynamic dates in headers)

    * Remove duplicate header output for charset

    * Better Unit Tests

    * More unit tests :)

    * Close after setting headers

    * Do not cache the response to this, its a redirect

commit 87e9b4d7bdba7e138126baab9edb8872eae4895e
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Tue Jan 10 14:36:13 2017 +0100

    Delete not needed layouts (#13532)

commit 205d94be2e3c33dcb802b1919f8fa8fc349a28b6
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Mon Jan 9 20:46:43 2017 +0100

    [com_fields] Move custom field types to plugin (#13319)

    * Migrate text field to plugin

    * Moved field description lookup to plugin event

    * Remove not needed functions

    * Renamed to specification

    * Adapt gallery

    * Renamed to field types

    * Remove dom interface

    * Prepare the field trough an event

    * Remove domfield interface

    * Add text layout

    * Move output to layout and better multifields support

    * HoHoHoHo Travis

    * Change language strings to be more inline with Joomal core

    * Add list plugin

    * Add calendar plugin

    * Add checkboxes plugin

    * Add color plugin

    * Add editor plugin

    * Add image plugin

    * Add imagelist plugin

    * Add integer plugin

    * Add media plugin

    * Add radio plugin

    * Add sql plugin

    * Add text area plugin

    * Add url plugin

    * Add user plugin

    * Add user group plugin

    * Making travis happy

    * Adapting the installer scripts

    * Some fixes

    * Fixed comment copy paste

    * Cleanup of not used code

    * Alpha ordering language strings

    * Adapting the frontend ini lib language file to be the same as back end

    * Add missing description language string for gallery

commit 82d2a850e9bed0dc9d31f1b103bafa35b122aead
Merge: 1481339 8f9ad61
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Mon Jan 9 16:33:23 2017 +0000

    Merge pull request #13515 from zero-24/zero-24-patch-2

    Reduce the usage of the variable

commit 1481339dd871f1797be0d22e148af8f03c10dd98
Merge: 5d08c45 56ce7b8
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Mon Jan 9 15:24:34 2017 +0000

    Merge pull request #13520 from mbabker/config-cache-fixes

    Expose cache_path config, catch exceptions cleaning cache on config save

commit a9a30814d18d741e56e689215dbc3d1a514377d4
Merge: dd5f4d9 1fa20e7
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Mon Jan 9 08:37:55 2017 +0200

    Merge pull request #75 from joomla-projects/feature/api/putpost

    Implement missing method

commit 56ce7b856d0e02e15c09c5cf902fe28b0d7dde9a
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Jan 8 14:02:10 2017 -0600

    Expose cache_path config, catch exceptions cleaning cache on config save

commit 8f9ad61cf1934c63317f10ab8ec2c916967db368
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sun Jan 8 16:25:56 2017 +0100

    Update languages.php

commit 5d08c452a35e0ee49e2ab81b5b99a5e87a1f7261
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Sat Jan 7 20:25:00 2017 +0100

    [com_fields] MSSQL - sql for Custom fields (#12660)

    * MSSQL - update sql for Custom fields (#11833)

    MSSQL - update sql for Custom fields (#11833)

    * MSSQL - update sql for Custom fields (#11833)

    MSSQL - update sql for Custom fields (#11833)

    * MSSQL - install sql for Custom fields (#11833)

    MSSQL - install sql for Custom fields (#11833)

    * minor cs + defaul values

    * move hits field on a new line

    move hits field on a new line

    * removed version, hits fields

    removed (version, hits) fields #12674

    * removed (version,hits) fields

    removed (version,hits) fields #12674

    * mssql com_fields#13091

    Fixing sql fields #13091

    * mssql com_fields#13091

    mssql com_fields#13091

    * [com_fields] No need for an alias in fields groups. #13115

    [com_fields] No need for an alias in fields groups. #13115

    * [com_fields] No need for an alias in fields groups. #13115

    [com_fields] No need for an alias in fields groups. #13115

    * missed comma

    missed comma

    * missed comma

    missed comma

    * update for #13175

    from extension to context

    * update for #13175

    from extension to context

    * update for #13246

    update for #13246

    * updated for #13246

    updated for #13246

    * added the missed DEFAULT

    added the missed DEFAULT

    * added space before (

    added space before (

    * added space before (

    added space before (

commit 7bde3e0cde1a51d206ff68a9cb80c6acc53ad7f3
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sat Jan 7 10:09:26 2017 +0100

    forgot is

commit 9ce620026e93dc891e456086f5bf2aa52c3fb791
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sat Jan 7 10:07:17 2017 +0100

    changed word

    fix #13482 as requested by infograf768

commit f7e3102b48c787e7c972769bd7ccd5181e50d1c4
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Sat Jan 7 07:36:00 2017 +0000

    Fix showon notice (#13490)

    * Update default.php

    * Update default.php

    * Update html.php

commit a03ea1bf6c9254c30c45be67fd21e99baa90a68f
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Fri Jan 6 19:33:44 2017 +0100

    Add Clearfix to filters (#13488)

commit 9e85ac6fb28390700d61541dc33b83b1f54fe258
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Jan 6 19:33:26 2017 +0100

    TinyMCE: Correcting wrong tip (#13482)

commit 5cdc87aa1562afc48af46a0413dd76917ad6b35f
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Sat Jan 7 03:32:41 2017 +0900

    CodeMirror 5.22.1 (#13468)

commit 93db87826120f5b250dc57acc6a50b732033e94c
Author: Michael Babker <mbabker@flbab.com>
Date:   Fri Jan 6 13:32:14 2017 -0500

    Add a "contains" method to cache API (#13452)

    * Implement JCache::contains() and JCacheStorage::contains()

    * Use the new contains() method

commit bc1b62e399f7ca7bbf15f2bde4f8b4e48a854a72
Author: coolcat-creations <mail@coolcat-creations.com>
Date:   Fri Jan 6 19:30:49 2017 +0100

    Change Jtext string (#13420)

    Change text

commit 7093be910edec1eef6c04909b6ccb999e46c1953
Author: Dennis Hermatski <pandenitz@mail.ru>
Date:   Fri Jan 6 21:29:38 2017 +0300

    #8900 (#9886)

commit 17821a07fd71bcf9ad17f744f4de972b9261f763
Author: dgt41 <d.grammatiko@gmail.com>
Date:   Fri Jan 6 14:08:26 2017 +0200

    xml update version

commit 1acd6b728031b0bc006b0f8eb39de0ea3c2e21dd
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Fri Jan 6 18:29:10 2017 +0700

    Clean up JModelForm

commit 76a14e451d64ee05aa70ad45f23a52ef2eaeca62
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Fri Jan 6 08:08:31 2017 +0000

    [showon] Allow "not in" condition and simplify php code (#13476)

    * improve showon - not in and some simplification

    * more improvements

    * fix bug on AND/OR conditions

    * remove double json encode

commit 019c9b3f77d449f0d81c5fce113fc068eb01f371
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Jan 6 09:07:09 2017 +0100

    Hide tab when empty (#13456)

commit 3b566639d2bfc7df7ea18936c33bd0009a0d61a8
Author: Frank Mayer <frank@frankmayer.net>
Date:   Fri Jan 6 09:09:57 2017 +0200

    Fixed broken view in administrator/components/com_languages/views/installed/tmpl/default.php under smaller resolutions (#13469)

    * Fixed broken view in administrator/components/com_languages/views/installed/tmpl/default.php under smaller resolutions
    Details:
    - Fixed `Native Title` header,  which wasn't removed in smaller resolutions due to missing classes
    - Centered the  `Language Tag` column

    * Changes proposed by @infograf768 in order to keep the Native Title in Tablets

    * Change according to @Bakual's comment

commit 7c16f2b14c7522ca752a699607a5763a51721588
Author: Frank Mayer <frank@frankmayer.net>
Date:   Fri Jan 6 09:02:07 2017 +0200

    Provide Greek calendar locale (#13461)

commit 271f1dbf4b71469bdb46e6454ae3f9b859b84648
Author: Michael Babker <mbabker@flbab.com>
Date:   Fri Jan 6 01:20:26 2017 -0500

    Move PHP 7 checks for MySQL adapter (#13449)

commit b607c613090e106f91b914694172127c5f0d2a26
Author: dgt41 <d.grammatiko@gmail.com>
Date:   Fri Jan 6 01:25:31 2017 +0200

    tinymce 4.5.2

    Version 4.5.2 - January 4, 2017

commit 551e8e3a794d49665a239ba61e28b2a2399cb48e
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Thu Jan 5 19:43:52 2017 +0000

    Media Manager - Adds unique IDs to toolbar btns (#13477)

    * Toolbar min-height correction

    * Add unique IDs

commit 6fcf1cc4f219dbde35e06e4d5fc77d7c12d9f536
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Thu Jan 5 20:43:20 2017 +0100

    Remove invalid ordering options from language installer (#13475)

commit 81aad30a723a135a361c0ee8cf6a4196510302a3
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Jan 5 20:42:54 2017 +0100

    [com_fields] Add a callback for context mapping (#12968)

    * Add a callback for context mapping

    * Simplify stuff

    * Move to component helper class, if the section is not known ignore it

    * Change function name to validateSection

commit 2173ac317c05b4b6ad12b427356ed5e3035cfc19
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Fri Jan 6 00:55:19 2017 +0700

    Fix issue with TinyMCE editor (#13354)

commit b58be77f295aad72ecadbdcc8c17242f0017c520
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Thu Jan 5 12:27:51 2017 +0000

    Proper escaping in toolbar button js strings (#13425)

    * Update confirm.php

    * Update standard.php

    * fix test 1

    * fix test 2

    * cs line size fix 1

    * cs line size fix 2

    * cs: space

    * Update confirm.php

    * final change

    * Update batch.php

    Correcting batch button

commit 1fa20e7642e9bf0df25fded8f1f7bfbf820e2407
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Jan 5 11:54:36 2017 +0100

    Implement missing method

commit a514a4b99f12a985875dcb2347880f6a77d484e4
Author: Michael Babker <mbabker@flbab.com>
Date:   Thu Jan 5 05:31:22 2017 -0500

    Use the database's server type element where able (#13448)

commit fab9fae7698078eafb120a1c16770627311c6287
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Thu Jan 5 12:30:19 2017 +0200

    Form field tel using JLayouts (#13435)

    * init

    * value

    * array

    * UT (?)

    * fix UT (probably)

    * spaces

    * again

    * hmmm

    * hmmm

commit dd5f4d9c30d3a215c27d2da4a3ee2a8382df345e
Merge: 553dd52 1c72cc7
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Jan 5 11:02:38 2017 +0100

    Merge branch 'staging' into milestone1

    Conflicts:
    	administrator/components/com_media/views/media/tmpl/default.php

commit 1c72cc7c68ce7a1d8ee2b6150f0a68ae256fcf02
Author: rbsl-manisha <manisha@readybytes.in>
Date:   Thu Jan 5 13:14:21 2017 +0530

    Fix fatel error in normal registration process. (#13472)

    * Fix fatal error in normal registration process.

    * Fix a smal CS issue with spaces

commit ec2e89df6e924b19eb6c2c1395f3ede914800da7
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Thu Jan 5 06:57:01 2017 +0000

    remove deprecated code (#13464)

commit e13bbe75ce8c73d09b0d0a427963632d72641c50
Merge: 7d35a47 1323192
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Jan 4 20:13:49 2017 +0000

    Merge pull request #13447 from photodude/Sniff-Fix

    Apply fixes to InstantiateNewClasses Sniff

commit 7d35a47c491821edbb885da37587b2ff456f0c3c
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Wed Jan 4 19:24:28 2017 +0000

    [searchtools] Simplify also com_templates styles and templates views (#13466)

    * adapt com_templates views with selector as done for menus, modules, cache, checkin and languages

    * remove now unneeded files and dirs on update

commit 07977dcbfd35b32f3151ba513a7a370aea70aa23
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Jan 4 20:23:26 2017 +0100

    Fix preselect of state, group, access and language for fields (#13460)

commit 737ce33df951726de5665532b23aaedeeb32e011
Author: infograf768 <infografjms@gmail.com>
Date:   Wed Jan 4 20:03:01 2017 +0100

    Proper escaping for various JS strings (#13455)

commit 33f440297e4468fee3794c037744d103f052c0e7
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Thu Jan 5 04:01:34 2017 +0900

    Properly use sublayout (#12966)

    * Properly use the 'sublayout' function in the editors.buttons layout

    * Properly use the 'sublayout' function in the searchtools.default layout

    * Properly use the 'sublayout' function in the content.info_block layout

commit 8614c9a281d02dd80ad9cb5f056138135a4678f8
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Wed Jan 4 18:59:37 2017 +0000

    Allow to add new options dynamically to select fields (#12392)

    * allow to add new options to select field dynamicly

    * an

    * fix conflicts 1

    * fix conflicts final

commit 62c54738155c6875470b5b2df21a87be13f59195
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Wed Jan 4 09:48:26 2017 +0000

    fix html error in com_menus batch modal (#13465)

commit d189cb1464a6009007594bb4060038639d47e424
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Wed Jan 4 07:19:18 2017 +0000

    [Deprecate _QQ_ 2] Save language overrides with escaped double quotes (#13427)

    * new method to save language ini

    * forgot Registry changes

commit 5ee2db4ff0b8fffd97e7d88fc14c441439713430
Author: Frank Mayer <frank@frankmayer.net>
Date:   Wed Jan 4 08:53:29 2017 +0200

    Fixed translation filenames for sr-* as they would not get loaded due to the capital letters (#13463)

commit 3c4423633aaee5b70cb06495f8ec19a0e441997d
Author: Frank Mayer <frank@frankmayer.net>
Date:   Tue Jan 3 23:50:21 2017 +0200

    Some improvements in tests #5: (#13410)

    - Improved readability of assertions by using more appropriate assertions
    - Made some assertions more strict

commit 1073cd894a8e5a60e1f51013200a25d0868988e8
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 3 21:34:27 2017 +0000

    Move methods from JLanguage to JLanguageHelper (#12953)

    * move to JLanguageHelper

    * JLanguage::exists to JLanguageHelper::exists

    * JLanguage::getMetadata() to JLanguageHelper::getMetadata()

    * JLanguage::getKnownLanguages() to JLanguageHelper::getKnownLanguages()

    * JLanguage::parseXMLLanguageFile() to JLanguageHelper::parseXMLLanguageFile()

    * JLanguage::getLanguagePath() to JLanguageHelper::getLanguagePath()

    * sincronize with staging

    * fix conflicts

commit a8bb66b4f04940d7425ddf47391f41d55899ac87
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 3 21:28:44 2017 +0000

    [ACL] [editor xtd image button] Correct invalid check when in category edit (#12819)

    * Update image.php

    * Update image.php

commit 3611ad5146bda2d737cd3baff94602d2d8c856f6
Author: Phil Taylor <phil@phil-taylor.com>
Date:   Tue Jan 3 21:21:38 2017 +0000

    Correct Docblock Argument Type Mismatch (#13458)

    This issue was highlighted in @phpstorm when researching https://github.com/joomla/joomla-cms/issues/13438 :-) (Then to add to the irony I used Github to edit the file haha)

commit d717619e0c58d2eba9e420aefba99adefc0625a2
Author: Frank Mayer <frank@frankmayer.net>
Date:   Tue Jan 3 23:18:08 2017 +0200

    Fix correct multi-line assignments in array (#13441)

commit 8b47a87328c18bf9330baa452101239662ac0ef2
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Tue Jan 3 21:10:41 2017 +0100

    Adding bulgarian calendar translation

commit d58ae7b86f4ac4a0199e12fe02eaeb7459eec0fe
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Tue Jan 3 15:52:58 2017 +0000

    [com_joomlaupdate] review config global default options (#12965)

    * defaults

    * sincronize with staging

    * fix conflicts

commit 650795fec01b3d1bd1d1331db6b3c3ec0d7db661
Author: Piotr <hello@piotr.cz>
Date:   Tue Jan 3 13:15:12 2017 +0100

    Convert CRLF to LF (#13457)

commit d4ca8d964c4e935b5a3d091984f385d4d7a1a946
Author: infograf768 <infografjms@gmail.com>
Date:   Tue Jan 3 08:36:23 2017 +0100

    Enabling showon with js (#13450)

commit 4e3a4aa32f1661a821ff59ddcec46c423b79ed6d
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Mon Jan 2 19:47:16 2017 +0000

    Improve searchtools - part 2 (#10090)

    * better searchtools

    * apply to menu items

    * apply to com_languages installed

    * optimizations

    * optmixations - part 2

    * the same for modules

    * frontend modules popup need some care too

    * add unused layout overrides file to file/folder delete queue

    * fix conflicts 1

    * reset layouts

    * readd conflicting changes

commit 204ef46ae742a8ab7c2604c8d02e020f49d65837
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 2 19:31:21 2017 +0100

    Use Accredited Languagepack XML directly to show the installable languages (#13256)

    * Use Manifest directly to show the installable languages

    * Codestyle

    * Hathor

    * Removing unneeded controller

    * Codestyle again

commit e28aa175ce61725f5e487c02e1bb1dc2a995bf7d
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 2 19:30:17 2017 +0100

    validate="options" doesn't work with useglobal="true" (#13092)

commit e3ecfe686606853a9ac3194e75082dd39b445404
Author: Fedir Zinchuk <getthesite@gmail.com>
Date:   Mon Jan 2 11:10:26 2017 +0200

    Add some description to TinyMCE builder, to make it more clear. (#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

commit 278e9d04202924f0d6ad45c80f2e19a62bb6ffaa
Author: infograf768 <infografjms@gmail.com>
Date:   Mon Jan 2 10:09:51 2017 +0100

    Correcting default TinyMCE params when installing Joomla (#13431)

commit af78aa2ab8de343a60d678ca348b8b3d0ff86c5f
Author: Fedir Zinchuk <getthesite@gmail.com>
Date:   Mon Jan 2 11:09:42 2017 +0200

    Make sure that the Public group used only once (#13434)

commit 5904fdbaef9b407b6643136940ae472f5331879f
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Mon Jan 2 02:00:37 2017 +0100

    [postgresql] - no need to set default to NULL (#13419)

commit e30600a8256da0823efba28152f74878dd95443f
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Mon Jan 2 01:00:02 2017 +0000

    [JLanguage] Simplify language file parse (#13407)

    * simplify language file parse

    * revert $php_errormsg

    * as suggested by michael

commit ee12fd84f93e5b27197edce76d2d9a8358ef1314
Author: Chris Davenport <chris.davenport@davenporttechnology.com>
Date:   Mon Jan 2 00:58:45 2017 +0000

    Move weblinks stats to weblinks repo (#13389)

commit 09f736a7a6431f2007e5e4de6fd27a87ed63922b
Author: Cliff <cpfeifer@users.noreply.github.com>
Date:   Sun Jan 1 17:58:06 2017 -0700

    [com_fields] Cf permission strings (#13384)

    * 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

commit 4ca1d5608b39e2dce3d40e8aad757b8782e67946
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Jan 1 19:57:22 2017 -0500

    Do not include the SQL query in the Exception message (#13356)

commit 9859413267a02cbc198cc1335f7f758ef2e4960e
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Mon Jan 2 00:56:28 2017 +0000

    Container added to all batch modals (#13307)

    * Container added to all batch modals

    * Fix overflow & com_modules

commit 1323192d99e76f1ff561efe66356a18e5898e42a
Author: photodude <walt@waltsorensen.com>
Date:   Sun Jan 1 17:48:32 2017 -0700

    Apply fixes to InstantiateNewClasses Sniff

    fixes a case where multiline new class instantiation would error as
    `Instanciating new classes without parameters does not require
    brackets.`

commit 09e884a84180ea61fd22cbd55423b76cc1a0ec6f
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Sun Jan 1 19:17:21 2017 +0000

    remove deprecated calls (#13424)

commit d40918f902853fa092c0b3b86cb18ad993ad6795
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sun Jan 1 05:51:15 2017 -0700

    code style fix for administrator/components/com_contenthistory (#13439)

    Automatically fixed with PHPCS2 fixers

commit 6ddff0da61f6e382834297af049fef96c501ff3e
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Sat Dec 31 16:22:18 2016 +0000

    [Deprecate _QQ_ 1] Remove information about _QQ_ in 4 ini files. (#13426)

    * Update en-GB.ini

    * Update en-GB.lib_joomla.ini

    * Update en-GB.ini

    * Update en-GB.lib_joomla.ini

commit 57337f7f3f7f8a9d721bf3876778cbcc6f8a615e
Merge: 7765af7 cae13bf
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Fri Dec 30 13:46:38 2016 +0000

    Merge pull request #13408 from frankmayer/improvements-in-tests-4

    Some improvements in tests #4:

commit 7765af7cd2f54f1e7c0613d7737e90ac7f67…
dneukirchen added a commit to joomla-projects/media-manager-improvement that referenced this pull request Feb 18, 2017
commit 85d671de23656d924f9c826000dbb407de835f19
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sat Feb 18 11:21:05 2017 +0100

    More file information in the file adapter (#81)

    * Return the path information

    * More file information

commit eefa6be363671bb103b0d3062ea695cde83feb1f
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Feb 16 21:28:09 2017 +0100

    Add filter option in API (#80)

    * Add filter option

    * Remove void return types

    * Remove void return types

commit f9a8209d088fd0a26fdb7a192276074ed4979216
Merge: 612f6a4 8af1a04
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Feb 16 20:00:28 2017 +0100

    Merge branch 'staging' into milestone1

    Conflicts:
    	README.md

commit 8af1a04f4d15f081ae0df651e0bb213a9ed573e4
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Thu Feb 16 15:12:23 2017 +0100

    Workaround for missing SORT_NATURAL flag on php 5.3 (#14079)

commit 55cfaa621dd63824f0b0cd609f3b7f27d696c25b
Author: Simon Asika <asika32764@gmail.com>
Date:   Thu Feb 16 21:21:24 2017 +0800

    Back to use require_once (#14104)

commit 3315a22bf360714b8ab976e95dcdaf6264ccaec3
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 16 12:43:49 2017 +0100

    Updating/normalising some installation lang files (#14101)

    * Updating/normalising some installation lang files

    * oops

    * typo

    * back to DE-CH-AT as it is the <nativeName> which is displayed in the
    dropdown

commit 42df32c28905262907baef9ef42021cd00a02213
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 16 09:01:36 2017 +0100

    [imp] multilangstatus module: adding a warning (#14083)

    * [imp] multilangstatus module: adding a warning

    * Move since tag to __DEPLOY_VERSION__ ;)

    * Make drone happy :smile:

    * Using q instead of quote. Taking off the else. Thanks Yvesh

commit 4580eb84c5ede0a47379604b9608bb5bc119618b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Thu Feb 16 00:10:48 2017 +0100

    remove javascript tests (#14067)

commit a28e5f163827ea525e6b40fcde8a1442e9d6293b
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Wed Feb 15 20:13:36 2017 +0100

    [com_tags] - remove warning (#14026)

    remove warning

commit 47307204828aeafd73d1e5b730472449892d2118
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Wed Feb 15 20:12:55 2017 +0100

    Alpha order the new language strings for com_contact and com_content (#14065)

    * com_contact ini alpha order

    * alpher order the new strings.

    * alpher order the strings

commit 66c2163ed7c8622ae42c6023161c4c47b0419e6a
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Wed Feb 15 11:48:40 2017 -0700

    fix appveyor due to changes in chocolatey php (#14097)

    * fix appveyor due to changes in chocolatey php

    * one too many quotes

commit b50f96ee1967f238e5baa60467e8aa6f41f4cd14
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Feb 15 16:09:25 2017 +0100

    Updated calendar language files

commit dd0491df44ec9521e96fe6af5930fbf166603bfe
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Feb 15 15:15:50 2017 +0100

    Updated installation language files

commit c34b0f77ca7f25906677aa6bbf3d0941de8eca1f
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Wed Feb 15 13:39:53 2017 +0100

    SQL optimise for taxonomy maps (#13854)

commit f022ae3f8cbe8f5e6e4a797189ddb46129375e1f
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Wed Feb 15 01:55:50 2017 +0100

    Add missing tests for quoteName (#13860)

commit cbae8f4c41891cdb86ba2d807ae4e9bb0d2650e0
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Feb 14 17:57:11 2017 +0100

    Move PHPCS tests from travis to drone (#14066)

    * move PHPCS test to drone

    * typo

commit f3c49e42e2a455247898fc66e26d8f202844ac08
Author: Michael Babker <mbabker@flbab.com>
Date:   Tue Feb 14 11:19:38 2017 -0500

    Use the Framework's LDAP client (#13938)

commit 73f9aa1e45aeb7f1380da5b6a7c946f839cfba31
Author: Michael Babker <mbabker@flbab.com>
Date:   Tue Feb 14 10:44:56 2017 -0500

    Fix issue with callback cache controller hashing Closures (#14057)

    * Fix issue with callback cache controller hashing Closures

    * Wrap in array

commit 9bc0f1965fd9d3a445b1d2818bbfa554bb014ef4
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Tue Feb 14 15:21:24 2017 +0100

    language strings should be uppercase (#14064)

commit d774932cdae09a6aa4a7185401c27092eb63944a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Feb 14 14:18:27 2017 +0100

    sql - no more need of findInSet() (#14020)

    * sql - no more need of findInSet()

    remove findInSet()

    * sql - remove findInSet()

    remove findInSet()

    * sql - remove findInSet()

    remove findInSet()

    * sql - remove findInSet()

    remove findInSet()

    * cs

    removed blank line

commit 21ef13aa716a638dd679f61e5d062f570f8659bd
Author: Mohamed Marrouchi <marrouchi.mohamed@gmail.com>
Date:   Tue Feb 14 14:17:43 2017 +0100

    [bug] Fix localPath in gallery plugin. Closes #14056 (#14061)

    * [bug] Fix localPath in gallery plugin. Closes #14056

    * Using JPath::clean intead of DIRECTORY_SEPARATOR

commit ed362d8b6f85f0ff57ed9e57ea5103d91822b8aa
Author: Michael Babker <mbabker@flbab.com>
Date:   Mon Feb 13 18:38:39 2017 -0500

    Simplify catches for cache exceptions (#14045)

commit 8e81979e973acc1ef68dcbd90c2147c0321e22e7
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Tue Feb 14 00:38:05 2017 +0100

    Use $ismoo instend of calling jinput (#14047)

    * Update modal.php

    * Thanks @joomdonation

    * oops :smile:

commit 426c0ea9d2429f2f6c1c100ca998643099d9f030
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Mon Feb 13 21:32:23 2017 +0100

    Setting search threshold to 0 in global configuration (#12988)

    * Setting search threshold to 0

    * Set search threshold for selects with custom value to 0

commit d996db93faaea45c23caef5a619f9854c6e65c71
Author: David Jardin <d.jardin@djumla.de>
Date:   Mon Feb 13 19:17:50 2017 +0100

    Don't display feed if category id missing or non existent (#13977)

commit a26226b11578187bcb2c26d4f2fe91a2844caf95
Author: bertmert <bertmert@users.noreply.github.com>
Date:   Mon Feb 13 19:17:21 2017 +0100

    Remove nl2br where not needed (#14025)

commit 2c5c9337c59af47297094e81bbe00b82b290c2fe
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Feb 13 19:15:35 2017 +0100

    add a bit more clean lines to the PR template. (#14054)

commit 5e329148f36315e043939e03621eb2f6af2b870d
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Mon Feb 13 14:03:43 2017 +0000

    Add container-fluid to com_template modals (#14028)

commit 4f856518988426b1ac543cc8e11f043b6d084231
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Feb 13 15:02:47 2017 +0100

    Alpha order the language strings (#14048)

commit 63fecc504d35112e1bb5a40de0cddb3d1831c551
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Feb 13 11:36:17 2017 +0100

    fixes the testing sample data for newsfeeds (#14032)

commit 95cb94442c72050a3ac1b96a084fb2970fc6f9ec
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sun Feb 12 18:15:39 2017 +0000

    [Protostar] Equal field widths in mod_login (#14027)

    * Equal field widths in mod_login

    * Add space between header and form

    * Static widths

commit f484aae5f816cecb9e508892c8aec03be4473862
Author: infograf768 <infografjms@gmail.com>
Date:   Sun Feb 12 19:14:55 2017 +0100

    Simplify PR 13961 (#14035)

commit 14bfccf23d0e38d08bbda63cd719fc2358a5e5d2
Author: Hannes Papenberg <info@joomlager.de>
Date:   Sun Feb 12 17:22:37 2017 +0100

    Fixing URLs for orphaned articles (#14031)

commit e7bd3972854fe00aa6677adf421aa40e36706e2c
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 17:02:45 2017 +0100

    add drone ci badge to readme

commit 94638535ef75d925516afeefa9e434fcb9cfd204
Author: bertmert <bertmert@users.noreply.github.com>
Date:   Sun Feb 12 16:51:19 2017 +0100

    Remove useless check of contact_email_copy (#14029)

commit 67f2dd4fc0a75dbb200b86b7464bd948efd3cc85
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Sun Feb 12 17:50:54 2017 +0200

    Update tinyMCE to 4.5.3 (#14024)

    * update tinyMCE to 4.5.3

    * update creationDate to 2005-2017

commit e1581bc41d053ffb4b6f5f5d2d32658bcfc53cdf
Author: Benjamin Trenkle <bembelimen@users.noreply.github.com>
Date:   Sun Feb 12 16:50:41 2017 +0100

    Allow to clear messages after receiving them (#13975)

    * Allow to clear messages after receiving them

    * Fix spaces after variable name

commit f75801b7fb1d3ca347034399af7a9e250686b0a1
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 12 16:50:03 2017 +0100

    Catch date format errors (#13974)

commit 38eb5ae41e34c2ae232f85963480648e90467d7b
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sun Feb 12 15:49:39 2017 +0000

    [Isis] Template menu assignment columns (#13971)

    * Apply column-count to template menu assign

    * Responsive

commit a44d4823ec83c3f3ca76a6293fab70f7b5d4b3e7
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Mon Feb 13 00:48:39 2017 +0900

    CodeMirror 5.23.0 (#13958)

    * CodeMirror 5.23.0

    * Update codemirror.xml

commit 7d6e08f1ac4c5172f8ae3c649c9aca6bfec797a7
Author: Fedir Zinchuk <getthesite@gmail.com>
Date:   Sun Feb 12 17:47:23 2017 +0200

    TinyMCE builder: make sure the value exist, and cache the layout data (#13901)

commit 2705b7b54e9ea8865f321a2173fc304d879be0f8
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 15:56:10 2017 +0100

    add phpcs to compare it with travis

commit a240a22e0e1d1ba6f18651b779a0fce6e197acfd
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 14:32:55 2017 +0100

    set clone deph

commit 63120ec8866720179cb9c321407676582695506c
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 11:40:56 2017 +0100

    changed for drone0.5

commit 06d4b43408f10c7c51f44c35f63c21c441f10b38
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Sun Feb 12 07:49:48 2017 +0900

    New font for CodeMirror: Overpass Mono (#13957)

commit 94d94314a38a10ba8bc11bc3889fcd38a5013196
Author: Michael Babker <mbabker@flbab.com>
Date:   Sat Feb 11 17:47:44 2017 -0500

    Mark Event and Session classes deprecated (#14030)

commit 30218aee3422e55082b90e9403cdd2e003326265
Author: Michael Babker <mbabker@flbab.com>
Date:   Sat Feb 11 13:48:53 2017 -0500

    Make login page query resilient to cache error (#13525)

commit 040d4e7370ee29894d9a6635e74b8ebdce94ca28
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 11 19:47:25 2017 +0100

    Fixing contact fields (#14015)

    * Fixing contact fields

    * Codestyle

commit 0fa667b817e58a027dd9c507957f23b306b35bdd
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 11 19:45:36 2017 +0100

    Solving com_search Notice (#13961)

commit 9f7ca0e91b51d48e18747ec404aae51e8f2d43e4
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sat Feb 11 19:43:20 2017 +0100

    [Installation] Fix MySQL sample data for #__menu (#13979)

    * fix MySQL Sample Data

    * fixed thanks @infograf768

commit c4f54dfa08f85333d6e67abf8984bd1470b23708
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 11 16:46:14 2017 +0100

    More changes to properly accommodate en-CA

commit c7dc2185e2ab24c783356c2638640faed4a66f77
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 11 16:42:42 2017 +0100

    "en-CA" is Canada, not Australia.
    Fixes #14023

commit 798e7f512cb293711ea5159827d8848cb1dbdceb
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Sat Feb 11 12:37:52 2017 +0100

    [com_users] User Profile - remove redundant event trigger onContentPrepareData, read data from session after validation fails (#9325)

commit c9f3f68e565317fffd0d3b0c83b501d8cfcd4bc4
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 11 12:25:06 2017 +0100

    Multilanguage: Frontend field tags filtering (#14006)

commit 1db47ea7fd7c58979a86798445d27300f6021150
Author: Frank Mayer <frank@frankmayer.net>
Date:   Fri Feb 10 18:24:04 2017 +0200

    [administrator/(rest)] Fix alignment for multiline arrays (#13442)

    * [administrator/(rest)] Fix alignment for arrays

    * Add comma in last line of multi-line array declarations

commit 88f80b7edd25312dd4de38b4a4453afbd51dbe0d
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Fri Feb 10 01:08:10 2017 +0000

    Post Install Messages (#13992)

commit 3e50ec9a0c7873158def383e123819864ae92b72
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Thu Feb 9 18:01:54 2017 +0000

    [Isis] Toolbar margin-bottom tweak (#13989)

    * Toolbar margin-bottom tweak

    * Match gutter width

commit 745a6068d9ba2af69aefd30b148c32d45915b834
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Thu Feb 9 10:58:43 2017 -0700

    Update SQL DLLs to release 4.1.6 for >php 7 (#13995)

    * Update SQL DLLs to release 4.1.6 for >php 7

    - update SQL DLLs to release 4.1.6 for >php 7
    - remove shallow clone, this can cause issues depending on what's excluded in the .gitignore file
    - simplify getting the SQL dlls with the new PECL download location
    - simplify getting the wincache dlls from PECL download locations

    * remove set for $vars

    * quote var strings

    * env is not needed for some vars

    * quote more vars

    * revert the php 5.6 DLL changes

    also fix the dlls for versions with Add-Content

    * remove dead conditions

    * fix typo

    * wincache version is conditional

    * use -y switch with 7z commands

commit cd3fe9a4fc7b450a250d88f2ebbf03bae3c3b04e
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Thu Feb 9 02:58:01 2017 -0700

    Add WinCache to AppVeyor build (#13810)

    * try adding wincache

    * fix enable wincache

    * opcode cache portion of WinCache is now deprecated

    Since the Zend Opcache extension is now in the core PHP product, the WinCache opcode cache is disabled by default.  The opcode cache portion of WinCache is now deprecated, and will be removed in a future release of the WinCache extension.

    * try forcing session.save_handler="files"

    * what modules are registered with php

    * look at the full php info

    * add curl, APCu, memcache, redis

    * apcu is stalling at unzip check without for moment

    * redis-64 is erroring

    * try enabling wincache file and cli

    * Get-ChildItem -Path

    are the files even there?

    * redis install randomly freezes

    * need to use NTS version of DLL

    * no memcache server installed, remove driver

    * remove redis and php -m

    redis has issues and is tested on travis so lets just test wincache here

commit 5770cc6eb8bfda275c4fd7a4c8ba864692b028b9
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Wed Feb 8 15:39:11 2017 +0100

    We are in dev state for beta 3

commit 9800df16ce59042ddaa4d44ede2be11f6dc0e7d0
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Feb 8 15:36:50 2017 +0100

    set dev state after beta2 release

commit adee785d3623c1b3de59d0962d4cc1b67f2212a6
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Feb 8 15:13:21 2017 +0100

    Prepare Release 3.7.0-beta2

commit 0544f37a88e699d4e221ac32e3ff6956bc379e13
Author: Michael Babker <mbabker@flbab.com>
Date:   Wed Feb 8 09:07:17 2017 -0500

    Make JControllerLegacy::display() resilient to cache errors (#13918)

commit 05a2119d50a4b9c4c2b3f7c0ea4122d9067527b3
Author: Michael Babker <mbabker@flbab.com>
Date:   Wed Feb 8 09:06:54 2017 -0500

    Make JModelLegacy::cleanCache() resilient to cache errors (#13917)

commit 21f970132c518858f83cdbcef634909b33099847
Author: Michael Babker <mbabker@flbab.com>
Date:   Wed Feb 8 09:06:13 2017 -0500

    Make JComponentHelper resilient to cache errors (#13916)

commit 4c98343e235e0dc56c7b6297c3a0e0dc5da945a9
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Feb 8 15:05:13 2017 +0100

    [com_fields] Migrate category view show_user_custom_fields to fieldgroups (#13806)

    * Migrate category view show_user_custom_fields to fieldgroups

    * Adapt form.xml

commit ac895c6080a187ae4ab608182d081b1cb6b51e54
Author: Frank Mayer <frank@frankmayer.net>
Date:   Wed Feb 8 16:04:37 2017 +0200

    Make columns centered, where it makes sense (in one file only for now, to get a discussion going) (#13493)

    * - Make columns centered, where it makes sense and looks nicer than left-aligned ones. For example version columns, single or maximum two-word columns
    - Also fix CS on that file

    * fix spaces to tabs

commit f0c2d8362bc75ea9ddc016f5c15bad466c1dcd33
Author: James Garrett <atma_the_dog@hotmail.com>
Date:   Thu Feb 9 01:03:50 2017 +1100

    Fix to Sub Form Field Frontend Save Deleted and Reordered Params (#12007)

    * Update module.php

    https://github.com/joomla/joomla-cms/issues/12006

    * Update module.php

    * i have just fixed just a very small CS issue.

commit 72c59e3f14b514fd778b2a204c218f54f2331118
Author: Georgios Papadakis <ggppdk@users.noreply.github.com>
Date:   Wed Feb 8 16:02:43 2017 +0200

    Prevent misuse of show_noauth param when fulltext is empty (#11290)

    * Prevent misuse of show_noauth param when fulltext is empty

    * Update code blocks

    * Remove spaces

    * Fixed code styling

commit 2af4b4dbbca7077851c0f94b47b8fe7a60a41932
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Wed Feb 8 10:34:25 2017 +0100

    [AppVeyor] Unit tests fix for file cache (#13941)

    * Attempt to fix cache error on appveyor

    * flock() uses mandatory locking instead of advisory locking on Windows

    * Use file descriptor to read file if the file is locked

    * Close file if the file was not locked

    * Check whether all data has been saved

commit 75e34f075bfd6b761b1b62dd908decc3f1b65c02
Author: Peter van Westen <info@regularlabs.com>
Date:   Wed Feb 8 10:33:36 2017 +0100

    Fixes incorrect background colour of icons in coloured toolbar buttons (#13963)

    * Fixes styling issues of icons in toolbar buttons

    ...coming soon...

    * Update template-rtl.css

    * Update template.less

commit 16de2940c63267e311055bec79a4732d5bc77b80
Author: Peter van Westen <info@regularlabs.com>
Date:   Wed Feb 8 10:33:05 2017 +0100

    Fixes issue with login message in incorrect language (#13965)

    * Fixes issue with login message in incorrect language

    This fixes the issue with the login message not being displayed in selected language (admin).

    You can easily test this by trying to log in (in the Administrator) on a multilingual site - using an incorrect password.
    For instance, on a setup that has English (default) and Arabic installed.

    After trying to log in with Arabic selected as login language, you will get a failed-login message in English.
    If you then se the language selection to English and log in again with an incorrect password, you see the message in Arabic.
    Not good!

    This PR fixes this issue and sets the correct language (based ion what you have selected in the login form) before that error message is generated.

    * Update administrator.php

commit 8cfa2dea9c7cb6944e6042c6c7663a4e43e5e7ab
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Tue Feb 7 18:42:47 2017 +0100

    Proxy call for fields modal to backend files (#13951)

    * Proxy call for fields modal to backend files

    * Codestyle

commit fa610bb0adc4292b9d2bc10679f474e80b7a52ea
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Mon Feb 6 09:40:09 2017 +0100

    fix path and filenames in tests

commit 647c86b10a794c3818ae73251cb07332b48cf44e
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Mon Feb 6 09:28:42 2017 +0100

    this test fails to often and doesn’t makes sense (#13859)

commit 29ed4d96a5fcd783be51a08fc7e547f8527638f3
Author: Benjamin Trenkle <bembelimen@users.noreply.github.com>
Date:   Mon Feb 6 09:01:50 2017 +0100

    Improve new menu field (#13085)

    * Improve new menu field

    * Add magic getter/setter

    * Add __DEPLOY_VERSION__ parameter

commit 152859c84ae33e3ca7d7d8d929b8b2a93bdb4db5
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sun Feb 5 23:26:15 2017 +0000

    Smart search select field margin (#13927)

commit ed6fe013e59b3e7a241d397a810834afd8ba7ab3
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Mon Feb 6 00:25:13 2017 +0100

    Calendar fixes (#13181)

    * fixes

    * tests

    * Some styling - RTL

    * Some styling

commit e31d41c3c62d282b371be13b6b7a44dfc46394ce
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 5 23:37:55 2017 +0100

    Read header_size to determine header size (#13221)

commit 24f64cc47fdfc2562b95ac7f82b9f1cbbfabcb18
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Sun Feb 5 22:36:16 2017 +0000

    [ACL] [new/edit category] Remove categoryedit field check of - No parent - option (#12821)

    * Update categoryedit.php

    * Update categoryedit.php

    * Update categoryedit.php

    * Update categoryedit.php

commit 80b181f59fd55dd5342923079fda6329898020ea
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Feb 5 22:30:29 2017 +0000

    Amend deprecation messages

commit c5dfb6c7c0c66fd672c604539cb854d27edd9975
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Mon Feb 6 07:26:43 2017 +0900

    Use the JHtml::_ function instead of calling functions directly. (#12546)

    * Use the JHtml::_ function instead of calling functions directly.

    * display the JHtml functions directly in comments

    * A line was too long.

commit df63222948423b2be415684e020eb36e73ce2f95
Author: Frank Mayer <frank@frankmayer.net>
Date:   Mon Feb 6 00:26:07 2017 +0200

    [com_search] Refactoring + fixing results-highlighting (#13498)

    * Refactoring + fixing results highlighting, where positioning of highlight was off sometimes when special characters were used.
    Also fixed css sitewide to display highlight more naturally.

    * Fix CS.

commit 5de1c3440f2e1b97a392832d55ae12e7d3450045
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Sun Feb 5 22:23:40 2017 +0000

    [com_content] Add some missing useglobal (#12918)

    * some missing useglobal and hardcoded default

    * Update default.xml

commit b56d4cee4b2b72185caf937ab0b4bc540270aebf
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 5 23:21:38 2017 +0100

    Merge list field options using Registry->merge (#13578)

commit 41df21bfefadbcc857b2039400c1fd15e6f79cbb
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Feb 5 17:19:37 2017 -0500

    Deprecate OAuth client classes (#13937)

commit f1221bbb55c2437a5d453a1031bcc934fe95a5b6
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Sun Feb 5 20:40:58 2017 +0100

    Mssql - fix escape() and add support for unicode chars (#13585)

    * Mssql - save in correct way '\<CR><LF>', '\<LF>' and fix $db->escape()

    See https://support.microsoft.com/en-us/kb/164291

    * Add support for unicode/nchar characters

    * Fix tests

commit 64b41e708fb23b6acf5cd3543d5205af2fa05a6e
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 5 20:27:37 2017 +0100

    Adding gaelic calendar file

commit 40506f1bce3b8315606f3d1466f6dca2bc02443b
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sun Feb 5 18:22:34 2017 +0000

    Add some typehints and a missing since tag (#13934)

commit 35ee6bac86f4bab2de2065b9a29a7afefc507d55
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Feb 5 12:37:52 2017 -0500

    Create an Exception for a missing component (#13919)

    * Create an Exception for a missing component

    * Default 404 code

commit fc5a7fb2ce070bb66ef9f92611e40446346bbd75
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Feb 5 12:03:49 2017 -0500

    Admin app - catch exceptions thrown by JLog::add() (#13504)

commit 6833955cfbc0f1914751ab4c110b9b4e332eee3b
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sun Feb 5 17:23:19 2017 +0200

    Simplify some ternary operations using elvis operator and remove unnecessary parentheses in libraries/cms (#13234)

    * Simplify some ternary operations using elvis operator and remove unnecessary parentheses

    * CS Fix

    * Revert commit in wrong branch

commit b828e00f10ec1b0bf1b1141fa5fa6a37a1aaee14
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sun Feb 5 17:18:10 2017 +0200

    Remove one-time-use variables in libraries/cms (#13236)

commit 35d04157e1bba494b9fae5d4e88336a010c9d183
Author: infograf768 <infografjms@gmail.com>
Date:   Sun Feb 5 15:33:37 2017 +0100

    [com_fields plugins] Clarifying some plugins descriptions (#13928)

commit aef1f2453e57cf666fbab06e4afc1fd0a02eacc8
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sun Feb 5 14:29:01 2017 +0200

    Optimized FinderIndexerHelper->stem() method  (#13480)

    * Optimized FinderIndexerHelper->stem() method now being 5x faster getting the base word of a token

    * Fixed property comment and CS

commit 1387896d1d77fc84001a95e6e67c91b4904047fd
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sun Feb 5 09:59:49 2017 +0100

    move the warning to a info (#13903)

    merged on review

commit 2598241eefc069f087bbd6a972148aea3fa62563
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sat Feb 4 23:13:23 2017 +0100

    remove the dublicate comment line in the scriptphp (#13924)

commit e5dad1786a5e640b4a7768a448c6b8f2cc430325
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sat Feb 4 22:55:46 2017 +0100

    snyc install sql #__menu (#13894)

commit a7933d4b0bed6db0448e322e3dc118722b10fae4
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sat Feb 4 22:44:58 2017 +0100

    Catch SQL exception in SQL form field (#13882)

    * Catch SQL exception in SQL form field

    * add missing clean line

commit e14bb91bb1c0cdc0b957be7316aab15bb3c67a59
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sat Feb 4 23:44:19 2017 +0200

    Replace StringHelper::trim() call with simple trim() call when not utf8 characters are to be trimmed. Saves a few cycles in indexing. (#13478)

commit 032708762cc6a607efd75a1b8316aefcc90fec6c
Author: Tony Partridge <admin@xtech.im>
Date:   Sat Feb 4 21:32:11 2017 +0000

    Convert the system Redirect plugin to use lowercase urls at all times… (#13853)

    * Convert the system Redirect plugin to use lowercase urls at all times for redirecting.

    * Removed an un-needed additional strtolower

    * Changed to use StringHelper strtolower since this function also support utf8_ safe.

commit 98ff75220fbb55ee0028628f7e0c07a4d7825bc6
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sat Feb 4 14:22:25 2017 -0700

    Update phpass to 0.4 (#13858)

    Note: this does not fix the php4 constructor

commit dbcd586c4dbc07ded1853721e150353756c327fb
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 22:11:56 2017 +0100

    Remove the plugintag if ID is invalid (#13898)

commit b0228b943f48102b6b040f866198b7e77b119b80
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 22:08:06 2017 +0100

    Adjusting version attribute in language pack manifest

commit ae6f0fede33b9b5a6ea9aa516913c0759debca1e
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 22:00:59 2017 +0100

    Editor Plugin to insert the new {field ID} and {fieldgroup ID} tags (#13875)

    * Add field editor plugin

    * Adding SQL files

    * Adding new plugin to install.xml and script.php

commit 4593736a172e0c3fa25ef6bc7d52c2a726c78458
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 21:57:30 2017 +0100

    Updating version attribute to 3.7 in english language XML files

commit 47a5a2adc5a033e824078452cdc625ebcc29ca2a
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sat Feb 4 21:46:51 2017 +0100

    needed for nightly builds

commit e244b9314328bfbe6b9dcea7fb852e1f45b1864d
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 21:44:49 2017 +0100

    Fixing language file headers

commit d2dd941a4a07a4ee3d007516d9e1c7243430a49f
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Sat Feb 4 21:38:33 2017 +0100

    Remove uslep(100) from first call of cache->get in file handler (#10767)

    * Add test for cache lock method

    * [cache] File storage - create file before flock

    * Flock function release lock if resorce file is destroyed/unset

commit 7e0b02a0e9e90c292bf2c0373b6e6823f400a1ef
Author: bertmert <bertmert@users.noreply.github.com>
Date:   Sat Feb 4 21:37:58 2017 +0100

    "New User Registration Group" always visible (#13822)

commit 643bd6c6e20d40379138eaa452acf3e16e09f681
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 4 21:36:10 2017 +0100

    New TinyMCE: Setting image advanced tab as ON per default (#13897)

commit db881cb64be37c547f1e8732d0d98c68aaf375c7
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 4 20:03:48 2017 +0100

    [admin_menus] Taking off useless columns in menu items manager (#13884)

commit 5c9df7b1eff26a99740a4cc84978554a151956a2
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 4 18:49:28 2017 +0100

    [admin-menus] Allows translation of menu items in parent and ordering dropdowns (#13889)

    * [admin-menus] Allows translation of menu items in parent and ordering
    dropdowns

    * oops

    * other oops

    * cs

commit df959ba93501f7d15e7233a6a499a9baaed79851
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Sat Feb 4 18:46:58 2017 +0100

    [com_finder] - cast to char before use LIKE operator  on datetime/tim… (#12348)

    * [com-finder] - cast to char before use LIKE operator  on datetime/timestamp field

    A timestamp/datetime field CANNOT be used with LIKE we need to cast to char before in standard SQL

    * used $query->castAsChar()

    used $query->castAsChar()

commit 38b00ba7d128d0f517d8e3d577daa7beb53a9909
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sat Feb 4 17:45:34 2017 +0000

    Flush tables in cpanel wells (#13890)

commit 04adba5362f142dd54170a8ee403037bf8731d3d
Author: Michael Babker <mbabker@flbab.com>
Date:   Sat Feb 4 12:44:28 2017 -0500

    JMenuSite::load() should try to work even if cache fails (#13524)

    * JMenuSite::load() should try to work even if cache fails

    * Add an interface for cache exceptions

commit 1735290b7552aa6208aadfe7ed5ab5a82237b678
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Feb 3 11:44:00 2017 +0100

    Updating en-GB install.xml for the new plugin (#13881)

commit e390415097348259ea7413fac5c8dae4d61d316a
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Fri Feb 3 16:09:58 2017 +0530

    Admin menu: batch process move to submenu impossible [FIX] (#13649)

    * Fixes #13632: Admin menu: batch process move to submenu impossible

    * Db stub update

    * Do not show language and access in batch operation

commit 945b40c93e7bc53837c5b282e424df09ab5f1a6d
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Fri Feb 3 11:35:15 2017 +0100

    skip menu test

commit bbe1bff9b5af70a66ef05107990196dc59ccfc99
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Fri Feb 3 11:27:57 2017 +0100

    revert change from #13830 because test are falling

commit 8f946fed7a5d17d9498d9450a15217c8fde78c66
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Feb 3 10:00:55 2017 +0100

    Update script.php for the new content plugin (#13883)

commit 28a8ce6be669ed7ac62eb8c449d87860213d1c12
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Thu Feb 2 20:53:34 2017 +0100

    set to dev state after release

commit ddd6f5a4c2731bcc41297314ef174e9a55670eab
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Thu Feb 2 19:56:00 2017 +0100

    Prepare Release 3.7.0-beta1

commit f6e524771caa4db1a21a5729aa230c67973d3c24
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Thu Feb 2 19:50:54 2017 +0100

    [com_fields] Fields Content Plugin (#13814)

    * Adding new content field plugin

    * Adjusting description (thanks @brianteeman)

    * Adjust regex

    * fieldgroups working

    * Adding SQL files

    * Fixing installation SQL

    * copy-pasting correct string :)

    * Codestyle

    * Fixing ID

    * Add support for {field *}

    * Add context "com_content.featured" to validateSection.

commit e6f73bcf047f5c3eb126e528f80680aba8f3a2aa
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Fri Feb 3 00:17:49 2017 +0530

    Fixes #13642 - The issue which causes custom menu items to be lost when a component is updated. (#13857)

commit b4bf8621f22bd16fecbc18a166cc11cb23b51a55
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Thu Feb 2 22:27:04 2017 +0530

    If no container is defined in the active admin menu, force show default container with all items shown. (#13838)

commit cc8ad0c795e42d7c1e736a55682f7145e961db8c
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Thu Feb 2 22:11:44 2017 +0530

    [Admin Menu] Fix showing of protected menu items in container type menu item (#13830)

    * Menutype ‘menu’ is no longer protected. Do not allow batch/trash/delete for protected menu items.

    * Show protected menu items on explicit filter only

    * Container menutype improvements and other improvements related to menu client_id.

    * Child item fix

    * Fix root exclusion and node visibility when in disabled state.

    * Update test db stub for jos_menu_types

    * Remove protected items filter from manager and other fixes.

    * An attempt towards UX improvement

    * Language update

    * Update language a/c to better suggestion by @infograf768

    * Use only ‘main’ and not ‘menu’ menutype to load components menu items under container menu item

    * Removed extra parenthesis

commit 5067ee92cb99646833490ddf8d4c419432321337
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 2 17:24:27 2017 +0100

    com_cache : Missing lang strings values (#13850)

    * Missing lang strings values

    * adding manager

commit 6f85b59b9303819850052c8e8fafd4f1ad308fc7
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Thu Feb 2 15:31:36 2017 +0100

    Security fix for quoteName (#13825)

commit 5a1c7960224b6b313a03386b8b02478f792f8f46
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 2 14:50:32 2017 +0100

    [com_associations] Display Associations tab in Target (#13855)

commit 4b32be7ebca802e2e6a8fe1bed444a61faa15c04
Author: JoeforJoomla Boy <joejoomla76@gmail.com>
Date:   Thu Feb 2 14:26:22 2017 +0100

    Regression 3.7: last template style preview not working #1 (#13775)

    * Update site.php

    * Update site.php

    * Update site.php

    * Update site.php

    * Move unset into the else condition

commit 0d6a55afa610ff2a9845dac4603cc033a9684860
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Thu Feb 2 13:25:47 2017 +0000

    [Isis RTL] - Remove yes/no btn-group float (#13852)

    * RTL - Remove btn-group float

    * Only target yes/no toggle

commit 47346915f8092562e41974f8eb57813aa14f8ce9
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Thu Feb 2 13:25:36 2017 +0000

    Bypass lessc row-fluid calculations (#13845)

commit dc3a1a74415e91e60398389730507699a59a906d
Author: brianpeat <brian@thepeatgroup.com>
Date:   Thu Feb 2 04:00:53 2017 -0600

    [com_fields] Add option to show or hide field label (#13752)

    * Added option to hide field label

    * Added variable and if statement to hide label

    * Added language strings for the Hide Label option

    * Updated to change the if statement as per comment

    * missed a semicolon

    * changing switch to Show/Hide

    * Changing switch to Show/Hide

    * Changing switch to Show/Hide

    * missed a language string change

    * Changed if statement

    Since the default is Show, if it's not saved in the DB, the label won't show. Changed the if from ==1 to !=0 so it shows without any entry in the params in the db.

    * Reversed the if statement

    I tested on CURRENT fields (not new ones) but I had changed the params name, so it didn't stick. All my fault :)

commit aa862e8c694fd2be7833e16c7306c92d6409b989
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Feb 1 18:53:17 2017 +0100

    [com_fields] Trigger onContentPrepare in news module (#13708)

    * Trigger onContentPrepare in news module

    * Use the correct trigger method

    * Text variable is needed for event

    * Change to tabs

    * Remove spaces in line

commit 8676321b372b564ae40c61890b133e7d5cecbfdc
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Feb 1 17:24:36 2017 +0000

    Update YAML library (#13843)

commit 6ffc4b96abf7a885dced8afe1d14fae1781db206
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Wed Feb 1 12:52:38 2017 +0000

    Amend toolbar btn spacing (#13823)

commit 2c51a2829a4a1fb31490bbdf057b62fc7e199f88
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Feb 1 13:51:26 2017 +0100

    Custom fields for categories (#13837)

commit 5cdea948ad4f1e02b4422a3426535eead0d4eb6c
Author: infograf768 <infografjms@gmail.com>
Date:   Wed Feb 1 11:49:24 2017 +0100

    [com_associations] Do not use Copy reference to an existing target (#13819)

commit 82de8bd15ac0c9c6599262f14bc03a68c9391c20
Author: Fedir Zinchuk <getthesite@gmail.com>
Date:   Wed Feb 1 11:14:14 2017 +0200

    Tinymce: allow to edit image title (#13833)

commit 3449e046cde01755b12fd31aad4cb0c0864ead38
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 31 23:48:28 2017 +0000

    Use staging branch status for AppVeyor badge

commit 571218c80c690bb67c191363493a2ff703998136
Author: infograf768 <infografjms@gmail.com>
Date:   Tue Jan 31 10:21:32 2017 +0100

    [admin-menus] Display only components using Categories in List All Categories menu item (#13808)

    * [admin-menus] Display only components using Categories

    * docs missing

    * Simplifying field type code. Using it also for Create Category. Modified
    tip.

commit bfcca89cd878755b9988ea7277e064fb5d70523d
Author: Michael Babker <mbabker@flbab.com>
Date:   Mon Jan 30 07:49:18 2017 -0500

    Make JPluginHelper::load() resilient to cache error (#13526)

commit 720db4e8e0738625359903725428c4335079d550
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Mon Jan 30 13:46:22 2017 +0100

    Add expected and actual result headings (#13762)

commit 0fa990aa88a7a5f81cc23e1e5c675cd710d5fc76
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 30 10:53:33 2017 +0100

    Field calendar plugin (#13638)

    * Display localised dateformat and apply user timezone.

    * Set filter type for calendar fields plugin

    * Add a "onAfterDataValidation" event to JModelLegacy::validate()

    * Add new plugin event onAfterDataValidation. Rename onUserBeforeDataValidation to more generic onBeforeDataValidation and deprecate old name.

    * Store validated fields data in plugin for use during save. Removes the need for onContentBeforeSave method

    * Codestyle

    * Add new plugin event onAfterDataValidation. Rename onUserBeforeDataValidation to more generic onBeforeDataValidation and deprecate old name. (reverted from commit 8552ab709879d0e7d1120c6dce9df9222d60fc89)

    * Add a "onAfterDataValidation" event to JModelLegacy::validate() (reverted from commit 1ceeddf6c05c43323490354e4bbdd20563d59a89)

    * Adding the validated $data to onContentBeforeSave and AfterSave event

    * Use the validated data from the onContentAfterSave event

    * Pass $userData to $this->onContentAfterSave method

    * Codestyle

    * Simplify check

    * Adding an option to show/hide the time in the calendar field.
    Will use translated formats for all cases (form and item display)

    * Codestyle

commit 652c17adba0321da2e203536d4b150e03308de5b
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Mon Jan 30 08:49:09 2017 +0000

    Min width edit on toggles (#13698)

commit 3ae65c5068e793742590fbd7eaff1352268a5fe6
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 30 09:19:15 2017 +0100

    Don't return admin menus (#13791)

commit ccac056880f1b29ece107a18065e2c151ed190fa
Author: Vio Cassel <viocassel@users.noreply.github.com>
Date:   Sun Jan 29 22:29:38 2017 +0300

    Update jQuery Autocomplete to 1.3.0 (#13794)

commit d941fc3ae51842e43d757574f4a1b771e7450e1c
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sun Jan 29 12:29:09 2017 -0700

    Use preg_match to ensure just a version check (#13801)

    This method should be much less error prone due to the environment differences when getting the version from the `SELECT version();` query

commit aa1fef3498d14bf0f7025d0b124629b9a7b64dd5
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sun Jan 29 12:28:33 2017 -0700

    Remove unnecessary Env var "dependencies: current" (#13802)

    The related conditionals were removed.

commit 7713190e4d6e07e2144594cc02c8e78e3b6b0152
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Jan 29 12:16:51 2017 -0600

    Add GD to environment

commit 577f3121b55162e00fc0d196d333d46b3db9078b
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Jan 29 12:10:02 2017 -0500

    Add AppVeyor CI support (#13790)

    * Add AppVeyor CI support

    * Add create table statement

    * Conditionally add deprecated mysql extension

    * Close connections after class runs

    * Use PDO connection for PDO MySQL

    * Wrong property name

    * Try alternate way of adding extension

    * Add build badge

    * PGSQL test fixes

commit 80ef2839e310aeb13564e0a498bcf54af0e5e722
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sun Jan 29 09:51:17 2017 -0700

    Fix JToolbarButton unit tests (#13799)

    * Fix JToolbarButton unit tests

    * Fix JToolbarButton unit tests

    * Fix JToolbarButton unit tests

commit 594c50fc29d729bd802c803e794a39dedc37f23c
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Jan 29 17:36:42 2017 +0100

    Revert "Add the option to filter extensions on core or third party" (#13798)

commit a3b412134b1f1949b974c8d2a29a358ba698b432
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sun Jan 29 15:41:14 2017 +0000

    Fix github unit tests (#13797)

commit 7ba2c775130e7230ea2abd4797d98072f5c02817
Author: RolandD <contact@rolandd.com>
Date:   Sun Jan 29 14:56:17 2017 +0100

    Add the option to filter extensions on core or third party (#13795)

commit f72f44777b0189a8f8dfda7f75617203392e86c2
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sat Jan 28 23:36:46 2017 +0000

    Fix doc blocks in router

commit 2474f12135db3174a230c36d6a864816a2757c51
Author: Tony Partridge <admin@xtech.im>
Date:   Sat Jan 28 22:14:39 2017 +0000

    com_finder outputs empty p tag with no description (#13778)

    ### Steps to reproduce the issue
    Set description on article or anything other item to nothing. In my scenario it was using Docman where they are just documents with no content.

    ### Expected result
    html not to be rendered if there isn't a description to render

    ### Actual result
    Renders a <p> html tag with no content, causes excess padding and just a mess on most sites.

    ### System information (as much as possible)
    J3.6.5 / J3.7.0Alpha2.

    ### Additional comments

    this is just a simple change to make the output of search results which have no description inside them to not render excess html.

commit ace741cffe5cbcceee6f8054fcb00aafcd1b601c
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Jan 28 20:27:50 2017 +0100

    Correcting articles manager title display (#13785)

commit 612f6a4505f7fe23d82049447f89c02ab3fb71a9
Merge: 4077cd0 3833aa0
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sat Jan 28 14:54:11 2017 +0000

    Merge branch 'staging' into milestone1

commit 3833aa0671bd056f8e3c4690c3b0e44b7a1e7f25
Author: marrouchi <marrouchi.mohamed@gmail.com>
Date:   Sat Jan 28 11:41:34 2017 +0100

    [Improvement] Backend menu item edit form : Add Itemid to the alias link value (#13776)

    * Add Itemid to the alias link value

    The link field of an alias menu item displays "index.php?Item=" without the actual item id.

    * Remove extra white space

    * CodeSniffer fix : Blank line before new comment

commit 3d3e2d6ca722c1169484460c01091aec1f2b7dcc
Author: Luca Marzo <luca.marzo@live.com>
Date:   Fri Jan 27 22:26:18 2017 +0100

    3.8.x description proposal (#13782)

    I tried to change the wording about the 3.8.x branch.

commit 6f20a8c2d633fa8bd7b1f68fb8d008497ff88082
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Jan 27 22:12:37 2017 +0100

    Remove from global option for the display functionality (#13773)

commit 7dc3d68365a07cdec8c29bf08fdc3ec1298c8606
Merge: 7c1cc9d 14c6fcb
Author: Luca Marzo <luca.marzo@live.com>
Date:   Fri Jan 27 20:55:51 2017 +0100

    Merge pull request #13758 from rdeutz/move_checkout_to_helper

    [com_associations] moved "checked out" check to a helper function

commit 7c1cc9d24a01c72f3e2db8883e0eac4739ba9810
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Fri Jan 27 18:29:13 2017 +0000

    [com_fields] Responsive subform.repeatable-table (#13769)

    * Responsive table subforms

    * RTL support

    * Wrap in media query

    * Final tweaks

    * Query fix

commit 67a60716044106310d86d4b5244c58473b6a04f2
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:28:23 2017 +0100

    Remove semicolon before UNION ALL (#13767)

commit 6be6bd64c907d2b89ea1c6daaa8b0ca29dd7de66
Author: Peter van Westen <info@regularlabs.com>
Date:   Fri Jan 27 19:27:36 2017 +0100

    Fixes: EXTRA_QUERY not added to update record (#13756)

commit 959fc6b1487fa335cb04c7b54e3864e168960118
Author: Roberto Segura <roberto@phproberto.com>
Date:   Fri Jan 27 19:26:47 2017 +0100

    [fix] using core categories system should not be mandatory to use core tag system (#13737)

commit 2d82f4cc2d2577aa42e1e2cbd85c96cb083010c3
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Fri Jan 27 19:24:41 2017 +0100

    Add a parameter to trigger the additional plugin events in the news module (#13703)

commit 2a859660c9718548691ddfb56dd41d212d9c5be1
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Fri Jan 27 19:23:32 2017 +0100

    Add "id" attribute to <input> element (#13610)

commit 1b036c6f7bc4e57ad362ae988ce18ac0b778d8f2
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:22:40 2017 +0100

    Speed up of saving new articles (#13505)

    * Fast table reorder for mysql, postgresql, mssql and sqlite

    * Two versions of selectRowNumber for postgreSQL

commit 7f402748ca66b213cf10f4aabd329696d5b3443f
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Fri Jan 27 19:21:44 2017 +0100

    [com_fields] Custom Fields Media Field if class is empty still class is shown as attribute (#13462)

    * fixes #13400 dont let the class tag alone if no class is set

    * Update imagelist.php

    * Update media.php

    * Update imagelist.php

    * Update imagelist.php

    * Update media.php

    * Update media.php

    * Update imagelist.php

commit bc9dcd36e6228ddca395e02ef553a202b2e21433
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Fri Jan 27 18:18:38 2017 +0000

    [com_contact] review config global default options (#12970)

    * config.xml

    * Update joomla.sql

    * Update joomla.sql

    * Update joomla.sql

    * sincronize with staging

    * fix conflicts

    * fix show_user_custom_fields

commit a3194fa5985575dc517a8d0ff7d2a80c99f15ba6
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:17:44 2017 +0100

    3.7 Improve Cache Controller (#12312)

    * Improve Cache Controller

    * PHPCS fix

commit d7eb53581f616a843fb194c88cfddc2d2ea6a3c7
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:17:13 2017 +0100

    Fix item alias (#11343)

commit d525244dc030dd9dc3cb6c1f703e91eccabf2c63
Author: Klas <klas.berlic@gmail.com>
Date:   Fri Jan 27 14:18:59 2017 +0100

    JUserTest needs to clear JAccess stats for allowed test. ALso JUserTest::testGetGroupsByUser() has expected and actual reversed. (#13777)

commit 14c6fcbf365d0d06d2d75950ba333b287befeed2
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Fri Jan 27 11:21:46 2017 +0100

    fix for checked out items

    If the item at the left is checked out nothing can be done till the item is checked in

commit 5104562e13195562072caac980b0d167e534d29c
Merge: 12257e5 c421382
Author: Luca Marzo <luca.marzo@live.com>
Date:   Thu Jan 26 23:37:06 2017 +0100

    Merge pull request #13759 from Bakual/SQLNotSql

    [com_fields] SQL not Sql

commit 12257e51f9993c6f93167facdaab9790468ecb32
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Thu Jan 26 13:29:43 2017 +0100

    [com_fields] Load language files from components (#13745)

    * Load language files from components

    * Add JPath::clean()

commit e0fbf61c6cd4def712dfbd744d4b104b18bf658e
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Jan 26 13:24:19 2017 +0100

    [com_fields] Default the gallery directory when empty (#13761)

    * Default the gallery directory when empty

    * Fix comment

commit 61189b3188474314761894086a13ef242ebb5efa
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Jan 26 09:48:46 2017 +0100

    [com_associations] Display only site menu types on searchTools (#13763)

    merged on review

commit 8f567003c6c4e72a749882628a60a6994949bd05
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Thu Jan 26 13:28:12 2017 +0530

    Give protected menu items container its own place independent of heading type. (#13749)

    * Give protected menu items container its own place independent of heading type.

    * Added missed client id check for container menu type.

commit c4213828398502f66979290fdff3e4feacc0622d
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Jan 25 22:51:16 2017 +0100

    SQL not Sql

commit 6e67ba17183e165fe126bc0863518bb9b36d154b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 25 22:02:37 2017 +0100

    moved checked our check to a helper function for less gussing

commit f04e15c8c48e272d5cfbd6d0ec19abd7d13afc5b
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 25 18:05:28 2017 +0100

    Remove unneded properties for fields render layout (#13750)

commit b455cf6dd3ae8b69f89a29af295475f0332654bd
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Wed Jan 25 12:13:57 2017 +0000

    Remove max-width on login lang field (#13740)

commit dc7e6157b23feea20d8453562a35d3f65fcfe18a
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Wed Jan 25 13:04:01 2017 +0530

    Fixed issue - backend menu manager checks for important menu items in top level only (#13650)

commit 23704123a22ed6aee5536777f7beb0e7653c74e9
Author: infograf768 <infografjms@gmail.com>
Date:   Wed Jan 25 08:33:37 2017 +0100

    [com_fields] Improving fields dropdown for Translation (#13710)

commit 4635900088efcd3b78640d5fbabb0588d22aa3e2
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 24 13:39:14 2017 +0000

    Revert previous commit

commit 7c25d368c8fdb905798d607263bdb5f23def7cb1
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 24 13:38:56 2017 +0000

    legacy libs

commit d151ef4ce7cb68898bc56eb25d8e888647aea9a9
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Jan 24 09:18:20 2017 +0100

    [com_newsfeeds] - "Filter field"  in News Feeds - list layout (#11899)

    * [com_newsfeed] - "Filter field" parameter in "List News Feeds in a Category"

    fix "Filter field" parameter in "List News Feeds in a Category"  behaviour

    * fix for filter fields and table headings 1/3

    fix for filter fields and table headings 1/3

    * fix filter fields and table headings 2/3

    fix for filter fields and table headings

    * fix for filter fields and table headings 3/3

    fix for filter fields and table headings 3/3

    * removed 2nd layout

    removed 2nd layout as requested

    * removed 2nd layout

    removed 2nd layout

commit 8b0b5129381de26c69f5a01daa3fd0bf9d9a54a2
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Mon Jan 23 22:47:54 2017 +0100

    fix for a failing install (#13727)

commit c437fce02ce86a8506369208b767593125445907
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 19:56:53 2017 +0100

    [com_fields] Remove unneeded fields from com_fields (#13621)

    * Remove unneeded fields from com_fields

    * Remove columns from installation

commit 57277287cef077b694d02eaf28eaba6fc36c3ce5
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Mon Jan 23 18:27:49 2017 +0000

    Use bootstrap tooltips (#13713)

commit 465ff03b6ebfba189fe8992addd295064a7b5ca6
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 13:51:45 2017 +0100

    Another typo

    Thanks @brianteeman

commit e83ac894b290c6dc4a640dd7ebc2147b7d3f2139
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 13:34:55 2017 +0100

    Typo in CONTRIBUTING.md

commit 6e6edfcc01d3eba29022c3a63125038072fb5151
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Jan 23 11:48:10 2017 +0100

    Adding the 3.8.x branche with the definitions by @wilsonge

commit 0e4b98fa9f21de6ed1c3d03a744b9985d1ba708a
Author: jo-sf <jo-sf@users.noreply.github.com>
Date:   Mon Jan 23 10:10:03 2017 +0100

    Always save validated data in the session (#11491)

commit 91e6de5195e208e5105d65b898c4da90a43fdf1e
Author: jo-sf <jo-sf@users.noreply.github.com>
Date:   Sun Jan 22 15:58:32 2017 +0100

    Use type="number" in TCP port configuration fields (#11492)

    * Leave numeric field empty if not required and not set

    * Numeric field might be empty if not required

    * Allow empty value if field is not required

    * Test adapted to code change

    Due to the code change in `libraries/joomla/form/fields/number.php` (set field value to the minimum value only if the field is required and a minimum value is given and there is no value given) the "Min" test needs a change, moreover a new test "MinRequired" wit the former result of the "Min" test was introduced.

    * Forgot to change the expected result

    The code `required aria-required="true"` was missing in the expected result - added.

    * Replace "and" with "&&"

    * Replace "and" with "&&"

    * Replace "and" with "&&"

    * use type=number for port fields in configuration

    * Added clean line before the if

    * smtpport field: hint added

    * LDAP port field: hint added

commit f3dc74bd349e4142e15684bb5600bd1258132f03
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sun Jan 22 15:57:17 2017 +0100

    Changes the contact user groups form field to fieldgroups (#13607)

commit 293d57e531af7b04c561ed0e45875fa4e7f7e912
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 22 15:53:39 2017 +0100

    Fixing ACL inheritance for fields and fieldgroups (#13676)

commit af71e6036e719c2dff7940095fe15d1c2c0affec
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 22 15:52:58 2017 +0100

    Adding proper disabled and readonly properties to the color formfield layouts (#13677)

commit 4370ef7bd630fa88f05bcbce3a1db65265da3f4c
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Sun Jan 22 13:50:26 2017 +0000

    fix IE 11 error (#13685)

commit f38dfcbcfc4174cebb88908e7645b62337a49ff4
Merge: 81127c3 f0d9270
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Jan 22 11:41:16 2017 +0000

    Merge branch 'staging' of github.com:joomla/joomla-cms into staging

commit f0d927051091a6725cc6bfe1e3b5ba13b81b8b4c
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sun Jan 22 12:41:06 2017 +0100

    Fix CS issues introduced with https://github.com/joomla/joomla-cms/pull/13672

commit 81127c3bcdb7b035a1f02c49932c4154b9be8583
Merge: 7d34d41 4d44c25
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Jan 22 11:41:03 2017 +0000

    Merge branch '3.7.x' into staging

commit baef935fa1cf872091f7b708cf87682462749a79
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sun Jan 22 12:33:45 2017 +0100

    Deprecate PSR-0 class loading (#13672)

    * Deprecate PSR-0 class loading

    * Fix typo

    * Add PSR4 support, not just the deprecated message

    * Fix deploy version

    * Throwing exceptions when invalid type is passed

    * Return type specific namespaces

    * Fix the test errors

    * Travis

    * Please travis be nice to me

    * Last try otherwise I go to the bar

    * Small tweaks

    * Update loader.php

commit 6efb945b964850e8f15a6d10db86771bfc5d4b41
Author: Martijn Maandag <martijn@reisverslagen.net>
Date:   Sun Jan 22 11:43:51 2017 +0100

    Update en-GB.com_languages.sys.ini (#13681)

commit f81a1ee697447953e1c25e25b7e9148f0ee30cbd
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Sun Jan 22 17:24:08 2017 +0700

    Clean up legacy controller + model classes (#13679)

    * Clean up JControllerForm

    * Clean up JModelAdmin

    * Clean up JModelList class

commit b222a8dcdacb38efd16968137db49583b965f508
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Jan 21 20:08:59 2017 +0100

    Properly merge tag params (#13643)

    * Properly merge tag params

    * Fixing a typo and yet another bug (wrong parameter read)

commit 7d34d41223bfe41799cd2c08b339e3c382a400d6
Author: Georgios Papadakis <ggppdk@users.noreply.github.com>
Date:   Fri Jan 20 22:24:15 2017 +0200

    Fix SEF plugin breaking HTML while trying to make inline background url paths absolute (#11266)

    * Fix SEF plugin some times breaking HTML while trying to make inline background url paths absolute

    * Added handling of &#34; and &#39;

    * Code style, fix too long line

    * Removed redudant pipe character

    * Update sef.php

commit 339eb9afbc272efa599d379d2c842c66a6519525
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Jan 20 15:10:29 2017 +0100

    [com_fields] Useless strings (#13659)

commit 483abb81381907aadb3834a1d55c7eb41e27f6d7
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Fri Jan 20 17:25:27 2017 +0700

    Clean up JControllerAdmin (#13635)

commit f2d72e5f3a85e7601274df8e938c8b354d43a47b
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Jan 20 11:17:04 2017 +0100

    Correcting Notice when saving Global Configuration (#13612)

    * Correcting Notice

    * simplifying. thanks joomladonation

commit b4b08b2e3a17998b7266c3331f5038d3dc6d2d1b
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Wed Jan 18 21:49:32 2017 +0100

    Fix dev status and move it from beta to dev as we are currently in the dev mode for the beta release

commit cdeee8bf59a2bc858799b2a8489eaeebcff9732b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 21:29:06 2017 +0100

    bump version for development

commit 71a1c5ec9c13bf6b6c98acd973c8324f0c3e9487
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 20:25:12 2017 +0100

    prepare 3.7.0-alpha2 release

commit c9f4ce5d30e2b0d34dae39f5b21d854400eb06fb
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 15:24:44 2017 +0100

    update for menu (#13619)

commit a9f872e543bb549d429805007e7f11894a726362
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 18 15:22:26 2017 +0100

    [com_fields] Inherit url scheme restriction from fields plugin (#13554)

    * Type safe null check for plugin inheritance parameter

    * Remove default scheme to allow any valid scheme

    * Revert changes from conflict

commit 382766735c251377185352b8955acbd15c047bf7
Author: Jelle Kok <schumacher1986@hotmail.com>
Date:   Wed Jan 18 15:11:36 2017 +0100

    Fix CS  on com_admin script (#13636)

    * Fix CS  on com_admin script

    * revert to 1.x changes

commit 100c5a4e49f278af3ceae13695014fbe7d2ee2f5
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Jan 18 12:01:50 2017 +0000

    Fix typo

commit 853f9af7a85845ab12fbee74a98c22e0f94cb70b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 12:55:04 2017 +0100

    prepare update script for 3.7

    Added pre and postfight functions to handle installation of a menu item

commit 1d177d5b144cb299ff33c690ba29d7bb19be615a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Wed Jan 18 12:33:21 2017 +0100

    [com_fields]- mssql installation fieldsplugin (#13626)

    * [plugins] - fields mssql installation

    plugins  fields mssql installation #13616

    * [com_fields] - mssql updates #13319

    [com_fields] - mssql updates #13319

    * remove duplicate extension id 462 for mssql

    removed id 462 to avoid duplicated id with #13626

    cause now fields are managed with plugins

    Pull Request for Issue #13616 (comment)

commit 38ae97ea48e217201ebcfa3142d73ded595c8634
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 12:26:32 2017 +0100

    fixed an obvius wrong use of $this-parent

commit b9d0d32defe49a890b0130432c4e08151c4b34aa
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Jan 18 09:06:26 2017 +0000

    Fix typo (Thanks Dario)

commit 0daf6f75207c1083cfcf98e2849296a28fe19c02
Author: infograf768 <infografjms@gmail.com>
Date:   Tue Jan 17 18:56:53 2017 +0100

    Updating install.xml en-GB administrator (#13623)

commit 77af51f7391f4d7f50eccbe622d81af084f0ebc8
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Tue Jan 17 14:47:12 2017 +0100

    Routing: Remove IDs from tags URLs, use menu item of tags view as default for tag view (#11166)

    * Remove id from tags, use tags list menu item as default for tag

    * Code style, remove useless code, feature: first Itemid for tags view, second Itemid for default tag view

commit 326036f0bdc5d163d30a2f31284da86444655432
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Jan 17 13:59:34 2017 +0100

    sync admin menu menutype (#13618)

commit f3780c5f2b3d4dc1b897dec96a9ae6525df6b4ee
Author: Raghav Jajodia <jajodia.raghav@gmail.com>
Date:   Tue Jan 17 18:29:01 2017 +0530

    [com_fields] Improved description in the "description" tooltip Fixes #13392 (#13557)

    * Fixes #13195: Added margin bottom to sidebar menu

    * Fixes #13392: Changed description field tooltip

    * Fixes #13392: Changed description field tooltip

    * Fixes #13392: Changed description field tooltip

commit 56ad6aa5779d15953b35ccd058a8c9344745c58a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Jan 17 13:42:50 2017 +0100

    [com_associations] - mssql updates (#13617)

    the missed mssql updates for #13537

commit 4a5ee882cd55948782137e7ca845a99a23ff9581
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Jan 17 12:46:25 2017 +0100

    Adding the Multilanguage Associations Manager (#13537)

    * Merge Associations rewrite

    * updated searchtool with the new way

    * udpated edit view title

    * added contact associationshelper class

    * temp fix

    * fix for category filter

    * added newsfeeds associations helper

    * CAPS for params

    * lang tag and added a helper function

    * added land tags

    * code style fix

    * better title in associations view

    * better title

    * use the usual naming

    * fix language tag, thanks to brian teeman and twitter :-)

    * initial review

    * on simple change

    * on simple change 2

    * simple

    * some more helper changes

    * Update associations.php

    * Update associations.php

    * app isn’t set a model property

    * correct return value

    * simplify code adn use helper method

    * use typename directly

    * changed the tooltip position

    * Correct menu helper

    * remove unreacable code

    * correcting checked_out

    * com_menus

    * fixed not supportted message

    * installation

    * fix menu install

    * Spaces -> tabs

commit 40cf34d4c04ff4785d16d4a0e41af420dc5a8356
Author: Nick Savov <nicksavov@users.noreply.github.com>
Date:   Tue Jan 17 05:42:23 2017 -0600

    Add SMS to External URL menu item type (#13615)

    Allows data like sms://+15555555555 to be used instead of getting "Save Not Permitted"

commit 4e156fa0ad46cfcbc089311a66fe8b99d21b49eb
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Tue Jan 17 16:11:40 2017 +0530

    Menu manager for Joomla Backend Menu (#13036)

    * Added client id column to menu_type table.
    Allow creating and editing of "menutype" records with client_id = 1
    Add client_id filters in menu and menu items list views
    Sync menu type filter and client_id filter allowing only menu type in the URL query parameter (B/C)
    Both Lists now also filtered by client id.
    Client id selection updates the menu type list options to show choices only for that client id

    TBD:
    Reserved menu types: main & menu

    * In modal list view we currently hide client_id filter and show only site menu types, will be updated once we have more clear vision.
    Menu type assignment to backend mod_menu config from both menu manager and module manager. Though that is not functional within the module …
dneukirchen added a commit to joomla-projects/media-manager-improvement that referenced this pull request Feb 18, 2017
commit 85d671de23656d924f9c826000dbb407de835f19
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sat Feb 18 11:21:05 2017 +0100

    More file information in the file adapter (#81)

    * Return the path information

    * More file information

commit eefa6be363671bb103b0d3062ea695cde83feb1f
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Feb 16 21:28:09 2017 +0100

    Add filter option in API (#80)

    * Add filter option

    * Remove void return types

    * Remove void return types

commit f9a8209d088fd0a26fdb7a192276074ed4979216
Merge: 612f6a4 8af1a04
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Feb 16 20:00:28 2017 +0100

    Merge branch 'staging' into milestone1

    Conflicts:
    	README.md

commit 8af1a04f4d15f081ae0df651e0bb213a9ed573e4
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Thu Feb 16 15:12:23 2017 +0100

    Workaround for missing SORT_NATURAL flag on php 5.3 (#14079)

commit 55cfaa621dd63824f0b0cd609f3b7f27d696c25b
Author: Simon Asika <asika32764@gmail.com>
Date:   Thu Feb 16 21:21:24 2017 +0800

    Back to use require_once (#14104)

commit 3315a22bf360714b8ab976e95dcdaf6264ccaec3
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 16 12:43:49 2017 +0100

    Updating/normalising some installation lang files (#14101)

    * Updating/normalising some installation lang files

    * oops

    * typo

    * back to DE-CH-AT as it is the <nativeName> which is displayed in the
    dropdown

commit 42df32c28905262907baef9ef42021cd00a02213
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 16 09:01:36 2017 +0100

    [imp] multilangstatus module: adding a warning (#14083)

    * [imp] multilangstatus module: adding a warning

    * Move since tag to __DEPLOY_VERSION__ ;)

    * Make drone happy :smile:

    * Using q instead of quote. Taking off the else. Thanks Yvesh

commit 4580eb84c5ede0a47379604b9608bb5bc119618b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Thu Feb 16 00:10:48 2017 +0100

    remove javascript tests (#14067)

commit a28e5f163827ea525e6b40fcde8a1442e9d6293b
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Wed Feb 15 20:13:36 2017 +0100

    [com_tags] - remove warning (#14026)

    remove warning

commit 47307204828aeafd73d1e5b730472449892d2118
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Wed Feb 15 20:12:55 2017 +0100

    Alpha order the new language strings for com_contact and com_content (#14065)

    * com_contact ini alpha order

    * alpher order the new strings.

    * alpher order the strings

commit 66c2163ed7c8622ae42c6023161c4c47b0419e6a
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Wed Feb 15 11:48:40 2017 -0700

    fix appveyor due to changes in chocolatey php (#14097)

    * fix appveyor due to changes in chocolatey php

    * one too many quotes

commit b50f96ee1967f238e5baa60467e8aa6f41f4cd14
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Feb 15 16:09:25 2017 +0100

    Updated calendar language files

commit dd0491df44ec9521e96fe6af5930fbf166603bfe
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Feb 15 15:15:50 2017 +0100

    Updated installation language files

commit c34b0f77ca7f25906677aa6bbf3d0941de8eca1f
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Wed Feb 15 13:39:53 2017 +0100

    SQL optimise for taxonomy maps (#13854)

commit f022ae3f8cbe8f5e6e4a797189ddb46129375e1f
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Wed Feb 15 01:55:50 2017 +0100

    Add missing tests for quoteName (#13860)

commit cbae8f4c41891cdb86ba2d807ae4e9bb0d2650e0
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Feb 14 17:57:11 2017 +0100

    Move PHPCS tests from travis to drone (#14066)

    * move PHPCS test to drone

    * typo

commit f3c49e42e2a455247898fc66e26d8f202844ac08
Author: Michael Babker <mbabker@flbab.com>
Date:   Tue Feb 14 11:19:38 2017 -0500

    Use the Framework's LDAP client (#13938)

commit 73f9aa1e45aeb7f1380da5b6a7c946f839cfba31
Author: Michael Babker <mbabker@flbab.com>
Date:   Tue Feb 14 10:44:56 2017 -0500

    Fix issue with callback cache controller hashing Closures (#14057)

    * Fix issue with callback cache controller hashing Closures

    * Wrap in array

commit 9bc0f1965fd9d3a445b1d2818bbfa554bb014ef4
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Tue Feb 14 15:21:24 2017 +0100

    language strings should be uppercase (#14064)

commit d774932cdae09a6aa4a7185401c27092eb63944a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Feb 14 14:18:27 2017 +0100

    sql - no more need of findInSet() (#14020)

    * sql - no more need of findInSet()

    remove findInSet()

    * sql - remove findInSet()

    remove findInSet()

    * sql - remove findInSet()

    remove findInSet()

    * sql - remove findInSet()

    remove findInSet()

    * cs

    removed blank line

commit 21ef13aa716a638dd679f61e5d062f570f8659bd
Author: Mohamed Marrouchi <marrouchi.mohamed@gmail.com>
Date:   Tue Feb 14 14:17:43 2017 +0100

    [bug] Fix localPath in gallery plugin. Closes #14056 (#14061)

    * [bug] Fix localPath in gallery plugin. Closes #14056

    * Using JPath::clean intead of DIRECTORY_SEPARATOR

commit ed362d8b6f85f0ff57ed9e57ea5103d91822b8aa
Author: Michael Babker <mbabker@flbab.com>
Date:   Mon Feb 13 18:38:39 2017 -0500

    Simplify catches for cache exceptions (#14045)

commit 8e81979e973acc1ef68dcbd90c2147c0321e22e7
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Tue Feb 14 00:38:05 2017 +0100

    Use $ismoo instend of calling jinput (#14047)

    * Update modal.php

    * Thanks @joomdonation

    * oops :smile:

commit 426c0ea9d2429f2f6c1c100ca998643099d9f030
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Mon Feb 13 21:32:23 2017 +0100

    Setting search threshold to 0 in global configuration (#12988)

    * Setting search threshold to 0

    * Set search threshold for selects with custom value to 0

commit d996db93faaea45c23caef5a619f9854c6e65c71
Author: David Jardin <d.jardin@djumla.de>
Date:   Mon Feb 13 19:17:50 2017 +0100

    Don't display feed if category id missing or non existent (#13977)

commit a26226b11578187bcb2c26d4f2fe91a2844caf95
Author: bertmert <bertmert@users.noreply.github.com>
Date:   Mon Feb 13 19:17:21 2017 +0100

    Remove nl2br where not needed (#14025)

commit 2c5c9337c59af47297094e81bbe00b82b290c2fe
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Feb 13 19:15:35 2017 +0100

    add a bit more clean lines to the PR template. (#14054)

commit 5e329148f36315e043939e03621eb2f6af2b870d
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Mon Feb 13 14:03:43 2017 +0000

    Add container-fluid to com_template modals (#14028)

commit 4f856518988426b1ac543cc8e11f043b6d084231
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Feb 13 15:02:47 2017 +0100

    Alpha order the language strings (#14048)

commit 63fecc504d35112e1bb5a40de0cddb3d1831c551
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Feb 13 11:36:17 2017 +0100

    fixes the testing sample data for newsfeeds (#14032)

commit 95cb94442c72050a3ac1b96a084fb2970fc6f9ec
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sun Feb 12 18:15:39 2017 +0000

    [Protostar] Equal field widths in mod_login (#14027)

    * Equal field widths in mod_login

    * Add space between header and form

    * Static widths

commit f484aae5f816cecb9e508892c8aec03be4473862
Author: infograf768 <infografjms@gmail.com>
Date:   Sun Feb 12 19:14:55 2017 +0100

    Simplify PR 13961 (#14035)

commit 14bfccf23d0e38d08bbda63cd719fc2358a5e5d2
Author: Hannes Papenberg <info@joomlager.de>
Date:   Sun Feb 12 17:22:37 2017 +0100

    Fixing URLs for orphaned articles (#14031)

commit e7bd3972854fe00aa6677adf421aa40e36706e2c
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 17:02:45 2017 +0100

    add drone ci badge to readme

commit 94638535ef75d925516afeefa9e434fcb9cfd204
Author: bertmert <bertmert@users.noreply.github.com>
Date:   Sun Feb 12 16:51:19 2017 +0100

    Remove useless check of contact_email_copy (#14029)

commit 67f2dd4fc0a75dbb200b86b7464bd948efd3cc85
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Sun Feb 12 17:50:54 2017 +0200

    Update tinyMCE to 4.5.3 (#14024)

    * update tinyMCE to 4.5.3

    * update creationDate to 2005-2017

commit e1581bc41d053ffb4b6f5f5d2d32658bcfc53cdf
Author: Benjamin Trenkle <bembelimen@users.noreply.github.com>
Date:   Sun Feb 12 16:50:41 2017 +0100

    Allow to clear messages after receiving them (#13975)

    * Allow to clear messages after receiving them

    * Fix spaces after variable name

commit f75801b7fb1d3ca347034399af7a9e250686b0a1
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 12 16:50:03 2017 +0100

    Catch date format errors (#13974)

commit 38eb5ae41e34c2ae232f85963480648e90467d7b
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sun Feb 12 15:49:39 2017 +0000

    [Isis] Template menu assignment columns (#13971)

    * Apply column-count to template menu assign

    * Responsive

commit a44d4823ec83c3f3ca76a6293fab70f7b5d4b3e7
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Mon Feb 13 00:48:39 2017 +0900

    CodeMirror 5.23.0 (#13958)

    * CodeMirror 5.23.0

    * Update codemirror.xml

commit 7d6e08f1ac4c5172f8ae3c649c9aca6bfec797a7
Author: Fedir Zinchuk <getthesite@gmail.com>
Date:   Sun Feb 12 17:47:23 2017 +0200

    TinyMCE builder: make sure the value exist, and cache the layout data (#13901)

commit 2705b7b54e9ea8865f321a2173fc304d879be0f8
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 15:56:10 2017 +0100

    add phpcs to compare it with travis

commit a240a22e0e1d1ba6f18651b779a0fce6e197acfd
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 14:32:55 2017 +0100

    set clone deph

commit 63120ec8866720179cb9c321407676582695506c
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Feb 12 11:40:56 2017 +0100

    changed for drone0.5

commit 06d4b43408f10c7c51f44c35f63c21c441f10b38
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Sun Feb 12 07:49:48 2017 +0900

    New font for CodeMirror: Overpass Mono (#13957)

commit 94d94314a38a10ba8bc11bc3889fcd38a5013196
Author: Michael Babker <mbabker@flbab.com>
Date:   Sat Feb 11 17:47:44 2017 -0500

    Mark Event and Session classes deprecated (#14030)

commit 30218aee3422e55082b90e9403cdd2e003326265
Author: Michael Babker <mbabker@flbab.com>
Date:   Sat Feb 11 13:48:53 2017 -0500

    Make login page query resilient to cache error (#13525)

commit 040d4e7370ee29894d9a6635e74b8ebdce94ca28
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 11 19:47:25 2017 +0100

    Fixing contact fields (#14015)

    * Fixing contact fields

    * Codestyle

commit 0fa667b817e58a027dd9c507957f23b306b35bdd
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 11 19:45:36 2017 +0100

    Solving com_search Notice (#13961)

commit 9f7ca0e91b51d48e18747ec404aae51e8f2d43e4
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sat Feb 11 19:43:20 2017 +0100

    [Installation] Fix MySQL sample data for #__menu (#13979)

    * fix MySQL Sample Data

    * fixed thanks @infograf768

commit c4f54dfa08f85333d6e67abf8984bd1470b23708
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 11 16:46:14 2017 +0100

    More changes to properly accommodate en-CA

commit c7dc2185e2ab24c783356c2638640faed4a66f77
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 11 16:42:42 2017 +0100

    "en-CA" is Canada, not Australia.
    Fixes #14023

commit 798e7f512cb293711ea5159827d8848cb1dbdceb
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Sat Feb 11 12:37:52 2017 +0100

    [com_users] User Profile - remove redundant event trigger onContentPrepareData, read data from session after validation fails (#9325)

commit c9f3f68e565317fffd0d3b0c83b501d8cfcd4bc4
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 11 12:25:06 2017 +0100

    Multilanguage: Frontend field tags filtering (#14006)

commit 1db47ea7fd7c58979a86798445d27300f6021150
Author: Frank Mayer <frank@frankmayer.net>
Date:   Fri Feb 10 18:24:04 2017 +0200

    [administrator/(rest)] Fix alignment for multiline arrays (#13442)

    * [administrator/(rest)] Fix alignment for arrays

    * Add comma in last line of multi-line array declarations

commit 88f80b7edd25312dd4de38b4a4453afbd51dbe0d
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Fri Feb 10 01:08:10 2017 +0000

    Post Install Messages (#13992)

commit 3e50ec9a0c7873158def383e123819864ae92b72
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Thu Feb 9 18:01:54 2017 +0000

    [Isis] Toolbar margin-bottom tweak (#13989)

    * Toolbar margin-bottom tweak

    * Match gutter width

commit 745a6068d9ba2af69aefd30b148c32d45915b834
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Thu Feb 9 10:58:43 2017 -0700

    Update SQL DLLs to release 4.1.6 for >php 7 (#13995)

    * Update SQL DLLs to release 4.1.6 for >php 7

    - update SQL DLLs to release 4.1.6 for >php 7
    - remove shallow clone, this can cause issues depending on what's excluded in the .gitignore file
    - simplify getting the SQL dlls with the new PECL download location
    - simplify getting the wincache dlls from PECL download locations

    * remove set for $vars

    * quote var strings

    * env is not needed for some vars

    * quote more vars

    * revert the php 5.6 DLL changes

    also fix the dlls for versions with Add-Content

    * remove dead conditions

    * fix typo

    * wincache version is conditional

    * use -y switch with 7z commands

commit cd3fe9a4fc7b450a250d88f2ebbf03bae3c3b04e
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Thu Feb 9 02:58:01 2017 -0700

    Add WinCache to AppVeyor build (#13810)

    * try adding wincache

    * fix enable wincache

    * opcode cache portion of WinCache is now deprecated

    Since the Zend Opcache extension is now in the core PHP product, the WinCache opcode cache is disabled by default.  The opcode cache portion of WinCache is now deprecated, and will be removed in a future release of the WinCache extension.

    * try forcing session.save_handler="files"

    * what modules are registered with php

    * look at the full php info

    * add curl, APCu, memcache, redis

    * apcu is stalling at unzip check without for moment

    * redis-64 is erroring

    * try enabling wincache file and cli

    * Get-ChildItem -Path

    are the files even there?

    * redis install randomly freezes

    * need to use NTS version of DLL

    * no memcache server installed, remove driver

    * remove redis and php -m

    redis has issues and is tested on travis so lets just test wincache here

commit 5770cc6eb8bfda275c4fd7a4c8ba864692b028b9
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Wed Feb 8 15:39:11 2017 +0100

    We are in dev state for beta 3

commit 9800df16ce59042ddaa4d44ede2be11f6dc0e7d0
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Feb 8 15:36:50 2017 +0100

    set dev state after beta2 release

commit adee785d3623c1b3de59d0962d4cc1b67f2212a6
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Feb 8 15:13:21 2017 +0100

    Prepare Release 3.7.0-beta2

commit 0544f37a88e699d4e221ac32e3ff6956bc379e13
Author: Michael Babker <mbabker@flbab.com>
Date:   Wed Feb 8 09:07:17 2017 -0500

    Make JControllerLegacy::display() resilient to cache errors (#13918)

commit 05a2119d50a4b9c4c2b3f7c0ea4122d9067527b3
Author: Michael Babker <mbabker@flbab.com>
Date:   Wed Feb 8 09:06:54 2017 -0500

    Make JModelLegacy::cleanCache() resilient to cache errors (#13917)

commit 21f970132c518858f83cdbcef634909b33099847
Author: Michael Babker <mbabker@flbab.com>
Date:   Wed Feb 8 09:06:13 2017 -0500

    Make JComponentHelper resilient to cache errors (#13916)

commit 4c98343e235e0dc56c7b6297c3a0e0dc5da945a9
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Feb 8 15:05:13 2017 +0100

    [com_fields] Migrate category view show_user_custom_fields to fieldgroups (#13806)

    * Migrate category view show_user_custom_fields to fieldgroups

    * Adapt form.xml

commit ac895c6080a187ae4ab608182d081b1cb6b51e54
Author: Frank Mayer <frank@frankmayer.net>
Date:   Wed Feb 8 16:04:37 2017 +0200

    Make columns centered, where it makes sense (in one file only for now, to get a discussion going) (#13493)

    * - Make columns centered, where it makes sense and looks nicer than left-aligned ones. For example version columns, single or maximum two-word columns
    - Also fix CS on that file

    * fix spaces to tabs

commit f0c2d8362bc75ea9ddc016f5c15bad466c1dcd33
Author: James Garrett <atma_the_dog@hotmail.com>
Date:   Thu Feb 9 01:03:50 2017 +1100

    Fix to Sub Form Field Frontend Save Deleted and Reordered Params (#12007)

    * Update module.php

    https://github.com/joomla/joomla-cms/issues/12006

    * Update module.php

    * i have just fixed just a very small CS issue.

commit 72c59e3f14b514fd778b2a204c218f54f2331118
Author: Georgios Papadakis <ggppdk@users.noreply.github.com>
Date:   Wed Feb 8 16:02:43 2017 +0200

    Prevent misuse of show_noauth param when fulltext is empty (#11290)

    * Prevent misuse of show_noauth param when fulltext is empty

    * Update code blocks

    * Remove spaces

    * Fixed code styling

commit 2af4b4dbbca7077851c0f94b47b8fe7a60a41932
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Wed Feb 8 10:34:25 2017 +0100

    [AppVeyor] Unit tests fix for file cache (#13941)

    * Attempt to fix cache error on appveyor

    * flock() uses mandatory locking instead of advisory locking on Windows

    * Use file descriptor to read file if the file is locked

    * Close file if the file was not locked

    * Check whether all data has been saved

commit 75e34f075bfd6b761b1b62dd908decc3f1b65c02
Author: Peter van Westen <info@regularlabs.com>
Date:   Wed Feb 8 10:33:36 2017 +0100

    Fixes incorrect background colour of icons in coloured toolbar buttons (#13963)

    * Fixes styling issues of icons in toolbar buttons

    ...coming soon...

    * Update template-rtl.css

    * Update template.less

commit 16de2940c63267e311055bec79a4732d5bc77b80
Author: Peter van Westen <info@regularlabs.com>
Date:   Wed Feb 8 10:33:05 2017 +0100

    Fixes issue with login message in incorrect language (#13965)

    * Fixes issue with login message in incorrect language

    This fixes the issue with the login message not being displayed in selected language (admin).

    You can easily test this by trying to log in (in the Administrator) on a multilingual site - using an incorrect password.
    For instance, on a setup that has English (default) and Arabic installed.

    After trying to log in with Arabic selected as login language, you will get a failed-login message in English.
    If you then se the language selection to English and log in again with an incorrect password, you see the message in Arabic.
    Not good!

    This PR fixes this issue and sets the correct language (based ion what you have selected in the login form) before that error message is generated.

    * Update administrator.php

commit 8cfa2dea9c7cb6944e6042c6c7663a4e43e5e7ab
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Tue Feb 7 18:42:47 2017 +0100

    Proxy call for fields modal to backend files (#13951)

    * Proxy call for fields modal to backend files

    * Codestyle

commit fa610bb0adc4292b9d2bc10679f474e80b7a52ea
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Mon Feb 6 09:40:09 2017 +0100

    fix path and filenames in tests

commit 647c86b10a794c3818ae73251cb07332b48cf44e
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Mon Feb 6 09:28:42 2017 +0100

    this test fails to often and doesn’t makes sense (#13859)

commit 29ed4d96a5fcd783be51a08fc7e547f8527638f3
Author: Benjamin Trenkle <bembelimen@users.noreply.github.com>
Date:   Mon Feb 6 09:01:50 2017 +0100

    Improve new menu field (#13085)

    * Improve new menu field

    * Add magic getter/setter

    * Add __DEPLOY_VERSION__ parameter

commit 152859c84ae33e3ca7d7d8d929b8b2a93bdb4db5
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sun Feb 5 23:26:15 2017 +0000

    Smart search select field margin (#13927)

commit ed6fe013e59b3e7a241d397a810834afd8ba7ab3
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Mon Feb 6 00:25:13 2017 +0100

    Calendar fixes (#13181)

    * fixes

    * tests

    * Some styling - RTL

    * Some styling

commit e31d41c3c62d282b371be13b6b7a44dfc46394ce
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 5 23:37:55 2017 +0100

    Read header_size to determine header size (#13221)

commit 24f64cc47fdfc2562b95ac7f82b9f1cbbfabcb18
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Sun Feb 5 22:36:16 2017 +0000

    [ACL] [new/edit category] Remove categoryedit field check of - No parent - option (#12821)

    * Update categoryedit.php

    * Update categoryedit.php

    * Update categoryedit.php

    * Update categoryedit.php

commit 80b181f59fd55dd5342923079fda6329898020ea
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Feb 5 22:30:29 2017 +0000

    Amend deprecation messages

commit c5dfb6c7c0c66fd672c604539cb854d27edd9975
Author: Elijah Madden <okonomiyaki3000@gmail.com>
Date:   Mon Feb 6 07:26:43 2017 +0900

    Use the JHtml::_ function instead of calling functions directly. (#12546)

    * Use the JHtml::_ function instead of calling functions directly.

    * display the JHtml functions directly in comments

    * A line was too long.

commit df63222948423b2be415684e020eb36e73ce2f95
Author: Frank Mayer <frank@frankmayer.net>
Date:   Mon Feb 6 00:26:07 2017 +0200

    [com_search] Refactoring + fixing results-highlighting (#13498)

    * Refactoring + fixing results highlighting, where positioning of highlight was off sometimes when special characters were used.
    Also fixed css sitewide to display highlight more naturally.

    * Fix CS.

commit 5de1c3440f2e1b97a392832d55ae12e7d3450045
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Sun Feb 5 22:23:40 2017 +0000

    [com_content] Add some missing useglobal (#12918)

    * some missing useglobal and hardcoded default

    * Update default.xml

commit b56d4cee4b2b72185caf937ab0b4bc540270aebf
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 5 23:21:38 2017 +0100

    Merge list field options using Registry->merge (#13578)

commit 41df21bfefadbcc857b2039400c1fd15e6f79cbb
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Feb 5 17:19:37 2017 -0500

    Deprecate OAuth client classes (#13937)

commit f1221bbb55c2437a5d453a1031bcc934fe95a5b6
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Sun Feb 5 20:40:58 2017 +0100

    Mssql - fix escape() and add support for unicode chars (#13585)

    * Mssql - save in correct way '\<CR><LF>', '\<LF>' and fix $db->escape()

    See https://support.microsoft.com/en-us/kb/164291

    * Add support for unicode/nchar characters

    * Fix tests

commit 64b41e708fb23b6acf5cd3543d5205af2fa05a6e
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Feb 5 20:27:37 2017 +0100

    Adding gaelic calendar file

commit 40506f1bce3b8315606f3d1466f6dca2bc02443b
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sun Feb 5 18:22:34 2017 +0000

    Add some typehints and a missing since tag (#13934)

commit 35ee6bac86f4bab2de2065b9a29a7afefc507d55
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Feb 5 12:37:52 2017 -0500

    Create an Exception for a missing component (#13919)

    * Create an Exception for a missing component

    * Default 404 code

commit fc5a7fb2ce070bb66ef9f92611e40446346bbd75
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Feb 5 12:03:49 2017 -0500

    Admin app - catch exceptions thrown by JLog::add() (#13504)

commit 6833955cfbc0f1914751ab4c110b9b4e332eee3b
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sun Feb 5 17:23:19 2017 +0200

    Simplify some ternary operations using elvis operator and remove unnecessary parentheses in libraries/cms (#13234)

    * Simplify some ternary operations using elvis operator and remove unnecessary parentheses

    * CS Fix

    * Revert commit in wrong branch

commit b828e00f10ec1b0bf1b1141fa5fa6a37a1aaee14
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sun Feb 5 17:18:10 2017 +0200

    Remove one-time-use variables in libraries/cms (#13236)

commit 35d04157e1bba494b9fae5d4e88336a010c9d183
Author: infograf768 <infografjms@gmail.com>
Date:   Sun Feb 5 15:33:37 2017 +0100

    [com_fields plugins] Clarifying some plugins descriptions (#13928)

commit aef1f2453e57cf666fbab06e4afc1fd0a02eacc8
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sun Feb 5 14:29:01 2017 +0200

    Optimized FinderIndexerHelper->stem() method  (#13480)

    * Optimized FinderIndexerHelper->stem() method now being 5x faster getting the base word of a token

    * Fixed property comment and CS

commit 1387896d1d77fc84001a95e6e67c91b4904047fd
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sun Feb 5 09:59:49 2017 +0100

    move the warning to a info (#13903)

    merged on review

commit 2598241eefc069f087bbd6a972148aea3fa62563
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sat Feb 4 23:13:23 2017 +0100

    remove the dublicate comment line in the scriptphp (#13924)

commit e5dad1786a5e640b4a7768a448c6b8f2cc430325
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sat Feb 4 22:55:46 2017 +0100

    snyc install sql #__menu (#13894)

commit a7933d4b0bed6db0448e322e3dc118722b10fae4
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sat Feb 4 22:44:58 2017 +0100

    Catch SQL exception in SQL form field (#13882)

    * Catch SQL exception in SQL form field

    * add missing clean line

commit e14bb91bb1c0cdc0b957be7316aab15bb3c67a59
Author: Frank Mayer <frank@frankmayer.net>
Date:   Sat Feb 4 23:44:19 2017 +0200

    Replace StringHelper::trim() call with simple trim() call when not utf8 characters are to be trimmed. Saves a few cycles in indexing. (#13478)

commit 032708762cc6a607efd75a1b8316aefcc90fec6c
Author: Tony Partridge <admin@xtech.im>
Date:   Sat Feb 4 21:32:11 2017 +0000

    Convert the system Redirect plugin to use lowercase urls at all times… (#13853)

    * Convert the system Redirect plugin to use lowercase urls at all times for redirecting.

    * Removed an un-needed additional strtolower

    * Changed to use StringHelper strtolower since this function also support utf8_ safe.

commit 98ff75220fbb55ee0028628f7e0c07a4d7825bc6
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sat Feb 4 14:22:25 2017 -0700

    Update phpass to 0.4 (#13858)

    Note: this does not fix the php4 constructor

commit dbcd586c4dbc07ded1853721e150353756c327fb
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 22:11:56 2017 +0100

    Remove the plugintag if ID is invalid (#13898)

commit b0228b943f48102b6b040f866198b7e77b119b80
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 22:08:06 2017 +0100

    Adjusting version attribute in language pack manifest

commit ae6f0fede33b9b5a6ea9aa516913c0759debca1e
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 22:00:59 2017 +0100

    Editor Plugin to insert the new {field ID} and {fieldgroup ID} tags (#13875)

    * Add field editor plugin

    * Adding SQL files

    * Adding new plugin to install.xml and script.php

commit 4593736a172e0c3fa25ef6bc7d52c2a726c78458
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 21:57:30 2017 +0100

    Updating version attribute to 3.7 in english language XML files

commit 47a5a2adc5a033e824078452cdc625ebcc29ca2a
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sat Feb 4 21:46:51 2017 +0100

    needed for nightly builds

commit e244b9314328bfbe6b9dcea7fb852e1f45b1864d
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Feb 4 21:44:49 2017 +0100

    Fixing language file headers

commit d2dd941a4a07a4ee3d007516d9e1c7243430a49f
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Sat Feb 4 21:38:33 2017 +0100

    Remove uslep(100) from first call of cache->get in file handler (#10767)

    * Add test for cache lock method

    * [cache] File storage - create file before flock

    * Flock function release lock if resorce file is destroyed/unset

commit 7e0b02a0e9e90c292bf2c0373b6e6823f400a1ef
Author: bertmert <bertmert@users.noreply.github.com>
Date:   Sat Feb 4 21:37:58 2017 +0100

    "New User Registration Group" always visible (#13822)

commit 643bd6c6e20d40379138eaa452acf3e16e09f681
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 4 21:36:10 2017 +0100

    New TinyMCE: Setting image advanced tab as ON per default (#13897)

commit db881cb64be37c547f1e8732d0d98c68aaf375c7
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 4 20:03:48 2017 +0100

    [admin_menus] Taking off useless columns in menu items manager (#13884)

commit 5c9df7b1eff26a99740a4cc84978554a151956a2
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Feb 4 18:49:28 2017 +0100

    [admin-menus] Allows translation of menu items in parent and ordering dropdowns (#13889)

    * [admin-menus] Allows translation of menu items in parent and ordering
    dropdowns

    * oops

    * other oops

    * cs

commit df959ba93501f7d15e7233a6a499a9baaed79851
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Sat Feb 4 18:46:58 2017 +0100

    [com_finder] - cast to char before use LIKE operator  on datetime/tim… (#12348)

    * [com-finder] - cast to char before use LIKE operator  on datetime/timestamp field

    A timestamp/datetime field CANNOT be used with LIKE we need to cast to char before in standard SQL

    * used $query->castAsChar()

    used $query->castAsChar()

commit 38b00ba7d128d0f517d8e3d577daa7beb53a9909
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Sat Feb 4 17:45:34 2017 +0000

    Flush tables in cpanel wells (#13890)

commit 04adba5362f142dd54170a8ee403037bf8731d3d
Author: Michael Babker <mbabker@flbab.com>
Date:   Sat Feb 4 12:44:28 2017 -0500

    JMenuSite::load() should try to work even if cache fails (#13524)

    * JMenuSite::load() should try to work even if cache fails

    * Add an interface for cache exceptions

commit 1735290b7552aa6208aadfe7ed5ab5a82237b678
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Feb 3 11:44:00 2017 +0100

    Updating en-GB install.xml for the new plugin (#13881)

commit e390415097348259ea7413fac5c8dae4d61d316a
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Fri Feb 3 16:09:58 2017 +0530

    Admin menu: batch process move to submenu impossible [FIX] (#13649)

    * Fixes #13632: Admin menu: batch process move to submenu impossible

    * Db stub update

    * Do not show language and access in batch operation

commit 945b40c93e7bc53837c5b282e424df09ab5f1a6d
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Fri Feb 3 11:35:15 2017 +0100

    skip menu test

commit bbe1bff9b5af70a66ef05107990196dc59ccfc99
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Fri Feb 3 11:27:57 2017 +0100

    revert change from #13830 because test are falling

commit 8f946fed7a5d17d9498d9450a15217c8fde78c66
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Feb 3 10:00:55 2017 +0100

    Update script.php for the new content plugin (#13883)

commit 28a8ce6be669ed7ac62eb8c449d87860213d1c12
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Thu Feb 2 20:53:34 2017 +0100

    set to dev state after release

commit ddd6f5a4c2731bcc41297314ef174e9a55670eab
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Thu Feb 2 19:56:00 2017 +0100

    Prepare Release 3.7.0-beta1

commit f6e524771caa4db1a21a5729aa230c67973d3c24
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Thu Feb 2 19:50:54 2017 +0100

    [com_fields] Fields Content Plugin (#13814)

    * Adding new content field plugin

    * Adjusting description (thanks @brianteeman)

    * Adjust regex

    * fieldgroups working

    * Adding SQL files

    * Fixing installation SQL

    * copy-pasting correct string :)

    * Codestyle

    * Fixing ID

    * Add support for {field *}

    * Add context "com_content.featured" to validateSection.

commit e6f73bcf047f5c3eb126e528f80680aba8f3a2aa
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Fri Feb 3 00:17:49 2017 +0530

    Fixes #13642 - The issue which causes custom menu items to be lost when a component is updated. (#13857)

commit b4bf8621f22bd16fecbc18a166cc11cb23b51a55
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Thu Feb 2 22:27:04 2017 +0530

    If no container is defined in the active admin menu, force show default container with all items shown. (#13838)

commit cc8ad0c795e42d7c1e736a55682f7145e961db8c
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Thu Feb 2 22:11:44 2017 +0530

    [Admin Menu] Fix showing of protected menu items in container type menu item (#13830)

    * Menutype ‘menu’ is no longer protected. Do not allow batch/trash/delete for protected menu items.

    * Show protected menu items on explicit filter only

    * Container menutype improvements and other improvements related to menu client_id.

    * Child item fix

    * Fix root exclusion and node visibility when in disabled state.

    * Update test db stub for jos_menu_types

    * Remove protected items filter from manager and other fixes.

    * An attempt towards UX improvement

    * Language update

    * Update language a/c to better suggestion by @infograf768

    * Use only ‘main’ and not ‘menu’ menutype to load components menu items under container menu item

    * Removed extra parenthesis

commit 5067ee92cb99646833490ddf8d4c419432321337
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 2 17:24:27 2017 +0100

    com_cache : Missing lang strings values (#13850)

    * Missing lang strings values

    * adding manager

commit 6f85b59b9303819850052c8e8fafd4f1ad308fc7
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Thu Feb 2 15:31:36 2017 +0100

    Security fix for quoteName (#13825)

commit 5a1c7960224b6b313a03386b8b02478f792f8f46
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Feb 2 14:50:32 2017 +0100

    [com_associations] Display Associations tab in Target (#13855)

commit 4b32be7ebca802e2e6a8fe1bed444a61faa15c04
Author: JoeforJoomla Boy <joejoomla76@gmail.com>
Date:   Thu Feb 2 14:26:22 2017 +0100

    Regression 3.7: last template style preview not working #1 (#13775)

    * Update site.php

    * Update site.php

    * Update site.php

    * Update site.php

    * Move unset into the else condition

commit 0d6a55afa610ff2a9845dac4603cc033a9684860
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Thu Feb 2 13:25:47 2017 +0000

    [Isis RTL] - Remove yes/no btn-group float (#13852)

    * RTL - Remove btn-group float

    * Only target yes/no toggle

commit 47346915f8092562e41974f8eb57813aa14f8ce9
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Thu Feb 2 13:25:36 2017 +0000

    Bypass lessc row-fluid calculations (#13845)

commit dc3a1a74415e91e60398389730507699a59a906d
Author: brianpeat <brian@thepeatgroup.com>
Date:   Thu Feb 2 04:00:53 2017 -0600

    [com_fields] Add option to show or hide field label (#13752)

    * Added option to hide field label

    * Added variable and if statement to hide label

    * Added language strings for the Hide Label option

    * Updated to change the if statement as per comment

    * missed a semicolon

    * changing switch to Show/Hide

    * Changing switch to Show/Hide

    * Changing switch to Show/Hide

    * missed a language string change

    * Changed if statement

    Since the default is Show, if it's not saved in the DB, the label won't show. Changed the if from ==1 to !=0 so it shows without any entry in the params in the db.

    * Reversed the if statement

    I tested on CURRENT fields (not new ones) but I had changed the params name, so it didn't stick. All my fault :)

commit aa862e8c694fd2be7833e16c7306c92d6409b989
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Feb 1 18:53:17 2017 +0100

    [com_fields] Trigger onContentPrepare in news module (#13708)

    * Trigger onContentPrepare in news module

    * Use the correct trigger method

    * Text variable is needed for event

    * Change to tabs

    * Remove spaces in line

commit 8676321b372b564ae40c61890b133e7d5cecbfdc
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Feb 1 17:24:36 2017 +0000

    Update YAML library (#13843)

commit 6ffc4b96abf7a885dced8afe1d14fae1781db206
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Wed Feb 1 12:52:38 2017 +0000

    Amend toolbar btn spacing (#13823)

commit 2c51a2829a4a1fb31490bbdf057b62fc7e199f88
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Feb 1 13:51:26 2017 +0100

    Custom fields for categories (#13837)

commit 5cdea948ad4f1e02b4422a3426535eead0d4eb6c
Author: infograf768 <infografjms@gmail.com>
Date:   Wed Feb 1 11:49:24 2017 +0100

    [com_associations] Do not use Copy reference to an existing target (#13819)

commit 82de8bd15ac0c9c6599262f14bc03a68c9391c20
Author: Fedir Zinchuk <getthesite@gmail.com>
Date:   Wed Feb 1 11:14:14 2017 +0200

    Tinymce: allow to edit image title (#13833)

commit 3449e046cde01755b12fd31aad4cb0c0864ead38
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 31 23:48:28 2017 +0000

    Use staging branch status for AppVeyor badge

commit 571218c80c690bb67c191363493a2ff703998136
Author: infograf768 <infografjms@gmail.com>
Date:   Tue Jan 31 10:21:32 2017 +0100

    [admin-menus] Display only components using Categories in List All Categories menu item (#13808)

    * [admin-menus] Display only components using Categories

    * docs missing

    * Simplifying field type code. Using it also for Create Category. Modified
    tip.

commit bfcca89cd878755b9988ea7277e064fb5d70523d
Author: Michael Babker <mbabker@flbab.com>
Date:   Mon Jan 30 07:49:18 2017 -0500

    Make JPluginHelper::load() resilient to cache error (#13526)

commit 720db4e8e0738625359903725428c4335079d550
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Mon Jan 30 13:46:22 2017 +0100

    Add expected and actual result headings (#13762)

commit 0fa990aa88a7a5f81cc23e1e5c675cd710d5fc76
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 30 10:53:33 2017 +0100

    Field calendar plugin (#13638)

    * Display localised dateformat and apply user timezone.

    * Set filter type for calendar fields plugin

    * Add a "onAfterDataValidation" event to JModelLegacy::validate()

    * Add new plugin event onAfterDataValidation. Rename onUserBeforeDataValidation to more generic onBeforeDataValidation and deprecate old name.

    * Store validated fields data in plugin for use during save. Removes the need for onContentBeforeSave method

    * Codestyle

    * Add new plugin event onAfterDataValidation. Rename onUserBeforeDataValidation to more generic onBeforeDataValidation and deprecate old name. (reverted from commit 8552ab709879d0e7d1120c6dce9df9222d60fc89)

    * Add a "onAfterDataValidation" event to JModelLegacy::validate() (reverted from commit 1ceeddf6c05c43323490354e4bbdd20563d59a89)

    * Adding the validated $data to onContentBeforeSave and AfterSave event

    * Use the validated data from the onContentAfterSave event

    * Pass $userData to $this->onContentAfterSave method

    * Codestyle

    * Simplify check

    * Adding an option to show/hide the time in the calendar field.
    Will use translated formats for all cases (form and item display)

    * Codestyle

commit 652c17adba0321da2e203536d4b150e03308de5b
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Mon Jan 30 08:49:09 2017 +0000

    Min width edit on toggles (#13698)

commit 3ae65c5068e793742590fbd7eaff1352268a5fe6
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 30 09:19:15 2017 +0100

    Don't return admin menus (#13791)

commit ccac056880f1b29ece107a18065e2c151ed190fa
Author: Vio Cassel <viocassel@users.noreply.github.com>
Date:   Sun Jan 29 22:29:38 2017 +0300

    Update jQuery Autocomplete to 1.3.0 (#13794)

commit d941fc3ae51842e43d757574f4a1b771e7450e1c
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sun Jan 29 12:29:09 2017 -0700

    Use preg_match to ensure just a version check (#13801)

    This method should be much less error prone due to the environment differences when getting the version from the `SELECT version();` query

commit aa1fef3498d14bf0f7025d0b124629b9a7b64dd5
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sun Jan 29 12:28:33 2017 -0700

    Remove unnecessary Env var "dependencies: current" (#13802)

    The related conditionals were removed.

commit 7713190e4d6e07e2144594cc02c8e78e3b6b0152
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Jan 29 12:16:51 2017 -0600

    Add GD to environment

commit 577f3121b55162e00fc0d196d333d46b3db9078b
Author: Michael Babker <mbabker@flbab.com>
Date:   Sun Jan 29 12:10:02 2017 -0500

    Add AppVeyor CI support (#13790)

    * Add AppVeyor CI support

    * Add create table statement

    * Conditionally add deprecated mysql extension

    * Close connections after class runs

    * Use PDO connection for PDO MySQL

    * Wrong property name

    * Try alternate way of adding extension

    * Add build badge

    * PGSQL test fixes

commit 80ef2839e310aeb13564e0a498bcf54af0e5e722
Author: Walt Sorensen <photodude@users.noreply.github.com>
Date:   Sun Jan 29 09:51:17 2017 -0700

    Fix JToolbarButton unit tests (#13799)

    * Fix JToolbarButton unit tests

    * Fix JToolbarButton unit tests

    * Fix JToolbarButton unit tests

commit 594c50fc29d729bd802c803e794a39dedc37f23c
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Sun Jan 29 17:36:42 2017 +0100

    Revert "Add the option to filter extensions on core or third party" (#13798)

commit a3b412134b1f1949b974c8d2a29a358ba698b432
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sun Jan 29 15:41:14 2017 +0000

    Fix github unit tests (#13797)

commit 7ba2c775130e7230ea2abd4797d98072f5c02817
Author: RolandD <contact@rolandd.com>
Date:   Sun Jan 29 14:56:17 2017 +0100

    Add the option to filter extensions on core or third party (#13795)

commit f72f44777b0189a8f8dfda7f75617203392e86c2
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Sat Jan 28 23:36:46 2017 +0000

    Fix doc blocks in router

commit 2474f12135db3174a230c36d6a864816a2757c51
Author: Tony Partridge <admin@xtech.im>
Date:   Sat Jan 28 22:14:39 2017 +0000

    com_finder outputs empty p tag with no description (#13778)

    ### Steps to reproduce the issue
    Set description on article or anything other item to nothing. In my scenario it was using Docman where they are just documents with no content.

    ### Expected result
    html not to be rendered if there isn't a description to render

    ### Actual result
    Renders a <p> html tag with no content, causes excess padding and just a mess on most sites.

    ### System information (as much as possible)
    J3.6.5 / J3.7.0Alpha2.

    ### Additional comments

    this is just a simple change to make the output of search results which have no description inside them to not render excess html.

commit ace741cffe5cbcceee6f8054fcb00aafcd1b601c
Author: infograf768 <infografjms@gmail.com>
Date:   Sat Jan 28 20:27:50 2017 +0100

    Correcting articles manager title display (#13785)

commit 612f6a4505f7fe23d82049447f89c02ab3fb71a9
Merge: 4077cd0 3833aa0
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sat Jan 28 14:54:11 2017 +0000

    Merge branch 'staging' into milestone1

commit 3833aa0671bd056f8e3c4690c3b0e44b7a1e7f25
Author: marrouchi <marrouchi.mohamed@gmail.com>
Date:   Sat Jan 28 11:41:34 2017 +0100

    [Improvement] Backend menu item edit form : Add Itemid to the alias link value (#13776)

    * Add Itemid to the alias link value

    The link field of an alias menu item displays "index.php?Item=" without the actual item id.

    * Remove extra white space

    * CodeSniffer fix : Blank line before new comment

commit 3d3e2d6ca722c1169484460c01091aec1f2b7dcc
Author: Luca Marzo <luca.marzo@live.com>
Date:   Fri Jan 27 22:26:18 2017 +0100

    3.8.x description proposal (#13782)

    I tried to change the wording about the 3.8.x branch.

commit 6f20a8c2d633fa8bd7b1f68fb8d008497ff88082
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Fri Jan 27 22:12:37 2017 +0100

    Remove from global option for the display functionality (#13773)

commit 7dc3d68365a07cdec8c29bf08fdc3ec1298c8606
Merge: 7c1cc9d 14c6fcb
Author: Luca Marzo <luca.marzo@live.com>
Date:   Fri Jan 27 20:55:51 2017 +0100

    Merge pull request #13758 from rdeutz/move_checkout_to_helper

    [com_associations] moved "checked out" check to a helper function

commit 7c1cc9d24a01c72f3e2db8883e0eac4739ba9810
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Fri Jan 27 18:29:13 2017 +0000

    [com_fields] Responsive subform.repeatable-table (#13769)

    * Responsive table subforms

    * RTL support

    * Wrap in media query

    * Final tweaks

    * Query fix

commit 67a60716044106310d86d4b5244c58473b6a04f2
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:28:23 2017 +0100

    Remove semicolon before UNION ALL (#13767)

commit 6be6bd64c907d2b89ea1c6daaa8b0ca29dd7de66
Author: Peter van Westen <info@regularlabs.com>
Date:   Fri Jan 27 19:27:36 2017 +0100

    Fixes: EXTRA_QUERY not added to update record (#13756)

commit 959fc6b1487fa335cb04c7b54e3864e168960118
Author: Roberto Segura <roberto@phproberto.com>
Date:   Fri Jan 27 19:26:47 2017 +0100

    [fix] using core categories system should not be mandatory to use core tag system (#13737)

commit 2d82f4cc2d2577aa42e1e2cbd85c96cb083010c3
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Fri Jan 27 19:24:41 2017 +0100

    Add a parameter to trigger the additional plugin events in the news module (#13703)

commit 2a859660c9718548691ddfb56dd41d212d9c5be1
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Fri Jan 27 19:23:32 2017 +0100

    Add "id" attribute to <input> element (#13610)

commit 1b036c6f7bc4e57ad362ae988ce18ac0b778d8f2
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:22:40 2017 +0100

    Speed up of saving new articles (#13505)

    * Fast table reorder for mysql, postgresql, mssql and sqlite

    * Two versions of selectRowNumber for postgreSQL

commit 7f402748ca66b213cf10f4aabd329696d5b3443f
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Fri Jan 27 19:21:44 2017 +0100

    [com_fields] Custom Fields Media Field if class is empty still class is shown as attribute (#13462)

    * fixes #13400 dont let the class tag alone if no class is set

    * Update imagelist.php

    * Update media.php

    * Update imagelist.php

    * Update imagelist.php

    * Update media.php

    * Update media.php

    * Update imagelist.php

commit bc9dcd36e6228ddca395e02ef553a202b2e21433
Author: andrepereiradasilva <andrepereiradasilva@users.noreply.github.com>
Date:   Fri Jan 27 18:18:38 2017 +0000

    [com_contact] review config global default options (#12970)

    * config.xml

    * Update joomla.sql

    * Update joomla.sql

    * Update joomla.sql

    * sincronize with staging

    * fix conflicts

    * fix show_user_custom_fields

commit a3194fa5985575dc517a8d0ff7d2a80c99f15ba6
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:17:44 2017 +0100

    3.7 Improve Cache Controller (#12312)

    * Improve Cache Controller

    * PHPCS fix

commit d7eb53581f616a843fb194c88cfddc2d2ea6a3c7
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Fri Jan 27 19:17:13 2017 +0100

    Fix item alias (#11343)

commit d525244dc030dd9dc3cb6c1f703e91eccabf2c63
Author: Klas <klas.berlic@gmail.com>
Date:   Fri Jan 27 14:18:59 2017 +0100

    JUserTest needs to clear JAccess stats for allowed test. ALso JUserTest::testGetGroupsByUser() has expected and actual reversed. (#13777)

commit 14c6fcbf365d0d06d2d75950ba333b287befeed2
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Fri Jan 27 11:21:46 2017 +0100

    fix for checked out items

    If the item at the left is checked out nothing can be done till the item is checked in

commit 5104562e13195562072caac980b0d167e534d29c
Merge: 12257e5 c421382
Author: Luca Marzo <luca.marzo@live.com>
Date:   Thu Jan 26 23:37:06 2017 +0100

    Merge pull request #13759 from Bakual/SQLNotSql

    [com_fields] SQL not Sql

commit 12257e51f9993c6f93167facdaab9790468ecb32
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Thu Jan 26 13:29:43 2017 +0100

    [com_fields] Load language files from components (#13745)

    * Load language files from components

    * Add JPath::clean()

commit e0fbf61c6cd4def712dfbd744d4b104b18bf658e
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Thu Jan 26 13:24:19 2017 +0100

    [com_fields] Default the gallery directory when empty (#13761)

    * Default the gallery directory when empty

    * Fix comment

commit 61189b3188474314761894086a13ef242ebb5efa
Author: infograf768 <infografjms@gmail.com>
Date:   Thu Jan 26 09:48:46 2017 +0100

    [com_associations] Display only site menu types on searchTools (#13763)

    merged on review

commit 8f567003c6c4e72a749882628a60a6994949bd05
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Thu Jan 26 13:28:12 2017 +0530

    Give protected menu items container its own place independent of heading type. (#13749)

    * Give protected menu items container its own place independent of heading type.

    * Added missed client id check for container menu type.

commit c4213828398502f66979290fdff3e4feacc0622d
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Wed Jan 25 22:51:16 2017 +0100

    SQL not Sql

commit 6e67ba17183e165fe126bc0863518bb9b36d154b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 25 22:02:37 2017 +0100

    moved checked our check to a helper function for less gussing

commit f04e15c8c48e272d5cfbd6d0ec19abd7d13afc5b
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 25 18:05:28 2017 +0100

    Remove unneded properties for fields render layout (#13750)

commit b455cf6dd3ae8b69f89a29af295475f0332654bd
Author: Ciaran Walsh <ciaran@joomla51.com>
Date:   Wed Jan 25 12:13:57 2017 +0000

    Remove max-width on login lang field (#13740)

commit dc7e6157b23feea20d8453562a35d3f65fcfe18a
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Wed Jan 25 13:04:01 2017 +0530

    Fixed issue - backend menu manager checks for important menu items in top level only (#13650)

commit 23704123a22ed6aee5536777f7beb0e7653c74e9
Author: infograf768 <infografjms@gmail.com>
Date:   Wed Jan 25 08:33:37 2017 +0100

    [com_fields] Improving fields dropdown for Translation (#13710)

commit 4635900088efcd3b78640d5fbabb0588d22aa3e2
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 24 13:39:14 2017 +0000

    Revert previous commit

commit 7c25d368c8fdb905798d607263bdb5f23def7cb1
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Tue Jan 24 13:38:56 2017 +0000

    legacy libs

commit d151ef4ce7cb68898bc56eb25d8e888647aea9a9
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Jan 24 09:18:20 2017 +0100

    [com_newsfeeds] - "Filter field"  in News Feeds - list layout (#11899)

    * [com_newsfeed] - "Filter field" parameter in "List News Feeds in a Category"

    fix "Filter field" parameter in "List News Feeds in a Category"  behaviour

    * fix for filter fields and table headings 1/3

    fix for filter fields and table headings 1/3

    * fix filter fields and table headings 2/3

    fix for filter fields and table headings

    * fix for filter fields and table headings 3/3

    fix for filter fields and table headings 3/3

    * removed 2nd layout

    removed 2nd layout as requested

    * removed 2nd layout

    removed 2nd layout

commit 8b0b5129381de26c69f5a01daa3fd0bf9d9a54a2
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Mon Jan 23 22:47:54 2017 +0100

    fix for a failing install (#13727)

commit c437fce02ce86a8506369208b767593125445907
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 19:56:53 2017 +0100

    [com_fields] Remove unneeded fields from com_fields (#13621)

    * Remove unneeded fields from com_fields

    * Remove columns from installation

commit 57277287cef077b694d02eaf28eaba6fc36c3ce5
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Mon Jan 23 18:27:49 2017 +0000

    Use bootstrap tooltips (#13713)

commit 465ff03b6ebfba189fe8992addd295064a7b5ca6
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 13:51:45 2017 +0100

    Another typo

    Thanks @brianteeman

commit e83ac894b290c6dc4a640dd7ebc2147b7d3f2139
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Mon Jan 23 13:34:55 2017 +0100

    Typo in CONTRIBUTING.md

commit 6e6edfcc01d3eba29022c3a63125038072fb5151
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Mon Jan 23 11:48:10 2017 +0100

    Adding the 3.8.x branche with the definitions by @wilsonge

commit 0e4b98fa9f21de6ed1c3d03a744b9985d1ba708a
Author: jo-sf <jo-sf@users.noreply.github.com>
Date:   Mon Jan 23 10:10:03 2017 +0100

    Always save validated data in the session (#11491)

commit 91e6de5195e208e5105d65b898c4da90a43fdf1e
Author: jo-sf <jo-sf@users.noreply.github.com>
Date:   Sun Jan 22 15:58:32 2017 +0100

    Use type="number" in TCP port configuration fields (#11492)

    * Leave numeric field empty if not required and not set

    * Numeric field might be empty if not required

    * Allow empty value if field is not required

    * Test adapted to code change

    Due to the code change in `libraries/joomla/form/fields/number.php` (set field value to the minimum value only if the field is required and a minimum value is given and there is no value given) the "Min" test needs a change, moreover a new test "MinRequired" wit the former result of the "Min" test was introduced.

    * Forgot to change the expected result

    The code `required aria-required="true"` was missing in the expected result - added.

    * Replace "and" with "&&"

    * Replace "and" with "&&"

    * Replace "and" with "&&"

    * use type=number for port fields in configuration

    * Added clean line before the if

    * smtpport field: hint added

    * LDAP port field: hint added

commit f3dc74bd349e4142e15684bb5600bd1258132f03
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sun Jan 22 15:57:17 2017 +0100

    Changes the contact user groups form field to fieldgroups (#13607)

commit 293d57e531af7b04c561ed0e45875fa4e7f7e912
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 22 15:53:39 2017 +0100

    Fixing ACL inheritance for fields and fieldgroups (#13676)

commit af71e6036e719c2dff7940095fe15d1c2c0affec
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sun Jan 22 15:52:58 2017 +0100

    Adding proper disabled and readonly properties to the color formfield layouts (#13677)

commit 4370ef7bd630fa88f05bcbce3a1db65265da3f4c
Author: Dimitri Grammatikogianni <mit505@upshift.gr>
Date:   Sun Jan 22 13:50:26 2017 +0000

    fix IE 11 error (#13685)

commit f38dfcbcfc4174cebb88908e7645b62337a49ff4
Merge: 81127c3 f0d9270
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Jan 22 11:41:16 2017 +0000

    Merge branch 'staging' of github.com:joomla/joomla-cms into staging

commit f0d927051091a6725cc6bfe1e3b5ba13b81b8b4c
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Sun Jan 22 12:41:06 2017 +0100

    Fix CS issues introduced with https://github.com/joomla/joomla-cms/pull/13672

commit 81127c3bcdb7b035a1f02c49932c4154b9be8583
Merge: 7d34d41 4d44c25
Author: wilsonge <georgejameswilson@googlemail.com>
Date:   Sun Jan 22 11:41:03 2017 +0000

    Merge branch '3.7.x' into staging

commit baef935fa1cf872091f7b708cf87682462749a79
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Sun Jan 22 12:33:45 2017 +0100

    Deprecate PSR-0 class loading (#13672)

    * Deprecate PSR-0 class loading

    * Fix typo

    * Add PSR4 support, not just the deprecated message

    * Fix deploy version

    * Throwing exceptions when invalid type is passed

    * Return type specific namespaces

    * Fix the test errors

    * Travis

    * Please travis be nice to me

    * Last try otherwise I go to the bar

    * Small tweaks

    * Update loader.php

commit 6efb945b964850e8f15a6d10db86771bfc5d4b41
Author: Martijn Maandag <martijn@reisverslagen.net>
Date:   Sun Jan 22 11:43:51 2017 +0100

    Update en-GB.com_languages.sys.ini (#13681)

commit f81a1ee697447953e1c25e25b7e9148f0ee30cbd
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Sun Jan 22 17:24:08 2017 +0700

    Clean up legacy controller + model classes (#13679)

    * Clean up JControllerForm

    * Clean up JModelAdmin

    * Clean up JModelList class

commit b222a8dcdacb38efd16968137db49583b965f508
Author: Thomas Hunziker <werbemails@bakual.ch>
Date:   Sat Jan 21 20:08:59 2017 +0100

    Properly merge tag params (#13643)

    * Properly merge tag params

    * Fixing a typo and yet another bug (wrong parameter read)

commit 7d34d41223bfe41799cd2c08b339e3c382a400d6
Author: Georgios Papadakis <ggppdk@users.noreply.github.com>
Date:   Fri Jan 20 22:24:15 2017 +0200

    Fix SEF plugin breaking HTML while trying to make inline background url paths absolute (#11266)

    * Fix SEF plugin some times breaking HTML while trying to make inline background url paths absolute

    * Added handling of &#34; and &#39;

    * Code style, fix too long line

    * Removed redudant pipe character

    * Update sef.php

commit 339eb9afbc272efa599d379d2c842c66a6519525
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Jan 20 15:10:29 2017 +0100

    [com_fields] Useless strings (#13659)

commit 483abb81381907aadb3834a1d55c7eb41e27f6d7
Author: Tuan Pham Ngoc <github@joomdonation.com>
Date:   Fri Jan 20 17:25:27 2017 +0700

    Clean up JControllerAdmin (#13635)

commit f2d72e5f3a85e7601274df8e938c8b354d43a47b
Author: infograf768 <infografjms@gmail.com>
Date:   Fri Jan 20 11:17:04 2017 +0100

    Correcting Notice when saving Global Configuration (#13612)

    * Correcting Notice

    * simplifying. thanks joomladonation

commit b4b08b2e3a17998b7266c3331f5038d3dc6d2d1b
Author: zero-24 <zero-24@users.noreply.github.com>
Date:   Wed Jan 18 21:49:32 2017 +0100

    Fix dev status and move it from beta to dev as we are currently in the dev mode for the beta release

commit cdeee8bf59a2bc858799b2a8489eaeebcff9732b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 21:29:06 2017 +0100

    bump version for development

commit 71a1c5ec9c13bf6b6c98acd973c8324f0c3e9487
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 20:25:12 2017 +0100

    prepare 3.7.0-alpha2 release

commit c9f4ce5d30e2b0d34dae39f5b21d854400eb06fb
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 15:24:44 2017 +0100

    update for menu (#13619)

commit a9f872e543bb549d429805007e7f11894a726362
Author: Allon Moritz <allon.moritz@digital-peak.com>
Date:   Wed Jan 18 15:22:26 2017 +0100

    [com_fields] Inherit url scheme restriction from fields plugin (#13554)

    * Type safe null check for plugin inheritance parameter

    * Remove default scheme to allow any valid scheme

    * Revert changes from conflict

commit 382766735c251377185352b8955acbd15c047bf7
Author: Jelle Kok <schumacher1986@hotmail.com>
Date:   Wed Jan 18 15:11:36 2017 +0100

    Fix CS  on com_admin script (#13636)

    * Fix CS  on com_admin script

    * revert to 1.x changes

commit 100c5a4e49f278af3ceae13695014fbe7d2ee2f5
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Jan 18 12:01:50 2017 +0000

    Fix typo

commit 853f9af7a85845ab12fbee74a98c22e0f94cb70b
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 12:55:04 2017 +0100

    prepare update script for 3.7

    Added pre and postfight functions to handle installation of a menu item

commit 1d177d5b144cb299ff33c690ba29d7bb19be615a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Wed Jan 18 12:33:21 2017 +0100

    [com_fields]- mssql installation fieldsplugin (#13626)

    * [plugins] - fields mssql installation

    plugins  fields mssql installation #13616

    * [com_fields] - mssql updates #13319

    [com_fields] - mssql updates #13319

    * remove duplicate extension id 462 for mssql

    removed id 462 to avoid duplicated id with #13626

    cause now fields are managed with plugins

    Pull Request for Issue #13616 (comment)

commit 38ae97ea48e217201ebcfa3142d73ded595c8634
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Wed Jan 18 12:26:32 2017 +0100

    fixed an obvius wrong use of $this-parent

commit b9d0d32defe49a890b0130432c4e08151c4b34aa
Author: George Wilson <georgejameswilson@googlemail.com>
Date:   Wed Jan 18 09:06:26 2017 +0000

    Fix typo (Thanks Dario)

commit 0daf6f75207c1083cfcf98e2849296a28fe19c02
Author: infograf768 <infografjms@gmail.com>
Date:   Tue Jan 17 18:56:53 2017 +0100

    Updating install.xml en-GB administrator (#13623)

commit 77af51f7391f4d7f50eccbe622d81af084f0ebc8
Author: Tomasz Narloch <csthomas@users.noreply.github.com>
Date:   Tue Jan 17 14:47:12 2017 +0100

    Routing: Remove IDs from tags URLs, use menu item of tags view as default for tag view (#11166)

    * Remove id from tags, use tags list menu item as default for tag

    * Code style, remove useless code, feature: first Itemid for tags view, second Itemid for default tag view

commit 326036f0bdc5d163d30a2f31284da86444655432
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Jan 17 13:59:34 2017 +0100

    sync admin menu menutype (#13618)

commit f3780c5f2b3d4dc1b897dec96a9ae6525df6b4ee
Author: Raghav Jajodia <jajodia.raghav@gmail.com>
Date:   Tue Jan 17 18:29:01 2017 +0530

    [com_fields] Improved description in the "description" tooltip Fixes #13392 (#13557)

    * Fixes #13195: Added margin bottom to sidebar menu

    * Fixes #13392: Changed description field tooltip

    * Fixes #13392: Changed description field tooltip

    * Fixes #13392: Changed description field tooltip

commit 56ad6aa5779d15953b35ccd058a8c9344745c58a
Author: Nicola Galgano <optimus4joomla@gmail.com>
Date:   Tue Jan 17 13:42:50 2017 +0100

    [com_associations] - mssql updates (#13617)

    the missed mssql updates for #13537

commit 4a5ee882cd55948782137e7ca845a99a23ff9581
Author: Robert Deutz <rdeutz@googlemail.com>
Date:   Tue Jan 17 12:46:25 2017 +0100

    Adding the Multilanguage Associations Manager (#13537)

    * Merge Associations rewrite

    * updated searchtool with the new way

    * udpated edit view title

    * added contact associationshelper class

    * temp fix

    * fix for category filter

    * added newsfeeds associations helper

    * CAPS for params

    * lang tag and added a helper function

    * added land tags

    * code style fix

    * better title in associations view

    * better title

    * use the usual naming

    * fix language tag, thanks to brian teeman and twitter :-)

    * initial review

    * on simple change

    * on simple change 2

    * simple

    * some more helper changes

    * Update associations.php

    * Update associations.php

    * app isn’t set a model property

    * correct return value

    * simplify code adn use helper method

    * use typename directly

    * changed the tooltip position

    * Correct menu helper

    * remove unreacable code

    * correcting checked_out

    * com_menus

    * fixed not supportted message

    * installation

    * fix menu install

    * Spaces -> tabs

commit 40cf34d4c04ff4785d16d4a0e41af420dc5a8356
Author: Nick Savov <nicksavov@users.noreply.github.com>
Date:   Tue Jan 17 05:42:23 2017 -0600

    Add SMS to External URL menu item type (#13615)

    Allows data like sms://+15555555555 to be used instead of getting "Save Not Permitted"

commit 4e156fa0ad46cfcbc089311a66fe8b99d21b49eb
Author: Izhar Aazmi <izharaazmi@gmail.com>
Date:   Tue Jan 17 16:11:40 2017 +0530

    Menu manager for Joomla Backend Menu (#13036)

    * Added client id column to menu_type table.
    Allow creating and editing of "menutype" records with client_id = 1
    Add client_id filters in menu and menu items list views
    Sync menu type filter and client_id filter allowing only menu type in the URL query parameter (B/C)
    Both Lists now also filtered by client id.
    Client id selection updates the menu type list options to show choices only for that client id

    TBD:
    Reserved menu types: main & menu

    * In modal list view we currently hide client_id filter and show only site menu types, will be updated once we have more clear vision.
    Menu type assignment to backend mod_menu config from both menu manager and module manager. Though that is not functional within the module …
@laoneo laoneo mentioned this pull request May 30, 2017
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants