Skip to content

Commit 049fbb9

Browse files
committed
Merge branch 'hotfix/0.6.3'
2 parents 703d9c5 + 74d6015 commit 049fbb9

7 files changed

+10
-100
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.6.3 (2019-01-09)
2+
- Supprime la météo dans les modales des plans, car l'API meteorologic.com n'existe plus
3+
- Corrige les liens vers le site web officiel suite au changement de nom de domaine (https://robertmanager.org)
4+
15
### 0.6.2 (2018-07-27)
26
- Remplace toutes les occurrences restantes de _"Acousmie"_ par la constante `NOM_BOITE`
37
- Nettoie encore un peu le code

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Robert-logo](http://www.robert.polosson.com/gfx/Logo_ROBERT.png)
1+
![Robert-logo](https://robertmanager.org/gfx/Logo_ROBERT.png)
22

33
### Robert, c'est :
44
- Une WEB-APP (logiciel en ligne) open source, écrite en `php`, `js`, `html` et `xml`, utilisant _jQuery_, _ajax_ et _mysql_.

config/global_config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
*/
1919

20-
define("R_VERSION", '0.6.2');
20+
define("R_VERSION", '0.6.3');
2121

2222
$host = $_SERVER['HTTP_HOST'];
2323
$serverName = php_uname('n');

fct/calendar_Ajax.js

-23
Original file line numberDiff line numberDiff line change
@@ -568,29 +568,6 @@ function montreDetailsPlan (datas) {
568568
// check des salaires pour autoriser 0
569569
checkSalaires();
570570

571-
// MÉTÉO
572-
var ville = (datas.lieu).split(',');
573-
var meteoLoading = 'ville='+encodeURI(ville[0])+'&date='+datas.timeDebut ;
574-
$.ajaxq('ajaxQueue', {
575-
url: "./fct/meteo_parser.php",
576-
type: "POST",
577-
data: meteoLoading,
578-
success: function (meteoJson) {
579-
try {var meteoArr = jQuery.parseJSON(meteoJson);}
580-
catch (err) {erreur = "ERREUR ! retour PHP :\n\n"+ meteoJson;}
581-
if (meteoArr != null && meteoArr != undefined) {
582-
if (meteoArr.icon == "inconnu")
583-
iconeMeteo = '<img src="./gfx/icones/unknown_weather.png" title="'+meteoArr.condition+'" />';
584-
else {
585-
iconeMeteo = '<img src="http://www.meteorologic.net/pictos/'+meteoArr.icon+'.gif" title="'+meteoArr.condition+'" />('+meteoArr.temp+')';
586-
}
587-
}
588-
else iconeMeteo = '<img src="./gfx/icones/unknown_weather.png" title="Le lieu n\'a pas été trouvé !" />';
589-
$('#meteoDay').html(iconeMeteo);
590-
}
591-
});
592-
593-
594571
if (datas.levelAuth == true) {
595572
if (datas.resa == 'devis') {
596573
$( "#dialog" ).dialog({

fct/meteo_parser.php

-71
This file was deleted.

index.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@
6767
<br />
6868
<span class="boutonMenu petit noMarge"
6969
title="Site officiel de Robert">
70-
<a href="http://www.robert.polosson.com" target="_new"><b>Site officiel</b></a>
70+
<a href="https://robertmanager.org" target="_new"><b>Site officiel</b></a>
7171
</span>
7272
<br /><br />
7373
<span class="boutonMenu petit noMarge"
7474
title="Indiquez ici les bugs que vous trouvez">
75-
<a href="http://www.robert.polosson.com/buglist.php" target="_new"><b>BugHunter</b></a>
75+
<a href="https://robertmanager.org/buglist.php" target="_new"><b>BugHunter</b></a>
7676
</span>
7777
</div>
7878
<div class="colonne C ui-widget fondSect2 petit">

modals/connexion.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
</p>
4646
<p>
4747
Vous trouverez de l'aide sur le fonctionnement de Robert ici :
48-
<b><a href="http://www.robert.polosson.com/wiki.php" target="_new">WIKI de Robert</a></b>
48+
<b><a href="https://robertmanager.org/wiki.php" target="_new">WIKI de Robert</a></b>
4949
</p>
5050
<p>
5151
Si vous trouvez un truc qui cloche, ou qui manque, allez faire un tour dans le
52-
<b><a href="http://www.robert.polosson.com/buglist.php" target="_new">BugHunter</a></b>
52+
<b><a href="https://robertmanager.org/buglist.php" target="_new">BugHunter</a></b>
5353
pour nous en faire part !
5454
</p>
5555
<hr />

0 commit comments

Comments
 (0)