Page 1 of 1

source code for openkm 6.3.0 required

PostPosted:Mon Jan 18, 2021 9:12 am
by jagritip
i am not able to find source code for openkm6.3.0 in any of openkm sites. please share link . source code above 6.3.3 is available but not 6.3.0

Re: source code for openkm 6.3.0 required

PostPosted:Wed Jan 20, 2021 7:26 pm
by jllort
For these versions take a look here https://sourceforge.net/p/openkm/code/HEAD/tree/ ( we moved 1-2 years ago to github )

Re: source code for openkm 6.3.0 required

PostPosted:Tue Feb 09, 2021 8:29 am
by jagritip
even in the git hub code for openkm 6.3.0 is not present.

git hub has code from openkm6.3.3 onward.

please provide source code for openkm6.3.0 as i cant change openkm version installed on server machine.

Re: source code for openkm 6.3.0 required

PostPosted:Thu Feb 11, 2021 8:05 am
by jllort
1- Shortcuts definition are set in ExtendedDockPanel class , take a look at https://github.com/openkm/document-mana ... .java#L232

2- In ToolBar class there're the object resizeToolBarMenu, take a look at https://github.com/openkm/document-mana ... r.java#L84

3- In the you'll find the methods what must call:
* https://github.com/openkm/document-mana ... u.java#L93
* https://github.com/openkm/document-mana ... .java#L107
* https://github.com/openkm/document-mana ... .java#L121
* https://github.com/openkm/document-mana ... .java#L136

For consistent variable status, because variable
Code: Select all
private int actualView = NORMAL
https://github.com/openkm/document-mana ... u.java#L52

Maybe will be better do the ResizeToolBarMenu class public and call like
Code: Select all
Main.get().mainPanel.topPanel.toolBar.resizeToolBarMenu etc...
either
Code: Select all
Main.get().mainPanel.desktop.browser.expandFileBrowserView();
because the variable actualView must be updated:
Code: Select all
actualView = CLOSE_PROPERTIES; // Take as a sample, variable should have coherent value based in the method executed to close or expand screens sections
Hope you will be able to follow the explanation.