Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Updated the built-in skins for sbsdiff. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | jan-sbsdiff |
| Files: | files | file ages | folders |
| SHA1: |
bb76b57aa20761cb0768468bd5157087 |
| User & Date: | jan 2011-10-14 15:41:37.661 |
Context
|
2011-10-14
| ||
| 22:17 | Minor diff view change for the black'n'white skin. check-in: 07714601de user: jan tags: jan-sbsdiff | |
| 15:41 | Updated the built-in skins for sbsdiff. check-in: bb76b57aa2 user: jan tags: jan-sbsdiff | |
|
2011-10-13
| ||
| 23:48 | Started adding support for showing side-by-side diffs in the web ui. check-in: a6a8e89413 user: jan tags: jan-sbsdiff | |
Changes
Changes to src/skins.c.
| ︙ | ︙ | |||
150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
@ }
@
@ /* The label/value pairs on (for example) the vinfo page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }');
@ REPLACE INTO config(name,mtime,value) VALUES('header',now(),'<html>
@ <head>
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed"
@ href="$home/timeline.rss">
@ <link rel="stylesheet" href="$home/style.css?blackwhite" type="text/css"
| > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
@ }
@
@ /* The label/value pairs on (for example) the vinfo page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }
@
@ /* Side-by-side diff */
@ table.sbsdiff {
@ font-family: fixed, Dejavu Sans Mono, Monaco, Lucida Console, monospace;
@ font-size: 10pt;
@ border-collapse:collapse;
@ white-space: pre;
@ width: 98%;
@ border: 1px #000 dashed;
@ }
@
@ table.sbsdiff th.diffhdr {
@ border-bottom: dotted;
@ border-width: 1px;
@ }
@
@ table.sbsdiff tr td {
@ white-space: pre;
@ padding-left: 3px;
@ padding-right: 3px;
@ margin: 0px;
@ }
@
@ table.sbsdiff tr td.lineno {
@ text-align: right;
@ }
@
@ table.sbsdiff tr td.meta {
@ color: white;
@ background-color: rgb(20, 20, 20);
@ text-align: center;
@ }
@
@ table.sbsdiff tr td.added {
@ background-color: rgb(230, 230, 230);
@ }
@
@ table.sbsdiff tr td.removed {
@ background-color: rgb(200, 200, 200);
@ }
@
@ table.sbsdiff tr td.changed {
@ background-color: rgb(220, 220, 220);
@ }');
@ REPLACE INTO config(name,mtime,value) VALUES('header',now(),'<html>
@ <head>
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed"
@ href="$home/timeline.rss">
@ <link rel="stylesheet" href="$home/style.css?blackwhite" type="text/css"
|
| ︙ | ︙ | |||
354 355 356 357 358 359 360 |
@
@ /* The label/value pairs on (for example) the ci page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }
| > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 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 |
@
@ /* The label/value pairs on (for example) the ci page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }
@
@ /* Side-by-side diff */
@ table.sbsdiff {
@ font-family: fixed, Dejavu Sans Mono, Monaco, Lucida Console, monospace;
@ font-size: 10pt;
@ border-collapse:collapse;
@ white-space: pre;
@ width: 98%;
@ border: 1px #000 dashed;
@ }
@
@ table.sbsdiff th.diffhdr {
@ border-bottom: dotted;
@ border-width: 1px;
@ }
@
@ table.sbsdiff tr td {
@ white-space: pre;
@ padding-left: 3px;
@ padding-right: 3px;
@ margin: 0px;
@ }
@
@ table.sbsdiff tr td.lineno {
@ text-align: right;
@ }
@
@ table.sbsdiff tr td.meta {
@ background-color: #a09048;
@ text-align: center;
@ }
@
@ table.sbsdiff tr td.added {
@ background-color: rgb(210, 210, 100);
@ }
@
@ table.sbsdiff tr td.removed {
@ background-color: rgb(190, 200, 110);
@ }
@
@ table.sbsdiff tr td.changed {
@ background-color: rgb(200, 210, 120);
@ }');
@ REPLACE INTO config(name,mtime,value) VALUES('header',now(),'<html>
@ <head>
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed"
@ href="$home/timeline.rss">
@ <link rel="stylesheet" href="$home/style.css?tan" type="text/css"
@ media="screen">
|
| ︙ | ︙ | |||
588 589 590 591 592 593 594 595 596 597 598 599 600 601 |
@ }
@
@ /* The label/value pairs on (for example) the ci page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }');
@ REPLACE INTO config(name,mtime,value) VALUES('header',now(),'<html>
@ <head>
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed"
@ href="$home/timeline.rss">
@ <link rel="stylesheet" href="$home/style.css?black2" type="text/css"
| > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 |
@ }
@
@ /* The label/value pairs on (for example) the ci page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }
@
@ /* Side-by-side diff */
@ table.sbsdiff {
@ font-family: fixed, Dejavu Sans Mono, Monaco, Lucida Console, monospace;
@ font-size: 10pt;
@ border-collapse:collapse;
@ white-space: pre;
@ width: 98%;
@ border: 1px #000 dashed;
@ }
@
@ table.sbsdiff th.diffhdr {
@ border-bottom: dotted;
@ border-width: 1px;
@ }
@
@ table.sbsdiff tr td {
@ white-space: pre;
@ padding-left: 3px;
@ padding-right: 3px;
@ margin: 0px;
@ }
@
@ table.sbsdiff tr td.lineno {
@ text-align: right;
@ }
@
@ table.sbsdiff tr td.meta {
@ color: white;
@ background-color: black;
@ text-align: center;
@ }
@
@ table.sbsdiff tr td.added {
@ background-color: white;
@ }
@
@ table.sbsdiff tr td.removed {
@ background-color: white;
@ }
@
@ table.sbsdiff tr td.changed {
@ background-color: white;
@ }');
@ REPLACE INTO config(name,mtime,value) VALUES('header',now(),'<html>
@ <head>
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed"
@ href="$home/timeline.rss">
@ <link rel="stylesheet" href="$home/style.css?black2" type="text/css"
|
| ︙ | ︙ | |||
887 888 889 890 891 892 893 |
@
@ textarea {
@ font-size: 1em;
@ }
@
@ /* Side-by-side diff */
@ table.sbsdiff {
| > | | | | 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 |
@
@ textarea {
@ font-size: 1em;
@ }
@
@ /* Side-by-side diff */
@ table.sbsdiff {
@ background-color: white;
@ font-family: fixed, Dejavu Sans Mono, Monaco, Lucida Console, monospace;
@ font-size: 9pt;
@ border-collapse:collapse;
@ white-space: pre;
@ width: 98%;
@ border: 1px #000 dashed;
@ }
@
@ table.sbsdiff th.diffhdr {
@ border-bottom: dotted;
@ border-width: 1px;
@ }
|
| ︙ | ︙ |
Changes to src/style.c.
| ︙ | ︙ | |||
395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
@ /* The label/value pairs on (for example) the ci page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }
@
;
/* The following table contains bits of default CSS that must
** be included if they are not found in the application-defined
** CSS.
*/
| > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 |
@ /* The label/value pairs on (for example) the ci page */
@ table.label-value th {
@ vertical-align: top;
@ text-align: right;
@ padding: 0.2ex 2ex;
@ }
@
@ /* Side-by-side diff */
@ table.sbsdiff {
@ font-family: fixed, Dejavu Sans Mono, Monaco, Lucida Console, monospace;
@ font-size: 10pt;
@ border-collapse:collapse;
@ white-space: pre;
@ width: 98%;
@ border: 1px #000 dashed;
@ }
@
@ table.sbsdiff th.diffhdr {
@ border-bottom: dotted;
@ border-width: 1px;
@ }
@
@ table.sbsdiff tr td {
@ white-space: pre;
@ padding-left: 3px;
@ padding-right: 3px;
@ margin: 0px;
@ }
@
@ table.sbsdiff tr td.lineno {
@ text-align: right;
@ }
@
@ table.sbsdiff tr td.meta {
@ background-color: rgb(170, 160, 255);
@ text-align: center;
@ }
@
@ table.sbsdiff tr td.added {
@ background-color: rgb(180, 250, 180);
@ }
@
@ table.sbsdiff tr td.removed {
@ background-color: rgb(250, 130, 130);
@ }
@
@ table.sbsdiff tr td.changed {
@ background-color: rgb(210, 210, 200);
@ }
;
/* The following table contains bits of default CSS that must
** be included if they are not found in the application-defined
** CSS.
*/
|
| ︙ | ︙ |