Skip to content

Commit 944ffd5

Browse files
committed
Merge branch '4.0-dev' of https://github.com/joomla/joomla-cms into j4mails
2 parents a4de913 + 4c8de56 commit 944ffd5

File tree

549 files changed

+3472
-2815
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

549 files changed

+3472
-2815
lines changed

.drone.yml

Lines changed: 34 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -37,34 +37,6 @@ steps:
3737
commands:
3838
- npm ci --unsafe-perm
3939

40-
- name: publish-diff
41-
image: joomlaprojects/docker-images:patchtester
42-
depends_on: [ npm ]
43-
environment:
44-
CMP_ARCHIVE_NAME: "build"
45-
CMP_MASTER_FOLDER: "/reference"
46-
CMP_SLAVE_FOLDER: "." # The directory the current repo is in
47-
FTP_USERNAME:
48-
from_secret: ftpusername
49-
FTP_PASSWORD:
50-
from_secret: ftppassword
51-
FTP_HOSTNAME: ci.joomla.org
52-
FTP_PORT: "21"
53-
FTP_DEST_DIR: /artifacts
54-
FTP_VERIFY: "false"
55-
FTP_SECURE: "true"
56-
BRANCH_NAME: "4.0-dev" # Current branch to check against (from repo joomla/joomla-cms)
57-
DRONE_PULL_REQUEST: DRONE_PULL_REQUEST
58-
commands:
59-
- export PULL_ID=$DRONE_PULL_REQUEST
60-
- /bin/compare.sh
61-
volumes:
62-
- name: reference
63-
path: /reference
64-
when:
65-
branch:
66-
- 4.0-dev
67-
6840
- name: rebuild-cache
6941
image: drillster/drone-volume-cache
7042
depends_on: [ npm ]
@@ -241,32 +213,6 @@ steps:
241213
status:
242214
- failure
243215

244-
- name: packager
245-
image: joomlaprojects/docker-images:packager
246-
environment:
247-
FTP_USERNAME:
248-
from_secret: ftpusername
249-
FTP_PASSWORD:
250-
from_secret: ftppassword
251-
FTP_HOSTNAME: ci.joomla.org
252-
FTP_PORT: "21"
253-
FTP_DEST_DIR: /artifacts
254-
FTP_VERIFY: "false"
255-
FTP_SECURE: "true"
256-
HTTP_ROOT: "https://ci.joomla.org/artifacts"
257-
DRONE_PULL_REQUEST: DRONE_PULL_REQUEST
258-
DRONE_COMMIT: DRONE_COMMIT
259-
GITHUB_TOKEN:
260-
from_secret: github_token
261-
commands:
262-
- /bin/drone_build.sh
263-
volumes:
264-
- name: reference
265-
path: /reference
266-
when:
267-
branch:
268-
- 4.0-dev
269-
270216
- name: analysis4x
271217
image: rips/rips-cli:3.2.2
272218
depends_on: [ api-tests ]
@@ -329,8 +275,41 @@ services:
329275
POSTGRES_PASSWORD: joomla_ut
330276
POSTGRES_DB: test_joomla
331277

278+
---
279+
kind: pipeline
280+
name: package
281+
282+
steps:
283+
- name: packager
284+
image: joomlaprojects/docker-images:packager
285+
environment:
286+
FTP_USERNAME:
287+
from_secret: ftpusername
288+
FTP_PASSWORD:
289+
from_secret: ftppassword
290+
FTP_HOSTNAME: ci.joomla.org
291+
FTP_PORT: "21"
292+
FTP_DEST_DIR: /artifacts
293+
FTP_VERIFY: "false"
294+
FTP_SECURE: "true"
295+
HTTP_ROOT: "https://ci.joomla.org/artifacts"
296+
DRONE_PULL_REQUEST: DRONE_PULL_REQUEST
297+
DRONE_COMMIT: DRONE_COMMIT
298+
GITHUB_TOKEN:
299+
from_secret: github_token
300+
commands:
301+
- if [ $DRONE_REPO_NAME != 'joomla-cms' ]; then echo "The packager only runs on the joomla/joomla-cms repo"; exit 0; fi
302+
- /bin/drone_build.sh
303+
volumes:
304+
- name: reference
305+
path: /reference
306+
when:
307+
branch:
308+
- 4.0-dev
309+
310+
332311
---
333312
kind: signature
334-
hmac: 06035b7ce5a946d486d499e71b5c80538ae5272929f072b03cfadf4bb3b1fc15
313+
hmac: 9bb74c784835b3ef017189b6f407cf7750d3f38464d42006da76999b62b41277
335314

336315
...

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
github: joomla
12
custom: https://community.joomla.org/sponsorship-campaigns.html

administrator/components/com_actionlogs/forms/filter_actionlogs.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@
1212
<field
1313
name="extension"
1414
type="extension"
15-
label="COM_ACTIONLOGS_SELECT_EXTENSION"
15+
label="COM_ACTIONLOGS_EXTENSION"
1616
onchange="this.form.submit()"
1717
>
1818
<option value="">COM_ACTIONLOGS_SELECT_EXTENSION</option>
1919
</field>
2020
<field
2121
name="dateRange"
2222
type="logsdaterange"
23-
label="COM_ACTIONLOGS_OPTION_FILTER_DATE"
23+
label="COM_ACTIONLOGS_DATE"
2424
onchange="this.form.submit();"
2525
>
2626
<option value="">COM_ACTIONLOGS_OPTION_FILTER_DATE</option>
2727
</field>
2828
<field
2929
name="user"
3030
type="logcreator"
31-
label="COM_ACTIONLOGS_SELECT_USER"
31+
label="COM_ACTIONLOGS_NAME"
3232
onchange="this.form.submit();"
3333
>
3434
<option value="">COM_ACTIONLOGS_SELECT_USER</option>

administrator/components/com_actionlogs/src/Field/PlugininfoField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace Joomla\Component\Actionlogs\Administrator\Field;
1111

12-
defined('JPATH_BASE') or die;
12+
defined('_JEXEC') or die;
1313

1414
use Joomla\CMS\Factory;
1515
use Joomla\CMS\Form\FormField;

administrator/components/com_actionlogs/tmpl/actionlogs/default.php

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,31 +36,33 @@
3636
<?php else : ?>
3737
<table class="table" id="logsList">
3838
<caption id="captionTable" class="sr-only">
39-
<?php echo Text::_('COM_ACTIONLOGS_TABLE_CAPTION'); ?>, <?php echo Text::_('JGLOBAL_SORTED_BY'); ?>
39+
<?php echo Text::_('COM_ACTIONLOGS_TABLE_CAPTION'); ?>,
40+
<span id="orderedBy"><?php echo Text::_('JGLOBAL_SORTED_BY'); ?> </span>,
41+
<span id="filteredBy"><?php echo Text::_('JGLOBAL_FILTERED_BY'); ?></span>
4042
</caption>
4143
<thead>
4244
<tr>
43-
<td width="1%" class="text-center">
45+
<td class="w-1 text-center">
4446
<?php echo HTMLHelper::_('grid.checkall'); ?>
4547
</td>
4648
<th scope="col" class="d-md-table-cell">
4749
<?php echo HTMLHelper::_('searchtools.sort', 'COM_ACTIONLOGS_ACTION', 'a.message', $listDirn, $listOrder); ?>
4850
</th>
49-
<th scope="col" width="15%" class="d-none d-md-table-cell">
51+
<th scope="col" class="w-15 d-none d-md-table-cell">
5052
<?php echo HTMLHelper::_('searchtools.sort', 'COM_ACTIONLOGS_EXTENSION', 'a.extension', $listDirn, $listOrder); ?>
5153
</th>
52-
<th scope="col" width="15%" class="d-none d-md-table-cell">
54+
<th scope="col" class="w-15 d-none d-md-table-cell">
5355
<?php echo HTMLHelper::_('searchtools.sort', 'COM_ACTIONLOGS_DATE', 'a.log_date', $listDirn, $listOrder); ?>
5456
</th>
55-
<th scope="col" width="10%" class="d-md-table-cell">
57+
<th scope="col" class="w-10 d-md-table-cell">
5658
<?php echo HTMLHelper::_('searchtools.sort', 'COM_ACTIONLOGS_NAME', 'a.user_id', $listDirn, $listOrder); ?>
5759
</th>
5860
<?php if ($this->showIpColumn) : ?>
59-
<th scope="col" width="10%" class="d-none d-md-table-cell">
61+
<th scope="col" class="w-10 d-none d-md-table-cell">
6062
<?php echo HTMLHelper::_('searchtools.sort', 'COM_ACTIONLOGS_IP_ADDRESS', 'a.ip_address', $listDirn, $listOrder); ?>
6163
</th>
6264
<?php endif; ?>
63-
<th scope="col" width="1%" class="d-none d-md-table-cell">
65+
<th scope="col" class="w-1 d-none d-md-table-cell">
6466
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
6567
</th>
6668
</tr>
@@ -70,7 +72,7 @@
7072
$extension = strtok($item->extension, '.');
7173
ActionlogsHelper::loadTranslationFiles($extension); ?>
7274
<tr>
73-
<td class="center">
75+
<td class="text-center">
7476
<?php echo HTMLHelper::_('grid.id', $i, $item->id); ?>
7577
</td>
7678
<th scope="row" class="d-md-table-cell">

0 commit comments

Comments
 (0)