Changeset 2311


Ignore:
Timestamp:
Apr 21, 2008, 1:13:13 PM (15 years ago)
Author:
Sam Hocevar
Message:
  • Remove that fucking "Trac" suffix from all page titles.
  • Put all our Trac configuration (except attachment, the database and the passwords) in SVN.
Location:
trac
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trac/conf/trac.ini

    r2310 r2311  
    22
    33[attachment]
    4 max_size = 262144
     4max_size = 26214400
    55render_unsafe_content = false
    66
     
    1818alt =
    1919height = -1
    20 link = http://example.org/
    21 src = common/trac_banner.png
     20link = http://libcaca.zoy.org/
     21src = /img/trac_banner.png
    2222width = -1
    2323
     
    3030enscript_modes = text/x-dylan:dylan:4
    3131enscript_path = enscript
    32 max_preview_size = 262144
     32max_preview_size = 2621440
    3333mime_map = text/x-dylan:dylan,text/x-idl:ice,text/x-ada:ads:adb
    3434php_path = php
     
    3939always_notify_owner = false
    4040always_notify_reporter = false
    41 always_notify_updater = true
    42 mime_encoding = base64
     41always_notify_updater = false
     42mime_encoding = qp
    4343smtp_always_bcc =
    44 smtp_always_cc =
     44smtp_always_cc = libcaca-trac@lists.zoy.org
    4545smtp_default_domain =
    46 smtp_enabled = false
    47 smtp_from = trac@localhost
     46smtp_enabled = true
     47smtp_from = sam+trac@zoy.org
     48smtp_from_name = Libcaca Trac
    4849smtp_password =
    4950smtp_port = 25
    50 smtp_replyto = trac@localhost
    5151smtp_server = localhost
    52 smtp_subject_prefix = __default__
     52smtp_subject_prefix =
    5353smtp_user =
    54 use_public_cc = false
     54use_public_cc = true
    5555use_short_addr = false
    5656use_tls = false
    5757
    5858[project]
    59 descr = My example project
    60 footer = Visit the Trac open source project at<br /><a href="http://trac.edgewall.org/">http://trac.edgewall.org/</a>
    61 icon = common/trac.ico
     59descr = Libcaca
     60footer = Visit the libcaca project at<br /><a href="http://libcaca.zoy.org/">http://libcaca.zoy.org/</a>
     61icon = /favicon.ico
    6262name = libcaca
    63 url = http://example.org/
     63url = http://libcaca.zoy.org/
    6464
    6565[search]
     
    6767
    6868[ticket]
    69 default_component =
    70 default_milestone =
     69default_component = libcucul
     70default_milestone = 1.0
    7171default_priority = major
    7272default_type = defect
    73 default_version =
     73default_version = SVN
    7474restrict_owner = false
    7575
     
    8383authz_file =
    8484authz_module_name =
    85 base_url =
     85#base_url = http://libcaca.zoy.org/
    8686check_auth_ip = true
    8787database = sqlite:db/trac.db
  • trac/templates/site_css.cs

    r2310 r2311  
    33# Site CSS - Place custom CSS, including overriding styles here.
    44?>
     5:link, :visited { color: #3a5; }
     6:link:hover, :visited:hover { color: #a2d; }
     7
     8body, th, td {
     9 font-family: 'Bitstream Vera Serif',times,serif;
     10}
     11
     12h1, h2, h3, h4 {
     13 font-family: 'Bitstream Vera Serif',times,serif;
     14}
     15
     16#mainnav {
     17 font-family: 'Bitstream Vera Serif',times,serif;
     18}
     19
     20h1, h2, h3 {
     21  text-indent: 0.5em;
     22  border-style: solid;
     23  border-color: #88aa77;
     24  background-color: inherit;
     25}
     26
     27h1 {
     28  font-size: 1.6em;
     29  font-variant: small-caps;
     30  color: #002200;
     31  border-width: 0 0 2px 0;
     32}
     33
     34h2 {
     35  font-size: 1.3em;
     36  font-variant: small-caps;
     37  color: #224422;
     38  border-width: 0 0 2px 0;
     39}
     40
     41h3 {
     42  font-size: 1.1em;
     43  color: #335533;
     44  border-width: 0 0 1px 0;
     45}
     46
     47p {
     48  text-indent: 1em;
     49  text-align: inherit;
     50}
     51
     52#banner, #content, #altlinks, #footer {
     53  width: 800px;
     54  display: table-caption;
     55  color: inherit;
     56  background-color: #dddddd;
     57  background: url('/img/back4.png') repeat left top;
     58  padding: 0 10px 0 10px;
     59  border-style: solid;
     60  border-color: black;
     61  margin: 0 auto 0 auto;
     62  text-align: justify;
     63}
     64
     65#content, #altlinks {
     66  border-width: 0 2px 0 2px;
     67}
     68#banner {
     69  border-width: 2px 2px 0 2px;
     70}
     71#footer {
     72  border-width: 0 2px 2px 2px;
     73}
     74#content {
     75  padding: 5px 10px 5px 10px;
     76  height: 100%;
     77}
     78
     79body {
     80  color: black;
     81  background: url('/img/back3.png') repeat left top;
     82  background-color: black;
     83}
     84
     85.nav li {
     86  background: url('/img/back4.png') repeat left top;
     87}
     88
     89#ctxtnav ul {
     90  margin: auto;
     91  text-align: center;
     92}
     93 
     94#mainnav {
     95  text-align: center;
     96  background: transparent;
     97}
     98
     99#mainnav ul {
     100  margin: 15px auto 15px auto;
     101  text-align: center;
     102}
     103
     104#mainnav li {
     105  background-color: #dddddd;
     106  text-decoration: none;
     107  font-weight: bold;
     108  border: solid black 2px;
     109  margin: 0 5px 0 5px;
     110}
     111
     112#footer {
     113  display: none;
     114}
Note: See TracChangeset for help on using the changeset viewer.