Skip to content
Snippets Groups Projects
Commit 23dc1d47 authored by Alexandre Bourget's avatar Alexandre Bourget
Browse files

WEBSITE: you can now specify a specific revision/commit for a link.

Update to Build notes, update to Downloads.
Fix AsciiDoc macros.
parent a0a06d5c
No related branches found
No related tags found
No related merge requests found
...@@ -57,15 +57,18 @@ sudo make install ...@@ -57,15 +57,18 @@ sudo make install
sflphone-qt sflphone-qt
~~~~~~~~~~~ ~~~~~~~~~~~
`sflphone-qt` gets built with sflphoned, for now. `sflphone-qt` is *deprecated* and should not be built anymore.
sflphone-gtk sflphone-gtk
~~~~~~~~~~~~ ~~~~~~~~~~~~
Merging of `sflphone-gtk` to come. Compile `sflphone-gtk` by running:
------------------------- -------------------------
cd sflphone-gtk
gnome-autogen.sh gnome-autogen.sh
./configure --prefix=/usr ./configure --prefix=/usr
make
sudo make install
------------------------- -------------------------
...@@ -8,13 +8,20 @@ Downloads ...@@ -8,13 +8,20 @@ Downloads
Latest release: Latest release:
[grid="all"] [grid="all"]
`----------------------`---------`------------------------- `--------------------`----------`---------------------------
Package Type Link Package Type Link
----------------------------------------------------------- ------------------------------------------------------------
*SFLphone 0.7.2* Sources http://www.sflphone.org/releases/sflphone-0.7.2.tar.gz[Download] sflink:Build.txt[Build notes] *SFLphone 0.7.2* Sources http://www.sflphone.org/releases/sflphone-0.7.2.tar.gz[Download] sflfile:Build.txt[Build notes]
FC6-RPM http://www.sflphone.org/releases/packages/rpm-fc6/sflphone-0.7.2-1.i386.rpm[Download] FC6-RPM http://www.sflphone.org/releases/packages/rpm-fc6/sflphone-0.7.2-1.i386.rpm[Download]
RC6-SRPM http://www.sflphone.org/releases/packages/rpm-fc6/devel/sflphone-0.7.2-1.src.rpm[Download] RC6-SRPM http://www.sflphone.org/releases/packages/rpm-fc6/devel/sflphone-0.7.2-1.src.rpm[Download]
*SFLphone 0.7.0* Source http://www.sflphone.org/releases/sflphone-0.7.0.tar.gz[Download] *SFLphone 0.7.0* Source http://www.sflphone.org/releases/sflphone-0.7.0.tar.gz[Download]
FC4-RPM http://www.sflphone.org/releases/packages/rpm-fc4/sflphone-0.7.0-1.i386.rpm[Download] FC4-RPM http://www.sflphone.org/releases/packages/rpm-fc4/sflphone-0.7.0-1.i386.rpm[Download]
FC4-SRPM http://www.sflphone.org/releases/packages/rpm-fc4/devel/sflphone-0.7.0-1.src.rpm[Download] FC4-SRPM http://www.sflphone.org/releases/packages/rpm-fc4/devel/sflphone-0.7.0-1.src.rpm[Download]
----------------------------------------------------------- ------------------------------------------------------------
Latest source code
------------------
See the sflfile:Git_Access.txt[repository access] page for the latest source
code.
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
# #
ifdef::backend-xhtml11[] ifdef::backend-xhtml11[]
[sflink-inlinemacro] [sflfile-inlinemacro]
<a href="index.php?f={target}.txt">{0?{0}}{0!{target}}</a> <a href="index.php?file={target}">{0?{0}}{0!{target}}</a>
[sflsite-inlinemacro] [sflsite-inlinemacro]
<a href="index.php?mod={target}">{0?{0}}{0!{target}}</a> <a href="index.php?mod={target}">{0?{0}}{0!{target}}</a>
......
...@@ -224,15 +224,24 @@ function get_git_hash_content($hash) { ...@@ -224,15 +224,24 @@ function get_git_hash_content($hash) {
* *
* Used for comparison of cached/to cache/cache filename. * Used for comparison of cached/to cache/cache filename.
* *
* @param string Filename without the $PREFIX (ex: Features.txt, images/pouet.png) * @param string Filename without the $PREFIX (ex: Features.txt,
* images/pouet.png) and optionally, a ":" separator, followed by
* a git tree-ish (commit, branch, tag), ex: Build.txt:tags/0.7.2
* @return string SHA-1 hash * @return string SHA-1 hash
*/ */
function get_git_hash($file) { function get_git_hash($file) {
global $USE_BRANCH, $GIT_REPOS; global $USE_BRANCH, $GIT_REPOS;
$branch = $USE_BRANCH;
$split = explode(":", $file);
if (count($split) > 1) {
$branch = $split[1];
}
$output = array(); $output = array();
$cmd = "cd $GIT_REPOS; git-ls-tree $USE_BRANCH \"".git_filename($file)."\""; $cmd = "cd $GIT_REPOS; git-ls-tree $branch \"".git_filename($file)."\"";
$string = exec($cmd, $output); $string = exec($cmd, $output);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment