Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
459d27df
Commit
459d27df
authored
Feb 18, 2015
by
Davis King
Browse files
Made the faq page not have funny characters in the links
parent
51527818
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
docs/docs/intro.xml
docs/docs/intro.xml
+1
-1
docs/docs/stylesheet.xsl
docs/docs/stylesheet.xsl
+4
-2
No files found.
docs/docs/intro.xml
View file @
459d27df
...
...
@@ -67,7 +67,7 @@
<p>
The library is also covered by the very liberal Boost Software License
so feel free to use it any way you like. However, if you use dlib in
your research then please cite
<a
href=
"faq.html#How
can
I
cite
dlib
?
"
>
its Journal of Machine Learning Research paper
</a>
when
your research then please cite
<a
href=
"faq.html#Howcan
I
citedlib"
>
its Journal of Machine Learning Research paper
</a>
when
publishing.
</p>
<p>
...
...
docs/docs/stylesheet.xsl
View file @
459d27df
...
...
@@ -44,6 +44,7 @@
<xsl:variable
name=
"lcletters"
>
abcdefghijklmnopqrstuvwxyz
</xsl:variable>
<xsl:variable
name=
"ucletters"
>
ABCDEFGHIJKLMNOPQRSTUVWXYZ
</xsl:variable>
<xsl:variable
name=
"badletters"
>
?()
<>
/\
&
~!@#$%^*_+=-[]{}
</xsl:variable>
<!-- ************************************************************************* -->
...
...
@@ -352,7 +353,7 @@ function BigToggle(node)
<ul>
<xsl:for-each
select=
"question"
>
<xsl:sort
select=
"translate(@text,$lcletters, $ucletters)"
/>
<li><a
href=
"#{
@text
}"
><xsl:value-of
select=
"@text"
/></a></li>
<li><a
href=
"#{
translate(@text,$badletters,'')
}"
><xsl:value-of
select=
"@text"
/></a></li>
</xsl:for-each>
</ul>
</xsl:for-each>
...
...
@@ -527,7 +528,8 @@ function BigToggle(node)
<xsl:for-each
select=
"question"
>
<xsl:sort
select=
"translate(@text,$lcletters, $ucletters)"
/>
<a
name =
"{@text}"
>
<a
name =
"{@text}"
/>
<a
name =
"{translate(@text,$badletters,'')}"
>
<div
class=
"question"
>
<a
href=
"#top"
><font
size=
'2'
><center>
[top]
</center></font></a>
<h2><xsl:value-of
select=
"@text"
/></h2>
...
...
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