You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@opennlp.apache.org by "Bruno P. Kinoshita (JIRA)" <ji...@apache.org> on 2017/05/10 09:43:04 UTC

[jira] [Commented] (OPENNLP-393) Add a contributions wanted page to our website

    [ https://issues.apache.org/jira/browse/OPENNLP-393?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16004408#comment-16004408 ] 

Bruno P. Kinoshita commented on OPENNLP-393:
--------------------------------------------

For the list of issues, I simply searched all issues marked with "help-wanted". Here's how to create a list and simply copy-paste to update that page. Will try to find a space in the Wiki for that.

{code}
#!/usr/bin/env python3

from jira import JIRA
import json

JIRA_URL='https://issues.apache.org/jira/'
jira = JIRA(JIRA_URL)

help_wanted_issues = jira.search_issues('project=OPENNLP AND resolution IS EMPTY and labels = help-wanted', maxResults=100)

for issue in help_wanted_issues:
    issue_url = "%sbrowse/%s" % (JIRA_URL, issue.key)
    print("* %s[%s]: %s" % (issue_url, issue.key, issue.fields.summary))
{code}

> Add a contributions wanted page to our website
> ----------------------------------------------
>
>                 Key: OPENNLP-393
>                 URL: https://issues.apache.org/jira/browse/OPENNLP-393
>             Project: OpenNLP
>          Issue Type: Task
>          Components: Website
>            Reporter: Joern Kottmann
>            Assignee: Bruno P. Kinoshita
>         Attachments: contributions-wanted-preview-1-fullpage.png
>
>
> OpenNLP would like to get more contributions from the community to encourage people to contribute more we should add a page which lists things which should be done in OpenNLP.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)