[
https://issues.apache.org/jira/browse/ANY23-388?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16583914#comment-16583914
]
ASF GitHub Bot commented on ANY23-388:
--------------------------------------
Github user HansBrende commented on the issue:
https://github.com/apache/any23/pull/116
@larsgsvensson it looks like you may have rebased in the wrong direction?
One problem is that your master branch is 3 commits ahead of the apache/master
branch. So here's what I would do (before making any more commits):
``` bash
git checkout master
git reset --hard HEAD~3
git pull https://github.com/apache/any23.git master
git push -f origin master
git checkout ANY23-388
git reset --hard HEAD~5
git rebase master
git push -f origin ANY23-388
```
After you do that, then make your changes to the ANY23-388 branch. Then:
```bash
git add .
git commit -m "ANY23-388 [message]"
git push origin ANY23-388
```
Then we should be good to go.
> It should be possible to configure the NTriplesWriter to use unicode points
> ---------------------------------------------------------------------------
>
> Key: ANY23-388
> URL: https://issues.apache.org/jira/browse/ANY23-388
> Project: Apache Any23
> Issue Type: Improvement
> Components: core
> Affects Versions: 2.2
> Reporter: Lars G. Svensson
> Priority: Minor
> Fix For: 2.3
>
>
> When using the NTriplesWriter, I wanted to configure it to write unicode
> points as escape sequences. I tried to subclass
> org.apache.any23.writer.TripleHandler and overwrite the access to the
> org.eclipse.rdf4j.rio.ntriples.NTriplesWriter but couldn't do that since the
> access to the NTriplesWriter is package protected. I ended up copying the
> code which seems a bit clunky...
> I was [asked to create a pull
> request|https://mail-archives.apache.org/mod_mbox/any23-user/201808.mbox/%3CCAGaRif3KAQbnK6XSKnVUZAJOn8aR_iCmJmGv_L05yg6nBkB%3DwA%40mail.gmail.com%3E],
> this issue is there to track that.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)