[GitHub] camel pull request #2280: CAMEL-12422 Fixed language declaration for code sn...

2018-04-04 Thread fbolton
GitHub user fbolton opened a pull request:

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

CAMEL-12422 Fixed language declaration for code snippets in documenta…

…tion

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

$ git pull https://github.com/fbolton/camel camel-12422

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

https://github.com/apache/camel/pull/2280.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 #2280


commit 6d9e172de7572038529b394f4159f5693225389c
Author: Fintan Bolton <fbolton@...>
Date:   2018-04-04T15:18:22Z

CAMEL-12422 Fixed language declaration for code snippets in documentation




---


[GitHub] camel pull request #2242: CAMEL-12297 Miscellaneous fixes to AsciiDoc format...

2018-03-02 Thread fbolton
GitHub user fbolton opened a pull request:

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

CAMEL-12297 Miscellaneous fixes to AsciiDoc format and layout

These fixes make it possible to build the Camel component documentation 
cleanly, when it is put through an AsciiDoc -> DocBook ->  style 
of tool chain.

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

$ git pull https://github.com/fbolton/camel camel-12297

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

https://github.com/apache/camel/pull/2242.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 #2242


commit 142aa6316faca63d77aafc4d0911b3f03af9a30c
Author: Fintan Bolton <fbolton@...>
Date:   2018-02-28T15:46:29Z

CAMEL-12297 Miscellaneous fixes to AsciiDoc format and layout

commit 6c66ecf39b02df28b71e53061d661124ee4033c6
Author: Fintan Bolton <fbolton@...>
Date:   2018-03-02T09:40:04Z

CAMEL-12297 Fixed formatting error in ssh-component.adoc

commit 8a976abde4447e694938c711212caf08719c9ca7
Author: Fintan Bolton <fbolton@...>
Date:   2018-03-02T10:37:44Z

CAMEL-12297 Sorted out missing images in doc




---


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

2018-02-09 Thread fbolton
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 <fbolton@...>
Date:   2018-02-08T17:13:29Z

CAMEL-12246 Fixed a duplicate ID in the AsciiDoc source

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

CAMEL-12246 Replaced file links with AsciiDoc internal cross references

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

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

commit 8b850266f845e42901005cee568c68f73ed58661
Author: Fintan Bolton <fbolton@...>
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




---