Switch the Ryzom API to HTTPS

This commit is contained in:
Rodolphe Breard 2018-11-05 12:05:52 +01:00
parent 6ba36de565
commit c81475bca2

View file

@ -11,7 +11,7 @@ alias du='du -ch'
alias ip='ip --color' alias ip='ip --color'
alias ipb='ip --color --brief' alias ipb='ip --color --brief'
alias mount_ro='mount -o ro,noexec,noatime,nodev,nosuid,noiversion' alias mount_ro='mount -o ro,noexec,noatime,nodev,nosuid,noiversion'
alias ryzom_season_change='date --date $(wget -q -O - "http://api.ryzom.com/time.php?format=xml" | sed "s/></>\n</g" | /bin/grep -e "day_of_season" -e "time_of_day" | sed "s/<day_of_season>/\(89-/" | sed "s/<time_of_day>/\(23-/g" | sed "s/<\/day_of_season>/\)\*72/" | sed "s/<\/time_of_day>/\)\*3/" | bc | tr "\n" "+" | sed "s/\+$/\n\"min\"\n/" | bc | tr -d "\n")' alias ryzom_season_change='date --date $(wget -q -O - "https://api.ryzom.com/time.php?format=xml" | sed "s/></>\n</g" | /bin/grep -e "day_of_season" -e "time_of_day" | sed "s/<day_of_season>/\(89-/" | sed "s/<time_of_day>/\(23-/g" | sed "s/<\/day_of_season>/\)\*72/" | sed "s/<\/time_of_day>/\)\*3/" | bc | tr "\n" "+" | sed "s/\+$/\n\"min\"\n/" | bc | tr -d "\n")'
hash tree 2>/dev/null && alias t='tree' hash tree 2>/dev/null && alias t='tree'
hash htop 2>/dev/null && alias top='htop' hash htop 2>/dev/null && alias top='htop'
hash clang-format 2>/dev/null && alias clang-format='clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}"' hash clang-format 2>/dev/null && alias clang-format='clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}"'