Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cduce
cduce
Commits
2dade476
Commit
2dade476
authored
Oct 05, 2007
by
Pietro Abate
Browse files
[r2003-10-15 12:40:18 by szach] added overstriking on superseded papers
Original author: szach Date: 2003-10-15 12:40:18+00:00
parent
a099a280
Changes
3
Show whitespace changes
Inline
Side-by-side
web/cduce.css
View file @
2dade476
...
@@ -11,6 +11,10 @@ a:link:hover, a:visited:hover {
...
@@ -11,6 +11,10 @@ a:link:hover, a:visited:hover {
color
:
#FF0000
;
color
:
#FF0000
;
}
}
a
.old
{
text-decoration
:
line-through
;
}
h1
{
h1
{
color
:
#aa0000
;
color
:
#aa0000
;
text-align
:
center
;
text-align
:
center
;
...
...
web/papers.xml
View file @
2dade476
...
@@ -41,7 +41,7 @@ compilation schemas.
...
@@ -41,7 +41,7 @@ compilation schemas.
</li>
</li>
<li>
<li>
<paper
file=
"papers/cduce-wp.ps.gz"
>
<paper
old=
"true"
file=
"papers/cduce-wp.ps.gz"
>
<title>
CDuce: a white paper
</title>
<title>
CDuce: a white paper
</title>
<author>
V. Benzaken
</author>
<author>
V. Benzaken
</author>
<author>
G. Castagna
</author>
<author>
G. Castagna
</author>
...
...
web/site.cd
View file @
2dade476
...
@@ -25,7 +25,7 @@ type Item =
...
@@ -25,7 +25,7 @@ type Item =
type Author =
<author>
String
type Author =
<author>
String
type Paper =
type Paper =
<paper
file=
?String
>
[
<paper
file=
?String
old=
?String
>
[
<title>
String Author+
<comment>
[InlineText*]
<abstract>
Content ]
<title>
String Author+
<comment>
[InlineText*]
<abstract>
Content ]
type Slides =
type Slides =
...
@@ -166,6 +166,9 @@ a:link:hover, a:visited:hover {
...
@@ -166,6 +166,9 @@ a:link:hover, a:visited:hover {
background: #FFFFD0;
background: #FFFFD0;
color: #FF0000;
color: #FF0000;
}
}
a.old, a.old:hover, a.old:visited:hover {
text-decoration: line-through;
}
p {
p {
text-align: justify;
text-align: justify;
margin: 1ex 1em 0 1em;
margin: 1ex 1em 0 1em;
...
@@ -232,7 +235,10 @@ match page with
...
@@ -232,7 +235,10 @@ match page with
|
<section
title=
title
>
c ->
|
<section
title=
title
>
c ->
[
<p>
[
<b
style=
"color: #008000"
>
title ] !(content c) ]
[
<p>
[
<b
style=
"color: #008000"
>
title ] !(content c) ]
|
<paper
(
r
)
>
[
<title>
tit aut::Author*
<comment>
com
<abstract>
ab ] ->
|
<paper
(
r
)
>
[
<title>
tit aut::Author*
<comment>
com
<abstract>
ab ] ->
[ (match r with { file = f } ->
<a
href=
f
>
tit | _ ->
<b>
tit) '. '
[ (match r with
| { file = f; old = "true" } ->
<a
class=
"old"
href=
f
>
tit
| { file = f } ->
<a
href=
f
>
tit
| _ ->
<b>
tit) '. '
!(authors aut) '. '
!(authors aut) '. '
!(text com)
!(text com)
<div
class=
"abstract"
>
[ 'Abstract:' !(content ab) ]
<div
class=
"abstract"
>
[ 'Abstract:' !(content ab) ]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment