View Issue Details

IDProjectCategoryView StatusLast Update
1382Composrcorepublic2013-12-31 20:36
ReporterChris Graham Assigned ToChris Graham  
PrioritynormalSeverityfeature 
Status resolvedResolutionfixed 
Summary1382: Add git repository detection code
DescriptionIt can be useful to auto-detect what git repository Composr is from, e.g. to customise a config file when switching between branches.

We can add a new function to do it, but it must be in anything that loads the config file.
Additional Information/**
 * Find the git branch name.
 *
 * @return ?ID_TEXT Branch name (NULL: not in git)
 */
function git_repos()
{
    $path=dirname(__FILE__).'/.git/HEAD';
    if (!is_file($path)) return '';
    $lines=file($path);
    $parts=explode('/',$lines[0]);
    return trim(end($parts));
}
TagsNo tags attached.
Attach Tags
Time estimation (hours)1
Sponsorship open

Sponsor

Date Added Member Amount Sponsored

Activities

Chris Graham

2013-09-01 15:53

administrator   ~1689

Or, just write this function into info.php via install.php, commented out. Then a programmer can very quickly enable, as required.
It doesn't matter if the config editor erases it, a programmer won't normally be using that anyway.

Issue History

Date Modified Username Field Change