Skip to content

Commit 6cdcb2c

Browse files
committed
Merge branch 'hotfix' into dev
2 parents 714347b + 0103c2f commit 6cdcb2c

File tree

14 files changed

+110
-96
lines changed

14 files changed

+110
-96
lines changed

Jenkinsfile

+18-31
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,10 @@ pipeline {
1616
kubernetes {
1717
label env.BUILD_TAG
1818
defaultContainer 'build'
19-
yaml """
19+
yaml ocpWorker("""
2020
apiVersion: v1
2121
kind: Pod
2222
spec:
23-
volumes:
24-
- name: cache
25-
hostPath:
26-
path: /opt/kubernetes/cache
2723
containers:
2824
- name: build
2925
image: """ + buildEnvironmentDockerImage("build/Dockerfile", null, "build") + """
@@ -33,39 +29,30 @@ spec:
3329
tty: true
3430
resources:
3531
requests:
36-
cpu: 1
37-
memory: 256Mi
38-
volumeMounts:
39-
- mountPath: /home/jenkins/.m2/repository
40-
name: cache
41-
subPath: maven
42-
- mountPath: /home/jenkins/.cache/npm
43-
name: cache
44-
subPath: npm
45-
env:
46-
- name: DOCKER_HOST
47-
value: tcp://127.0.0.1:2375
32+
cpu: '0'
33+
memory: '0'
34+
limits:
35+
cpu: '0'
36+
memory: '0'
37+
- name: docker
38+
- name: jnlp
4839
- name: selenium
4940
image: selenium/standalone-chrome:3.141.59
50-
imagePullPolicy: Always
5141
tty: true
5242
ports:
53-
- containerPort: 4444
54-
name: selenium
55-
protocol: TCP
43+
- containerPort: 4444
44+
name: selenium
45+
protocol: TCP
5646
resources:
5747
requests:
58-
cpu: 1
59-
memory: 1024Mi
60-
- name: docker
61-
image: docker:18-dind
62-
imagePullPolicy: Always
63-
securityContext:
64-
privileged: true
65-
tty: true
48+
cpu: '0'
49+
memory: '0'
50+
limits:
51+
cpu: '0'
52+
memory: '0'
6653
imagePullSecrets:
67-
- name: docker-jenkinsbuilds-apa-it
68-
"""
54+
- name: docker-jenkinsbuilds-apa-it
55+
""")
6956
}
7057
}
7158

build/assembly/changelog-entries.xml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<assembly
2+
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
5+
<id>changelog-entries</id>
6+
<formats>
7+
<format>zip</format>
8+
</formats>
9+
<fileSets>
10+
<fileSet>
11+
<directory>${project.basedir}/build/changelog/entries</directory>
12+
<outputDirectory>/</outputDirectory>
13+
<filtered>false</filtered>
14+
</fileSet>
15+
</fileSets>
16+
<includeBaseDirectory>false</includeBaseDirectory>
17+
</assembly>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix jumping caret: When inserting text into an empty table cell the caret was jumping unexpectedly in the Chrome browser.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
When a list element contains a break at the end you could not end the list by pressing enter two times. This is because the cursor could not be placed after the break, because the break is invisible. This fix makes breaks as last elements visible.
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GPU-883: Improved visibility of editable content by always showing an outline around them.

build/changelog/mappings/1.4.61.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"version": "1.4.61",
3+
"date": "21.02.2023",
4+
"changeLogEntryFileNames": [
5+
"12528.SUP-14863.bugfix"
6+
],
7+
"genericProperties": {}
8+
}

build/changelog/mappings/1.5.0.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"version": "1.5.0",
3+
"date": "27.06.2023",
4+
"changeLogEntryFileNames": [
5+
"12530.GPU-883.enhancement",
6+
"12529.SUP-15210.bugfix"
7+
],
8+
"genericProperties": {}
9+
}

pom.xml

+16-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>org.alohaeditor</groupId>
55
<artifactId>alohaeditor</artifactId>
6-
<version>1.4.61-SNAPSHOT</version>
6+
<version>1.5.1-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<name>Aloha Editor</name>
99
<url>http://aloha-editor.org</url>
@@ -258,7 +258,7 @@
258258
<plugin>
259259
<groupId>ro.isdc.wro4j</groupId>
260260
<artifactId>wro4j-maven-plugin</artifactId>
261-
<version>1.4.7</version>
261+
<version>1.6.3</version>
262262
<executions>
263263
<!-- Full version of aloha (With jquery and requirejs) -->
264264
<execution>
@@ -405,6 +405,20 @@
405405
</descriptors>
406406
</configuration>
407407
</execution>
408+
<execution>
409+
<id>changelog</id>
410+
<phase>package</phase>
411+
<goals>
412+
<goal>single</goal>
413+
</goals>
414+
<configuration>
415+
<attach>true</attach>
416+
<appendAssemblyId>true</appendAssemblyId>
417+
<descriptors>
418+
<descriptor>${project.basedir}/build/assembly/changelog-entries.xml</descriptor>
419+
</descriptors>
420+
</configuration>
421+
</execution>
408422
</executions>
409423
</plugin>
410424
<plugin>

src/css/aloha-core.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
.aloha-editable {
66
min-height: 1.2em;
7-
outline: none;
87
}
8+
99
.aloha-editable ::selection,
1010
.aloha-editable ::-moz-selection {
1111
background: #80B5F2;
1212
color: white;
1313
}
14+
1415
.aloha-textarea {
1516
overflow: hidden;
1617
border:1px solid #ccc;

src/plugins/common/block/css/block.css

+3-7
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@
66
padding: 4px;
77
width: 100%;
88
}
9-
.aloha-editable-active .aloha-block, .aloha-block.aloha-block-highlighted {
10-
cursor: pointer;
11-
box-shadow: 0 0 0px 3px #FFE767; /* We use box-shadow because of a Firefox rendering bug with "outline" */
12-
}
13-
.aloha-block.aloha-block-active, .aloha-block.aloha-block-active:hover {
14-
box-shadow: 0 0 0px 3px #80B5F2; /* We use box-shadow because of a Firefox rendering bug with "outline" */
15-
}
169

10+
.aloha-block {
11+
cursor: pointer;
12+
}
1713

1814
/* IE8 will use outline for highlighting */
1915
.aloha-ie8 .aloha-block:hover {

src/plugins/common/highlighteditables/css/highlighteditables.css

+12-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,18 @@
55
* Licensed unter the terms of http://www.aloha-editor.com/license.html
66
*/
77

8-
.aloha-editable-highlight {
9-
outline: #FFE767 solid 5px !important;
8+
.aloha-editable,
9+
.aloha-block {
10+
outline: #0096dc dotted 2px;
1011
}
1112

12-
.aloha-editable-active, .aloha-editable-active[contenteditable=true]:focus {
13-
outline: #80B5F2 solid 5px !important;
13+
.aloha-editable .aloha-editable,
14+
.aloha-editable .aloha-block {
15+
outline-color: #d6d6d6;
16+
}
17+
18+
.aloha-editable-active,
19+
.aloha-editable-active[contenteditable=true]:focus,
20+
.aloha-block.aloha-block-active {
21+
outline-style: solid;
1422
}

src/plugins/common/highlighteditables/lib/highlighteditables-plugin.js

+3-10
Original file line numberDiff line numberDiff line change
@@ -82,20 +82,13 @@ define('highlighteditables/highlighteditables-plugin', [
8282
* fades all highlighted editables
8383
*/
8484
fade: function () {
85-
var
86-
i, editable,
87-
animateEnd = function () {
88-
jQuery(this).css('outline', '');
89-
};
85+
var i,
86+
editable;
9087
for (i = 0; i < Aloha.editables.length; i++) {
9188
editable = Aloha.editables[i].obj;
9289
if (editable.hasClass('aloha-editable-highlight')) {
9390
// IE8 fix - hardcode 5px because editable.css('outlineWidth') sometimes causes a javascript error
94-
editable.css('outline', editable.css('outlineColor') + ' ' + editable.css('outlineStyle') + ' 5px')
95-
.removeClass('aloha-editable-highlight')
96-
.animate({
97-
outlineWidth : '0px'
98-
}, 300, 'swing', animateEnd);
91+
editable.removeClass('aloha-editable-highlight');
9992
}
10093
}
10194
}

src/plugins/common/list/css/list.css

+7
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,13 @@
7373
margin-left: 15px;
7474
}
7575

76+
/**
77+
* Make <br> visible on line ending of <li> elements
78+
*/
79+
.aloha-block li:after {
80+
content:'\0200B'
81+
}
82+
7683
/**
7784
* Predefined list styles
7885
**/

src/plugins/common/table/lib/table-cell.js

+11-41
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ define([
417417
* Starts the cell selection mode
418418
*/
419419
TableCell.prototype._startCellSelection = function () {
420-
if(!this.tableObj.selection.cellSelectionMode) {
420+
if (!this.tableObj.selection.cellSelectionMode) {
421421

422422
//unselect currently selected cells
423423
this.tableObj.selection.unselectCells();
@@ -427,7 +427,7 @@ define([
427427

428428
//bind a global mouseup event handler to stop cell selection
429429
var that = this;
430-
jQuery('body').bind('mouseup.cellselection', function(event) {
430+
jQuery('body').bind('mouseup.cellselection', function (event) {
431431
that._endCellSelection();
432432
});
433433

@@ -438,7 +438,7 @@ define([
438438
/**
439439
* Ends the cell selection mode
440440
*/
441-
TableCell.prototype._endCellSelection = function() {
441+
TableCell.prototype._endCellSelection = function () {
442442
if (this.tableObj.selection.cellSelectionMode) {
443443
Utils.selectAnchorContents(this.tableObj.selection.selectedCells);
444444

@@ -474,13 +474,13 @@ define([
474474
"left": left
475475
};
476476
};
477-
477+
478478
/**
479479
* Toggles selection of cell.
480480
* This works only when cell selection mode is active.
481481
*/
482-
TableCell.prototype._selectCellRange = function() {
483-
if(this.tableObj.selection.resizeMode || !this.tableObj.selection.cellSelectionMode) {
482+
TableCell.prototype._selectCellRange = function () {
483+
if (this.tableObj.selection.resizeMode || !this.tableObj.selection.cellSelectionMode) {
484484
return;
485485
}
486486

@@ -528,7 +528,7 @@ define([
528528
if (!jQuery.browser.msie) {
529529
var s = window.getSelection();
530530
// WebKit
531-
if (s.setBaseAndExtent /*&& e> 0 */ ) {
531+
if (s.setBaseAndExtent /*&& e> 0 */) {
532532
s.setBaseAndExtent(e, 0, e, Math.max(0, e.innerText.length - 1));
533533
}
534534
// Firefox and Opera
@@ -582,30 +582,24 @@ define([
582582
};
583583

584584
/**
585-
* The key-up event for the editable-div in the td-field. Just check if the div
586-
* is empty and insert an &nbsp;
585+
* The key-up event for the editable-div in the td-field.
587586
*
588587
* @param jqEvent
589588
* the jquery-event object
590589
* @return void
591590
*/
592-
TableCell.prototype._editableKeyUp = function (jqEvent) {
593-
//TODO do we need to check for empty cells and insert a space?
594-
//this._checkForEmptyEvent(jqEvent);
595-
};
591+
TableCell.prototype._editableKeyUp = function (jqEvent) {};
596592

597593
/**
598-
* The key-down event for the ediable-div in the td-field. Check if the the div
599-
* is empty and insert an &nbsp. Furthermore if cells are selected, unselect
600-
* them.
594+
* The key-down event for the ediable-div in the td-field.
601595
*
602596
* @param jqEvent
603597
* the jquery-event object
604598
* @return void
605599
*/
606600
TableCell.prototype._editableKeyDown = function (jqEvent) {
607601
var KEYCODE_TAB = 9;
608-
this._checkForEmptyEvent(jqEvent);
602+
609603
if (this.obj[0] === this.tableObj.obj.find('tr:last td:last')[0]) {
610604
// only add a row on a single key-press of tab (so check that alt-,
611605
// shift- or ctrl-key are NOT pressed)
@@ -624,30 +618,6 @@ define([
624618
}
625619
};
626620

627-
/**
628-
* The custom keyup event for a table-cell Checks if the cell is empty and
629-
* inserts a space (\u00a0)
630-
*
631-
* @param e
632-
* the event object which is given by jquery
633-
* @return void
634-
*/
635-
TableCell.prototype._checkForEmptyEvent = function (jqEvent) {
636-
var $wrapper = jQuery(this.wrapper),
637-
text = $wrapper.text();
638-
639-
if ($wrapper.children().length > 0) {
640-
return;
641-
}
642-
643-
// if empty insert a blank space and blur and focus the wrapper
644-
if (text === '') {
645-
this.wrapper.text('');
646-
this.wrapper.get(0).blur();
647-
this.wrapper.get(0).focus();
648-
}
649-
};
650-
651621
/**
652622
* Given a cell, will return the container element of the contents
653623
* of the cell. The container element may be the given cell itself,

0 commit comments

Comments
 (0)