Documentation Source Text

Check-in [66f30d5788]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Further experiments with a new look for the sponsors on the homepage.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | new-sponsors-layout
Files: files | file ages | folders
SHA1: 66f30d57886dbe818572cf0b917def74d81cc6bc
User & Date: drh 2015-12-09 03:53:33.699
Context
2015-12-09
11:50
Omit the blurbs from sponsor icons. (Closed-Leaf check-in: f42cb2d82f user: drh tags: new-sponsors-layout)
03:53
Further experiments with a new look for the sponsors on the homepage. (check-in: 66f30d5788 user: drh tags: new-sponsors-layout)
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)
Changes
Unified Diff Ignore Whitespace Patch
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
<title>SQLite Home Page</title>

<table border="0" width="100%">
<tr><td valign="top" width="66%">
<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 {
<script language="JavaScript">



|















|
|
<







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" width="620px">
<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>Continuing enhancement and maintenance of SQLite is made possible
by <a href="consortium.html">SQLite Consortium</a> members, including:</p>


<a name="consortium_members"></a>
<center>
<table border="0" cellpadding="15">

<tcl>hd_puts {
<script language="JavaScript">
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
    i = Math.floor(Math.random()*len)
    if( sponsors[i]!=null ){
      if( sponsors[i].size==null ) sponsors[i].size = "";
      var x = ((++n)%2)==1;
      if( x ) htxt += "<tr>\n";
      htxt += "<td align='center'><span class='popup'>\n"+
         "<a href='"+sponsors[i].url+"'><img src='images/foreignlogos/"+sponsors[i].image+
         "' "+sponsors[i].size+" border='0'></a><div><b>"+sponsors[i].name+"</b> &mdash; "+
         sponsors[i].blurb+"</div></span></td>\n";
      sponsors[i] = null
      count--
    }
  }
  document.write(htxt)
</script>
}</tcl>







|
|







67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
    i = Math.floor(Math.random()*len)
    if( sponsors[i]!=null ){
      if( sponsors[i].size==null ) sponsors[i].size = "";
      var x = ((++n)%2)==1;
      if( x ) htxt += "<tr>\n";
      htxt += "<td align='center'><span class='popup'>\n"+
         "<a href='"+sponsors[i].url+"'><img src='images/foreignlogos/"+sponsors[i].image+
         "' "+sponsors[i].size+" border='0'></a><div><b>"+
         sponsors[i].name+"</b> &mdash; "+sponsors[i].blurb+"</div></span></td>\n";
      sponsors[i] = null
      count--
    }
  }
  document.write(htxt)
</script>
}</tcl>
Changes to wrap.tcl.
427
428
429
430
431
432
433

434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454

455
456


457
458

459
460
461
462
463
464
465
466
    .menubar {
      clear: both;
      border-radius: 8px;
      background: #044a64;
      padding: 0px;
      margin: 0px;
      cell-spacing: 0px;

    }    
    .toolbar {
      text-align: center;
      line-height: 1.6em;
      margin: 0;
      padding: 0px 8px;
    }
    .toolbar a { color: white; text-decoration: none; padding: 6px 12px; }
    .toolbar a:visited { color: white; }
    .toolbar a:hover { color: #044a64; background: white; }
    
    .content    { margin: 5%; }
    .content dt { font-weight:bold; }
    .content dd { margin-bottom: 25px; margin-left:20%; }
    .content ul { padding:0px; padding-left: 15px; margin:0px; }

    /* Homepage pop-up text */
    span.popup div {
      position: absolute;
      left: -9999px;
      background: #ffb;

      padding: 6px 6px 6px 6px;
      border: 2px solid black;


    }
    span.popup:hover div {

      left: 1%;
    }
    
    /* Things for "fancyformat" documents start here. */
    .fancy img+p {font-style:italic}
    .fancy .codeblock i { color: darkblue; }
    .fancy h1,.fancy h2,.fancy h3,.fancy h4 {font-weight:normal;color:#044a64}
    .fancy h2 { margin-left: 10px }







>




















|
>


>
>


>
|







427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
    .menubar {
      clear: both;
      border-radius: 8px;
      background: #044a64;
      padding: 0px;
      margin: 0px;
      cell-spacing: 0px;
      width: 920px;
    }    
    .toolbar {
      text-align: center;
      line-height: 1.6em;
      margin: 0;
      padding: 0px 8px;
    }
    .toolbar a { color: white; text-decoration: none; padding: 6px 12px; }
    .toolbar a:visited { color: white; }
    .toolbar a:hover { color: #044a64; background: white; }
    
    .content    { margin: 5%; }
    .content dt { font-weight:bold; }
    .content dd { margin-bottom: 25px; margin-left:20%; }
    .content ul { padding:0px; padding-left: 15px; margin:0px; }

    /* Homepage pop-up text */
    span.popup div {
      position: absolute;
      left: -9999px;
      background: #044a64;
      color: #fff;
      padding: 6px 6px 6px 6px;
      border: 2px solid black;
      width: 500px;
      border-radius: 8px;
    }
    span.popup:hover div {
      top: 275px;
      left: 130px;
    }
    
    /* Things for "fancyformat" documents start here. */
    .fancy img+p {font-style:italic}
    .fancy .codeblock i { color: darkblue; }
    .fancy h1,.fancy h2,.fancy h3,.fancy h4 {font-weight:normal;color:#044a64}
    .fancy h2 { margin-left: 10px }