New help page (#531)

* New help page poiting to support chatroom, forum and bugtracker
* Adding note about the actual adress of the rooms
* Fix typos found by JimboJoe
* Fix typos found by JimboJoe
* Remove old support page (see new-help-page) (#532)
This commit is contained in:
Alexandre Aubin 2017-08-31 13:52:19 +02:00 committed by GitHub
parent 982719a9e9
commit 127a695ab1
2 changed files with 126 additions and 6 deletions

66
help.md
View file

@ -1,5 +1,65 @@
#About this site # Looking for help?
Unless specifically mentioned, the content of this website is licensed under the [Creative Commons ```CC-BY-SA``` license](http://creativecommons.org/licenses/by-sa/3.0/). <h3>Connect to the support chatroom</h3>
<center>
<div class="alert alert-info" markdown="1" style="max-width:700px;">
<strong>ProTips™</strong>
<ul style="text-align:left;">
<li>Don't ask to ask, just ask !</li>
<li><em>Be patient</em>, it can take a few minutes before someone sees your messages.</li>
</ul>
</div>
<strong>Nickname</strong> : <input id="nickname" value="foobar" type="text">
</br>
</br>
<button id="joinChatroom" type="button" class="btn btn-success" style="font-weight:bold;">
<span class="glyphicon glyphicon-comment"></span> Join the chatroom
</button>
</br>
</br>
<em>Note : you can also connect using your favorite XMPP client to </br>
support@conference.yunohost.org</em>
</center>
<h3>... or ask on the forum !</h3>
<center>
<button id="goForum" type="button" class="btn btn-success" style="font-weight:bold;">
<span class="glyphicon glyphicon-comment"></span> Go to the forum
</button>
</center>
<h3>You've found a bug ?</h3>
<center>
<br>
<em>Please report it on our bugtracker or contact the developers</em><br><br>
<button id="goBugtracker" type="button" class="btn btn-warning" style="font-weight:bold;">
<span class="glyphicon glyphicon-exclamation-sign"></span> Report a bug
</button>
<button id="goDevroom" type="button" class="btn btn-warning" style="font-weight:bold; margin-left:40px">
<span class="glyphicon glyphicon-comment"></span> Contact the developers
</button>
</br>
</br>
<em>Note : you can also connect to the devrooms, using your favorite XMPP client, to </br>
dev@conference.yunohost.org and apps@conference.yunohost.org</em>
</center>
<script>
document.getElementById("joinChatroom").onclick = function() {
var nickname = document.getElementById("nickname").value;
window.location.href = "https://chat.yunohost.org/?nick="+nickname;
}
document.getElementById("goForum").onclick = function() {
var nickname = document.getElementById("nickname").value;
window.location.href = "https://forum.yunohost.org/latest";
}
document.getElementById("goBugtracker").onclick = function() {
window.location.href = "https://dev.yunohost.org/projects/yunohost/issues";
}
document.getElementById("goDevroom").onclick = function() {
window.location.href = "https://chat.yunohost.org/";
}
</script>
This wiki is powered by [Simone](https://github.com/Kloadut/Simone).

View file

@ -1,5 +1,65 @@
propos de ce site # Besoin d'aide ?
Sauf mention contraire, le contenu de ce site est sous [licence Creative Common ```CC-BY-SA```](http://creativecommons.org/licenses/by-sa/3.0/fr/) <h3>Connectez-vous au salon de support</h3>
<center>
<div class="alert alert-info" markdown="1" style="max-width:750px;">
<strong>ProTips™</strong>
<ul style="text-align:left;">
<li>Pas besoin de demander si vous pouvez poser une question - posez-la directement !</li>
<li><em>Soyez patient</em>, cela peut prendre plusieurs minutes avant que quelqu'un remarque vos messages.</li>
</ul>
</div>
<strong>Pseudonyme</strong> : <input id="nickname" value="foobar" type="text">
</br>
</br>
<button id="joinChatroom" type="button" class="btn btn-success" style="font-weight:bold;">
<span class="glyphicon glyphicon-comment"></span> Rejoindre le salon
</button>
</br>
</br>
<em>Note : vous pouvez aussi vous connecter via votre client XMPP favori à</br>
support@conference.yunohost.org</em>
</center>
<h3>... ou demandez sur le forum !</h3>
<center>
<button id="goForum" type="button" class="btn btn-success" style="font-weight:bold;">
<span class="glyphicon glyphicon-comment"></span> Aller sur le forum
</button>
</center>
<h3>Vous avez trouvé un bug ?</h3>
<center>
<br>
<em>Vous pouvez rapporter le bug sur le bugtracker ou contacter les développeurs</em><br><br>
<button id="goBugtracker" type="button" class="btn btn-warning" style="font-weight:bold;">
<span class="glyphicon glyphicon-exclamation-sign"></span> Rapporter un bug
</button>
<button id="goDevroom" type="button" class="btn btn-warning" style="font-weight:bold; margin-left:40px">
<span class="glyphicon glyphicon-comment"></span> Contacter les développeurs
</button>
</br>
</br>
<em>Note : vous pouvez aussi vous connecter aux salons de dev, via votre client XMPP favori, à</br>
dev@conference.yunohost.org et apps@conference.yunohost.org</em>
</center>
<script>
document.getElementById("joinChatroom").onclick = function() {
var nickname = document.getElementById("nickname").value;
window.location.href = "https://chat.yunohost.org/?nick="+nickname;
}
document.getElementById("goForum").onclick = function() {
var nickname = document.getElementById("nickname").value;
window.location.href = "https://forum.yunohost.org/latest";
}
document.getElementById("goBugtracker").onclick = function() {
window.location.href = "https://dev.yunohost.org/projects/yunohost/issues";
}
document.getElementById("goDevroom").onclick = function() {
window.location.href = "https://chat.yunohost.org/";
}
</script>
Ce wiki est propulsé par [Simone](https://github.com/Kloadut/Simone).