[PR #3693] [MERGED] Feature/drupalwiki collector #4364

Closed
opened 2026-02-22 18:35:41 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3693
Author: @timothycarambat
Created: 4/21/2025
Status: Merged
Merged: 4/21/2025
Merged by: @timothycarambat

Base: masterHead: feature/drupalwiki-collector


📝 Commits (6)

  • 8d76a7f Implement DrupalWiki collector
  • ee867b8 Add attachment downloading and processing functionality (#3)
  • e9be2a9 Merge branch 'master' into feature/drupalwiki-collector
  • 2beede3 Merge branch 'master' into feature/drupalwiki-collector
  • 4493bfb linting
  • 95ac5e8 Linting

📊 Changes

15 files changed (+782 additions, -12 deletions)

View changed files

📝 collector/extensions/index.js (+26 -0)
📝 collector/extensions/resync/index.js (+46 -7)
collector/utils/extensions/DrupalWiki/DrupalWiki/index.js (+320 -0)
collector/utils/extensions/DrupalWiki/index.js (+102 -0)
📝 collector/utils/http/index.js (+17 -0)
frontend/src/components/DataConnectorOption/media/drupalwiki.jpg (+0 -0)
📝 frontend/src/components/DataConnectorOption/media/index.js (+2 -0)
frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/DrupalWiki/index.jsx (+190 -0)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx (+7 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx (+17 -2)
frontend/src/media/dataConnectors/drupalwiki.png (+0 -0)
📝 frontend/src/models/dataConnector.js (+23 -0)
📝 server/endpoints/extensions/index.js (+21 -0)
📝 server/jobs/sync-watched-documents.js (+2 -2)
📝 server/models/documentSyncQueue.js (+9 -1)

📄 Description

Original PR by @EugenMayer - moved due to branch permission blocking

Pull Request Type

What is in this change?

As dicussed recently, we would like the contribute the new Drupal Wiki content collector.

Additional Information

Drupal Wiki content collector for Drupal Wiki on-prem and cloud instances.

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/Mintplex-Labs/anything-llm/pull/3693 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 4/21/2025 **Status:** ✅ Merged **Merged:** 4/21/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `feature/drupalwiki-collector` --- ### 📝 Commits (6) - [`8d76a7f`](https://github.com/Mintplex-Labs/anything-llm/commit/8d76a7fe8dc4c1374b5953bb551dbc71826a3097) Implement DrupalWiki collector - [`ee867b8`](https://github.com/Mintplex-Labs/anything-llm/commit/ee867b8c971cb8a0dbb449b9a6d0f8a0e8db9cd1) Add attachment downloading and processing functionality (#3) - [`e9be2a9`](https://github.com/Mintplex-Labs/anything-llm/commit/e9be2a9c1ceb304c10e37f3e42d8fe365afef53a) Merge branch 'master' into feature/drupalwiki-collector - [`2beede3`](https://github.com/Mintplex-Labs/anything-llm/commit/2beede374ced03ae454a1a36c22113472d88bf96) Merge branch 'master' into feature/drupalwiki-collector - [`4493bfb`](https://github.com/Mintplex-Labs/anything-llm/commit/4493bfb1afb0646dfd6d1160f955e58a94b35137) linting - [`95ac5e8`](https://github.com/Mintplex-Labs/anything-llm/commit/95ac5e8fd493e405a59dbfd13a569bbd7ec33523) Linting ### 📊 Changes **15 files changed** (+782 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `collector/extensions/index.js` (+26 -0) 📝 `collector/extensions/resync/index.js` (+46 -7) ➕ `collector/utils/extensions/DrupalWiki/DrupalWiki/index.js` (+320 -0) ➕ `collector/utils/extensions/DrupalWiki/index.js` (+102 -0) 📝 `collector/utils/http/index.js` (+17 -0) ➕ `frontend/src/components/DataConnectorOption/media/drupalwiki.jpg` (+0 -0) 📝 `frontend/src/components/DataConnectorOption/media/index.js` (+2 -0) ➕ `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/DrupalWiki/index.jsx` (+190 -0) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx` (+7 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx` (+17 -2) ➕ `frontend/src/media/dataConnectors/drupalwiki.png` (+0 -0) 📝 `frontend/src/models/dataConnector.js` (+23 -0) 📝 `server/endpoints/extensions/index.js` (+21 -0) 📝 `server/jobs/sync-watched-documents.js` (+2 -2) 📝 `server/models/documentSyncQueue.js` (+9 -1) </details> ### 📄 Description Original PR by @EugenMayer - moved due to branch permission blocking ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - closes #2770 ### What is in this change? As dicussed recently, we would like the contribute the new [Drupal Wiki](https://drupal-wiki) content collector. ### Additional Information [Drupal Wiki](https://drupal-wiki) content collector for Drupal Wiki on-prem and cloud instances. ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:41 -05:00
yindo closed this issue 2026-02-22 18:35:41 -05:00
yindo changed title from [PR #3693] Feature/drupalwiki collector to [PR #3693] [MERGED] Feature/drupalwiki collector 2026-06-05 15:18:11 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4364