Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add Facebook to the homepage. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.9 |
Files: | files | file ages | folders |
SHA1: |
e8ddd92958f7bbd33e0e9a0962c77cb4 |
User & Date: | drh 2015-12-08 20:11:31.811 |
Context
2015-12-22
| ||
15:02 | Typo fix. (check-in: 9b6bab46ee user: drh tags: branch-3.9) | |
2015-12-08
| ||
22:28 | Experiment with a new look for the homepage and especially the layout of sponsor links. (check-in: f96d1199e7 user: drh tags: new-sponsors-layout) | |
20:11 | Add Facebook to the homepage. (check-in: e8ddd92958 user: drh tags: branch-3.9) | |
12:03 | Fix typo in the amalagmation document. (check-in: a77392c96c user: drh tags: branch-3.9) | |
Changes
Added images/foreignlogos/fb.gif.
cannot compute difference between binary files
Changes to pages/index.in.
1 2 3 4 | <title>SQLite Home Page</title> <table border="0" width="100%"> <tr><td valign="top"> | < | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <title>SQLite Home Page</title> <table border="0" width="100%"> <tr><td valign="top"> <p>SQLite is a software library that implements a <a href="selfcontained.html">self-contained</a>, <a href="serverless.html">serverless</a>, <a href="zeroconf.html">zero-configuration</a>, <a href="transactional.html">transactional</a> SQL database engine. SQLite is the [most widely deployed] database engine in the world. The source code for SQLite is in the <a href="copyright.html">public domain</a>. <a href="about.html">More...</a></p> <hr style="color: #044a64" height="2"> <h3>Sponsors</h3> <p>Substantial support for the continuing enhancement and maintenance of SQLite comes from <a href="consortium.html">SQLite Consortium</a> members, including:</p> <a name="consortium_members"></a> <center> <table border="0" cellpadding="15"> <tcl>hd_puts { |
︙ | ︙ | |||
61 62 63 64 65 66 67 | <a href="https://www.expensify.com/">\ <img src="images/foreignlogos/expensify.png" width="225" height="32" \ alt="expensify.org" border="0">\ </a></td><td>\ <a href="https://www.expensify.com/">Expensify</a> - \ We power the most exciting companies in the world using SQLite. </td></tr>' | > > > > > > > > | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <a href="https://www.expensify.com/">\ <img src="images/foreignlogos/expensify.png" width="225" height="32" \ alt="expensify.org" border="0">\ </a></td><td>\ <a href="https://www.expensify.com/">Expensify</a> - \ We power the most exciting companies in the world using SQLite. </td></tr>' sponsor[5] = '<tr><td align="center">\ <a href="https://www.facebook.com/">\ <img src="images/foreignlogos/fb.gif" alt="facebook.com" border="0">\ </a></td><td>\ <a href="https://www.facebook.com/">Facebook</a> - \ Giving people the power to share and make the world \ more open and connected. </td></tr>' count = 6 while( count>0 ){ i = Math.floor(Math.random()*6) if( sponsor[i]!=null ){ document.write(sponsor[i]) sponsor[i] = null count-- } |
︙ | ︙ |