-
My response to alecmyers's comment:
You could try to patch things up at resize time, but then anything that handles derivatives will have to address this. How do you know if derivatives are created from a replica operation?
I guess one advantage to referencing the original derivative is that you save entries in the cache. From my perspective, though, that's an issue for the cache: It...
2008-07-16 21:12:09 UTC in Gallery
-
alecmyers pointed me to Sourceforge, and added the following:
I believe the problem occurs at the point in time when the replica is rotated (at which point it earns its own 'preferred' and that is when the existing resizes should be re-sourced) but otherwise, yes, I agree. Its resizes and thumbnail definitely keep the wrong sourceId.
2008-07-16 21:07:51 UTC in Gallery
-
I originally posted this issue in the gallery2 forums:
http://gallery.menalto.com/node/79725
This bug is confirmed on Gallery 2.2.4.
Steps to reproduce:
0. Install Gallery, log in as site admin, add Replica module and at least one toolkit.
1. Add a photo.
2. Click on the photo, "Edit Photo", "Modify Photo", and finally "C 90°".
3. Observe that the photo was rotated clockwise 90...
2008-07-16 21:07:06 UTC in Gallery
-
vectro committed revision 689 to the Amanda Network Backup SVN repository, changing 1 files.
2008-01-08 22:27:35 UTC in Amanda Network Backup
-
vectro committed revision 688 to the Amanda Network Backup SVN repository, changing 16 files.
2008-01-08 22:16:20 UTC in Amanda Network Backup
-
Never mind, it looks like this was fixed in easy.c version 1.93.
2007-02-16 23:53:47 UTC in curl and libcurl
-
Calling curl_easy_reset clears CAfile, even if curl has a built-in default. The code is there to reset it correctly (at line 654 of curl-7.15.1/lib/easy.c), but because ca-bundle.h is not included in easy.c, the test fails and the CAfile option is left blank.
Applying this patch should fix the issue:
--- bad-easy.c 2007-02-16 18:34:54.000000000 -0500
+++ easy.c 2007-02-16...
2007-02-16 23:37:39 UTC in curl and libcurl
-
Oops, I got it wrong. The following patch is preferred:
--- broken/libcurl.m4
+++ fixed/libcurl.m4
@@ -1166,7 +1166,7 @@
if test -d "$_libcurl_with" ; then
LIBCURL_CPPFLAGS="-I$withval/include"
_libcurl_ldflags="-L$withval/lib"
- AC_PATH_PROG([_libcurl_config],["$withval/bin/curl-config"])
+...
2007-02-16 23:21:27 UTC in curl and libcurl
-
The sample autoconf macro distributed as docs/libcurl/libcurl.m4 doesn't properly search for check-config when the --with-libcurl commandline is used.
The problem is that AC_PATH_PROG already appends the path, which you should override with the third argument (not the second).
This patch should do the job:
--- broken/libcurl.m4
+++ fixed/libcurl.m4
@@ -1166,7 +1166,7 @@
if test...
2007-02-16 23:06:55 UTC in curl and libcurl
-
vectro committed revision 97 to the Amanda Network Backup SVN repository, changing 2 files.
2006-11-02 19:00:29 UTC in Amanda Network Backup