Page 1 of 1
Download multiple folders
PostPosted:Thu Jul 30, 2015 3:08 am
by chatteridiot
Hi, Im using OpenKM Version: 6.3.0 (build: 8156)
I understand to download a folder, i need to use export to zip menu.
But i cannot find how to download multiple folders. Is this function available in 6.3.0 version?
Regards.
Re: Download multiple folders
PostPosted:Sun Aug 02, 2015 8:23 am
by jllort
No this feature is not implemented, but could be done, it you're interested on doing it we can guide you with source code.
Re: Download multiple folders
PostPosted:Fri Aug 07, 2015 12:36 pm
by chatteridiot
If you dont mind to guide me please.. but i cant promise to finish it fast.
Re: Download multiple folders
PostPosted:Sat Aug 08, 2015 7:54 am
by jllort
ToolBar.java should modify the method enableMassiveView() to enable toolBarOption.downloadOption also when folders are selected, not only when documents are selected.
Follow the logic into method executeDownload() at Toolbar.java to send also selected foldersUuid.
Should go to com.openkm.servlet.frontend.DownloadServlet and follow what happens when uuidList is not empty ( case of multiple downloads ). And here study the method exportDocumentsAsZip, and exportFolderAsZip -> to make a new method exportDocumentsAndFoldersAsZip
To check if uuid or path is a folder or document node you have the method is valid(null, String) OKMDocument.getInstance().isValid(null, docPath ) the same with OKMFolder.getInstance().isValid(null, fldPath)
Re: Download multiple folders
PostPosted:Mon Aug 10, 2015 5:05 am
by chatteridiot
Ok got it.
For the source code .. your repository is
http://sourceforge.net/p/openkm/code/HEAD/tree/ right ?
should i get it from trunk or branches ? If its branches .. which branch ?
What is username/passw to checkout & commit ?
Re: Download multiple folders
PostPosted:Wed Aug 12, 2015 7:33 am
by jllort
This is the branch
https://sourceforge.net/p/openkm/code/H ... .3/openkm/
You can download as anonymous user.
About checkin you should provide to us the patches and we will review, before introducing changes.
Re: Download multiple folders
PostPosted:Tue Sep 01, 2015 9:00 pm
by KittyCathy
Thank you for your all respondes. I'm looking for it soo long.