AAIU custom feed #4

Open
opened 2020-03-24 07:45:28 +00:00 by lucidiot · 1 comment
Owner

http://www.aaiu.ie/aaiureports?field_leg_inc_dat_value%5Bvalue%5D%5Bdate%5D=&sort_by=field_leg_rep_dat_value&sort_order=DESC&items_per_page=60

It seems the dates might get hard to parse due to it being placed in the middle of the item names without a real order. Might need a regex in there since the dates still seem to be formatted as DD [month name] YYYY.

http://www.aaiu.ie/aaiureports?field_leg_inc_dat_value%5Bvalue%5D%5Bdate%5D=&sort_by=field_leg_rep_dat_value&sort_order=DESC&items_per_page=60 It seems the dates might get hard to parse due to it being placed in the middle of the item names without a real order. Might need a regex in there since the dates still seem to be formatted as `DD [month name] YYYY`.
lucidiot added the
feed
label 2020-07-26 13:52:55 +00:00
Author
Owner

The website has been redesigned, new URL: https://aaiu.ie/aaiu-reports-alt/

The dates should be easier to parse now. Xidel can handle them easily with Pascal format strings:

$ xidel -e 'x:parse-date("January 22, 2023", "mmmm dd, yyyy")'
2023-01-22
The website has been redesigned, new URL: https://aaiu.ie/aaiu-reports-alt/ The dates should be easier to parse now. Xidel can handle them easily with Pascal format strings: ```sh $ xidel -e 'x:parse-date("January 22, 2023", "mmmm dd, yyyy")' 2023-01-22 ```
Sign in to join this conversation.
No description provided.