summaryrefslogtreecommitdiff
path: root/user/tlecarrour/sitecopy.mdwn
blob: 11f512aeb0269878f940cf5cb1f3684adcd13b3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[[!meta copyright="Copyright © 2012 Free Software Foundation, Inc."]]

[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts.  A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]

[[!tag open_issue_porting]]


sitecopy
========

A program for managing a WWW site via FTP, DAV or HTTP.  
**Home page**: [[http://www.manyfish.co.uk/sitecopy]]

[[!toc startlevel=2]]


* * *


Log
---

* **Started**: -
* **Discussed**: -
* **Draft Submitted**: -
* **Submitted**: -
* **Accepted**: -


* * *


ToDo
----

Here is the output of `grep -R PATH_MAX sitecopy-0.16.6/*`:

    intl/dcigettext.c:   PATH_MAX but might cause redefinition warnings when sys/param.h is
    intl/dcigettext.c:#ifndef _POSIX_PATH_MAX
    intl/dcigettext.c:# define _POSIX_PATH_MAX 255
    intl/dcigettext.c:#if !defined PATH_MAX && defined _PC_PATH_MAX
    intl/dcigettext.c:# define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
    intl/dcigettext.c:#if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
    intl/dcigettext.c:#if !defined PATH_MAX && defined MAXPATHLEN
    intl/dcigettext.c:# define PATH_MAX MAXPATHLEN
    intl/dcigettext.c:#ifndef PATH_MAX
    intl/dcigettext.c:# define PATH_MAX _POSIX_PATH_MAX
    intl/dcigettext.c:	  path_max = (unsigned int) PATH_MAX;
    src/ftp.c:#include <limits.h> 	/* for PATH_MAX */
    src/ftp.c:#ifndef PATH_MAX
    src/ftp.c:#define PATH_MAX 2048
    src/ftp.c:    char cwd[PATH_MAX];
    src/ftp.c:    char dir[PATH_MAX];
    src/ftp.c:    if (!sess->use_cwd || fn[0] != '/' || strlen(fn) > PATH_MAX)
    debian/patches/10_bts410703_preserve_storage_files_sigint.dpatch:+    char filebuf[PATH_MAX];
    debian/patches/10_bts410703_preserve_storage_files_sigint.dpatch:+    char filebuf[PATH_MAX];


* * *


Comments
--------

Not yet started.

One of the PATH_MAX if used in debian patch.