<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/viewgit/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/viewgit/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 08 Jun 2012 15:54:56 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/viewgit/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Show user and enable logout</title><link>https://sourceforge.net/p/viewgit/feature-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Show the current user if one is logged in, and somehow enable logging out (sorry if this is already possible)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dave Amphlett</dc:creator><pubDate>Fri, 08 Jun 2012 15:54:56 -0000</pubDate><guid>https://sourceforge.netb95ebe9a763e71586559469fbda6e558e93463c2</guid></item><item><title>simple per user per project permissions (patch attached)</title><link>https://sourceforge.net/p/viewgit/feature-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I wanted a really simple way to show or hide projects on a per user basis.&lt;br /&gt;
I've attached a patch I'm using to achieve this.&lt;br /&gt;
By default all projects are permissioned for everyone (so it should be backward compatible).&lt;/p&gt;
&lt;p&gt;You can set restrictions, in the config in the projects array for each repos with a 'users' value. It supports a project default permission and per user overrides.&lt;/p&gt;
&lt;p&gt;Here's an example $conf['projects']&lt;/p&gt;
&lt;p&gt;$conf['projects'] = array(&lt;br /&gt;
'project1' =&amp;gt; array(&lt;br /&gt;
'repo' =&amp;gt; '/volume1/dw_git/project1.git'&lt;br /&gt;
),&lt;br /&gt;
'project2' =&amp;gt; array(&lt;br /&gt;
'repo' =&amp;gt; '/volume1/dw_git/project2.git'&lt;br /&gt;
),&lt;br /&gt;
'project3' =&amp;gt; array(&lt;br /&gt;
'repo' =&amp;gt; '/volume1/dw_git/project3.git',&lt;br /&gt;
'users' =&amp;gt; array('*' =&amp;gt; false, 'damphlett' =&amp;gt; true), // only damphlett can see project3&lt;br /&gt;
),&lt;br /&gt;
'project4' =&amp;gt; array(&lt;br /&gt;
'repo' =&amp;gt; '/volume1/dw_git/project4.git',&lt;br /&gt;
'users' =&amp;gt; array('humpty' =&amp;gt; false), // everyone except humpty can see project4&lt;br /&gt;
),&lt;br /&gt;
);&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dave Amphlett</dc:creator><pubDate>Fri, 08 Jun 2012 15:54:11 -0000</pubDate><guid>https://sourceforge.net8516f7df98c4ea8d1c761a68c6d6c6d79e283cc3</guid></item><item><title>add links to HEAD blobs (without hashes)</title><link>https://sourceforge.net/p/viewgit/feature-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I may have missed something, but I'd like to have some links to blobs of the most recent versions of the files when selecting HEAD.&lt;/p&gt;
&lt;p&gt;Currently, the file version hash is inserted in the link so copied links will always refer to the same version instead of HEAD.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 24 May 2012 07:17:35 -0000</pubDate><guid>https://sourceforge.net998469e28249a0f99bf7f7e9174962e198fb784b</guid></item><item><title>Create dynamic list of repositories in a directory</title><link>https://sourceforge.net/p/viewgit/feature-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;IS A SUGGESTION :)&lt;/p&gt;
&lt;p&gt;If not exists this option on Viewgit configuration, add, like gitweb.&lt;/p&gt;
&lt;p&gt;On my server, I was created this with no Viewgit code pattern on localconfig.php.&lt;/p&gt;
&lt;p&gt;This is the code:&lt;/p&gt;
&lt;p&gt;$_base = '/var/www/git/';&lt;/p&gt;
&lt;p&gt;// Buscando por aplicativos dentro das views&lt;br /&gt;
$handle = opendir( $_base );&lt;/p&gt;
&lt;p&gt;// Percorrendo diretório&lt;br /&gt;
while (false !== ($_file = readdir($handle))) {&lt;/p&gt;
&lt;p&gt;// Verificando se é um aplicativo&lt;br /&gt;
if ( $_file != '.' &amp;amp;&amp;amp; $_file != '..' &amp;amp;&amp;amp; is_dir( $_base . $_file ) ) {&lt;br /&gt;
$conf['projects'][$_file] = Array( 'repo' =&amp;gt; "{$_base}{$_file}" );&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
closedir($handle);&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michel Wilhelm</dc:creator><pubDate>Tue, 24 Jan 2012 16:50:29 -0000</pubDate><guid>https://sourceforge.netd29cf72c9f2020c8366b966530c0b5c7c3d9d5c5</guid></item><item><title>Add last change description to Index</title><link>https://sourceforge.net/p/viewgit/feature-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Currently there's a "last change date" being shown on the index, adding the last change commit message will be very invaluable for many people I think (could be an optional feature).&lt;/p&gt;
&lt;p&gt;In my case I'd rather turn off the description and keep the last commit message if space were an issue.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 18 Sep 2011 08:31:23 -0000</pubDate><guid>https://sourceforge.neta57adb77b087ef8718f19cd187a22e5f28f323e9</guid></item></channel></rss>