1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * <https://y.st./>
- * Copyright © 2016 Alex Yst <mailto:copyright@y.st>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org./licenses/>.
- **/
- $xhtml = array(
- 'title' => "$a[RFC] 3986",
- 'body' => <<<END
- <p>
- Cyrus tuned in the last of what he needed to for his Boy Scout project.
- Now it just needs to be reviewed.
- If it does not meet the requirements, it is too late for him to get a second chance.
- </p>
- <p>
- Aside from that, the day was pretty uneventful.
- I put in some effort in building a new implementation of my <code>merge_uris()</code> function, but it started terning into a small suite of $a[URI]-related functions that are interrelated.
- Instead of building the <code>merge_uris()</code> function to have the capabilities that it had formerly depended on a built-in $a[PHP] functions for, I built an implementation of the built-in function that actually works.
- I also moved the function's inverse outside of the <code>merge_uris()</code> function and into its own function and started rebuilding the path resolution code to its own function as well.
- I will work more on it tomorrow.
- I have started reading <a href="https://tools.ietf.org/html/rfc3986">$a[RFC] 3986</a> from the top; I want to build my implementation to be as close to the official specification as possible.
- </p>
- <p>
- At the end of the day, Alyssa had to return home.
- </p>
- <p>
- My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
- </p>
- END
- );
|