search for: url_prefix

Displaying 9 results from an estimated 9 matches for "url_prefix".

Did you mean: uri_prefix
2002 Jul 20
0
[PATCH] (Resubmission) Enable push to remote rsynced server using rsync:// URL
..._|\_\\___| |_| |____\___|\___||____\_/^\_/\___/\___/\___| -------------- next part -------------- diff -urN rsync-2.5.5/main.c rsync-2.5.5+pushURL/main.c --- rsync-2.5.5/main.c Wed Mar 27 05:10:44 2002 +++ rsync-2.5.5+pushURL/main.c Wed Jun 5 09:15:44 2002 @@ -673,6 +673,8 @@ if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0) { char *host, *path; + /* First parameter is rsync://HOST/MODULE URL. + * Receive from remote rsyncd server. */ host = argv[0] + strlen(URL_PREFIX); p = strchr(host,'/'); @@ -695,6 +697,8 @@ if (p) { if (p[1] == ':') { /* doub...
2009 May 21
1
[PATCH server] Fix for anyterm and multiple nodes
proxy/anyterm needs to go to the node that has our vm on it, not vmnodes:anyterm. This patch also requires a change to the anyterm.js file that ships with anyterm. The change is at the top: - var url_prefix = proxy/; + var url_prefix = window.location.pathname + /proxy/; Not quite sure how we're going to manage that change though. --- conf/ovirt-server.conf | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/conf/ovirt-server.conf b/conf/ovirt-server.conf index 6e5eea9..1d...
2003 Jul 24
0
(no subject)
...); + } if (verbose > 3) rprintf(FINFO,"file list sent\n"); *************** *** 712,717 **** --- 715,721 ---- if ((rc = copy_argv(argv))) return rc; + if (!read_batch) { /* rsync:// always uses rsync server over direct socket connection */ if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0) { char *host, *path; *************** *** 732,739 **** return start_socket_client(host, path, argc-1, argv+1); } ! if (!read_batch) { ! p = find_colon(argv[0]); if (p) { if (p[1] == ':') { /* double colon */ --- 736,742 ----...
2012 Aug 20
1
Digium Phones
I have been looking for the specs (format, bit rate, ect) on custom ringtones for digium phones. Using the DPMA how would I deliver the ringtone to a digium phone? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20120820/cb4927d0/attachment.htm>
2002 Feb 21
1
[patch] configurable RSYNCD_CONF
...c.h Thu Feb 21 00:59:11 2002 @@ -26,7 +26,8 @@ #define RSYNC_RSH_ENV "RSYNC_RSH" #define RSYNC_NAME "rsync" -#define RSYNCD_CONF "/etc/rsyncd.conf" + +/* RSYNCD_CONF is always set in config.h */ #define DEFAULT_LOCK_FILE "/var/run/rsyncd.lock" #define URL_PREFIX "rsync://" --- configure.in.orig Wed Feb 20 08:40:47 2002 +++ configure.in Thu Feb 21 01:26:47 2002 @@ -85,6 +85,30 @@ AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine]) +AC_ARG_WITH(rsyncd-conf, + AC_HELP_STRING([--with-rsyncd-conf=PATH],...
2004 Apr 19
0
User configuration file
...15:39:12.000000000 +0100 @@ -28,7 +28,7 @@ #define RSYNC_NAME "rsync" #define RSYNCD_SYSCONF "/etc/rsyncd.conf" -#define RSYNCD_USERCONF "rsyncd.conf" +#define RSYNCD_USERCONF ".rsyncd" #define DEFAULT_LOCK_FILE "/var/run/rsyncd.lock" #define URL_PREFIX "rsync://"
2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch? Thanks for the reminder. I've just committed Jos's rsync+ patch onto the "branch_mbp_rsyncplus_merge" branch. If it works OK and nobody screams I will move it across onto the main tree tomorrow or Wednesday. I see the patch doesn't add documentation about the new options to the man page, so we should fix that in the future.
2001 Nov 20
2
rsync server over SSH [includes code patches]
...if (path && *path) args[argc++] = path; + } args[argc] = NULL; *************** *** 555,560 **** --- 558,564 ---- extern int am_sender; extern char *shell_cmd; extern int rsync_port; + extern int run_inband; if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0) { char *host, *path; *************** *** 578,584 **** p = find_colon(argv[0]); if (p) { ! if (p[1] == ':') { *p = 0; return start_socket_client(argv[0], p+2, argc-1, argv+1); } --- 582,591 ---- p = find_colon(argv[...
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...ee the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + +var undefined; + +var url_prefix = ""; + +var frame; +var term; +var open=false; +var session; + +var method="POST"; +//var method="GET"; + +// Random sequence numbers are needed to prevent Opera from caching +// replies + +var is_opera = navigator.userAgent.toLowerCase().indexOf("opera") !=...