Roan Horning rho_n
rho_n closed issue HPR/hpr_generator#237 2025-01-24 14:35:05 +00:00
Remove Show Transcript from end of ep pages and move srt and txt link to top
rho_n commented on pull request HPR/hpr_generator#243 2025-01-24 03:53:49 +00:00
[i237] Remove Show Transcrip from after show notes to before show notes

Here is what the changes look like: image

rho_n created pull request HPR/hpr_generator#243 2025-01-24 03:48:32 +00:00
[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
45dd69d855 Replace spx file reference with opus
f58e25a685 Move location of transcription text
1cec6b45f0 Simplify transcription text
Compare 3 commits »
rho_n opened issue HPR/hpr_generator#242 2025-01-23 15:21:58 +00:00
Prevent future shows from being included in the Tag index
rho_n commented on issue HPR/hpr_generator#237 2025-01-22 17:48:32 +00:00
Remove Show Transcript from end of ep pages and move srt and txt link to top

Here is a sample of the change I made--is this ok? image

rho_n opened issue HPR/hpr_hub#81 2025-01-22 17:10:10 +00:00
Broken redirect to Internet Archive for Today with a Techie shows
rho_n closed issue HPR/hpr_generator#240 2025-01-22 14:28:28 +00:00
Rename "Today with a Techie" folder to twt
rho_n created pull request HPR/hpr_generator#241 2025-01-22 05:14:18 +00:00
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
f135b1119a Change Today with a Techie href id
15547a2e87 Change Today with a Techie folder name
Compare 2 commits »
rho_n created branch i240_Rename-Today-with-a-Techie-folder in HPR/hpr_generator 2025-01-22 05:06:55 +00:00
rho_n opened issue HPR/hpr_generator#240 2025-01-21 22:18:28 +00:00
Rename "Today with a Techie" folder to twt
rho_n commented on issue HPR/hpr_generator#235 2024-12-28 18:11:17 +00:00
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…

rho_n commented on issue HPR/hpr_generator#235 2024-12-28 17:37:17 +00:00
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…

rho_n approved HPR/hpr_documentation#4 2024-12-28 17:04:38 +00:00
Update developer_information.md

The changes look good.

rho_n commented on issue HPR/hpr_hub#71 2024-12-28 16:45:24 +00:00
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.

rho_n commented on issue HPR/hpr_hub#71 2024-12-28 16:40:55 +00:00
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…