Collection of themes/skins for the Fossil SCM

⌈⌋ ⎇ branch:  Fossil Skins Extra


Check-in [cc4238f53c]

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

Overview
Comment:./.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: cc4238f53c18e489a5615efbf2ed82153da7ee9b
User & Date: mario 2015-02-12 08:02:54
Context
2015-02-12
08:04
Fix Github template 'main table tr' border. Add styles for new dropdown timeline submenu fields. check-in: 3c74754c68 user: mario tags: trunk
08:02
./. check-in: cc4238f53c user: mario tags: trunk
08:02
Added skin.txt unpacking script. check-in: c1f715d164 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to parts/export-all.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# Export reponame.header|css|footer|th1-setup
#

for DB in ~/fossil.d/*.fossil
do 
  REPO=`basename $DB .fossil`
  for WHAT in css header footer th1-setup
  do
    echo "select value from config where name='$WHAT';" | fossil sqlite -R $DB > $REPO.$WHAT
  done
done



|





|





1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# Export reponame.header|css|footer|th1-setup|tcl-setup
#

for DB in ~/fossil.d/*.fossil
do 
  REPO=`basename $DB .fossil`
  for WHAT in css header footer th1-setup tcl-setup
  do
    echo "select value from config where name='$WHAT';" | fossil sqlite -R $DB > $REPO.$WHAT
  done
done

Name change from parts/export-map to parts/export-one.

1
2
3
4
5






6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# Export reponame.header|css|footer|th1-setup
#







DB=~/fossil.d/freshcode.fossil
REPO=`basename $DB .fossil`
TARGET=github/github

  for WHAT in css header footer th1-setup
  do
    echo "select value from config where name='$WHAT';" | fossil sqlite -R $DB > $TARGET.$WHAT
  done






>
>
>
>
>
>
|

|

|




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
# Export reponame.header|css|footer|th1-setup
#

FROM=$1
[ -n "$FROM" ] && FROM=freshcode
TO=$2
[ -n "$TO" ] && TO=github


DB=~/fossil.d/$FROM.fossil
REPO=`basename $DB .fossil`
TARGET=$TO/$TO

  for WHAT in css header footer #th1-setup tcl-setup
  do
    echo "select value from config where name='$WHAT';" | fossil sqlite -R $DB > $TARGET.$WHAT
  done