Block a user
Remove Show Transcript from end of ep pages and move srt and txt link to top
[i237] Remove Show Transcrip from after show notes to before show notes
rho_n
created branch i237_Remove-Show-Transcript-from-end-of-ep-pages in HPR/hpr_generator
2025-01-24 03:46:47 +00:00
rho_n
pushed to i237_Remove-Show-Transcript-from-end-of-ep-pages at HPR/hpr_generator
2025-01-24 03:46:47 +00:00
Prevent future shows from being included in the Tag index
Broken redirect to Internet Archive for Today with a Techie shows
Rename "Today with a Techie" folder to twt
i240_Rename-Today-with-a-Techie-folder
rho_n
pushed to i240_Rename-Today-with-a-Techie-folder at HPR/hpr_generator
2025-01-22 05:06:55 +00:00
rho_n
created branch i240_Rename-Today-with-a-Techie-folder in HPR/hpr_generator
2025-01-22 05:06:55 +00:00
Rename "Today with a Techie" folder to twt
Using a base uri is breaking linking to local images
I haven't test, but thinking about the issue and things observed while developing the generator, when using the base tag then any relative src or href paths need to be relative to the href set in…
Using a base uri is breaking linking to local images
I see the issue. The <link href="./css/hpr.css" rel="stylesheet" /> should be <link href="/css/hpr.css" rel="stylesheet" /> (i.e. don't use a relative path but absolute path). That…
Query to get the next free slot
I do like DB solutions as I find I end up rewriting front end code more often than DB queries, but HPR code is probably more stable than other projects I have helped--so not as much an issue.
Query to get the next free slot
Yes, doing it from PHP like that is easy enough. The SQL from the first CTE, reserved_dates, gives you the list of dates to have been taken:
SELECT date AS 'reserve_date', id AS 'ep_num'
F…