You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by fbolton <gi...@git.apache.org> on 2018/02/09 12:56:03 UTC

[GitHub] camel pull request #2215: CAMEL-12246 Fix broken links

GitHub user fbolton opened a pull request:

    https://github.com/apache/camel/pull/2215

    CAMEL-12246 Fix broken links

    @davsclaus and @oscerd, here are the changes to the AsciiDoc linking that we discussed. Here's a summary of what was done:
    
    * Resolve the duplicate IDs (can't do any harm, and is actually required for our downstream builds)
    * Take into account the -eip suffix, which might reduce the number of unresolved links.
    * All resolvable links to be transformed to AsciiDoc cross-reference format, as follows:
    ```
    link:LINKNAME.html[Text of Link]  =>  <<LINKNAME, Text of Link>>
    ```
      Where, in some cases, `LINKNAME` might be augmented by a `-component`, `-dataformat`, `-language`, or `-eip` suffix.
    * Identify the broken EIP links and leave them alone. These will continue to show up as broken links, but we can easily fix them later.
    * All other unresolved links will be removed. Probably do this by replacing:
    ```
    link:LINKNAME.html[Text of Link]   =>  Text of Link
    ```

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/fbolton/camel fix-broken-links

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/camel/pull/2215.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #2215
    
----
commit 9641a6edb74138dc8313deba80a0a46d4236a6e4
Author: Fintan Bolton <fb...@...>
Date:   2018-02-08T17:13:29Z

    CAMEL-12246 Fixed a duplicate ID in the AsciiDoc source

commit b61b7a18999594a32c67061eb41c3d6762db756a
Author: Fintan Bolton <fb...@...>
Date:   2018-02-09T10:56:09Z

    CAMEL-12246 Replaced file links with AsciiDoc internal cross references

commit 5b6d0a8fcb2c36216d812d8c0bac77262f9fe743
Author: Fintan Bolton <fb...@...>
Date:   2018-02-09T12:18:06Z

    CAMEL-12246 Replaced file links that were split over two lines (manually)

commit 8b850266f845e42901005cee568c68f73ed58661
Author: Fintan Bolton <fb...@...>
Date:   2018-02-09T12:38:18Z

    CAMEL-12246 Replaced bad links with plain text, except for the files in camel-core/src/main/docs/eips/, which will be fixed later

----


---

[GitHub] camel pull request #2215: CAMEL-12246 Fix broken links

Posted by oscerd <gi...@git.apache.org>.
Github user oscerd closed the pull request at:

    https://github.com/apache/camel/pull/2215


---