This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python2.7 | |
from git import Repo | |
import tempfile | |
import shutil | |
import sys | |
import os | |
import shelve | |
import errno | |
from os.path import join as joinpath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
FUSE: Filesystem in Userspace | |
Copyright (C) 2001-2007 Miklos Szeredi <[email protected]> | |
Copyright (C) 2011 Sebastian Pipping <[email protected]> | |
This program can be distributed under the terms of the GNU GPL. | |
See the file COPYING. | |
gcc -Wall fusexmp_fh.c `pkg-config fuse --cflags --libs` -lulockmgr -o fusexmp_fh | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Created on 30.08.2011 | |
@author: joe | |
''' | |
import setuptools | |
setuptools.setup( | |
name = "CloudFusion", | |
packages = setuptools.find_packages(), | |
include_package_data = True, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Installations-Script für NubiSave auf Debian bzw. Derivaten (inkl. Ubuntu) | |
# | |
# DEPRECATED - use Debian package if possible! | |
if [ ! -x /usr/bin/sudo ]; then | |
echo "Fehler: sudo muss manuell installiert und konfiguriert werden." >&2 | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 65b88450fbdab6d83365ab06163d1f57f2b95209 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Johannes=20M=C3=BCller?= <[email protected]> | |
Date: Thu, 21 Nov 2013 15:58:25 +0100 | |
Subject: [PATCH] Add Feature Issue #10, make syncfolders available in root | |
directory Add method get_syncfolders to class | |
SugarsyncClient, to retrieve a dictionary with available | |
directories as keys and the id used to address them in the | |
sugarsync api as value Modify methods | |
get_directory_listing, __init__, _translate_path, and | |
get_metadata of class SugarsyncStore, to represent the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/cloudfusion/cloudfusion/pyfusebox/configurable_pyfusebox.py b/cloudfusion/cloudfusion/pyfusebox/configurable_pyfusebox.py | |
index 98b2004..df6f0bc 100644 | |
--- a/cloudfusion/cloudfusion/pyfusebox/configurable_pyfusebox.py | |
+++ b/cloudfusion/cloudfusion/pyfusebox/configurable_pyfusebox.py | |
@@ -13,6 +13,7 @@ from cloudfusion.store.dropbox.dropbox_store import DropboxStore | |
from cloudfusion.store.sugarsync.sugarsync_store import SugarsyncStore | |
from cloudfusion.store.caching_store import CachingStore | |
from cloudfusion.store.metadata_caching_store import MetadataCachingStore | |
+import random | |