Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Omit the sponsor links from the homepage. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | branch-3.26 |
Files: | files | file ages | folders |
SHA3-256: |
551ce8e2ad9f26a5f553f80047449e20 |
User & Date: | drh 2018-12-09 22:31:47 |
Context
2018-12-10
| ||
00:54 | Fix the "Latest Release" on the front page. check-in: 2b5acd3ccf user: drh tags: branch-3.26 | |
2018-12-09
| ||
22:31 | Omit the sponsor links from the homepage. check-in: 551ce8e2ad user: drh tags: branch-3.26 | |
22:30 | Omit the sponsor links from the homepage. check-in: 3c035c0759 user: drh tags: trunk | |
2018-12-06
| ||
15:20 | Enhanced ALTER TABLE documentation, and in particular show the dangers of not following the generalized 12-step ALTER TABLE procedure precisely. check-in: 4ffbc3f635 user: drh tags: trunk | |
Changes
Changes to pages/index.in.
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
<title>SQLite Home Page</title> <div class="rightsidebar desktoponly border2px"> <h3 align="center">Common Links</h3> <tcl>common_links</tcl> </div> <p>SQLite is a [self-contained], [high-reliability], [serverless|embedded], [full-featured SQL|full-featured], [public-domain], SQL database engine. SQLite is the [most used] database engine in the world. <a class="button" href="about.html">More Info</a></p> <hr class="xhr"> <span class="hdrfont">Latest Release: </span> <a href="releaselog/3_26_0.html">Version 3.26.0</a> ([dateof:3.26.0]). <a class="button" href="download.html">Download</a> <a class="button" href="chronology.html">Prior Releases</a> <div class="mobileonly"> <hr class="xhr"> <h3>Common Links</h3> <tcl>common_links</tcl> </div> <hr class="xhr"> <h3>Sponsors</h3> <p>Ongoing development and support of SQLite is made possible in part by <a href="consortium.html">SQLite Consortium</a> members, including:</p> <a name="consortium_members"></a> <style> #sponsors { margin:auto; width:80%; } .onesponsor a img { width:200px; max-width:200px; padding:1ex; } </style> <div id="sponsors"></div> <script> <tcl> set sponsors { {name Mozilla url https://www.mozilla.com/ image mozilla.gif blurb "Working to preserve choice and innovation on the internet." } {name Bloomberg url https://www.bloomberg.com/ image bloomberg.png blurb "A world leader in financial-information technology." } {name Bentley url https://www.bentley.com/ image bentley.gif blurb "Comprehensive software solutions for Sustaining Infrastructure." } {name NDS url http://www.nds-association.org/ image nds.png blurb "The leading map standard for automotive infotainment and autonomous driving." } {name Expensify url https://www.expensify.com/ image expensify.png width 225 height 32 blurb "We power the most exciting companies in the world using SQLite." } } set sep { var sponsors = [} set nspons 0 foreach spons $sponsors { hd_putsnl $sep\173 set sep "," unset -nocomplain x array set x $spons hd_putsnl " \"name\":\"$x(name)\"," hd_putsnl " \"href\":\"$x(url)\"," hd_putsnl " \"src\":\"$x(image)\"," if {[info exists x(width)]} { hd_putsnl " \"wx\":$x(width)," hd_putsnl " \"hx\":$x(height)" } else { hd_putsnl " \"wx\":0" } hd_puts " \175" incr nspons } unset -nocomplain x hd_putsnl "\];" hd_puts { for(var i=0; i<sponsors.length; i++){sponsors[i].idx = Math.random();} sponsors.sort(function(a,b){return a.idx-b.idx}); var h = ""; for(var i=0; i<sponsors.length; i++){ h += "<span class='onesponsor'><a href='"; h += sponsors[i].href; h += "'><img src='images/foreignlogos/"; h += sponsors[i].src; h += "'></a></span>\n"; } document.getElementById("sponsors").innerHTML = h; } </tcl> </script> <br clear="both"> <hr class="xhr"> |
< < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<title>SQLite Home Page</title> <p>SQLite is a [self-contained], [high-reliability], [serverless|embedded], [full-featured SQL|full-featured], [public-domain], SQL database engine. SQLite is the [most used] database engine in the world. <a class="button" href="about.html">More Info</a></p> <hr class="xhr"> <span class="hdrfont">Latest Release: </span> <a href="releaselog/3_25_2.html">Version 3.25.2</a> ([dateof:3.25.2]). <a class="button" href="download.html">Download</a> <a class="button" href="chronology.html">Prior Releases</a> <hr class="xhr"> <h3>Common Links</h3> <tcl>common_links</tcl> |