[PR #103] [CLOSED] WebDAV backend (WIP) #1466

Closed
opened 2026-02-25 22:40:19 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/floccusaddon/floccus/pull/103
Author: @jlbprof
Created: 5/14/2018
Status: Closed

Base: masterHead: julian_002


📝 Commits (10+)

📊 Changes

15 files changed (+365 additions, -79 deletions)

View changed files

📝 CHANGELOG.md (+14 -0)
📝 ISSUE_TEMPLATE.md (+6 -5)
📝 manifest.json (+2 -1)
📝 package.json (+1 -1)
📝 src/entries/options.js (+12 -2)
📝 src/lib/Account.js (+35 -7)
📝 src/lib/Adapter.js (+4 -0)
📝 src/lib/Bookmark.js (+4 -0)
📝 src/lib/Controller.js (+13 -22)
src/lib/InputInitializeHook.js (+9 -0)
📝 src/lib/Tree.js (+19 -19)
📝 src/lib/adapters/Nextcloud.js (+25 -14)
src/lib/adapters/WebDav.js (+196 -0)
📝 src/test/index.js (+8 -8)
📝 views/options.html (+17 -0)

📄 Description

DO NOT MERGE

commit 8ca80331ed
Author: Julian Brown julian@jlbprof.com
Date: Mon May 14 09:28:08 2018 -0500

updated

commit 9d86efe884
Author: Julian Brown julian@jlbprof.com
Date: Wed May 9 19:46:56 2018 -0500

I have the options working

commit 4452106670
Author: Julian Brown julian@jlbprof.com
Date: Wed May 9 19:06:17 2018 -0500

Added renderOptions per Marcel

commit 32286bc6aa
Author: Julian Brown julian@jlbprof.com
Date: Tue May 8 18:17:33 2018 -0500

Initial commit
Copied Fake.js adapter to WebDav.js adapter.
Started moving stuff around.
Added webdavlib.js - we need to figure out how to satisfy license
agreement, will deal with that later.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/floccusaddon/floccus/pull/103 **Author:** [@jlbprof](https://github.com/jlbprof) **Created:** 5/14/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `julian_002` --- ### 📝 Commits (10+) - [`32286bc`](https://github.com/floccusaddon/floccus/commit/32286bc6aa892df5f48a0a4f2699de6f97cdc16c) Initial commit - [`4452106`](https://github.com/floccusaddon/floccus/commit/4452106670c17bd6bc83e3f43787c0f6cec7dc2c) Added renderOptions per Marcel - [`9d86efe`](https://github.com/floccusaddon/floccus/commit/9d86efe884605525482f9b667fb1c91874a594a1) I have the options working - [`8ca8033`](https://github.com/floccusaddon/floccus/commit/8ca80331edc3a03dbc0f1b23bdacf5efc6e5b980) updated - [`e7e381a`](https://github.com/floccusaddon/floccus/commit/e7e381af0aa6b1cd590e169404a5c69ca539d26b) Implement serverRoot setting - [`1117d01`](https://github.com/floccusaddon/floccus/commit/1117d01f69ac0ef75ac9c5ad7273ed05f9351c7f) UI: update placeholder for serverRoot - [`e73439f`](https://github.com/floccusaddon/floccus/commit/e73439f4d1c7c3256b28eaaef6539211142dc1c3) Speedup fix for firefox - [`484c04d`](https://github.com/floccusaddon/floccus/commit/484c04d81cc12f437e64bd0a5f02bbcdfb920256) Some fixes - [`b806459`](https://github.com/floccusaddon/floccus/commit/b806459e24e496a484f3edea5a244a91c1d87f51) Fix syncing code path synchronization - [`e8c9f62`](https://github.com/floccusaddon/floccus/commit/e8c9f62dab44c7aee1c0921bbe45dba91defaa69) Another firefox performance speedup ### 📊 Changes **15 files changed** (+365 additions, -79 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+14 -0) 📝 `ISSUE_TEMPLATE.md` (+6 -5) 📝 `manifest.json` (+2 -1) 📝 `package.json` (+1 -1) 📝 `src/entries/options.js` (+12 -2) 📝 `src/lib/Account.js` (+35 -7) 📝 `src/lib/Adapter.js` (+4 -0) 📝 `src/lib/Bookmark.js` (+4 -0) 📝 `src/lib/Controller.js` (+13 -22) ➕ `src/lib/InputInitializeHook.js` (+9 -0) 📝 `src/lib/Tree.js` (+19 -19) 📝 `src/lib/adapters/Nextcloud.js` (+25 -14) ➕ `src/lib/adapters/WebDav.js` (+196 -0) 📝 `src/test/index.js` (+8 -8) 📝 `views/options.html` (+17 -0) </details> ### 📄 Description DO NOT MERGE commit 8ca80331edc3a03dbc0f1b23bdacf5efc6e5b980 Author: Julian Brown <julian@jlbprof.com> Date: Mon May 14 09:28:08 2018 -0500 updated commit 9d86efe884605525482f9b667fb1c91874a594a1 Author: Julian Brown <julian@jlbprof.com> Date: Wed May 9 19:46:56 2018 -0500 I have the options working commit 4452106670c17bd6bc83e3f43787c0f6cec7dc2c Author: Julian Brown <julian@jlbprof.com> Date: Wed May 9 19:06:17 2018 -0500 Added renderOptions per Marcel commit 32286bc6aa892df5f48a0a4f2699de6f97cdc16c Author: Julian Brown <julian@jlbprof.com> Date: Tue May 8 18:17:33 2018 -0500 Initial commit Copied Fake.js adapter to WebDav.js adapter. Started moving stuff around. Added webdavlib.js - we need to figure out how to satisfy license agreement, will deal with that later. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 22:40:19 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/floccus#1466
No description provided.