Skip to content

Commit 7c7d0ca

Browse files
Renamed top-level docgenerator directory to doctools.
This avoids having two docgenerator directories nested within one another.
1 parent 726f071 commit 7c7d0ca

File tree

137 files changed

+3
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
deploy_key
22
.DS_Store
3-
docgenerator/db.sqlite3
3+
doctools/db.sqlite3
44
__pycache__
55
venv/
66
.idea/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docgenerator/spectools/migrations/0014_auto_20210329_1528.py renamed to doctools/spectools/migrations/0014_auto_20210329_1528.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ class Migration(migrations.Migration):
1818
migrations.AlterField(
1919
model_name='exampledocument',
2020
name='image_url',
21-
field=models.CharField(blank=True, help_text='Path to the image within the docgenerator/media directory, e.g., "/static/examples/test.jpg".', max_length=300),
21+
field=models.CharField(blank=True, help_text='Path to the image within the doctools/media directory, e.g., "/static/examples/test.jpg".', max_length=300),
2222
),
2323
]

docgenerator/spectools/models.py renamed to doctools/spectools/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ class ExampleDocument(models.Model):
523523
blurb = models.TextField(blank=True)
524524
document = models.TextField()
525525
image_url = models.CharField(max_length=300, blank=True,
526-
help_text='Path to the image within the docgenerator/media directory, e.g., "/static/examples/test.jpg".'
526+
help_text='Path to the image within the doctools/media directory, e.g., "/static/examples/test.jpg".'
527527
)
528528
is_featured = models.BooleanField(default=False)
529529

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)