summaryrefslogtreecommitdiff
path: root/doc/bugs/problems_with_android_and_xmpp.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/bugs/problems_with_android_and_xmpp.mdwn
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
Diffstat (limited to 'doc/bugs/problems_with_android_and_xmpp.mdwn')
-rw-r--r--doc/bugs/problems_with_android_and_xmpp.mdwn84
1 files changed, 0 insertions, 84 deletions
diff --git a/doc/bugs/problems_with_android_and_xmpp.mdwn b/doc/bugs/problems_with_android_and_xmpp.mdwn
deleted file mode 100644
index 73ceab7b3..000000000
--- a/doc/bugs/problems_with_android_and_xmpp.mdwn
+++ /dev/null
@@ -1,84 +0,0 @@
-### Please describe the problem.
-When trying to sync my android phone with my linux laptop using the git annex assistant and XMPP no files are transferred.
-
-### What steps will reproduce the problem?
-1) setup git annex via webapp on laptop:
-
-* local annex
-
-* remote annex via ssh with shared encryption (tried two different servers, one with and one without git-annex installed)
-
-* share with my devices using jabber.me account
-
-2) setup git annex via webapp on android:
-
-* local annex in /sdcard/annex (fuse filesystem without symlink support)
-
-* share with my devices using jabber.me account
-
-* ssh remote is automatically added via XMPP
-
-3) add files to annex on linux, they get uploaded to the ssh remote
-
-4) wait forever for any files from linux to download to phone
-
-5) add files to annex on phone, they get uploaded to the ssh remote
-
-4) wait forever for any files from phone to download to linux
-
-### What version of git-annex are you using? On what operating system?
-Ubunut Linux 12.04 with git-annex version:
-
-* 5.20140127.1 (from PPA)
-
-Android 4.2 (rooted) tried with git-annex versions:
-
-* 5.20140209 (from http://downloads.kitenet.net/git-annex/android/current/4.0/)
-
-* 5.20140211-g556cfeb (from autobuilds)
-
-### Please provide any additional information below.
-full logs:
-
-(these do not show the uploads to the ssh remote, because I restarted to get clean and short logs, but the files are on the server and can be dropped and restored on the linux side manually)
-
-* linux: <http://pastebin.ca/2639948>
-
-* android: <http://pastebin.ca/2639952>
-
-most interesting parts:
-[[!format sh """
-#
-# linux:
-#
-
-[2014-02-13 13:11:27 CET] XMPPClient: Pairing with dorian in progress
-[2014-02-13 13:11:28 CET] XMPPSendPack: Syncing with dorian
-To xmpp::dorian@jabber.me
- * [new branch] git-annex -> refs/synced/4ce7576f-6f02-4657-bab5-2f4c4a564ee7/ZG9yaWFuQGphYmJlci5tZQ==/git-annex
- * [new branch] annex/direct/master -> refs/synced/4ce7576f-6f02-4657-bab5-2f4c4a564ee7/ZG9yaWFuQGphYmJlci5tZQ==/annex/direct/master
-[2014-02-13 13:11:29 CET] XMPPSendPack: Syncing with dorian
-Everything up-to-date
-[2014-02-13 13:12:21 CET] XMPPSendPack: Syncing with dorian
-Everything up-to-date
-[2014-02-13 13:12:21 CET] XMPPSendPack: Syncing with dorian
-fatal: Could not read from remote repository.
-
-Please make sure you have the correct access rights
-and the repository exists.
-
-#
-# android:
-#
-[2014-02-13 13:16:25 CET] XMPPClient: sending: Pushing "d29" (ReceivePackOutput 2 "<elided>")
-[2014-02-13 13:16:25 CET] XMPPClient: to client: d6/tigase-14134
-[2014-02-13 13:18:22 CET] XMPPClient: received: ["Unknown message"]
-[2014-02-13 13:18:25 CET] XMPPReceivePack: timeout waiting for git send-pack output via XMPP
-fatal: The remote end hung up unexpectedly
-[2014-02-13 13:18:25 CET] XMPPReceivePack: finished running push Pushing "d29" (StartingPush (UUID "4ce7576f-6f02-4657-bab5-2f4c4a564ee7")) True
-[2014-02-13 13:18:25 CET] XMPPClient: sending: Pushing "d29" (ReceivePackDone (ExitFailure 128))
-[2014-02-13 13:18:25 CET] XMPPClient: to client: d6/tigase-14134
-
-"""]]
-
-> [[done]]; xmpp support has been removed --[[Joey]]