blob: 75cf6dd1fe55cab214aafcee2da3972d8a1ee8fc (
plain)
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
|
# coding: utf-8
=begin
* Name: SiSU - Simple information Structuring Universe - Structured information, Serialized Units
* Author: Ralph Amissah
* http://www.jus.uio.no/sisu
* http://www.jus.uio.no/sisu/SiSU/download
* Description: Skin prepared for Accelerando, Charles Stross
* License: Same as SiSU see http://www.jus.uio.no/sisu
* Notes: Site default appearance variables set in defaults.rb
Generic site wide modifications set here scribe_skin.rb, and this file required by other "scribes" instead of defaults.rb
=end
module SiSU_Viz
require SiSU_lib + '/defaults'
class Skin
#% path
def path_root # the only parameter that cannot be changed here
'./sisu/'
end
def path_rel
'../'
end
#% url
def url_home
'http://www.accelerando.org'
end
def url_txt # text to go with url usually stripped url
'www.accelerando.org'
end
#% color
def color_band1
'"#ffffff"'
end
#% text
def text_hp
'www.accelerando.org'
end
def text_home
'Accelerando'
end
#% icon
def icon_home_button
'accelerando_stross.png'
end
def icon_home_banner
icon_home_button
end
#% banner
def banner_home_button
%{<table summary="home button" border="0" cellpadding="3" cellspacing="0"><tr><td align="left" bgcolor=#{color_white}><a href="#{url_home}">#{png_home}</a></td></tr></table>\n}
end
def banner_home_and_index_buttons
%{<table><tr><td width="20%"><table summary="home and index buttons" border="0" cellpadding="3" cellspacing="0"><tr><td align="left" bgcolor=#{color_white}><a href="#{url_home}" target="_top">#{png_home}</a></td><td width="40%"><center><table summary="buttons" border="1" cellpadding="3" cellspacing="0"><tr><td align="center" bgcolor="#f1e8de"><font face="arial" size="2"><a href="toc.html" target="_top"> This text sub- <br /> Table of Contents </a></font>#{table_close}</center></td><td width="20%"> #{table_close}}
end
def banner_band
%{<table summary="band" border="0" cellpadding="3" cellspacing="0"><tr><td align="left" bgcolor=#{color_white}><a href="#{url_home}" target="_top">#{png_home}</a>#{table_close}}
end
#% credits
def credits_splash
%{<table summary="credits" align="center" bgcolor="#ffffff"><tr><td><font color="black"><center>
<a href="http://www.accelerando.org">The author's original pdf is available</a> at<br /><a href="http://www.accelerando.org">www.accelerando.org</a><br />
available at<br /><a href="www.amazon.com/gp/product/0441014151">Amazon.com</a> and <br />
<a href="http://search.barnesandnoble.com/booksearch/isbnInquiry.asp?isbn=0441014151">Barnes & Noble</a><br />
This book is Copyright Charles Stross © 2005<br />
Under a Creative Commons License,<br />
Attribution-NonCommercial-NoDerivs 2.0:<br />
* Attribution. You must attribute the work in the manner specified by the author or licensor;<br />
* Noncommercial. You may not use this work for commercial purposes;<br />
* No Derivative Works. You may not alter, transform, or build upon this work;<br />
* For any reuse or distribution, you must make clear to others the license terms of this work.
<br />
<<a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">http://creativecommons.org/licenses/by-nc-nd/2.0/</a>><br />
These SiSU presentations of Accelerando are done with the kind permission of the author Charles Stross
</center></font></td></tr></table>}
end
end
class TeX
def header_center
"\\chead{\\href{#{@vz.url_home}}{www.accelerando.org}}"
end
def home_url
"\\href{#{@vz.url_home}}{www.accelerando.org}"
end
def home
"\\href{#{@vz.url_home}}{Accelerando}"
end
def owner_chapter
"Document owner details"
end
end
end
__END__
|