Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
P
planet
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
F-Droid
planet
Commits
8c7cfe1e
Commit
8c7cfe1e
authored
Dec 27, 2006
by
Sam Ruby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pop-over index of active weblog entries
parent
6cc797ce
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
17 deletions
+74
-17
filters/stripAd/google_ad_map.sed
filters/stripAd/google_ad_map.sed
+1
-0
themes/asf/default.css
themes/asf/default.css
+41
-15
themes/asf/index.html.xslt
themes/asf/index.html.xslt
+28
-1
themes/asf/personalize.js
themes/asf/personalize.js
+3
-0
themes/common/validate.html.xslt
themes/common/validate.html.xslt
+1
-1
No files found.
filters/stripAd/google_ad_map.sed
0 → 100644
View file @
8c7cfe1e
s
|
<p><map name="google_ad_map
.*
</p>
||
themes/asf/default.css
View file @
8c7cfe1e
...
...
@@ -30,6 +30,10 @@ a:active {
a
:focus
{
}
a
.active
{
font-weight
:
bold
;
}
h1
{
font-size
:
x-large
;
text-transform
:
uppercase
;
...
...
@@ -97,6 +101,33 @@ h1 {
text-decoration
:
underline
;
}
#sidebar
ul
li
a
:visited
{
color
:
#000
;
}
#sidebar
ul
li
ul
{
display
:
none
;
}
#sidebar
ul
li
{
position
:
relative
;
}
#sidebar
ul
li
:hover
ul
{
background-color
:
#EEE
;
border
:
2px
solid
#BBB
;
color
:
#000
;
display
:
block
;
margin-left
:
-300px
;
margin-right
:
115px
;
padding
:
10px
;
padding-left
:
25px
;
position
:
absolute
;
right
:
80px
;
top
:
-12px
;
z-index
:
1
;
}
#sidebar
img
{
border
:
0
;
}
...
...
@@ -135,19 +166,19 @@ h1 {
/* ---------------------------- Footer --------------------------- */
#footer
ul
{
margin
:
0
20px
0
-25px
;
padding
:
0
;
margin
:
0
20px
0
-25px
;
padding
:
0
;
}
#footer
li
{
margin
:
0
;
padding
:
0
;
list-style
:
none
;
display
:
inline
;
margin
:
0
;
padding
:
0
;
list-style
:
none
;
display
:
inline
;
}
#footer
img
{
display
:
none
;
display
:
none
;
}
/* ----------------------------- Body ---------------------------- */
...
...
@@ -266,9 +297,9 @@ img.icon {
}
.news
code
{
font-family
:
monospace
;
font-size
:
medium
;
font-weight
:
bold
;
font-family
:
monospace
;
font-size
:
medium
;
font-weight
:
bold
;
}
.news
.content
a
{
...
...
@@ -408,11 +439,6 @@ img.floatright {
background-color
:
#f8f8f8
;
}
/* GigaOM */
p
img
{
float
:
left
;
}
/* Tantek */
ul
.tags
,
ul
.tags
li
,
h4
.tags
{
display
:
inline
;
...
...
themes/asf/index.html.xslt
View file @
8c7cfe1e
...
...
@@ -83,6 +83,9 @@
<ul>
<xsl:for-each
select=
"planet:source"
>
<xsl:sort
select=
"planet:name"
/>
<xsl:variable
name=
"id"
select=
"atom:id"
/>
<xsl:variable
name=
"posts"
select=
"/atom:feed/atom:entry[atom:source/atom:id = $id]"
/>
<xsl:text>
</xsl:text>
<li>
<!-- icon -->
...
...
@@ -107,7 +110,10 @@
<a
href=
"{atom:link[@rel='alternate']/@href}"
>
<xsl:choose>
<xsl:when
test=
"planet:message"
>
<xsl:attribute
name=
"class"
>
message
</xsl:attribute>
<xsl:attribute
name=
"class"
>
<xsl:if
test=
"$posts"
>
active message
</xsl:if>
<xsl:if
test=
"not($posts)"
>
message
</xsl:if>
</xsl:attribute>
<xsl:attribute
name=
"title"
>
<xsl:value-of
select=
"planet:message"
/>
</xsl:attribute>
...
...
@@ -116,10 +122,31 @@
<xsl:attribute
name=
"title"
>
<xsl:value-of
select=
"atom:title"
/>
</xsl:attribute>
<xsl:if
test=
"$posts"
>
<xsl:attribute
name=
"class"
>
active
</xsl:attribute>
</xsl:if>
</xsl:when>
</xsl:choose>
<xsl:value-of
select=
"planet:name"
/>
</a>
<xsl:if
test=
"$posts"
>
<ul>
<xsl:for-each
select=
"$posts"
>
<xsl:if
test=
"string-length(atom:title) > 0"
>
<li>
<a
href=
"{atom:link[@rel='alternate']/@href}"
>
<xsl:if
test=
"atom:title/@xml:lang != @xml:lang"
>
<xsl:attribute
name=
"xml:lang"
select=
"{atom:title/@xml:lang}"
/>
</xsl:if>
<xsl:value-of
select=
"atom:title"
/>
</a>
</li>
</xsl:if>
</xsl:for-each>
</ul>
</xsl:if>
</li>
</xsl:for-each>
<xsl:text>
</xsl:text>
...
...
themes/asf/personalize.js
View file @
8c7cfe1e
...
...
@@ -210,6 +210,9 @@ function moveDateHeaders() {
function
moveSidebar
()
{
var
sidebar
=
document
.
getElementById
(
'
sidebar
'
);
if
(
sidebar
.
currentStyle
&&
sidebar
.
currentStyle
[
'
float
'
]
==
'
none
'
)
return
;
if
(
window
.
getComputedStyle
&&
document
.
defaultView
.
getComputedStyle
(
sidebar
,
null
).
getPropertyValue
(
'
float
'
)
==
'
none
'
)
return
;
var
h1
=
sidebar
.
previousSibling
;
while
(
h1
.
nodeType
!=
1
)
h1
=
h1
.
previousSibling
;
h1
.
parentNode
.
removeChild
(
h1
);
...
...
themes/common/validate.html.xslt
View file @
8c7cfe1e
...
...
@@ -74,7 +74,7 @@
<xsl:text>
</xsl:text>
<tr>
<xsl:if
test=
"planet:bozo='true'"
>
<xsl:attribute
name=
"
bgcolor"
>
#FCC
</xsl:attribute>
<xsl:attribute
name=
"
style"
>
background-color:
#FCC
</xsl:attribute>
</xsl:if>
<td>
<a
title=
"feed validator"
>
...
...
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