Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
f868917d
Commit
f868917d
authored
May 02, 2015
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an "Edit me on Github" ribbon to the docs
parent
e15ec7d4
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
127 additions
and
0 deletions
+127
-0
docs/source/_static/style.css
docs/source/_static/style.css
+83
-0
docs/source/builds.rst
docs/source/builds.rst
+5
-0
docs/source/configuration.rst
docs/source/configuration.rst
+3
-0
docs/source/development.rst
docs/source/development.rst
+4
-0
docs/source/documentation.rst
docs/source/documentation.rst
+4
-0
docs/source/features.rst
docs/source/features.rst
+4
-0
docs/source/index.rst
docs/source/index.rst
+4
-0
docs/source/manual.rst
docs/source/manual.rst
+4
-0
docs/source/quickstart.rst
docs/source/quickstart.rst
+4
-0
docs/source/setup.rst
docs/source/setup.rst
+4
-0
docs/source/theming.rst
docs/source/theming.rst
+4
-0
docs/source/translations.rst
docs/source/translations.rst
+4
-0
No files found.
docs/source/_static/style.css
View file @
f868917d
...
...
@@ -10,3 +10,86 @@ h1 {
padding-top
:
7px
;
}
/*
Copyright (c) 2012 Terrence Ryan
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify,
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be included in all copies
or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.
*/
#banner
{
height
:
149px
;
width
:
149px
;
overflow
:
hidden
;
padding
:
0
;
margin
:
0
;
float
:
right
;
}
#banner
a
{
display
:
block
;
width
:
235px
;
font-size
:
14px
;
font-family
:
Frutiger
,
"Frutiger Linotype"
,
Univers
,
Calibri
,
"Gill Sans"
,
"Gill Sans MT"
,
"Myriad Pro"
,
Myriad
,
"DejaVu Sans Condensed"
,
"Liberation Sans"
,
"Nimbus Sans L"
,
Tahoma
,
Geneva
,
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans
serif
;
background-color
:
#333
;
color
:
#FFF
;
word-spacing
:
2px
;
text-decoration
:
none
;
padding
:
5px
15px
5px
25px
;
position
:
relative
;
left
:
20px
;
top
:
-33px
;
text-align
:
center
;
-moz-transform-origin
:
0
0
;
-moz-transform
:
rotate
(
45deg
);
-moz-box-shadow
:
1px
1px
5px
1px
#666
;
-webkit-transform-origin
:
0
0
;
-webkit-transform
:
rotate
(
45deg
);
-webkit-box-shadow
:
1px
1px
5px
1px
#666
;
-ms-transform-origin
:
0
0
;
-ms-transform
:
rotate
(
45deg
);
-ms-box-shadow
:
1px
1px
5px
1px
#666
;
transform-origin
:
0
0
;
transform
:
rotate
(
45deg
);
box-shadow
:
1px
1px
5px
1px
#666
;
background-image
:
linear-gradient
(
bottom
,
#000000
3%
,
#666666
5%
,
#000000
7%
,
#000000
93%
,
#666666
95%
,
#000000
97%
);
background-image
:
-o-linear-gradient
(
bottom
,
#000000
3%
,
#666666
5%
,
#000000
7%
,
#000000
93%
,
#666666
95%
,
#000000
97%
);
background-image
:
-moz-linear-gradient
(
bottom
,
#000000
3%
,
#666666
5%
,
#000000
7%
,
#000000
93%
,
#666666
95%
,
#000000
97%
);
background-image
:
-webkit-linear-gradient
(
bottom
,
#000000
3%
,
#666666
5%
,
#000000
7%
,
#000000
93%
,
#666666
95%
,
#000000
97%
);
background-image
:
-ms-linear-gradient
(
bottom
,
#000000
3%
,
#666666
5%
,
#000000
7%
,
#000000
93%
,
#666666
95%
,
#000000
97%
);
background-image
:
-webkit-gradient
(
linear
,
left
bottom
,
left
top
,
color-stop
(
0.03
,
#000000
),
color-stop
(
0.05
,
#666666
),
color-stop
(
0.07
,
#000000
),
color-stop
(
0.93
,
#000000
),
color-stop
(
0.95
,
#666666
),
color-stop
(
0.97
,
#000000
)
);
}
docs/source/builds.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/builds.rst">Edit me on GitHub</a></div>
.. _builds:
===============
...
...
docs/source/configuration.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/configuration.rst">Edit me on GitHub</a></div>
=============
Configuration
...
...
docs/source/development.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/development.rst">Edit me on GitHub</a></div>
.. _development:
===========
...
...
docs/source/documentation.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/documentation.rst">Edit me on GitHub</a></div>
=====================
Writing Documentation
=====================
...
...
docs/source/features.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/features.rst">Edit me on GitHub</a></div>
========
Features
========
...
...
docs/source/index.rst
View file @
f868917d
...
...
@@ -3,6 +3,10 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/index.rst">Edit me on GitHub</a></div>
=========================
Converse.js Documentation
=========================
...
...
docs/source/manual.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/manual.rst">Edit me on GitHub</a></div>
===========================
The Converse.js User Manual
===========================
...
...
docs/source/quickstart.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/quickstart.rst">Edit me on GitHub</a></div>
=========================================
Quickstart (to get a demo up and running)
=========================================
...
...
docs/source/setup.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/setup.rst">Edit me on GitHub</a></div>
=====================
Setup and integration
=====================
...
...
docs/source/theming.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/theming.rst">Edit me on GitHub</a></div>
=======
Theming
=======
...
...
docs/source/translations.rst
View file @
f868917d
.. raw:: html
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/translations.rst">Edit me on GitHub</a></div>
============
Translations
============
...
...
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