summaryrefslogtreecommitdiff
path: root/doc/todo/bytes_in_privData__63__
diff options
context:
space:
mode:
authorJoey Hess2015-04-23 09:25:34 -0400
committerJoey Hess2015-04-23 09:25:34 -0400
commita52b094e435a2baaad42d2717bb83dd11f89d674 (patch)
tree122fc9902b948c310e681bddc05fc0b16db2e7f8 /doc/todo/bytes_in_privData__63__
parent2d7c493403766871731121ac967672aa9440d2e8 (diff)
parentecd0de08dafa2e377f830806cdb086313128bb84 (diff)
Merge branch 'master' of ssh://propellor.branchable.com
Diffstat (limited to 'doc/todo/bytes_in_privData__63__')
-rw-r--r--doc/todo/bytes_in_privData__63__/comment_4_f34a8f82c7bce7224e4edc59410c741f._comment19
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/todo/bytes_in_privData__63__/comment_4_f34a8f82c7bce7224e4edc59410c741f._comment b/doc/todo/bytes_in_privData__63__/comment_4_f34a8f82c7bce7224e4edc59410c741f._comment
new file mode 100644
index 00000000..bd7a0618
--- /dev/null
+++ b/doc/todo/bytes_in_privData__63__/comment_4_f34a8f82c7bce7224e4edc59410c741f._comment
@@ -0,0 +1,19 @@
+[[!comment format=mdwn
+ username="gueux"
+ subject="comment 4"
+ date="2015-04-23T09:21:07Z"
+ content="""
+I tried to do the conversion, but then it started a kind of chain reaction... (PrivData=ByteString to writeFileProtected to Line=ByteString to ... to readProcess to ...) Should I use FilePath=String? ... To be honest, the patch became a lot bigger that what I am comfortable with. :-)
+
+I guess you should have a look at it...
+
+At least, I think there is a type bug in Propellor.Property.File:
+
+ hasPrivContent' :: (IsContext c, IsPrivDataSource s) => (String -> FilePath -> IO ()) -> s -> FilePath -> c -> Property HasInfo
+
+but it should be
+
+ hasPrivContent' :: (IsContext c, IsPrivDataSource s) => (FilePath -> String -> IO ()) -> s -> FilePath -> c -> Property HasInfo
+
+(it is hidden by FilePath = String)
+"""]]