Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: laurentC35/Eno
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.0-rc
Choose a base ref
...
head repository: laurentC35/Eno
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 7 commits
  • 3 files changed
  • 2 contributors

Commits on Feb 26, 2020

  1. Create maven.yml

    laurentC35 authored Feb 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e5ec1e3 View commit details
  2. Delete maven.yml

    laurentC35 authored Feb 26, 2020
    Copy the full SHA
    367e72d View commit details
  3. Merge pull request #4 from laurentC35/eno-v2

    Eno v2
    laurentC35 authored Feb 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    21e474b View commit details
  4. Merge pull request #5 from laurentC35/multi-model

    Multi model
    laurentC35 authored Feb 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    66e1d0c View commit details

Commits on Mar 5, 2020

  1. Update pom.xml

    laurentC35 committed Mar 5, 2020
    Copy the full SHA
    6550a69 View commit details

Commits on Apr 9, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e9c5489 View commit details
  2. Update .gitignore

    laurentC35 committed Apr 9, 2020
    Copy the full SHA
    32e94be View commit details
Showing with 7 additions and 5 deletions.
  1. +3 −1 .gitignore
  2. +3 −3 pom.xml
  3. +1 −1 src/main/resources/xslt/pre-processing/pogues-xml/goto-2-if-then-else.xsl
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -7,10 +7,12 @@ target/
# Ignore java libraries
lib/

# Ignore Eclipse files
# Ignore IDE files
.classpath
.project
.settings/
.idea
eno-core.iml

# Generated files
#src/main/resources/xslt/inputs/ddi/source.xsl
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@
<xalan.version>2.7.1</xalan.version>
<slf4j.version>1.7.25</slf4j.version>
<eclipse.version>2.6.0</eclipse.version>
<jaxb-api.version>2.3.1</jaxb-api.version>
<jaxb-api.version>2.3.0</jaxb-api.version>

<apache-commons.version>3.5</apache-commons.version>
<junit.version>4.12</junit.version>
@@ -64,8 +64,8 @@
<source.plugin.version>3.0.1</source.plugin.version>
<javadoc.plugin.version>3.0.0</javadoc.plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compiler.source>11</compiler.source>
<compiler.target>11</compiler.target>
<compiler.source>1.8</compiler.source>
<compiler.target>1.8</compiler.target>
</properties>

<dependencies>
Original file line number Diff line number Diff line change
@@ -221,7 +221,7 @@
<xsl:for-each select="$list_distinct_goto//poguesGoto:gotoValue[number(poguesGoto:From/@position) &lt; number($initial-from/@position)
and number(poguesGoto:To/@position) &gt; number($initial-from/@position)
and number(poguesGoto:To/@position) &lt; number($initial-to/@position)]">
<xsl:sort select="poguesGoto:To/@position" order="ascending"/>
<xsl:sort select="number(poguesGoto:To/@position)" order="ascending"/>
<xsl:copy-of select="."/>
</xsl:for-each>
</poguesGoto:gotoValues>