Block a user
097b50b30b
Next free slot algorithm now in TT² form
8325b2c0d1
Unwanted items commented out
fix2_next_available_episode
c8135d811d
Bug fix of query to find days to next free slot
dab80f1772
Using even more complex CTE query for testing
Computation of days to next free slot is incorrect on index page
Tested this and the MySQL variant, and the change seems to solve the problem.
The last_year
, last_month
and last_month
fields are used in content-index.tpl.html
to compute the number of…
Computation of days to next free slot is incorrect on index page
51d328203b
Merge pull request 'Fixing days to next free slot' (#174) from fix_next_available_episode into main
366729a827
Fixing days to next free slot
Fixing days to next free slot
Fixing days to next free slot
Computation of days to next free slot is incorrect on index page
The first draft of a replacement query is this:
WITH next_id AS (
SELECT id, id + 1 AS id_next, date as last_date
FROM eps
WHERE eps.date > date('now')
),
free_slot AS (
…
Computation of days to next free slot is incorrect on index page
The original query was as followed (slightly edited for testing):
WITH next_id AS (
SELECT id, id + 1 AS id_next, date as last_date
FROM eps
WHERE eps.date > date('now')
)
SE…
Relative links aren't working on "Stuff you need to know" page
I still don't get the full-stop link. In order to click it you have to have the header it's attached to on the page. Clicking it leaves you where you already are! OK, it might shift the page so…
Computation of days to next free slot is incorrect on index page
Relative links aren't working on "Stuff you need to know" page
Given:
<h1 id="agreement">Stuff you need to know<a href="#agreement">.</a></h1>
I would be inclined to drop the <a>
tag entirely:
<h1 id="agreement">Stuff you need to…
Relative links aren't working on "Stuff you need to know" page
I see what you mean (I think).
If I go to the main about
page and click on Stuff you need to know. I am sent to [https://hackerpublicradio.org/abo…