Skip to content

Commit e2ed710

Browse files
committed
Remove links to old rproxy sites
1 parent 6527690 commit e2ed710

File tree

7 files changed

+9
-34
lines changed

7 files changed

+9
-34
lines changed

README.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# librsync
22

33
librsync implements the rolling-checksum algorithm of remote file
4-
synchronization that was popularized by the rsync utility and is used in
5-
rproxy. This algorithm transfers the differences between 2 files without
4+
synchronization that was popularized by the rsync utility.
5+
6+
This algorithm transfers the differences between 2 files without
67
needing both files on the same system.
78

89
librsync does *not* implement the rsync wire protocol. If you want to talk to
@@ -114,11 +115,6 @@ and for the library:
114115
- http://librsync.sourcefrog.net/doc/librsync.html
115116
- http://librsync.sourcefrog.net/doc/librsync.pdf
116117

117-
Generated API documentation:
118-
119-
- https://rproxy.samba.org/doxygen/librsync/
120-
- https://rproxy.samba.org/doxygen/librsync/refman.pdf
121-
122118
These are all produced from the source tree.
123119

124120
## Debugging

debian/copyright

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
This package was debianized by John Goerzen <[email protected]> on
22
Mon, 11 Feb 2002 13:03:19 -0500.
33

4-
The homepage is http://rproxy.sourceforge.net/.
5-
6-
It was downloaded from http://prdownloads.sourceforge.net/rproxy/
7-
8-
0.9.5.1 was found at http://rdiff-backup.stanford.edu/ -- it looks like new
9-
versions might appear there.
4+
The homepage is http://librsync.sourcefrog.net/.
105

116
Upstream Author(s): Martin Pool <[email protected]>
127
Andrew Tridgell <[email protected]>

doc/Makefile.am

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ EXTRA_DIST = $(man_MANS)
2424

2525
# Doxygen API documentation
2626

27-
sites=front.linuxcare.com.au:/var/www/projects/rproxy \
28-
rproxy.sourceforge.net:/home/groups/rproxy/htdocs \
29-
rproxy.samba.org:/space/httpd/rproxy/htdocs
27+
sites=
3028

3129
.PHONY: do-doxy upload-doxy
3230

doc/header.html

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
<title>$project: $title</title>
55
<link href="doxygen.css" rel="stylesheet" type="text/css">
66
</head><body bgcolor="#ffffff" text="#000000" vlink="#339966" link="#339966">
7-
<a href="http://rproxy.samba.org/"><img border=0 src="rproxy-small-logo.png" align=right></a>

doc/main.dox

+2-13
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,15 @@
55

66
$Id$
77

8-
This document is also available in printable form:
9-
10-
- http://rproxy.samba.org/doxygen/librsync/refman.ps.gz
11-
- http://rproxy.samba.org/doxygen/librsync/refman.pdf
12-
13-
More information about librsync can be found on the rproxy web site:
14-
15-
- http://rproxy.samba.org/
16-
17-
librsync can be downloaded from http://rproxy.samba.org/download.html,
8+
librsync can be downloaded from http://librsync.sourcefrog.net/,
189
and used, modified and redistributed under the terms of the GNU Lesser
1910
General Public License (version 2.1 or later).
2011

2112
\section intro Introduction
2213

2314
librsync is a library for calculating and applying network deltas,
2415
with an interface designed to ease integration into diverse
25-
network applications. \em librsync is being developed as part of the \b
26-
rproxy <http://rproxy.samba.org/> and \b rsync
27-
<http://rsync.samba.org/> projects.
16+
network applications.
2817

2918
librsync encapsulates the core algorithms of the rsync protocol, which
3019
help with efficient calculation of the differences between two files.

hex.c

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*= -*- c-basic-offset: 4; indent-tabs-mode: nil; -*-
2-
* rproxy -- dynamic caching and delta update in HTTP
3-
* $Id$
42
*
53
* Copyright (C) 2000, 2001 by Martin Pool <[email protected]>
64
*

rdiff.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ static void rdiff_show_version(void)
173173
#endif
174174

175175
printf("rdiff (%s) [%s]\n"
176-
"Copyright (C) 1997-2001 by Martin Pool, Andrew Tridgell and others.\n"
177-
"http://rproxy.samba.org/\n"
176+
"Copyright (C) 1997-2014 by Martin Pool, Andrew Tridgell and others.\n"
177+
"http://librsync.sourcefrog.net/\n"
178178
"Capabilities: %ld bit files%s%s%s\n"
179179
"\n"
180180
"librsync comes with NO WARRANTY, to the extent permitted by law.\n"

0 commit comments

Comments
 (0)