boakley / robotframework-hub

Web app for accessing robot framework assets
https://github.com/boakley/robotframework-hub/wiki
Apache License 2.0
169 stars 60 forks source link

[Question] Java keywords #73

Open claytonneal opened 7 years ago

claytonneal commented 7 years ago

Hello. Can the hub load java based keywords and expose them via the api to brackets editor? Thanks

boakley commented 7 years ago

I don't know. I haven't tried it. Internally, rfhub uses the robotframework libdoc library to generate the documentation, so any documentation it can generate should be able to be generated by rfhub.

If your libraries use the remote protocol, you might be able to load them into rfhub like this:

$ rfhub --library Remote::http://localhost:8270

On Thu, Feb 23, 2017 at 4:51 PM, Clayton Neal notifications@github.com wrote:

Hello. Can the hub load java based keywords and expose them via the api to brackets editor? Thanks

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/boakley/robotframework-hub/issues/73, or mute the thread https://github.com/notifications/unsubscribe-auth/ABEmYtU2UtEtpyMjOZTJjaqYorAKDK0lks5rfg12gaJpZM4MKmvF .

claytonneal commented 7 years ago

Hi. Libdoc can generate an xml library spec file containing keyword definitions. I could output this file as part of the java build. Does the hub look for libdoc files or try to run libdoc? It could be could to make it also look for the libdoc xml files. Thanks