Update links to new directory structure

This commit is contained in:
Howard Hinnant
2017-10-16 09:00:40 -04:00
parent 7957b976bc
commit b3a55312ce
3 changed files with 15 additions and 15 deletions

View File

@@ -26,7 +26,7 @@
<br/>
<br/>
<a href="mailto:howard.hinnant@gmail.com">Howard E. Hinnant</a><br/>
2017-10-15<br/>
2017-10-16<br/>
</address>
<hr/>
<h1 align=center><code>date</code></h1>
@@ -53,7 +53,7 @@ This paper fully documents a date and time library for use with C++11 and C++14.
<p>
This entire library is implemented in a single header:
<a href="https://github.com/HowardHinnant/date/blob/master/date.h">date.h</a> and is
<a href="https://github.com/HowardHinnant/date/blob/master/include/date/date.h">date.h</a> and is
open source.
</p>
@@ -1475,7 +1475,7 @@ such extremes.
<p>
Here is a detailed specification of the entire library. This specification is detailed
enough that you could write your own implementation from it if desired. But feel free
to use <a href="https://github.com/HowardHinnant/date/blob/master/date.h">this one</a>
to use <a href="https://github.com/HowardHinnant/date/blob/master/include/date/date.h">this one</a>
instead. Each type, and each operation is simple
and predictable.
</p>

View File

@@ -26,7 +26,7 @@
<br/>
<br/>
<a href="mailto:howard.hinnant@gmail.com">Howard E. Hinnant</a><br/>
2016-05-21<br/>
2017-10-16<br/>
</address>
<hr/>
<h1 align=center><code>iso_week</code></h1>
@@ -53,7 +53,7 @@ that is fully interoperable with
<p>
This entire library is implemented in a single header:
<a href="https://github.com/HowardHinnant/date/blob/master/iso_week.h">iso_week.h</a>
<a href="https://github.com/HowardHinnant/date/blob/master/include/date/iso_week.h">iso_week.h</a>
and is open source using the MIT license.
</p>
@@ -201,7 +201,7 @@ solid step towards finding bugs at compile time!
<p>
Here is a detailed specification of the entire library. This specification is detailed
enough that you could write your own implementation from it if desired. But feel free
to use <a href="https://github.com/HowardHinnant/date/blob/master/iso_week.h">this one</a>
to use <a href="https://github.com/HowardHinnant/date/blob/master/include/date/iso_week.h">this one</a>
instead. Each type, and each operation is simple
and predictable.
</p>

18
tz.html
View File

@@ -26,7 +26,7 @@
<br/>
<br/>
<a href="mailto:howard.hinnant@gmail.com">Howard E. Hinnant</a><br/>
2017-09-30<br/>
2017-10-16<br/>
</address>
<hr/>
<h1 align=center>Time Zone Database Parser</h1>
@@ -3184,18 +3184,18 @@ When compiled with <code>USE_OS_TZDB == 1</code>, <code>link</code> will not exi
<p>
You will need the following four source files:
<a href="https://github.com/HowardHinnant/date/blob/master/tz.h"><code>date.h</code></a>,
<a href="https://github.com/HowardHinnant/date/blob/master/tz.h"><code>tz.h</code></a>,
<a href="https://github.com/HowardHinnant/date/blob/master/tz_private.h"><code>tz_private.h</code></a> and
<a href="https://github.com/HowardHinnant/date/blob/master/tz.cpp"><code>tz.cpp</code></a>.
<a href="https://github.com/HowardHinnant/date/blob/master/include/date/tz.h"><code>date.h</code></a>,
<a href="https://github.com/HowardHinnant/date/blob/master/include/date/tz.h"><code>tz.h</code></a>,
<a href="https://github.com/HowardHinnant/date/blob/master/include/date/tz_private.h"><code>tz_private.h</code></a> and
<a href="https://github.com/HowardHinnant/date/blob/master/src/tz.cpp"><code>tz.cpp</code></a>.
These sources are located at the github repository
<a href="https://github.com/HowardHinnant/date">https://github.com/HowardHinnant/date</a>.
</p>
<p>
Compile <a href="https://github.com/HowardHinnant/date/blob/master/tz.cpp"><code>tz.cpp</code></a>
Compile <a href="https://github.com/HowardHinnant/date/blob/master/src/tz.cpp"><code>tz.cpp</code></a>
along with your other sources while providing pointers to your compiler for the location
of the header files (i.e. <a href="https://github.com/HowardHinnant/date/blob/master/tz.h"><code>tz.h</code></a>).
of the header files (i.e. <a href="https://github.com/HowardHinnant/date/blob/master/include/date/tz.h"><code>tz.h</code></a>).
</p>
<p>
@@ -3422,8 +3422,8 @@ initialization is thread safe in a multithreaded environment.
<p>
In addition to four aforementioned source files you will need following files:
<a href="https://github.com/HowardHinnant/date/blob/master/ios.h"><code>ios.h</code></a>,
<a href="https://github.com/HowardHinnant/date/blob/master/ios.cpp"><code>ios.cpp</code></a>.
<a href="https://github.com/HowardHinnant/date/blob/master/include/date/ios.h"><code>ios.h</code></a>,
<a href="https://github.com/HowardHinnant/date/blob/master/include/date/ios.cpp"><code>ios.cpp</code></a>.
</p>
<p>
In Xcode in <i>[Your Target]->Build Settings->Other C Flags</i> set following flags: <code>-DHAS_REMOTE_API=0</code>, <code>-DUSE_SHELL_API</code>, <code>-x objective-c++</code>.