Copy of Nextcloud richdocuments app, but with modifications so all traffic goes over clearnet/CJDNS/Tor/I2P/whatever instead of having a single default hostname.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Victor Dubiniuk 447610b260 Fix appid 8 years ago
appinfo Fix appid 8 years ago
assets Move the expected FFS response to the assets 10 years ago
controller Fix appid 8 years ago
css cloudsuite: Add buttons to create new spreadsheet and new presentation. 9 years ago
img adjust app icon to fit new filetype icons 9 years ago
js Fix appid 8 years ago
l10n [tx-robot] updated from transifex 9 years ago
lib Fix appid 8 years ago
src cloudsuite: With the iframe approach, we don't need to embed anything. 9 years ago
templates Fix appid 8 years ago
tests Fix appid 8 years ago
.gitignore cloudsuite: Add updateCloudSuite.sh script, similar to updateWebODF.sh. 9 years ago
.scrutinizer.yml adding scrutinizer.yml 9 years ago
.travis.yml Add PHP 7 to test matrix 9 years ago
CONTRIBUTING.md Add CONTRIBUTING.md 9 years ago
Makefile bump version to 1.0.4 9 years ago
README.md cloudsuite: Add updateCloudSuite.sh script, similar to updateWebODF.sh. 9 years ago
admin.php Fix appid 8 years ago
owncloud-ccs.spec.in RPM packaging for our ownCloud app 9 years ago
personal.php Fix appid 8 years ago
public.php Fix appid 8 years ago
settings.php Fix appid 8 years ago

README.md

documents

Documents app for ownCloud

An ownCloud app to work with office documents alone and/or collaboratively.

Build Status

Known issues

Problem: Editor doesn't open. Spinner spins for ages.
Solution: Try to disable gzip for Documents app by adding the following line to your .htaccess:
SetEnvIf Request_URI .*/apps/documents/ajax/.* no-gzip dont-vary

Problem: Doc(x) support doesn't work
Solution: Install at least libreoffice-common and libreoffice-writer packages for your distro.
If you don't want to mess around with dependencies, you need simply install unoconv package. It will do the trick for you.

How to add more fonts

  • Upload font files to documents/css/fonts directory
  • Edit documents/css/fonts.css adding @font-face rule for each uploaded file

CloudSuite upgrade

Similar to WebODF upgrade below, but easier:

    ./src/updateWebODF.sh prepare
    ./src/updateWebODF.sh copy

WebODF upgrade

  1. Build WebODF:

     ./src/updateWebODF.sh prepare
    

or

    git clone https://github.com/kogmbh/WebODF.git webodf
    mkdir build
    cd build
    cmake ../webodf
    make all webodf-debug.js-target build-wodocollabtexteditor
  1. Refresh code and create a new branch:

     cd /path/to/documents
     git checkout master
     git pull --rebase
     git checkout -b new-branch
    
  2. Run upgrade script:

     ./src/updateWebODF.sh copy
     ./src/updateWebODF.sh patch
    
  3. Resolve confilcts in patches (if any). Commit changes.

  4. Update patches in /path/to/documents/src/patches according to conflicts. Commit changes.

  5. Test UI. Fix glitches by updating CSS. Commit changes.

  6. Run locale extraction script:

     ./src/updateWebODF.sh
    
  7. Commit changes

  8. Push the branch for testing

  9. You are done.