Displaying 20 results from an estimated 1155 matches for "gitweb".
2011 Aug 10
3
selinux prohibiting sssd usage
I've got a CentOS 6 machine that's slated to go into production
providing some web and development-repository services.
Part of the environment is gitweb, which works as expected with one
glitch: SELinux doesn't allow gitweb.cgi to query sssd to display who
owns the repositories.
The audit log entries are pretty straightforward, e.g.,
type=AVC msg=audit(XXXXXXXXXXXX): avc: denied { search } for
pid=XXXX comm="gitweb.cgi" name=&qu...
2011 Aug 08
1
gitweb Bug
A slight bug with the gitweb system is:
Clicking on this page[1] brings up a gitweb page with a
"git://git.zytor.com " link at the top left, but the destination for
that URI is actually http://git.zytor.com/git.zytor.com , which doesn't
work. Perhaps some symlink magic is involved?
- Shao Miller
[1]...
2015 Jun 10
2
git daemon on zytor is back in action
...> > via either http://git.zytor.com/ or git://git.zytor.com/
> >
> > However, the web interface is still broken. I'll see if I can fix it in
> > the next few minutes, otherwise I'll probably have to pass.
> >
> > -hpa
>
> Alright, it looks like gitweb-caching is simply no longer maintained, so
> I bit the bullet and switched git.zytor.com over to using cgit. It
> seems to work for me, holler if it doesn't...
>
> -hpa
Hi Peter,
Thank you.
Moving from gitweb-caching to cgit causes most http(s) links that are
already pointin...
2012 Aug 17
4
[ANNOUNCE] Git mirror of Xen repositories available
...ed to announce that a Git mirror repository is now available
(and up-to-date). This one contains several branches:
* master --> xen-unstable.hg
* staging --> staging/xen-unstable.hg
* stable-4.0 --> xen-4.0-testing.hg
* stable-4.1 --> xen-4.1-testing.hg
http://xenbits.xen.org/gitweb/?p=xen.git
git://xenbits.xen.org/xen.git
Regards,
--
Anthony PERARD
2007 Jan 06
0
gitweb
I've got gitweb running now. You can access it here:
http://go-compiz.org/gitweb.cgi
I don't generally use git or gitweb, but it seems to be working as expected.
Let me know if you have any problems. After you've had a chance to test it
we'll put the link on the site.
Jeff
2011 Oct 31
1
[LLVMdev] git web interface
Hello Everyone
We're looking right now for web interface to git mirrors of main LLVM repo.
What should be used? Gitweb? cgit? Gitalist?
If you have some success stories to share - please let us know.
If possible, we'd prefer something perl'ish or python'ish :)
Thanks!
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2015 Jun 11
0
git daemon on zytor is back in action
On 06/10/2015 01:54 AM, Ady via Syslinux wrote:
>
> Hi Peter,
>
> Thank you.
>
> Moving from gitweb-caching to cgit causes most http(s) links that are
> already pointing to git.zytor.com to fail with the message "Invalid
> request".
>
> Such links might exist in bug reports, mailing lists, documentation,
> and wiki pages; certainly in those that are part of The Syslin...
2011 Feb 03
0
Holiday
...l obviously keep going without me,
but I'm just sending this note to say that I have put mirrors for the
following git repositories up in case the primary git repo has any
problems.
Primary Mirror
http://git.annexia.org/?p=febootstrap.git;a=summary
http://fedorapeople.org/gitweb?p=rjones/public_git/febootstrap.git;a=summary
http://git.annexia.org/?p=hivex.git;a=summary
http://fedorapeople.org/gitweb?p=rjones/public_git/hivex.git;a=summary
http://git.annexia.org/?p=libguestfs.git;a=summary
http://fedorapeople.org/gitweb?p=rjones/public_git/li...
2009 May 29
3
Rsync maintained patches repository
Wayne,
How can I access the rsync maintained patches repository with the git
tools? These work:
$ firefox http://gitweb.samba.org/?p=rsync.git;a=summary
$ git clone git://git.samba.org/rsync.git
$ firefox http://gitweb.samba.org/?p=rsync.git/patches.git;a=summary
So I thought this might work, but it doesn't:
$ git clone git://git.samba.org/rsync.git/patches.git
Initialized empty Git repository in /PATH/TO/patc...
2007 Dec 14
0
Unnamed repository; edit this file to name it for gitweb.: Changes to 'master'
New branch 'master' available with the following commits:
commit 9463698500814477ddb82eb3212cf21c23129050
Author: Benjamin Otte <otte at gnome.org>
Date: Fri Dec 14 22:43:05 2007 +0100
add --primary to force rendering on the primary display
commit 114ee10250c7559048b526b6887278b87548c353
Author: Benjamin Otte <otte at gnome.org>
Date: Fri Dec 14 22:01:52 2007 +0100
2006 Dec 27
2
Unnamed repository; edit this file to name it for gitweb.: Changes to 'master'
New branch 'master' available with the following commits:
2015 Jun 10
2
git daemon on zytor is back in action
The git daemon on zytor is now functional again, as I managed to carve
out a little bit of time to dig into the selinux problem. Cloning git
via either http://git.zytor.com/ or git://git.zytor.com/
However, the web interface is still broken. I'll see if I can fix it in
the next few minutes, otherwise I'll probably have to pass.
-hpa
2015 Jun 11
2
git daemon on zytor is back in action
...Or perhaps there is a way to avoid the "Invalid request" message? Maybe
> > by some (automatic) redirection to the adequate corresponding new
> > "cgit" link?
>
> It certainly would be possible to do a redirection, if one can come up
> with a mapping from gitweb queries to cgit queries, which I don't know
> if someone has already done...
>
Apparently, it has been done, (e.g. fedoraproject.org _partially_ did
it).
I have found:
http://ao2.it/en/blog/2011/05/06/migrate-gitweb-cgit-url-rewrite-rules
It mentions similar goals, of maintaining a...
2019 May 23
2
Proposal for Mach-O support in llvm-objcopy: section renaming
...text a.out a.out2
WRONG: llvm-objcopy --macho-names --only-secton=.text a.out
WRONG: llvm-objcopy --macho-names --only-secton=__TEXT.__text a.out
OK: llvm-objcopy --macho-names --only-secton=__TEXT,__text a.out
What do you think about this behavior?
Thanks,
Seiya
[1]: https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob;f=bfd/mach-o.c;h=d9edef2871d83b53280b613935c068e4327f3270;hb=HEAD#l364
[2]: https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob;f=bfd/mach-o.c;h=d9edef2871d83b53280b613935c068e4327f3270;hb=HEAD#l90
2012 Jun 05
4
[Fwd: Re: Error]
...e problem
The general step that I follow are
1- rm -r /media/samba-master/bin
2- I run make distclean, and
WAF_MAKE=1 ./buildtools/bin/waf distclean
'distclean' finished successfully (0.000s)
3- I run git pull
error: Unable to find 3b6a88a1a49fdc23cd956c6583e9ec56e541eeae under
http://gitweb.samba.org/samba.git
Cannot obtain needed blob 3b6a88a1a49fdc23cd956c6583e9ec56e541eeae
while processing commit 1a596076697624545f415eb558c4647267cfe46c.
error: Fetch failed.
2013 Jun 24
11
crash on resume after suspend
Hi. I am using xen 4.2.2, the system runs okay. But when I suspend it, it does so, but crashes on trying to resume.
Here is lsmod output:
Module Size Used by
xen_pciback 52011 0
xen_netback 27468 0
xen_blkback 26998 0
xen_gntalloc 13144 0
xen_gntdev 17403 1
xen_evtchn 13132 1
xenfs 12985 1
xen_privcmd 13177 5 xenfs
parport_pc 28152 0
ppdev 17073 0
rfcomm 42641 12
bnep 18036 2
ext2 72837 1
2013 Jun 24
11
crash on resume after suspend
Hi. I am using xen 4.2.2, the system runs okay. But when I suspend it, it does so, but crashes on trying to resume.
Here is lsmod output:
Module Size Used by
xen_pciback 52011 0
xen_netback 27468 0
xen_blkback 26998 0
xen_gntalloc 13144 0
xen_gntdev 17403 1
xen_evtchn 13132 1
xenfs 12985 1
xen_privcmd 13177 5 xenfs
parport_pc 28152 0
ppdev 17073 0
rfcomm 42641 12
bnep 18036 2
ext2 72837 1
2010 Jan 28
1
Problem with R math library.
Hello.
I've been working on my OCaml-R binding, and I quite pleased to see that
it is functional, though far from being perfect or polished. You can
find the gitweb webpage and the interface documentation at
http://yziquel.homelinux.org/gitweb/?p=ocaml-r.git;a=tree
http://yziquel.homelinux.org/topos/api/ocaml-r/index.html
I'm having unexpected trouble with the math library, though. The
interface documentation is here:
http://yziquel.homelinux.org/to...
2013 Mar 04
1
Qemu confusion
Hi everybody,
I''m currently a little confused about the status of the different qemu
trees for xen unstable.. from what I''ve gathered so far, there are 3
different trees:
1) Qemu-Xen-Unstable (Repo:
http://xenbits.xen.org/gitweb/?p=staging/qemu-xen-unstable.git;a=shortlog;h=refs/heads/master
)
This is the default repository which is download while xen-unstable is build
2) Qemu-Upstream-Unstable (Repo:
http://xenbits.xen.org/gitweb/?p=staging/qemu-upstream-unstable.git;a=shortlog;h=refs/heads/master
)
I don''t real...
2007 May 07
3
extra plugins for 0.5.0?
Hi,
is anybody already working on porting the extra plugins (those ported
over from beryl) to compiz 0.5.0? I'm especially thinking about the
animation plugin. Or is this something to be addressed post-unification?
CU all
Matthias
--
Matthias Hopf <mhopf@suse.de> __ __ __
Maxfeldstr. 5 / 90409 Nuernberg (_ | | (_ |__ mat@mshopf.de
Phone