Re: [Discussion] documentation framework for OFBiz

2018-03-12 Thread Michael Brohl
Hi Taher, I worked on the documentation over the weekend. It would be very nice if the documentation gets updated even if the main document has not changed. If you change only included documents, the change does not go into the main document. I briefly searched for a configuration parameter

Re: [Discussion] documentation framework for OFBiz

2018-03-12 Thread Taher Alkhateeb
Maybe one way to accomplish this is to delete and regenerate every time. What do you think of that? On Mon, Mar 12, 2018 at 12:04 PM, Michael Brohl wrote: > Hi Taher, > > I worked on the documentation over the weekend. > > It would be very nice if the documentation gets updated even if the main >

Re: [Discussion] documentation framework for OFBiz

2018-03-12 Thread Sharan Foga
Hi Taher Manually deleting and regenerating is what I've been doing :-) so it could be a start. We are evolving - right? We might need to look at it again if it becomes an issue as we fill up the content.. Thanks Sharan On 2018/03/12 15:38:44, Taher Alkhateeb wrote: > Maybe one way to ac

Re: [Discussion] documentation framework for OFBiz

2018-03-12 Thread Michael Brohl
If the asciidoctor plugin provides no smarter way, I think this would be ok. The documentation generation process is fast (at least with the few pages we have) so this should be no problem. Thanks, Michael Am 12.03.18 um 16:38 schrieb Taher Alkhateeb: Maybe one way to accomplish this is to

Listing All Menu Items

2018-03-12 Thread Craig Parker
I'm running a clean slate install on MySQL, and trying to locate the main OFBiz menu. Looks like there's a db named ofbiztenant with a table called COMPONENT, and that appears to have at least the top level menu items. Where are the others? Nothing official, but I'm trying to make a spreadshee

[DOC] Welcome - Documentation Team

2018-03-12 Thread Sharan Foga
Hi All I’d like to welcome our documentation team members to our dev mailing list. You will find that the discussions here are more about the ongoing work to improve OFBiz and our documentation effort is part of that. So to start off, I have updated the details in the Documentation Team wiki

support for schema , ofbiz database , ofbiz olap database specification in tenant_data_source

2018-03-12 Thread Rajesh Mallah
Hi , I felt the need for using a specific schema of an existing databases for holding tenant data. I eventually achieved the objective by updating the jdb_uri column of the tenant_data_source Currently the command for creating new Tenant is : ./gradlew createTenant -PtenantId=tenant001 -Ptenant

Re: Listing All Menu Items

2018-03-12 Thread Deepak Dixit
Hi Craig, Please have a look at LoginWorker.getAppBarWebInfos and ComponentConfig. getAppBarWebInfos method. For reference you can have a look at themes/flatgrey/template/AppBar.ftl Thanks & Regards -- Deepak Dixit www.hotwaxsystems.com www.hotwax.co On Mon, Mar 12, 2018 at 9:56 PM, Craig Parker

[DOC] Assigning Yourself A Jira Issue to Work On

2018-03-12 Thread Sharan Foga
Hi All The first step in the documentation process is looking at the list of open documentation issues / sub tasks and choosing one to work on. Once you have decided to work on an issue, please assign it to yourself. You can do this by 1. Log into our OFBiz Jira issue tracker 2. Locate the Jira

Re: Listing All Menu Items

2018-03-12 Thread Craig Parker
I'm not a dev, so a lot of what you had me read wasn't clear. I am familiar with MySQL though. These menu "sub items" aren't listed in the db anywhere? I'm looking manually now in my servers information_schema db, but if you know how to save me looking through a gazillion column names, I'm all

[DOC] Human Resource Glossary Jira Task

2018-03-12 Thread Sharan Foga
Hi All If someone wants an initial documentation task to pick up then https://issues.apache.org/jira/browse/OFBIZ-10258 could be a good start because a Human Resource glossary already exists here: https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary So the work will

Re: support for schema , ofbiz database , ofbiz olap database specification in tenant_data_source

2018-03-12 Thread Paul Foxworthy
Hi Rajesh, Schemas are not available in all databases. In MySQL/MariaDB, schemas and databases are the same thing, or if you like, a database has exactly one schema. So any work to take advantage of schemas in other DBMSes should not break in those that don't support them. Even if you did use sch

Re: support for schema , ofbiz database , ofbiz olap database specification in tenant_data_source

2018-03-12 Thread Rajesh Mallah
Hi Paul , Thanks for the reply. I was not suggesting to use schemas in general for for accommodating tenants. Each tenant can reside in its own dedicated DB. When we use OFBiz as a part of some application that has other relational data as well, then schema partitioning comes handy. Eg, The O

Re: Listing All Menu Items

2018-03-12 Thread Paul Foxworthy
Hi Craig, The major menu items correspond to major entities in the data model (Party, Product, Facility and so on). But many of the menu items are verbs and the entities are nouns. To explore the data model: Read the Data Model Resource Books, especially volume 1. https://cwiki.apache.org/conflu

Re: Listing All Menu Items

2018-03-12 Thread Rajesh Mallah
Hi Deepak , I guess you suggested the below: <#assign displayApps = Static["org.apache.ofbiz.webapp.control.LoginWorker"].*getAppBarWebInfos*(security, userLogin, ofbizServerName, "*main*")> <#assign displaySecondaryApps = Static["org.apache.ofbiz.webapp.control.LoginWorker"].*getAppBarWebInfos*(

Re: support for schema , ofbiz database , ofbiz olap database specification in tenant_data_source

2018-03-12 Thread Paul Foxworthy
On 13 March 2018 at 13:12, Rajesh Mallah wrote: > I was not suggesting to use schemas in general for for accommodating > tenants. > Each tenant can reside in its own dedicated DB. > > When we use OFBiz as a part of some application that has other relational > data as well, then schema partition

Re: support for schema , ofbiz database , ofbiz olap database specification in tenant_data_source

2018-03-12 Thread Rajesh Mallah
Hi Paul , Thanks for attention and considering the proposal of having feature for database name specification for tenantCreation. Yes I use XML-RPC thoroughly as i mostly use OFBiz as a framework for generic data models rather than the OOTB. In such a development model I feel joining tables and g

Re: support for schema , ofbiz database , ofbiz olap database specification in tenant_data_source

2018-03-12 Thread Shi Jinghai
Cannot agree more. And distributed DB such as CockroachDB can be used to get PB level storage. -邮件原件- 发件人: Rajesh Mallah [mailto:mallah.raj...@gmail.com] 发送时间: 2018年3月13日 11:33 收件人: dev@ofbiz.apache.org 主题: Re: support for schema , ofbiz database , ofbiz olap database specification in

Re: Listing All Menu Items

2018-03-12 Thread Deepak Dixit
Hi Craig, Main menu item rendered through webapp not from component. A component can have multiple webapp. Ex. https://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/trunk/applications/accounting/ofbiz-component.xml All webapp will be display by defuaut as menu item, if app-bar-display is set f