-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* core functionality for reporting ips done * valid ip and non duplicate check added * reverting poetry.lock * Resolved merge conflicts in poetry.lock * Fix formatting issues with ruff * removed set-ouput which was deprecated * automatic handling of outdated poetry.lock * minor link updates * poetry.lock reversed * ruff fix * revert blog formatttings * removed atomic to resolve the error * to check the test urls case * resolving merge conflict * removing redundant lines in poetry.lock * pre commit fixes * ruff formats * run test resolution * ruff formats * attempt to resolve the merge migration conflicts * left * uncommented contributor stats * build fix * ruff fix * views fixes * ruff fixes * removed class-views * setup file * minor changes * resolving header file * header file reverse * fix djlint --------- Co-authored-by: DonnieBLT <[email protected]>
- Loading branch information
1 parent
1acbf2c
commit f8ed8b0
Showing
16 changed files
with
691 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ chromedriver | |
requirements.txt | ||
*.code-workspace | ||
*.log | ||
*.exe | ||
*.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,4 +124,3 @@ main() { | |
} | ||
|
||
main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Generated by Django 5.1.3 on 2024-11-10 06:57 | ||
|
||
import django.db.models.deletion | ||
from django.conf import settings | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("website", "0143_contributorstats_last_updated_and_more"), | ||
migrations.swappable_dependency(settings.AUTH_USER_MODEL), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name="IpReport", | ||
fields=[ | ||
( | ||
"id", | ||
models.AutoField( | ||
auto_created=True, | ||
primary_key=True, | ||
serialize=False, | ||
verbose_name="ID", | ||
), | ||
), | ||
("activity_title", models.CharField(max_length=255)), | ||
( | ||
"activity_type", | ||
models.CharField( | ||
choices=[("malicious", "Malicious"), ("friendly", "Friendly")], | ||
max_length=50, | ||
), | ||
), | ||
("ip_address", models.GenericIPAddressField()), | ||
( | ||
"ip_type", | ||
models.CharField(choices=[("ipv4", "IPv4"), ("ipv6", "IPv6")], max_length=10), | ||
), | ||
("description", models.TextField()), | ||
("created", models.DateTimeField(auto_now_add=True)), | ||
( | ||
"reporter_ip_address", | ||
models.GenericIPAddressField(blank=True, null=True), | ||
), | ||
( | ||
"user", | ||
models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
to=settings.AUTH_USER_MODEL, | ||
), | ||
), | ||
], | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Generated by Django 5.1.3 on 2024-11-10 07:20 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("website", "0144_ipreport"), | ||
("website", "0149_project_closed_issues_project_created_at_and_more"), | ||
] | ||
|
||
operations = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Generated by Django 5.1.3 on 2024-11-10 19:08 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("website", "0150_merge_20241110_0720"), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name="ContributorStats", | ||
fields=[ | ||
( | ||
"id", | ||
models.AutoField( | ||
auto_created=True, | ||
primary_key=True, | ||
serialize=False, | ||
verbose_name="ID", | ||
), | ||
), | ||
("username", models.CharField(max_length=255, unique=True)), | ||
("commits", models.IntegerField(default=0)), | ||
("issues_opened", models.IntegerField(default=0)), | ||
("issues_closed", models.IntegerField(default=0)), | ||
("prs", models.IntegerField(default=0)), | ||
("comments", models.IntegerField(default=0)), | ||
("assigned_issues", models.IntegerField(default=0)), | ||
("created", models.DateTimeField(auto_now_add=True)), | ||
], | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Generated by Django 5.1.3 on 2024-11-11 06:16 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("website", "0151_contributorstats"), | ||
("website", "0151_remove_project_latest_release"), | ||
] | ||
|
||
operations = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Generated by Django 5.1.3 on 2024-11-11 06:16 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("website", "0152_merge_20241111_0616"), | ||
] | ||
|
||
operations = [ | ||
migrations.DeleteModel( | ||
name="ContributorStats", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.