Skip to content

Commit 6f486db

Browse files
committed
2 parents 825237a + 8f6b84c commit 6f486db

File tree

7 files changed

+70
-52
lines changed

7 files changed

+70
-52
lines changed

content/blog/authors/krysal/contents.lr

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ name: Krystle Salazar
55
md5_hashed_email: f36bcb2678c0c0845f8adf634c4d764b
66
---
77
about:
8-
Krystle is a Software Developer from Venezuela, working on **Reimplement [CC’s Legal Database](https://github.com/creativecommons/caselaw) using Django** as part of Outreachy Summer round of 2020. You can find her as `@krysal` on the CC Slack.
8+
Krystle is a Software Developer from Venezuela, working on **Reimplement [CC’s Legal Database](https://github.com/creativecommons/legaldb) using Django** as part of Outreachy Summer round of 2020. You can find her as `@krysal` on the CC Slack.

content/blog/entries/legal-database-a-new-beginning/contents.lr

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ It has only been a week so we're just starting, so next task to do sooner are:
5353
### How you can help
5454

5555
We are still discussing the new image before start coding so these are some options if you want to get involved:
56-
- Suggest improvements to designs/UX or new features joining the discussion on the [`#cc-dev-legal-database`](https://creativecommons.slack.com/channels/cc-dev-legal-database) Slack channel or on the [github](https://github.com/creativecommons/caselaw) project.
56+
- Suggest improvements to designs/UX or new features joining the discussion on the [`#cc-dev-legal-database`](https://creativecommons.slack.com/channels/cc-dev-legal-database) Slack channel or on the [github](https://github.com/creativecommons/legaldb) project.
5757
- Contribute directly to the CC's Vocabulary design system on [github](https://github.com/creativecommons/vocabulary).
5858
- Submit a case or a scholarship related to CC licenses on the [current site](https://labs.creativecommons.org/caselaw/contribute/).
5959

6060
**CC Legal Database** is my Outreachy project for this summer, under the guidance of Director of Engineering [Kriti Godey](https://creativecommons.org/author/kriticreativecommons-org/) and Core Systems Manager [Timid Robot Zehta](https://creativecommons.org/author/timidcreativecommons-org/), they are very supportive and the CC community is notable welcoming.
6161

62-
This is the first post of a series so stay tuned if you're interested to know more.
62+
This is the first post of a series so stay tuned if you're interested to know more.

content/blog/entries/legal-database-features/contents.lr

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ While developing the mentioned functionalities I was also in charge of adding au
3939
<figcaption>Example of page obtained when requesting a case detail that is not published or doesn't exist.</figcaption>
4040
</figure>
4141

42-
In this process of adding automated tests I wanted them to run on every pull request created, so I learned how to write a GitHub Action with a PostgreSQL service, the DBMS used in this case. Previously, I had already created a job for linting, so I needed to add another one to run in parallel to save time. This service provided by GitHub is pretty cool and useful, it opens up a world of possibilities, from running third party services like [Lighthouse test](https://github.com/GoogleChrome/lighthouse-ci) to even [send tweets](https://github.com/gr2m/twitter-together)! If you want to see the GitHub Action file configurated for this project, check it out: [`.github/workflows/main.yml`](https://github.com/creativecommons/caselaw/blob/31c3002a7860d78f3fdb464150c5c1b2f8bb86fc/.github/workflows/main.yml).
42+
In this process of adding automated tests I wanted them to run on every pull request created, so I learned how to write a GitHub Action with a PostgreSQL service, the DBMS used in this case. Previously, I had already created a job for linting, so I needed to add another one to run in parallel to save time. This service provided by GitHub is pretty cool and useful, it opens up a world of possibilities, from running third party services like [Lighthouse test](https://github.com/GoogleChrome/lighthouse-ci) to even [send tweets](https://github.com/gr2m/twitter-together)! If you want to see the GitHub Action file configurated for this project, check it out: [`.github/workflows/main.yml`](https://github.com/creativecommons/legaldb/blob/31c3002a7860d78f3fdb464150c5c1b2f8bb86fc/.github/workflows/main.yml).
4343

4444
### Accessibility
4545

@@ -67,4 +67,4 @@ Some other features were implemented but only relevant to our registered users,
6767

6868
After reviewing all done this last month I see significant progress has been made, I have learned many things along the way: more of what Django and its ecosystem offers, about accessibility, continuous integration in Heroku and GitHub, and more. One of the things that makes me most happy is being able to be contributing and being part of an Open Source organization, knowing how it moves and works inside, something I never imagine before.
6969

70-
Time flies and there are less than two weeks left to finish, so if you want to follow the project here is the repository to suggest improvements or report bugs, or if you prefer something less technical you can join us on the [slack channel](https://creativecommons.slack.com/channels/cc-dev-legal-database).
70+
Time flies and there are less than two weeks left to finish, so if you want to follow the project here is the repository to suggest improvements or report bugs, or if you prefer something less technical you can join us on the [slack channel](https://creativecommons.slack.com/channels/cc-dev-legal-database).

content/community/contents.lr

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ The channels most relevant to CC's developer community are:
4242
<td><a href="https://github.com/creativecommons/cccatalog-dataviz">CC Catalog visualizations.</a></td>
4343
</tr>
4444
<tr>
45-
<td><code>#cc-dev-legal-database</code></td>
46-
<td><a href="https://labs.creativecommons.org/caselaw/">CC Legal Database.</a></td>
45+
<td><code>#cc-dev-legaldb</code></td>
46+
<td><a href="https://github.com/creativecommons/legaldb">CC Legal Database.</a></td>
4747
</tr>
4848
<tr>
4949
<td><code>#cc-dev-license-chooser</code></td>

databags/community_team_members.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
}
188188
],
189189
"name": "Legal Database",
190-
"repos": "caselaw"
190+
"repos": "legaldb"
191191
},
192192
{
193193
"members": [

databags/issues.json

+39-21
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"number": 583,
1212
"repo": "cccatalog-api",
1313
"title": "Invalidate filter cache after updates to content provider table",
14-
"updatedAt": 1605736595,
14+
"updatedAt": 1606385309,
1515
"url": "https://github.com/creativecommons/cccatalog-api/issues/583"
1616
},
1717
{
@@ -315,7 +315,7 @@
315315
"number": 405,
316316
"repo": "cccatalog-api",
317317
"title": "Document error schemas",
318-
"updatedAt": 1601000312,
318+
"updatedAt": 1606390369,
319319
"url": "https://github.com/creativecommons/cccatalog-api/issues/405"
320320
},
321321
{
@@ -431,6 +431,38 @@
431431
"updatedAt": 1603376723,
432432
"url": "https://github.com/creativecommons/creativecommons.org/issues/940"
433433
},
434+
{
435+
"createdAt": 1605704389,
436+
"labels": [
437+
"good first issue",
438+
"help wanted",
439+
"\ud83c\udfc1 status: ready for work",
440+
"\ud83d\udcc4 aspect: text",
441+
"\ud83d\udee0 goal: fix",
442+
"\ud83d\udfe7 priority: high"
443+
],
444+
"number": 207,
445+
"repo": "chooser",
446+
"title": "Correct the attribution information for the CC0 license",
447+
"updatedAt": 1606284360,
448+
"url": "https://github.com/creativecommons/chooser/issues/207"
449+
},
450+
{
451+
"createdAt": 1605704042,
452+
"labels": [
453+
"good first issue",
454+
"help wanted",
455+
"\ud83c\udfc1 status: ready for work",
456+
"\ud83d\udcbb aspect: code",
457+
"\ud83d\udee0 goal: fix",
458+
"\ud83d\udfe7 priority: high"
459+
],
460+
"number": 206,
461+
"repo": "chooser",
462+
"title": "Copy action is not working in plain text tab",
463+
"updatedAt": 1606041470,
464+
"url": "https://github.com/creativecommons/chooser/issues/206"
465+
},
434466
{
435467
"createdAt": 1604609253,
436468
"labels": [
@@ -460,7 +492,7 @@
460492
"number": 759,
461493
"repo": "vocabulary",
462494
"title": "Add two new text styles",
463-
"updatedAt": 1605624402,
495+
"updatedAt": 1606142607,
464496
"url": "https://github.com/creativecommons/vocabulary/issues/759"
465497
},
466498
{
@@ -658,7 +690,7 @@
658690
"number": 34,
659691
"repo": "licensebuttons",
660692
"title": "Create smaller \"icon\" files",
661-
"updatedAt": 1605831479,
693+
"updatedAt": 1606154732,
662694
"url": "https://github.com/creativecommons/licensebuttons/issues/34"
663695
},
664696
{
@@ -694,20 +726,6 @@
694726
"updatedAt": 1602683499,
695727
"url": "https://github.com/creativecommons/cccatalog/issues/492"
696728
},
697-
{
698-
"createdAt": 1598461505,
699-
"labels": [
700-
"Hacktoberfest",
701-
"help wanted",
702-
"internship",
703-
"\u2728 goal: improvement"
704-
],
705-
"number": 619,
706-
"repo": "vocabulary",
707-
"title": "Grid/Page Layout Documentation",
708-
"updatedAt": 1600999539,
709-
"url": "https://github.com/creativecommons/vocabulary/issues/619"
710-
},
711729
{
712730
"createdAt": 1598096793,
713731
"labels": [
@@ -730,10 +748,10 @@
730748
"\u2728 goal: improvement"
731749
],
732750
"number": 73,
733-
"repo": "caselaw",
751+
"repo": "legaldb",
734752
"title": "Replace Vocabulary CDN",
735753
"updatedAt": 1600999344,
736-
"url": "https://github.com/creativecommons/caselaw/issues/73"
754+
"url": "https://github.com/creativecommons/legaldb/issues/73"
737755
},
738756
{
739757
"createdAt": 1597431795,
@@ -747,7 +765,7 @@
747765
"number": 63,
748766
"repo": "ccos-scripts",
749767
"title": "Improvements to logging",
750-
"updatedAt": 1605714773,
768+
"updatedAt": 1606397027,
751769
"url": "https://github.com/creativecommons/ccos-scripts/issues/63"
752770
},
753771
{

databags/repos.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -32,28 +32,6 @@
3232
"url": "https://github.com/creativecommons/candela-utility",
3333
"website": "http://certificates.creativecommons.org/"
3434
},
35-
{
36-
"created": "2018-05-16T19:44:57",
37-
"description": "Curated repository of Case Law and Scholarship data from around the world in a Django based website.",
38-
"engineering_project": true,
39-
"english_name": "CC Legal Database",
40-
"featured": false,
41-
"id": 133715391,
42-
"language": "HTML",
43-
"license": {
44-
"name": "MIT License",
45-
"url": "https://github.com/creativecommons/caselaw/blob/main/LICENSE"
46-
},
47-
"name": "caselaw",
48-
"slack": "cc-dev-legal-database",
49-
"technologies": [
50-
"Python",
51-
"Django",
52-
"PostgreSQL"
53-
],
54-
"url": "https://github.com/creativecommons/caselaw",
55-
"website": ""
56-
},
5735
{
5836
"created": "2015-11-16T19:24:04",
5937
"description": "Creative Commons JavaScript license selector in the form of a JavaScript widget",
@@ -648,6 +626,28 @@
648626
"url": "https://github.com/creativecommons/labs",
649627
"website": ""
650628
},
629+
{
630+
"created": "2018-05-16T19:44:57",
631+
"description": "CC Legal Database: curated repository of Case Law and Scholarship data from around the world in a Django based website.",
632+
"engineering_project": true,
633+
"english_name": "CC Legal Database",
634+
"featured": false,
635+
"id": 133715391,
636+
"language": "HTML",
637+
"license": {
638+
"name": "MIT License",
639+
"url": "https://github.com/creativecommons/legaldb/blob/main/LICENSE"
640+
},
641+
"name": "legaldb",
642+
"slack": "cc-dev-legal-database",
643+
"technologies": [
644+
"Python",
645+
"Django",
646+
"PostgreSQL"
647+
],
648+
"url": "https://github.com/creativecommons/legaldb",
649+
"website": ""
650+
},
651651
{
652652
"created": "2013-10-28T02:42:48",
653653
"description": "Creative Commons badges, license Buttons, etc.",
@@ -734,7 +734,7 @@
734734
"engineering_project": true,
735735
"featured": false,
736736
"id": 59230280,
737-
"language": "CSS",
737+
"language": "SCSS",
738738
"license": {
739739
"name": "GNU General Public License v2.0",
740740
"url": "https://github.com/creativecommons/new-www-theme/blob/master/LICENSE"

0 commit comments

Comments
 (0)