-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: (69 commits) iOS v13.1.1, fixing crash on iOS 16. Bumped version number Fixed crash on older iOS versions iOS v13.1 Handling missing youtube duration. Fixing strip underscore iOS 15 screenshots Don't use the underscore cache buster anymore. Correct archive sub count Don't resync stories on new sub if it already has archive subscribers. More numpy changes. Strip underscores from feed addresses, special case jwz Load offline story images even when online to speed up image display. #1875 (borders between panes not using theme colors) #1247 (Mac Catalyst edition) #1874 (Crash on opening widget story) Allowing traffic on docker0 interface. Clean TXT records so letsencrypt doesn't fail Thresholding bounced newsletters email. #1247 (Mac Catalyst edition) ...
- Loading branch information
Showing
670 changed files
with
47,923 additions
and
34,323 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
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
#!/srv/newsblur/venv/newsblur3/bin/python | ||
import sys | ||
sys.path.append('/srv/newsblur') | ||
|
||
sys.path.append("/srv/newsblur") | ||
from newsblur_web import settings | ||
|
||
username = settings.DATABASES['default']['USER'] | ||
password = settings.DATABASES['default']['PASSWORD'] | ||
username = settings.DATABASES["default"]["USER"] | ||
password = settings.DATABASES["default"]["PASSWORD"] | ||
|
||
if sys.argv[1] =='postgres_credentials': | ||
if sys.argv[1] == "postgres_credentials": | ||
print(f"{username}:{password}") | ||
if sys.argv[1] =='s3_bucket': | ||
print(settings.S3_BACKUP_BUCKET) | ||
if sys.argv[1] == "s3_bucket": | ||
print(settings.S3_BACKUP_BUCKET) |
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
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
Oops, something went wrong.