Skip to content

Commit 1fc9e67

Browse files
committed
Display more info. about unassigned issues
This commit uses the issues.html general template to display the activity of unassigned issues. It displays some useful information about issues which were not being provided earlier Closes #289
1 parent 44cb510 commit 1fc9e67

File tree

9 files changed

+52
-63
lines changed

9 files changed

+52
-63
lines changed

.moban.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ packages:
1111
- ci_build
1212
- meta_review
1313
- twitter
14-
- unassigned_issues
1514

1615
dependencies:
1716
- getorg~=0.3.1

.nocover.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ nocover_file_globs:
1212
- meta_review/handler.py
1313
- openhub/*.py
1414
- twitter/*.py
15-
# Optional coverage. Once off scripts.
16-
- unassigned_issues/unassigned_issues_scraper.py
1715
# The following rules can remain here
1816
# django db
1917
- '*/migrations/*.py'

community/urls.py

+5-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
from community.views import (
1111
HomePageView, JoinCommunityView,
12-
OrganizationTeams, InactiveIssuesList
12+
OrganizationTeams, InactiveIssuesList,
13+
UnassignedIssuesActivityList
1314
)
1415
from gci.views import GCIStudentsList
1516
from gci.feeds import LatestTasksFeed as gci_tasks_rss
@@ -18,9 +19,6 @@
1819
from data.views import ContributorsListView
1920
from gamification.views import GamificationResults
2021
from meta_review.views import ContributorsMetaReview
21-
from unassigned_issues.unassigned_issues_scraper import (
22-
unassigned_issues_activity_json,
23-
)
2422

2523

2624
def get_index():
@@ -91,10 +89,10 @@ def get_index():
9189
distill_file='inactive-issues/index.html',
9290
),
9391
distill_url(
94-
r'static/unassigned-issues.json', unassigned_issues_activity_json,
95-
name='unassigned_issues_activity_json',
92+
r'unassigned-issues/', UnassignedIssuesActivityList.as_view(),
93+
name='unassigned-issues',
9694
distill_func=get_index,
97-
distill_file='static/unassigned-issues.json',
95+
distill_file='unassigned-issues/index.html',
9896
),
9997
distill_url(
10098
r'gamification/$', GamificationResults.as_view(),

community/views.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
NewcomerPromotion,
2424
Feedback
2525
)
26-
from data.models import Team, InactiveIssue
26+
from data.models import Team, InactiveIssue, UnassignedIssuesActivity
2727
from gamification.models import Participant as GamificationParticipant
2828
from meta_review.models import Participant as MetaReviewer
2929

@@ -231,3 +231,16 @@ def get_context_data(self, **kwargs):
231231
context = get_header_and_footer(context)
232232
context['page_name'] = 'Inactive Issues List'
233233
return context
234+
235+
236+
class UnassignedIssuesActivityList(ListView):
237+
238+
template_name = 'issues.html'
239+
model = UnassignedIssuesActivity
240+
ordering = 'hoster'
241+
242+
def get_context_data(self, **kwargs):
243+
context = super().get_context_data(**kwargs)
244+
context = get_header_and_footer(context)
245+
context['page_name'] = 'Unassigned Issues Activity List'
246+
return context
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Generated by Django 2.1.7 on 2019-08-02 12:07
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('data', '0009_inactiveissue'),
10+
]
11+
12+
operations = [
13+
migrations.CreateModel(
14+
name='UnassignedIssuesActivity',
15+
fields=[
16+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
17+
('hoster', models.CharField(max_length=30)),
18+
('title', models.CharField(max_length=500)),
19+
('repository', models.CharField(max_length=100)),
20+
('number', models.SmallIntegerField()),
21+
('url', models.URLField()),
22+
],
23+
),
24+
]

data/models.py

+8
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,11 @@ class InactiveIssue(models.Model):
124124
repository = models.CharField(max_length=100)
125125
number = models.SmallIntegerField()
126126
url = models.URLField()
127+
128+
129+
class UnassignedIssuesActivity(models.Model):
130+
hoster = models.CharField(max_length=30)
131+
title = models.CharField(max_length=500)
132+
repository = models.CharField(max_length=100)
133+
number = models.SmallIntegerField()
134+
url = models.URLField()

setup.cfg

-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ testpaths =
1616
ci_build
1717
meta_review
1818
twitter
19-
unassigned_issues
2019

2120
python_files = test_*.py
2221
python_classes = *Test
@@ -70,7 +69,6 @@ source =
7069
ci_build
7170
meta_review
7271
twitter
73-
unassigned_issues
7472

7573
omit =
7674
tests/*
@@ -82,7 +80,6 @@ omit =
8280
meta_review/handler.py
8381
openhub/*.py
8482
twitter/*.py
85-
unassigned_issues/unassigned_issues_scraper.py
8683
*/migrations/*.py
8784
*/management/commands/*.py
8885
meta_review/load_from_db.py

templates/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<li><a href="#">Mentors</a></li>
8080
<li><a href="{% url 'community-gci' %}">Google Code-in Students</a></li>
8181
<li><a href="{% url 'inactive-issues' %}" title="List of all the issues on organization's main repository on which assignee has not shown any activity for more than 2 months.">Inactive issues</a></li>
82-
<li><a href="{% url 'unassigned_issues_activity_json' %}" title="List of all the issues on organization main repository on which someone has opened a pull request without getting assigned to it.">Unassigned issues activity</a></li>
82+
<li><a href="{% url 'unassigned-issues' %}" title="List of all the issues on organization main repository on which someone has opened a pull request without getting assigned to it.">Unassigned issues activity</a></li>
8383
<li><a href="{% url 'ci_build' %}">Project CI Build</a></li>
8484
{% if isTravis %}
8585
<li><a href="{{ travisLink }}" title="This website was built automatically using Travis CI.">TravisCI build info</a></li>

unassigned_issues/unassigned_issues_scraper.py

-48
This file was deleted.

0 commit comments

Comments
 (0)