This is an automated email from the ASF dual-hosted git repository.
hansva pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
from 2fa12bbedc Merge pull request #4711 from nadment/4708
add b3925a3e59 Enhanced syntax highlighting #4737 - Add StyleAttribute to
highlight with color and style (NORMAL,ITALIC,BOLD) - Add symbol syntax
coloring - Fix JavaScript function names highlight - Replace synchronized
Vector and Hashtable class - Change colors for dark mode - Fix look
UserDefinedJavaClassDialog - Code cleanup
add 01ebf38622 fix rebase, #4737
new 17c3a0c75d Merge pull request #4738 from nadment/4737
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../UserDefinedJavaClassDialog.java | 1 +
.../transforms/tableinput/TableInputDialog.java | 16 +-
.../ui/core/widget/JavaScriptStyledTextComp.java | 4 +-
.../hop/ui/core/widget/SQLStyledTextComp.java | 6 +-
.../widget/highlight/GenericCodeHighlight.java | 171 ++---
.../ui/core/widget/highlight/JavaHighlight.java | 489 ++++++------
.../core/widget/highlight/JavaScriptHighlight.java | 299 ++++----
.../core/widget/highlight/SQLValuesHighlight.java | 847 ---------------------
.../hop/ui/core/widget/highlight/SqlHighlight.java | 833 ++++++++++++++++++++
.../ui/core/widget/highlight/StyleAttribute.java | 94 +++
10 files changed, 1416 insertions(+), 1344 deletions(-)
delete mode 100644
ui/src/main/java/org/apache/hop/ui/core/widget/highlight/SQLValuesHighlight.java
create mode 100644
ui/src/main/java/org/apache/hop/ui/core/widget/highlight/SqlHighlight.java
create mode 100644
ui/src/main/java/org/apache/hop/ui/core/widget/highlight/StyleAttribute.java