From denys.potapov at gmail.com Tue Apr 1 04:27:43 2008 From: denys.potapov at gmail.com (=?KOI8-R?B?5MXOydMg8M/UwdDP1w==?=) Date: Tue, 1 Apr 2008 14:27:43 +0300 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> Message-ID: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Hi Prasad, I'm working with Russian language pack and met some problems. Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix them using Vtiger track, but i ask you to include the phputf8 library ( http://phputf8.sourceforge.net/ ) into the vtiger core (vtigerCRM\include\phputf8). It work's fine on many projects (for example Joomla!), and it doing well with VTiger. The other thing that by default the GraphUtils.php uses Vera font: line 27: DEFINE("FF_FONT1",'Vera'); but it has no Cyrillic support. Probably it's better to change it to Arial. Will it be right if I add this issue on track. The last thing I think deals with any localisation. In Smarty Template 'Smarty/templates/ListViewEntries.tpl': line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! In both cases the plural form is added in template, that is absolutely unsuitable for localisation. For now we solve it by adding all this core (and template) files to language pack that is totally incorrect. What can be the solution? Best regards, Denys Potapov 2008/3/26, Prasad : > > Hi Denys, > > To use mb_strlen and mb_substr you need to enable mb_string php extension. > > Also check out this library: http://phputf8.sourceforge.net/ which has > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > If you work with this, kindly let us know your observations in more > details. > > Good luck. > > Regards, > Prasad > > > On 3/25/08, ????? ??????? wrote: > > > > Hi all! > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > use > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > Best regards, > > Denys Potapov > > > > _______________________________________________ > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/12fb3d82/attachment.htm From prasad at vtiger.com Tue Apr 1 05:04:45 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 1 Apr 2008 17:34:45 +0530 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Message-ID: <39d18b250804010504q59be1e00l9017d0a17ba6149e@mail.gmail.com> Hi Denys, Thank you for keep us updated on your work. You can update the comments on the trac ticket: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5245 with your findings. Also please create new tickets for other issues you have mentioned and suggest the fix also, this could be helpful for us and community. Regards, Prasad vtiger Team On 4/1/08, ????? ??????? wrote: > > Hi Prasad, > > > > I'm working with Russian language pack and met some problems. > > Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix > them using Vtiger track, but i ask you to include the phputf8 library ( > http://phputf8.sourceforge.net/ ) into the vtiger core > (vtigerCRM\include\phputf8). It work's fine on many projects (for example > Joomla!), and it doing well with VTiger. > > The other thing that by default the GraphUtils.php uses Vera font: > line 27: DEFINE("FF_FONT1",'Vera'); > but it has no Cyrillic support. Probably it's better to change it to > Arial. Will it be right if I add this issue on track. > > The last thing I think deals with any localisation. In Smarty Template > 'Smarty/templates/ListViewEntries.tpl': > line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! > line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} > ! > In both cases the plural form is added in template, that is absolutely > unsuitable for localisation. > > For now we solve it by adding all this core (and template) files to > language pack that is totally incorrect. What can be the solution? > > > > > Best regards, > Denys Potapov > > > > > > > > > > > 2008/3/26, Prasad : > > > > Hi Denys, > > > > To use mb_strlen and mb_substr you need to enable mb_string php > > extension. > > > > Also check out this library: http://phputf8.sourceforge.net/ which has > > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > > > If you work with this, kindly let us know your observations in more > > details. > > > > Good luck. > > > > Regards, > > Prasad > > > > > > On 3/25/08, ????? ??????? wrote: > > > > > > Hi all! > > > > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > > use > > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > > > > > > > > Best regards, > > > Denys Potapov > > > > > > _______________________________________________ > > > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/2584e57e/attachment-0001.htm From stephen at cass-ltd.co.uk Tue Apr 1 05:38:47 2008 From: stephen at cass-ltd.co.uk (stephen@cass-ltd.co.uk) Date: Tue, 1 Apr 2008 13:38:47 +0100 Subject: [Vtigercrm-developers] PostgreSQL support Message-ID: <2b2cf48288ead57e23c7254ea0d5f05a@localhost> Hello all, I saw a thread in December about PostgreSQL support for VTiger. Jens Hamisch had done a fair amount of work to achieving this goal and I am wondering on the current status. Regards, Stephen. From ckwu at ck-erp.net Thu Apr 3 22:46:54 2008 From: ckwu at ck-erp.net (C K Wu) Date: Fri, 04 Apr 2008 13:46:54 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.27.1 released (with vTiger 5.0.4 connector) Message-ID: <47F5C0CE.2000200@ck-erp.net> Hi, folks, I have posted a new release, v.0.27.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, connector for AssetMan connector for Coppermine connector for Gallery2 connector for phpMyTicket enhanced navigation bar CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 22 modules - Administration, i18n, Contact Management, Customer Relationship, Customer Self Service, Vendor Relationship, Ledger, Bank Reconciliation, MRP, Warehouse, Inventory, Service, AP, AR, PO, SO, Quotation, POS for Cashier, POS for Manager, HR, Staff Self Service and Payroll. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Please report error and suggestion to the discussion group / mailing list, CK-ERP-en(at)googlegroups.com or CK-ERP-zh_CN(at)googlegroups.com . General history and expected development is available at the discussion group's Archive. Supported MiddleWares: AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; MyHandyRestaurant; PHPJB; FreightFleetManagementSystem; OpenX, LandShop, FreeRealty; IRM; LegalCase; MirrorMed, ClearHealth, OpenEMR; eGroupWare, Horde-GroupWare; Zencart, CRELoaded, osCMax, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger, XRMS; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net http://ck-erp.info Download is available from, http://sourceforge.net/projects/ck-erp http://gforge.oss.org.cn/projects/ck-erp http://gforge.lupaworld.com/projects/ck-erp http://gro.clinux.org/projects/ck-ledger Cheers, Wu Chiu Kay, aka CK Wu, aka CK (CK is the preferred alias) Hong Kong From nolan at peaceworks.ca Mon Apr 7 22:04:24 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 01:04:24 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <12613936.161207630770748.JavaMail.root@zimbra> Message-ID: <29762786.181207631064709.JavaMail.root@zimbra> Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. From brian at pr2k.com Mon Apr 7 22:35:16 2008 From: brian at pr2k.com (Brian Laughlin) Date: Mon, 7 Apr 2008 22:35:16 -0700 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: Wow, that is a great list. -----Original Message----- From: Nolan Andres [mailto:nolan at peaceworks.ca] Sent: Monday, April 07, 2008 10:04 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] List of potential contributions - feedback requested Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com From ddfire at gmail.com Tue Apr 8 05:07:58 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 09:07:58 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: all the items are VERY interesting. your list is a new version. vtiger 5.0.5 code name paceworks :-) thanks. David 2008/4/8 Nolan Andres : > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/fd8fa686/attachment-0001.htm From prasad at vtiger.com Tue Apr 8 05:19:26 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:49:26 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080519n51d8eedel67f29fa691692b3d@mail.gmail.com> Hi Nolan Andres, Really a good piece of work. I would like to thank you and your client(s) for deciding to contribute back. If you can share code with us with more details that will make it easy to analyze it further. Regards, Prasad vtiger Team On 4/8/08, Nolan Andres wrote: > > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/1130ff0f/attachment.htm From prasad at vtiger.com Tue Apr 8 05:20:03 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:50:03 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Hi David, Interesting code name :) Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > all the items are VERY interesting. > your list is a new version. > vtiger 5.0.5 code name paceworks :-) > > thanks. > David > > 2008/4/8 Nolan Andres : > > > Hey, everyone... > > > > I've been lurking on this list for quite a while (could be 2 years!) For > > over 2 years, now, my company has been doing customization work on vTiger, > > most of it on a highly customized installation that is still running v4.2. > > > > The customizations are so extensive, and the transition from 4.2 to 5.0 > > was so rocky that the client has never been willing to make the move. They > > still aren't. > > > > However, we just got permission from them to contribute any useful > > modifications and modules to the project. Hooray! My company is willing to > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > for these components, but I wanted to post a short annotated list to find > > out whether any of these pieces might be of interest to the community, and > > if so, how they might be prioritized. > > > > Here's the list. Please let me know what you think. Any of these sound > > interesting? > > > > -------- > > 1. Auto-Email Standardization > > > > Our client found the vTiger email notification stuff disconcerting. > > Reasons for emails going out were not clearly enumerated or codified, and > > control over these emails was limited at best. We wrote a framework that > > provides a series of Auto-Email categories: > > * entity-created: sends when an entity of the chosen type is created > > * entity-altered: sends when an entity of the chosen type is altered > > * entity-deleted: sends when an entity of the chosen type is deleted > > * value-triggered: sends when a set of value conditions on an entity of > > the chosen type is met (can be scheduled, or reactive--on save) > > * scheduled custom: executes a custom function on schedule > > * scheduled report: emails a report on schedule > > > > A wide variety of options exist for sending the email notifications: > > * send to arbitrary email address(es) > > * send to user(s) > > * send to contact(s) > > * send to assigned user > > * send to team > > * do not send to triggering user > > * can send attachments > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > > > Subject and body are template-driven, allowing parameters from > > triggering entities of the chosen type. > > > > ------------------------------- > > > > 2. Google Earth Report Integration > > > > Provides a configuration tool (part of the report specification) that > > allows report attributes to be output within the context of a real-time KML > > feed as parts of a placemark. As an example, you can visualize the results > > of a report...say a report on your Accounts...in Google Earth...see the > > geographic distribution of your Accounts. > > > > ------------------------------- > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > Implements per-entity-type file repositories that can have internal > > folder hierarchies and maintain per-entity folders (no more clobbering files > > of the same name that were uploaded/attached to a different entity). > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > permissions on files and folders (optional). > > > > -------------------------------- > > > > 4. Timesheets > > > > I know TSolucio has one of these. We tried it out and it didn't match > > the needs we had very well. I suspect we'll just provide this one as an > > alternative to the TSolucio one from our website, just in case someone > > else's needs are more closely aligned with the ones our client had. > > > > --------------------------------- > > > > 5. Report Folder Permissions / Personal Report Folders > > > > We added Reports to the profile management functionality, and added a > > personal "My Reports" folder for each user. You can hide report folders from > > some users, allow certain users to create new reports or manage certain > > folders, etc. Each user has their own My Reports folder where they can > > create reports of their own. When users have access to view a Report (but > > not edit it) and they want to customize it, they can clone it to their My > > Reports folder and modify it there. > > > > ----------------------------------- > > > > 6. Custom Field Improvements > > > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > > management functionality that allows admin users to create more tabs, > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > them. Really useful when you have a lot of custom fields. When multiple tabs > > have not been created, the Custom Fields block looks as it normally does. > > Also allows Custom Fields to be renamed. > > > > ------------------------------------ > > > > > > As I said, we'd love to hear feedback on these. If there's anything that > > the vTiger project can use, we'd be happy to contribute them. We've done a > > lot of work with vTiger, and it's been a huge success both for us and for > > our client. It would be great to have the opportunity to contribute back. > > > > peace, > > Nolan Andres > > PeaceWorks Computer Consulting Inc. > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/80478339/attachment.htm From ddfire at gmail.com Tue Apr 8 06:37:23 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 10:37:23 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Message-ID: hi i am still looking for a complete or at least a almost complete guide to make a news module, i am not a programing guru but i can program a new module if i have a good guide.... any one? of course i will give the new modules to the community thanks David 2008/4/8 Prasad : > Hi David, > > Interesting code name :) > > Regards, > Prasad > vtiger Team > > > On 4/8/08, David fire wrote: > > > > all the items are VERY interesting. > > your list is a new version. > > vtiger 5.0.5 code name paceworks :-) > > > > thanks. > > David > > > > 2008/4/8 Nolan Andres : > > > > > Hey, everyone... > > > > > > I've been lurking on this list for quite a while (could be 2 years!) > > > For over 2 years, now, my company has been doing customization work on > > > vTiger, most of it on a highly customized installation that is still running > > > v4.2. > > > > > > The customizations are so extensive, and the transition from 4.2 to > > > 5.0 was so rocky that the client has never been willing to make the move. > > > They still aren't. > > > > > > However, we just got permission from them to contribute any useful > > > modifications and modules to the project. Hooray! My company is willing to > > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > > for these components, but I wanted to post a short annotated list to find > > > out whether any of these pieces might be of interest to the community, and > > > if so, how they might be prioritized. > > > > > > Here's the list. Please let me know what you think. Any of these sound > > > interesting? > > > > > > -------- > > > 1. Auto-Email Standardization > > > > > > Our client found the vTiger email notification stuff disconcerting. > > > Reasons for emails going out were not clearly enumerated or codified, and > > > control over these emails was limited at best. We wrote a framework that > > > provides a series of Auto-Email categories: > > > * entity-created: sends when an entity of the chosen type is created > > > * entity-altered: sends when an entity of the chosen type is altered > > > * entity-deleted: sends when an entity of the chosen type is deleted > > > * value-triggered: sends when a set of value conditions on an entity > > > of the chosen type is met (can be scheduled, or reactive--on save) > > > * scheduled custom: executes a custom function on schedule > > > * scheduled report: emails a report on schedule > > > > > > A wide variety of options exist for sending the email notifications: > > > * send to arbitrary email address(es) > > > * send to user(s) > > > * send to contact(s) > > > * send to assigned user > > > * send to team > > > * do not send to triggering user > > > * can send attachments > > > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each > > > minute > > > > > > Subject and body are template-driven, allowing parameters from > > > triggering entities of the chosen type. > > > > > > ------------------------------- > > > > > > 2. Google Earth Report Integration > > > > > > Provides a configuration tool (part of the report specification) that > > > allows report attributes to be output within the context of a real-time KML > > > feed as parts of a placemark. As an example, you can visualize the results > > > of a report...say a report on your Accounts...in Google Earth...see the > > > geographic distribution of your Accounts. > > > > > > ------------------------------- > > > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > > > Implements per-entity-type file repositories that can have internal > > > folder hierarchies and maintain per-entity folders (no more clobbering files > > > of the same name that were uploaded/attached to a different entity). > > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > > permissions on files and folders (optional). > > > > > > -------------------------------- > > > > > > 4. Timesheets > > > > > > I know TSolucio has one of these. We tried it out and it didn't match > > > the needs we had very well. I suspect we'll just provide this one as an > > > alternative to the TSolucio one from our website, just in case someone > > > else's needs are more closely aligned with the ones our client had. > > > > > > --------------------------------- > > > > > > 5. Report Folder Permissions / Personal Report Folders > > > > > > We added Reports to the profile management functionality, and added a > > > personal "My Reports" folder for each user. You can hide report folders from > > > some users, allow certain users to create new reports or manage certain > > > folders, etc. Each user has their own My Reports folder where they can > > > create reports of their own. When users have access to view a Report (but > > > not edit it) and they want to customize it, they can clone it to their My > > > Reports folder and modify it there. > > > > > > ----------------------------------- > > > > > > 6. Custom Field Improvements > > > > > > We put the custom fields inside a tabbed (JS) block. Added Custom > > > Field management functionality that allows admin users to create more tabs, > > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > > them. Really useful when you have a lot of custom fields. When multiple tabs > > > have not been created, the Custom Fields block looks as it normally does. > > > Also allows Custom Fields to be renamed. > > > > > > ------------------------------------ > > > > > > > > > As I said, we'd love to hear feedback on these. If there's anything > > > that the vTiger project can use, we'd be happy to contribute them. We've > > > done a lot of work with vTiger, and it's been a huge success both for us and > > > for our client. It would be great to have the opportunity to contribute > > > back. > > > > > > peace, > > > Nolan Andres > > > PeaceWorks Computer Consulting Inc. > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/2093e151/attachment-0001.htm From ddfire at gmail.com Tue Apr 8 07:01:20 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:01:20 -0300 Subject: [Vtigercrm-developers] a little bug? Message-ID: hi i have added some custom fields and then i edited the sql to change the blocks where the cf are. now i am trying to disable this fields for one profile but nothing happened... i disabled a normal field and it works. what can i do? thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/de651461/attachment.htm From nolan at peaceworks.ca Tue Apr 8 07:15:22 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 10:15:22 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32250839.1271207664065154.JavaMail.root@zimbra> Message-ID: <32428513.1321207664122063.JavaMail.root@zimbra> Hey... Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. Prasad, should I send the code to you, or should I just post it here? peace, Nolan ----- "Prasad" wrote: > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > From ddfire at gmail.com Tue Apr 8 07:21:04 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:21:04 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: hi i think the most important upgrade is the 6. Custom Field Improvements this should go first. David 2008/4/8 Nolan Andres : > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/a1597200/attachment.htm From james at sitek.com.au Tue Apr 8 07:26:59 2008 From: james at sitek.com.au (James Moey) Date: Wed, 09 Apr 2008 00:26:59 +1000 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <47FB80B3.3060003@sitek.com.au> I can help with the porting. I am interested in Custom Field Improvement as well. I have some experience in block and JS. I would be more than happy to port that over to 5.0.4. Regards, James Nolan Andres wrote: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > >> Hi Nolan Andres, >> >> Really a good piece of work. I would like to thank you and your >> client(s) for deciding to contribute back. >> >> If you can share code with us with more details that will make it easy >> to analyze it further. >> >> Regards, >> Prasad >> vtiger Team >> >> >> > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/0ffc52d3/attachment.htm From prasad at vtiger.com Tue Apr 8 07:29:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 19:59:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <39d18b250804080729v7b70c418o77c0b1c09a3365f2@mail.gmail.com> Hi Nolan Andres, Thank you very much for taking more initiative. Kindly share code with me and also put CC to out developer list This way our developers can enhance the interesting feature a bit more. It will definitely take more time for us to analyze the code contribution, so please be patient till then. Hope you don't mind if we get back to you for any clarifications. Regards, Prasad On 4/8/08, Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > > Nolan > > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/c2b721b5/attachment.htm From prasad at vtiger.com Tue Apr 8 07:37:15 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:07:15 +0530 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: References: Message-ID: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Hi David, What changes did you make to change the blocks for the custom field? Can you please check if without change the blocks, the custom field can be disabled for the profile? Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > hi > i have added some custom fields and then i edited the sql to change the > blocks where the cf are. > now i am trying to disable this fields for one profile but nothing > happened... i disabled a normal field and it works. > what can i do? > thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/eec1f14b/attachment-0001.htm From prasad at vtiger.com Tue Apr 8 07:39:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:09:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FB80B3.3060003@sitek.com.au> References: <32428513.1321207664122063.JavaMail.root@zimbra> <47FB80B3.3060003@sitek.com.au> Message-ID: <39d18b250804080739o6e8b2d69q76328f7031339384@mail.gmail.com> Hi James, Thank you for taking up the initiative. I have asked Nolan to copy over the code contribution, please keep watching the thread. Regards, Prasad vtiger Team On 4/8/08, James Moey wrote: > > I can help with the porting. I am interested in Custom Field Improvement > as well. I have some experience in block and JS. I would be more than happy > to port that over to 5.0.4. > > Regards, > James > > Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/8621afb5/attachment.htm From ddfire at gmail.com Tue Apr 8 07:52:30 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:52:30 -0300 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> References: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Message-ID: i only change the field block inthe vtiger_field table i created a new profile and it works perfect. thanks David 2008/4/8 Prasad : > Hi David, > > What changes did you make to change the blocks for the custom field? > > Can you please check if without change the blocks, the custom field can be > disabled for the profile? > > Regards, > Prasad > vtiger Team > > On 4/8/08, David fire wrote: > > > hi > > i have added some custom fields and then i edited the sql to change the > > blocks where the cf are. > > now i am trying to disable this fields for one profile but nothing > > happened... i disabled a normal field and it works. > > what can i do? > > thanks > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/d229f8e4/attachment.htm From joe at tsolucio.com Tue Apr 8 08:33:21 2008 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 08 Apr 2008 17:33:21 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <1207668801.26617.40.camel@joesunix.int> Hi All, I have been contracted by IMED Mobility to create a vtigerCRM email list system. The design we have accorded with Imed, has more or less the same goals as Peaceworks/Sutherland-Schultz number 1 extension. Imed decided to fund the development of the extension and release it as an opensource extension on the forge. I have been given permission to speak in their name and help Peaceworks to port their extension to 5.0.4 and make it available to the community, on the forge and in the base product if vtiger team sees it fit. At the moment I would like to thank Peaceworks and Sutherland-Schultz for there contribution. Nolan, if you are interested in working with TSolucio drop me an email. We will set up a forge project and port your mailing system to 5.0.4 Regards, Joe TSolucio El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From prasad at vtiger.com Tue Apr 8 09:50:00 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:20:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <39d18b250804080950h486d1609tadc37ba99498536@mail.gmail.com> Hi Joe, Thank you for the updates Joe. We have are being informed about several extensions on the mailing part of vtiger CRM. Glad to see your initiative on the item 1. Regards, Prasad vtiger Team On 4/8/08, Joe Bordes wrote: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, we > might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > > Hi Nolan Andres, > > > > > > Really a good piece of work. I would like to thank you and your > > > client(s) for deciding to contribute back. > > > > > > If you can share code with us with more details that will make it easy > > > to analyze it further. > > > > > > Regards, > > > Prasad > > > vtiger Team > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/7353fe0f/attachment.htm From tzenk at gmx.net Tue Apr 8 09:55:08 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 08 Apr 2008 18:55:08 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <47FBA36C.5020301@gmx.net> Hi everybody, besides the fact that all of these modules sound very interesting i think #6 is the most interesting for the majority of vTiger-users, as the custom fields do play a BIG role in setting up different setups of vTiger for different usage. The custom fields feature is a vast Plus within vtiger already, a little more extended makes it even vaster, to leave my few words on this. And as always: If you wizards need an extensive themer /tester / documenter/ translator (native german/ native english) on anything around vTiger count me in. Greetings Torsten Zenk Joe Bordes schrieb: > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > >> Hey... >> >> Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) >> >> It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. >> >> As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. >> >> That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) >> >> If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. >> >> Prasad, should I send the code to you, or should I just post it here? >> >> peace, >> Nolan >> >> >> ----- "Prasad" wrote: >> >> >>> Hi Nolan Andres, >>> >>> Really a good piece of work. I would like to thank you and your >>> client(s) for deciding to contribute back. >>> >>> If you can share code with us with more details that will make it easy >>> to analyze it further. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> >>> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/82607ff9/attachment-0001.htm From prasad at vtiger.com Tue Apr 8 10:11:46 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:41:46 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> <47FBA36C.5020301@gmx.net> Message-ID: <39d18b250804081011j6f173a19u74071920c23dcff4@mail.gmail.com> Hi Torsten, Glad to hear about your involvement :) Regards, Prasad On 4/8/08, Torsten Zenk wrote: > > Hi everybody, > besides the fact that all of these modules sound very interesting i think > #6 is the most interesting for the majority of vTiger-users, as the custom > fields do play a BIG role in setting up different setups of vTiger for > different usage. The custom fields feature is a vast Plus within vtiger > already, a little more extended makes it even vaster, to leave my few words > on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything around > vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/6ff25893/attachment.htm From alanslists at gmail.com Tue Apr 8 13:55:47 2008 From: alanslists at gmail.com (Alan Lord) Date: Tue, 08 Apr 2008 21:55:47 +0100 Subject: [Vtigercrm-developers] Hello and the webform module Message-ID: <47FBDBD3.60602@gmail.com> Sorry in advance - this is quite a long message... ---------- Hello. I'm Alan, and I run an Open Source training, consulting and support services business here in the UK. We have been "playing" with vtiger for some time and now would like to contribute something back. I have recently been looking at the webform module and have some ideas, but I am struggling to get passed first base due to the db abstraction library and some rather obfuscated code... Anyway, first, A brief idea of what I'd like to do with the webform module: 1. Abstract the client side so that there is minimal or no hardcoding of form parameters and eliminate the need for manual duplication of lists of php arrays in 5 or 6 places as is now the case. 2. Migrate the forms to be valid XHTML (no tables) with external stylesheet(s). 3. Option to notify admin or other vtiger user by email that a form has been submitted. 4. Introduce a nice and friendly form builder (probably using something like the dojo toolkit to give a good user experience). With respect to the above I have done some work already. 1. During some initial hacking, the client end of the webform package now has a single array construct which holds the basic form field parameters and labels etc in config.php. This is the only place - on the client side - where changes need to be made to alter your form's basic field layout and structure. However, the interaction to the server is not fixed. The vtiger file soap/webform.php needs manually hacking in several places to match the client side configuration. 2. This is kind of done. 3. Sort of done. It works but the email notification is done at the client end. This depends on the client server having sendmail(). I'd like to move this function back to vtiger. Don't think it should be too hard, but haven't looked into it yet. 4. Not started Completing "1." above is giving me a headache! What I am trying to achieve is something along the following lines: *Start the client end "form building process" *Select the type of form you'd like to make/edit *Upload the schema for the relevant fields from the user's vtiger installation and use that information to create the basic form layout data... It is here's where I am stuck. Is there any decent documentation on the database abstraction library that is being used? I find even simple queries respond with vast amounts of superfluous data. For example a query like: "SHOW TABLES LIKE 'vtiger_".$form."%'" responds with the data but also with a tremendous amount of noise. And with that particular query I can't seem to iterate through the result and filter it because of using a wildcard in the query. Any ideas? My plan is generate an xml schema for the fields that are available for a particular kind of form. This would be used to generate the wsdl on vtiger and be cached in a local (client-side) file and only updated as and when necessary. The benefit being it will display any custom fields or should vtiger's schema change with a new release, no manual updating would be necessary. The client side Form Builder would be able to use this data to build the initial UI and when the user has selected the fields to display etc, the "design" will be saved in an XHTML file for deployment along with a basic stylesheet. **Any help with extracting the data from the db would be most helpful.** I have looked at some of the functions in the MS word module (which gets the "lead" field structure for example, but no schema information) as a starting point but it doesn't go far enough and also has hardcoded wsdl structures. I also have some ideas to develop the webform module further once I get the basics working: Possibly use a Javascript SOAP library, so no client-side "server scripting" language like PHP would be needed at all (fully platform agnostic). Or, enable the form to be so standalone that other contributors could write client form processors in other languages like ASP, Ruby, Java etc... Improvements in end-user functionality such as addition of optional calendar features for using the form for booking appointments/events, adding a unique UUID to individual mail campaign emails (or just campaigns) so when a new user hit's the form, we know how he got there... And a few others ideas too. Sorry again for the length. Alan -- The way out is open! http://www.theopensourcerer.com From nolan at peaceworks.ca Tue Apr 8 14:39:09 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 17:39:09 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> Message-ID: <8292881.6651207690749583.JavaMail.root@zimbra> hey... I agree with Torsten. The Custom Field stuff is important. For the same reason, actually, I think the Reports stuff is pretty valuable, too. Based on the replies so far, though... 1. I've submitted a request for a forge project for the AutoEmail stuff, and am in conversation with Joe on that. I'll make sure to keep this list apprised of any developments as things move forward there. 2. I'll start pulling together some of the Custom Field stuff tonight so that I can let people know what's all involved. I'm thinking that this particular one may be a fairly easy port to 5.0.4 if the decisions I made stand the test of community inspection. Even if not, I think it'll still be pretty quick. It's really not all that complex in the end. peace, Nolan PeaceWorks Computer Consulting Inc. www.peaceworks.ca Empowering People We Believe In ----- "Torsten Zenk" wrote: > Hi everybody, > besides the fact that all of these modules sound very interesting i > think #6 is the most interesting for the majority of vTiger-users, as > the custom fields do play a BIG role in setting up different setups of > vTiger for different usage. The custom fields feature is a vast Plus > within vtiger already, a little more extended makes it even vaster, to > leave my few words on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything > around vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email > list > system. The design we have accorded with Imed, has more or less the > same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it > as > an opensource extension on the forge. > I have been given permission to speak in their name and help > Peaceworks > to port their extension to 5.0.4 and make it available to the > community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an > email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention > my client, who have generously agreed to contribute this work that > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > Canada. ( www.sutherland-schultz.com ) > > It looks like this is the way to proceed. I think what I'll do is > start pulling together some screenshots and example code chunks for > each of the features, and send them to Prasad so they can check them > out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) > they have some client-specific parts that we will want to excise > (stuff that I don't think is very useful for the community at large) > before they are contributed. The upshot is that it will take a little > bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there > are certain things that would be *really* helpful to someone, I could > see us prioritizing them so that we do those first. Not sure we'll be > able to get everything together for a single version release (thanks > for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, > we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From prasad at vtiger.com Wed Apr 9 08:31:16 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 9 Apr 2008 21:01:16 +0530 Subject: [Vtigercrm-developers] Hello and the webform module In-Reply-To: <47FBDBD3.60602@gmail.com> References: <47FBDBD3.60602@gmail.com> Message-ID: <39d18b250804090831n27af6b6crc36846b746865848@mail.gmail.com> Hi Alan, Good to see you got started on the developer list. vtiger CRM uses adodb library: http://adodb.sourceforge.net/ Look at vtigercrm/include/database/PearDatabase.php which uses adodb functions. Regards, Prasad vtiger Team On 4/9/08, Alan Lord wrote: > > Sorry in advance - this is quite a long message... > ---------- > > Hello. > > I'm Alan, and I run an Open Source training, consulting and support > services business here in the UK. > > We have been "playing" with vtiger for some time and now would like to > contribute something back. > > I have recently been looking at the webform module and have some ideas, > but I am struggling to get passed first base due to the db abstraction > library and some rather obfuscated code... > > Anyway, first, A brief idea of what I'd like to do with the webform > module: > > 1. Abstract the client side so that there is minimal or no hardcoding of > form parameters and eliminate the need for manual duplication of lists > of php arrays in 5 or 6 places as is now the case. > 2. Migrate the forms to be valid XHTML (no tables) with external > stylesheet(s). > 3. Option to notify admin or other vtiger user by email that a form has > been submitted. > 4. Introduce a nice and friendly form builder (probably using something > like the dojo toolkit to give a good user experience). > > > With respect to the above I have done some work already. > > 1. During some initial hacking, the client end of the webform package > now has a single array construct which holds the basic form field > parameters and labels etc in config.php. This is the only place - on the > client side - where changes need to be made to alter your form's basic > field layout and structure. However, the interaction to the server is > not fixed. The vtiger file soap/webform.php needs manually hacking in > several places to match the client side configuration. > 2. This is kind of done. > 3. Sort of done. It works but the email notification is done at the > client end. This depends on the client server having sendmail(). I'd > like to move this function back to vtiger. Don't think it should be too > hard, but haven't looked into it yet. > 4. Not started > > Completing "1." above is giving me a headache! > > What I am trying to achieve is something along the following lines: > > *Start the client end "form building process" > *Select the type of form you'd like to make/edit > *Upload the schema for the relevant fields from the user's vtiger > installation and use that information to create the basic form layout > data... > > It is here's where I am stuck. Is there any decent documentation on the > database abstraction library that is being used? I find even simple > queries respond with vast amounts of superfluous data. For example a > query like: > > "SHOW TABLES LIKE 'vtiger_".$form."%'" > > responds with the data but also with a tremendous amount of noise. And > with that particular query I can't seem to iterate through the result > and filter it because of using a wildcard in the query. Any ideas? > > My plan is generate an xml schema for the fields that are available for > a particular kind of form. This would be used to generate the wsdl on > vtiger and be cached in a local (client-side) file and only updated as > and when necessary. The benefit being it will display any custom fields > or should vtiger's schema change with a new release, no manual updating > would be necessary. > > The client side Form Builder would be able to use this data to build the > initial UI and when the user has selected the fields to display etc, > the "design" will be saved in an XHTML file for deployment along with a > basic stylesheet. > > **Any help with extracting the data from the db would be most helpful.** > > I have looked at some of the functions in the MS word module (which gets > the "lead" field structure for example, but no schema information) as a > starting point but it doesn't go far enough and also has hardcoded wsdl > structures. > > I also have some ideas to develop the webform module further once I get > the basics working: > > Possibly use a Javascript SOAP library, so no client-side "server > scripting" language like PHP would be needed at all (fully platform > agnostic). Or, enable the form to be so standalone that other > contributors could write client form processors in other languages like > ASP, Ruby, Java etc... > > Improvements in end-user functionality such as addition of optional > calendar features for using the form for booking appointments/events, > adding a unique UUID to individual mail campaign emails (or just > campaigns) so when a new user hit's the form, we know how he got > there... And a few others ideas too. > > Sorry again for the length. > > Alan > > > -- > The way out is open! > http://www.theopensourcerer.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/590a9cb5/attachment-0001.htm From nolan at peaceworks.ca Wed Apr 9 22:28:23 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Thu, 10 Apr 2008 01:28:23 -0400 (EDT) Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <10479955.131207805299108.JavaMail.root@zimbra> Message-ID: <21806911.151207805303970.JavaMail.root@zimbra> OK... I'm not quite sure how to get started on this Custom Fields thing. Not having had the opportunity to contribute something substantial to this project, I'm not quite sure what the logistics should look like. So...what I've done is package up a first set of stuff, and attached it to this email as a zip. The zip includes: * new files I added * one file I massively altered: include/uifromdbutil.php - this file no longer exists, it's split between include/utils/EditViewUtil.php and DetailViewUtil.php, I believe * one set of instructions for applying my changes to modules/Settings/AddCustomFieldToDB.php In order to complete this, I'll need to either compile a whole bunch more instructions, or else make the changes to the 5.0.4 files myself. Here's where I ask for guidance. If I'm going to make the changes to the 5.0.4 files, I might as well do the port myself. However, going through the remaining files and making the instructions may not be less work. Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 (that's where we branched), but I don't think those will help anyone, will they? peace, Nolan -------------- next part -------------- A non-text attachment was scrubbed... Name: CustomFields.zip Type: application/zip Size: 48443 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/88d9f691/CustomFields-0001.zip From prasad at vtiger.com Thu Apr 10 01:54:22 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 10 Apr 2008 14:24:22 +0530 Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <21806911.151207805303970.JavaMail.root@zimbra> References: <10479955.131207805299108.JavaMail.root@zimbra> <21806911.151207805303970.JavaMail.root@zimbra> Message-ID: <39d18b250804100154n71443e09s9f69187b317bfc8@mail.gmail.com> Hi Nolan, Good to see your code contribution. Providing the diffs would definitely be useful. Is it possible to include some screenshot to show the changes or enhancements made? Regards, Prasad vtiger Team On 4/10/08, Nolan Andres wrote: > > OK... > > I'm not quite sure how to get started on this Custom Fields thing. Not > having had the opportunity to contribute something substantial to this > project, I'm not quite sure what the logistics should look like. > > So...what I've done is package up a first set of stuff, and attached it to > this email as a zip. The zip includes: > > * new files I added > * one file I massively altered: include/uifromdbutil.php > - this file no longer exists, it's split between > include/utils/EditViewUtil.php and DetailViewUtil.php, I believe > * one set of instructions for applying my changes to > modules/Settings/AddCustomFieldToDB.php > > In order to complete this, I'll need to either compile a whole bunch more > instructions, or else make the changes to the 5.0.4 files myself. Here's > where I ask for guidance. If I'm going to make the changes to the 5.0.4 > files, I might as well do the port myself. However, going through the > remaining files and making the instructions may not be less work. > > Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 > (that's where we branched), but I don't think those will help anyone, will > they? > > peace, > > Nolan > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/037f53ca/attachment.htm From greg at ct-net.org Thu Apr 10 04:10:59 2008 From: greg at ct-net.org (Gregory Machin) Date: Thu, 10 Apr 2008 13:10:59 +0200 Subject: [Vtigercrm-developers] thuderbird plugin not uploading the body for emails Message-ID: <47FDF5C3.1050809@ct-net.org> Hi When I try and use the thunderbird plugin it loses the body of the message and replaces it with "

Experience the difference. Thunderbird is developed and supported by Mozilla, a global community working together to make the Internet a better place for everyone.

For frequently asked questions, tips and general help, visit Thunderbird Help Center.

For product information, visit the Thunderbird Home Page.

" what would cause this ? i'm using thunderbird ver version 2.0.0.12 (20080213) on fedora core 8 linux thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From jcrisp at safeandsoundit.co.uk Thu Apr 10 10:14:35 2008 From: jcrisp at safeandsoundit.co.uk (John Crisp) Date: Thu, 10 Apr 2008 19:14:35 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <47FE4AFB.4010306@safeandsoundit.co.uk> Nolan Andres wrote: > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. > > Me too, but not for quite so long Re custom fields, the biggest bind is that 'LINKED' Custom Fields do not cross update from say an Account to a Contact or vice versa as say the address fields do - there is no linking beyond the point where a Lead is converted to an Account/Potential - at that point they are entities in their own right. I have had a play about with this for a while to see if I can get the fields to update with SQL triggers but am no coder and cannot get anything satisfactory - probably just lousy SQl syntax ! ANY improvement on the usability would be useful. If not, a change to the naming convention for 'LINKED' Custom Fields ;-) Absolutely brilliant to see people contributing stuff back so many thanks to you and your clients ! B. Rgds John From greg at ct-net.org Fri Apr 11 06:13:19 2008 From: greg at ct-net.org (Gregory Machin) Date: Fri, 11 Apr 2008 15:13:19 +0200 Subject: [Vtigercrm-developers] faq loosess leading spaces.. Message-ID: <47FF63EF.9070300@ct-net.org> Hi I have been creating some faq's today and I noticed that once u save the faq it loose all the leading spaces of each line and when u edit again it the spaces are there ... I have a faq that has alot of indentation (leading spaces) and with out it, it looks very messy.. how do I get past this ? notes work station > Using gedit to type the documents ... copy pasted into the faq and edited again to fit Using firefox 2.0.0.13 Using linux Fedora core 8 Thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From prasad at vtiger.com Fri Apr 11 10:35:36 2008 From: prasad at vtiger.com (Prasad) Date: Fri, 11 Apr 2008 23:05:36 +0530 Subject: [Vtigercrm-developers] faq loosess leading spaces.. In-Reply-To: <47FF63EF.9070300@ct-net.org> References: <47FF63EF.9070300@ct-net.org> Message-ID: <39d18b250804111035n334c1d1fwf8c54e98899ba35b@mail.gmail.com> Hi Gregory, The leading and trailing spaces are trimmed off from the input values in the following: File: include/utils/CommonUtils.php function setObjectValuesFromRequest($focus) The highlighted line of code can help you to preserve the leading and trailing spaces for Faq module record saving. NOTE: This code is based on vtiger 5.0.4 function setObjectValuesFromRequest($focus) { global $log; ... if(isset($_REQUEST['mode'])) { $focus->mode = $_REQUEST['mode']; } foreach($focus->column_fields as $fieldname => $val) { if(isset($_REQUEST[$fieldname])) { if(is_array($_REQUEST[$fieldname])) $value = $_REQUEST[$fieldname]; else if ($_REQUEST['module'] == 'Faq') $value = $_REQUEST[$fieldname]; else $value = trim($_REQUEST[$fieldname]); $focus->column_fields[$fieldname] = $value; } Hope you find this useful. Regards, Prasad vtiger Team On 4/11/08, Gregory Machin wrote: > > Hi > I have been creating some faq's today and I noticed that once u save the > faq it loose all the leading spaces of each line and when u edit again > it the spaces are there ... I have a faq that has alot of indentation > (leading spaces) and with out it, it looks very messy.. how do I get > past this ? > > notes > work station > > Using gedit to type the documents ... copy pasted into the faq and > edited again to fit > Using firefox 2.0.0.13 > Using linux Fedora core 8 > > Thanks > > > -- > Gregory Machin > CT-Net > www.ct-net.org > greg at ct-net.org > phone : +27 12 379 3497 > fax : +27 12 379 4113 > Cell : +27 72 524 8096 > > humans do not use the address > below its for trapping spam. > spamtrap imasucker at ct-net.org > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080411/6954b26c/attachment.htm From prasad at vtiger.com Mon Apr 14 09:51:00 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 14 Apr 2008 22:21:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: <39d18b250804140951n40ef9e3bocfb2c6f5ff7088f@mail.gmail.com> Hi Nolan, Wanted to make a follow up on the contribution items. How are things coming along. I saw the forge project on email but didn't find any downloads. http://forge.vtiger.com/projects/autoemails/ Kindly keep us updated on the work progress, our community will be able to provide more assistance. Regards, Prasad vtiger Team On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080414/18aa8625/attachment-0001.htm From asha at vtiger.com Tue Apr 15 01:00:07 2008 From: asha at vtiger.com (Asha) Date: Tue, 15 Apr 2008 13:30:07 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: Hi Nolan, I agree with you. Security on Reports is also very important stuff. I would like to know the update on it and would be great if we can getting it ported to 5.0.4. Let me know if I can help you in this. On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/a7048e7a/attachment.htm From leandro at hipertek.net Tue Apr 15 03:14:53 2008 From: leandro at hipertek.net (leandro@hipertek.net) Date: Tue, 15 Apr 2008 05:14:53 -0500 (COT) Subject: [Vtigercrm-developers] Oracle Support Message-ID: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im working too in to implement a customized Price Book (List of prices) by client, and improve the module for to have accounts/contacts by list and products by list and management of profitability by list of products and customized profitability of product in some list of prices. My question is: How i work for that the improves are evaluated and integrated in vtiger by default, how I work with other persons interested in help to port vtiger to oracle,really the oracle support need changes in the names of the tables, because the actual names present troubles for the max size of name in oracle. Im expecting for yours recomendations, it would be a fork named vtiger x oracle meanwhile this updates are integrated in the official version. Im expecting of yours comments and suggestions, Leandro Rache. Hipertek. From prasad at vtiger.com Tue Apr 15 04:47:24 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 15 Apr 2008 17:17:24 +0530 Subject: [Vtigercrm-developers] Oracle Support In-Reply-To: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> References: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Message-ID: <39d18b250804150447l2ff1774chbfda1d0a672b7e8c@mail.gmail.com> Hi Leandro, I would recommend you to create a project of forge for which can serve as an add-on for vtiger 5.0.4 to work with Oracle. This give our community direct access and they will be able to provide more support to your work. Regards, Prasad vtiger Team On 4/15/08, leandro at hipertek.net wrote: > > Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im > working too in to implement a customized Price Book (List of prices) by > client, and improve the module for to have accounts/contacts by list and > products by list and management of profitability by list of products and > customized profitability of product in some list of prices. My question > is: How i work for that the improves are evaluated and integrated in > vtiger by default, how I work with other persons interested in help to > port vtiger to oracle,really the oracle support need changes in the names > of the tables, because the actual names present troubles for the max size > of name in oracle. > > Im expecting for yours recomendations, it would be a fork named vtiger x > oracle meanwhile this updates are integrated in the official version. > > Im expecting of yours comments and suggestions, > > Leandro Rache. > Hipertek. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/28727221/attachment.htm From chazarra.clement at gmail.com Tue Apr 22 08:10:20 2008 From: chazarra.clement at gmail.com (clement chazarra) Date: Tue, 22 Apr 2008 16:10:20 +0100 Subject: [Vtigercrm-developers] Custom field in list view Message-ID: Hi guys, I need a little help, I posted on the forum a question but didn't get any answer yet (http://forums.vtiger.com/viewtopic.php?p=64151) I am trying to display a custom field in a list view, for exemple the sale order list in a specific account should display my custom field cf_354. In 4.2.3 I made it work but cannot get it working with the same method in 5.0.4: In salesorder.php I add my custom field in var $list_fields = Array( 'Order No'=>Array('crmentity'=>'crmid'), 'Subject'=>Array('salesorder'=>'subject'), 'Account Name'=>Array('account'=>'accountid'), 'Quote Name'=>Array('quotes'=>'quoteid'), * 'My Custom field'=>Array('salesordercf'=>'cf_354'),* 'Total'=>Array('salesorder'=>'total'), 'Assigned To'=>Array('crmentity'=>'smownerid') ); var $list_fields_name = Array( 'Order No'=>'', 'Subject'=>'subject', 'Account Name'=>'account_id', 'Quote Name'=>'quote_id', * 'My Custom field'=>'cf_354',* 'Total'=>'hdnGrandTfdotal', 'Assigned To'=>'assigned_user_id' ); I also had a look for an error in the log, but none is logged.. If somebody get it working with the exact same method as in 4.2.3, I would be glad to know(It would mean that I made a mistake) else if somebody get it to work on 5.0.4, I would be very thankful for an hint. Bye guys, Clem -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080422/80e8c356/attachment.htm From prasad at vtiger.com Tue Apr 22 12:00:17 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <39d18b250804221200n33a3ba44i90e0451f38aea1f8@mail.gmail.com> Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080422/8103cf05/attachment-0001.htm From scott at centritechsolutions.com Tue Apr 22 13:20:01 2008 From: scott at centritechsolutions.com (scott@centritechsolutions.com) Date: Tue, 22 Apr 2008 16:20:01 -0400 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <5822983184.20080422162001@centritechsolutions.com> What kind of features does it have? ------Original Mail------ From: "Prasad" To: Sent: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team From srini at vtiger.com Wed Apr 23 00:18:35 2008 From: srini at vtiger.com (Srini) Date: Wed, 23 Apr 2008 12:48:35 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn In-Reply-To: <5822983184.20080422162001@centritechsolutions.com> References: <5822983184.20080422162001@centritechsolutions.com> Message-ID: <391a06170804230018v102a429am1229492c2af69b1c@mail.gmail.com> Dear Team, As a starting point, the vQuickBooks add-on is developed to synchronize the Contacts from vtigerCRM and Customer List from QuickBooks via the QuickBooks - WebConnector. The Basic QuickBooks Integration frame work (free package - done by Keith Palmer) is used to develop this add-on. We welcome more questions, results and code contributions from our members to take this add-on into next level. Thanks & Regards, Srini On Wed, Apr 23, 2008 at 1:50 AM, wrote: > What kind of features does it have? > > > ------Original Mail------ > From: "Prasad" > To: > Sent: Wed, 23 Apr 2008 00:30:17 +0530 > Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn > > Dear Members, > > vtiger QuickBook Addon is now available on forge: > http://forge.vtiger.com/projects/vquickbooks/ > > version 1.0 downloads: > http://forge.vtiger.com/frs/?group_id=155&release_id=385 > > We encourage you to extend the support in testing, validating this AddOn > and > take it further from here. > > Regards, > Prasad > vtiger Team > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/7ed8b682/attachment.htm From prasad at vtiger.com Thu Apr 24 06:11:40 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 24 Apr 2008 18:41:40 +0530 Subject: [Vtigercrm-developers] [FORUM:5901] Re: Quickbooks Export / Generic Accounting System Export In-Reply-To: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> References: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> Message-ID: <39d18b250804240611q65e7a21i36f038199f9b4674@mail.gmail.com> Dear Keith, We are glad to hear about the support you are extending for getting vtiger QuickBooks integration. I had a question: Is it possible to make WebConnector Application work without https? Regards, Prasad vtiger Team PS: vtiger Forum does not let you post URL's in the first post. On 4/24/08, keith at uglyslug.com wrote: > > > Hello, > > I\'m Keith Palmer the author of the QuickBooks PHP package that kmitz > mentioned here: > (on the Intuit forums... your forums won\'t allow me to post URLs because > I\'m a new user or something...) > > I\'d be interested in helping out as much as I can to help get vTiger > integrated with QuickBooks. If there\'s anything I can help with/features > that I can add to my package/code I can write/questions I can answer, by all > means let me know! > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080424/001f2ef7/attachment.htm From denys.potapov at gmail.com Tue Apr 1 07:27:43 2008 From: denys.potapov at gmail.com (=?KOI8-R?B?5MXOydMg8M/UwdDP1w==?=) Date: Tue, 1 Apr 2008 14:27:43 +0300 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> Message-ID: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Hi Prasad, I'm working with Russian language pack and met some problems. Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix them using Vtiger track, but i ask you to include the phputf8 library ( http://phputf8.sourceforge.net/ ) into the vtiger core (vtigerCRM\include\phputf8). It work's fine on many projects (for example Joomla!), and it doing well with VTiger. The other thing that by default the GraphUtils.php uses Vera font: line 27: DEFINE("FF_FONT1",'Vera'); but it has no Cyrillic support. Probably it's better to change it to Arial. Will it be right if I add this issue on track. The last thing I think deals with any localisation. In Smarty Template 'Smarty/templates/ListViewEntries.tpl': line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! In both cases the plural form is added in template, that is absolutely unsuitable for localisation. For now we solve it by adding all this core (and template) files to language pack that is totally incorrect. What can be the solution? Best regards, Denys Potapov 2008/3/26, Prasad : > > Hi Denys, > > To use mb_strlen and mb_substr you need to enable mb_string php extension. > > Also check out this library: http://phputf8.sourceforge.net/ which has > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > If you work with this, kindly let us know your observations in more > details. > > Good luck. > > Regards, > Prasad > > > On 3/25/08, ????? ??????? wrote: > > > > Hi all! > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > use > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > Best regards, > > Denys Potapov > > > > _______________________________________________ > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/12fb3d82/attachment.html From prasad at vtiger.com Tue Apr 1 08:04:45 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 1 Apr 2008 17:34:45 +0530 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Message-ID: <39d18b250804010504q59be1e00l9017d0a17ba6149e@mail.gmail.com> Hi Denys, Thank you for keep us updated on your work. You can update the comments on the trac ticket: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5245 with your findings. Also please create new tickets for other issues you have mentioned and suggest the fix also, this could be helpful for us and community. Regards, Prasad vtiger Team On 4/1/08, ????? ??????? wrote: > > Hi Prasad, > > > > I'm working with Russian language pack and met some problems. > > Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix > them using Vtiger track, but i ask you to include the phputf8 library ( > http://phputf8.sourceforge.net/ ) into the vtiger core > (vtigerCRM\include\phputf8). It work's fine on many projects (for example > Joomla!), and it doing well with VTiger. > > The other thing that by default the GraphUtils.php uses Vera font: > line 27: DEFINE("FF_FONT1",'Vera'); > but it has no Cyrillic support. Probably it's better to change it to > Arial. Will it be right if I add this issue on track. > > The last thing I think deals with any localisation. In Smarty Template > 'Smarty/templates/ListViewEntries.tpl': > line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! > line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} > ! > In both cases the plural form is added in template, that is absolutely > unsuitable for localisation. > > For now we solve it by adding all this core (and template) files to > language pack that is totally incorrect. What can be the solution? > > > > > Best regards, > Denys Potapov > > > > > > > > > > > 2008/3/26, Prasad : > > > > Hi Denys, > > > > To use mb_strlen and mb_substr you need to enable mb_string php > > extension. > > > > Also check out this library: http://phputf8.sourceforge.net/ which has > > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > > > If you work with this, kindly let us know your observations in more > > details. > > > > Good luck. > > > > Regards, > > Prasad > > > > > > On 3/25/08, ????? ??????? wrote: > > > > > > Hi all! > > > > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > > use > > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > > > > > > > > Best regards, > > > Denys Potapov > > > > > > _______________________________________________ > > > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/2584e57e/attachment.html From stephen at cass-ltd.co.uk Tue Apr 1 08:38:47 2008 From: stephen at cass-ltd.co.uk (stephen at cass-ltd.co.uk) Date: Tue, 1 Apr 2008 13:38:47 +0100 Subject: [Vtigercrm-developers] PostgreSQL support Message-ID: <2b2cf48288ead57e23c7254ea0d5f05a@localhost> Hello all, I saw a thread in December about PostgreSQL support for VTiger. Jens Hamisch had done a fair amount of work to achieving this goal and I am wondering on the current status. Regards, Stephen. From ckwu at ck-erp.net Fri Apr 4 01:46:54 2008 From: ckwu at ck-erp.net (C K Wu) Date: Fri, 04 Apr 2008 13:46:54 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.27.1 released (with vTiger 5.0.4 connector) Message-ID: <47F5C0CE.2000200@ck-erp.net> Hi, folks, I have posted a new release, v.0.27.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, connector for AssetMan connector for Coppermine connector for Gallery2 connector for phpMyTicket enhanced navigation bar CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 22 modules - Administration, i18n, Contact Management, Customer Relationship, Customer Self Service, Vendor Relationship, Ledger, Bank Reconciliation, MRP, Warehouse, Inventory, Service, AP, AR, PO, SO, Quotation, POS for Cashier, POS for Manager, HR, Staff Self Service and Payroll. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Please report error and suggestion to the discussion group / mailing list, CK-ERP-en(at)googlegroups.com or CK-ERP-zh_CN(at)googlegroups.com . General history and expected development is available at the discussion group's Archive. Supported MiddleWares: AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; MyHandyRestaurant; PHPJB; FreightFleetManagementSystem; OpenX, LandShop, FreeRealty; IRM; LegalCase; MirrorMed, ClearHealth, OpenEMR; eGroupWare, Horde-GroupWare; Zencart, CRELoaded, osCMax, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger, XRMS; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net http://ck-erp.info Download is available from, http://sourceforge.net/projects/ck-erp http://gforge.oss.org.cn/projects/ck-erp http://gforge.lupaworld.com/projects/ck-erp http://gro.clinux.org/projects/ck-ledger Cheers, Wu Chiu Kay, aka CK Wu, aka CK (CK is the preferred alias) Hong Kong From nolan at peaceworks.ca Tue Apr 8 01:04:24 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 01:04:24 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <12613936.161207630770748.JavaMail.root@zimbra> Message-ID: <29762786.181207631064709.JavaMail.root@zimbra> Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. From brian at pr2k.com Tue Apr 8 01:35:16 2008 From: brian at pr2k.com (Brian Laughlin) Date: Mon, 7 Apr 2008 22:35:16 -0700 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: Wow, that is a great list. -----Original Message----- From: Nolan Andres [mailto:nolan at peaceworks.ca] Sent: Monday, April 07, 2008 10:04 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] List of potential contributions - feedback requested Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com From ddfire at gmail.com Tue Apr 8 08:07:58 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 09:07:58 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: all the items are VERY interesting. your list is a new version. vtiger 5.0.5 code name paceworks :-) thanks. David 2008/4/8 Nolan Andres : > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/fd8fa686/attachment.html From prasad at vtiger.com Tue Apr 8 08:19:26 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:49:26 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080519n51d8eedel67f29fa691692b3d@mail.gmail.com> Hi Nolan Andres, Really a good piece of work. I would like to thank you and your client(s) for deciding to contribute back. If you can share code with us with more details that will make it easy to analyze it further. Regards, Prasad vtiger Team On 4/8/08, Nolan Andres wrote: > > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/1130ff0f/attachment.html From prasad at vtiger.com Tue Apr 8 08:20:03 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:50:03 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Hi David, Interesting code name :) Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > all the items are VERY interesting. > your list is a new version. > vtiger 5.0.5 code name paceworks :-) > > thanks. > David > > 2008/4/8 Nolan Andres : > > > Hey, everyone... > > > > I've been lurking on this list for quite a while (could be 2 years!) For > > over 2 years, now, my company has been doing customization work on vTiger, > > most of it on a highly customized installation that is still running v4.2. > > > > The customizations are so extensive, and the transition from 4.2 to 5.0 > > was so rocky that the client has never been willing to make the move. They > > still aren't. > > > > However, we just got permission from them to contribute any useful > > modifications and modules to the project. Hooray! My company is willing to > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > for these components, but I wanted to post a short annotated list to find > > out whether any of these pieces might be of interest to the community, and > > if so, how they might be prioritized. > > > > Here's the list. Please let me know what you think. Any of these sound > > interesting? > > > > -------- > > 1. Auto-Email Standardization > > > > Our client found the vTiger email notification stuff disconcerting. > > Reasons for emails going out were not clearly enumerated or codified, and > > control over these emails was limited at best. We wrote a framework that > > provides a series of Auto-Email categories: > > * entity-created: sends when an entity of the chosen type is created > > * entity-altered: sends when an entity of the chosen type is altered > > * entity-deleted: sends when an entity of the chosen type is deleted > > * value-triggered: sends when a set of value conditions on an entity of > > the chosen type is met (can be scheduled, or reactive--on save) > > * scheduled custom: executes a custom function on schedule > > * scheduled report: emails a report on schedule > > > > A wide variety of options exist for sending the email notifications: > > * send to arbitrary email address(es) > > * send to user(s) > > * send to contact(s) > > * send to assigned user > > * send to team > > * do not send to triggering user > > * can send attachments > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > > > Subject and body are template-driven, allowing parameters from > > triggering entities of the chosen type. > > > > ------------------------------- > > > > 2. Google Earth Report Integration > > > > Provides a configuration tool (part of the report specification) that > > allows report attributes to be output within the context of a real-time KML > > feed as parts of a placemark. As an example, you can visualize the results > > of a report...say a report on your Accounts...in Google Earth...see the > > geographic distribution of your Accounts. > > > > ------------------------------- > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > Implements per-entity-type file repositories that can have internal > > folder hierarchies and maintain per-entity folders (no more clobbering files > > of the same name that were uploaded/attached to a different entity). > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > permissions on files and folders (optional). > > > > -------------------------------- > > > > 4. Timesheets > > > > I know TSolucio has one of these. We tried it out and it didn't match > > the needs we had very well. I suspect we'll just provide this one as an > > alternative to the TSolucio one from our website, just in case someone > > else's needs are more closely aligned with the ones our client had. > > > > --------------------------------- > > > > 5. Report Folder Permissions / Personal Report Folders > > > > We added Reports to the profile management functionality, and added a > > personal "My Reports" folder for each user. You can hide report folders from > > some users, allow certain users to create new reports or manage certain > > folders, etc. Each user has their own My Reports folder where they can > > create reports of their own. When users have access to view a Report (but > > not edit it) and they want to customize it, they can clone it to their My > > Reports folder and modify it there. > > > > ----------------------------------- > > > > 6. Custom Field Improvements > > > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > > management functionality that allows admin users to create more tabs, > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > them. Really useful when you have a lot of custom fields. When multiple tabs > > have not been created, the Custom Fields block looks as it normally does. > > Also allows Custom Fields to be renamed. > > > > ------------------------------------ > > > > > > As I said, we'd love to hear feedback on these. If there's anything that > > the vTiger project can use, we'd be happy to contribute them. We've done a > > lot of work with vTiger, and it's been a huge success both for us and for > > our client. It would be great to have the opportunity to contribute back. > > > > peace, > > Nolan Andres > > PeaceWorks Computer Consulting Inc. > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/80478339/attachment.html From ddfire at gmail.com Tue Apr 8 09:37:23 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 10:37:23 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Message-ID: hi i am still looking for a complete or at least a almost complete guide to make a news module, i am not a programing guru but i can program a new module if i have a good guide.... any one? of course i will give the new modules to the community thanks David 2008/4/8 Prasad : > Hi David, > > Interesting code name :) > > Regards, > Prasad > vtiger Team > > > On 4/8/08, David fire wrote: > > > > all the items are VERY interesting. > > your list is a new version. > > vtiger 5.0.5 code name paceworks :-) > > > > thanks. > > David > > > > 2008/4/8 Nolan Andres : > > > > > Hey, everyone... > > > > > > I've been lurking on this list for quite a while (could be 2 years!) > > > For over 2 years, now, my company has been doing customization work on > > > vTiger, most of it on a highly customized installation that is still running > > > v4.2. > > > > > > The customizations are so extensive, and the transition from 4.2 to > > > 5.0 was so rocky that the client has never been willing to make the move. > > > They still aren't. > > > > > > However, we just got permission from them to contribute any useful > > > modifications and modules to the project. Hooray! My company is willing to > > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > > for these components, but I wanted to post a short annotated list to find > > > out whether any of these pieces might be of interest to the community, and > > > if so, how they might be prioritized. > > > > > > Here's the list. Please let me know what you think. Any of these sound > > > interesting? > > > > > > -------- > > > 1. Auto-Email Standardization > > > > > > Our client found the vTiger email notification stuff disconcerting. > > > Reasons for emails going out were not clearly enumerated or codified, and > > > control over these emails was limited at best. We wrote a framework that > > > provides a series of Auto-Email categories: > > > * entity-created: sends when an entity of the chosen type is created > > > * entity-altered: sends when an entity of the chosen type is altered > > > * entity-deleted: sends when an entity of the chosen type is deleted > > > * value-triggered: sends when a set of value conditions on an entity > > > of the chosen type is met (can be scheduled, or reactive--on save) > > > * scheduled custom: executes a custom function on schedule > > > * scheduled report: emails a report on schedule > > > > > > A wide variety of options exist for sending the email notifications: > > > * send to arbitrary email address(es) > > > * send to user(s) > > > * send to contact(s) > > > * send to assigned user > > > * send to team > > > * do not send to triggering user > > > * can send attachments > > > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each > > > minute > > > > > > Subject and body are template-driven, allowing parameters from > > > triggering entities of the chosen type. > > > > > > ------------------------------- > > > > > > 2. Google Earth Report Integration > > > > > > Provides a configuration tool (part of the report specification) that > > > allows report attributes to be output within the context of a real-time KML > > > feed as parts of a placemark. As an example, you can visualize the results > > > of a report...say a report on your Accounts...in Google Earth...see the > > > geographic distribution of your Accounts. > > > > > > ------------------------------- > > > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > > > Implements per-entity-type file repositories that can have internal > > > folder hierarchies and maintain per-entity folders (no more clobbering files > > > of the same name that were uploaded/attached to a different entity). > > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > > permissions on files and folders (optional). > > > > > > -------------------------------- > > > > > > 4. Timesheets > > > > > > I know TSolucio has one of these. We tried it out and it didn't match > > > the needs we had very well. I suspect we'll just provide this one as an > > > alternative to the TSolucio one from our website, just in case someone > > > else's needs are more closely aligned with the ones our client had. > > > > > > --------------------------------- > > > > > > 5. Report Folder Permissions / Personal Report Folders > > > > > > We added Reports to the profile management functionality, and added a > > > personal "My Reports" folder for each user. You can hide report folders from > > > some users, allow certain users to create new reports or manage certain > > > folders, etc. Each user has their own My Reports folder where they can > > > create reports of their own. When users have access to view a Report (but > > > not edit it) and they want to customize it, they can clone it to their My > > > Reports folder and modify it there. > > > > > > ----------------------------------- > > > > > > 6. Custom Field Improvements > > > > > > We put the custom fields inside a tabbed (JS) block. Added Custom > > > Field management functionality that allows admin users to create more tabs, > > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > > them. Really useful when you have a lot of custom fields. When multiple tabs > > > have not been created, the Custom Fields block looks as it normally does. > > > Also allows Custom Fields to be renamed. > > > > > > ------------------------------------ > > > > > > > > > As I said, we'd love to hear feedback on these. If there's anything > > > that the vTiger project can use, we'd be happy to contribute them. We've > > > done a lot of work with vTiger, and it's been a huge success both for us and > > > for our client. It would be great to have the opportunity to contribute > > > back. > > > > > > peace, > > > Nolan Andres > > > PeaceWorks Computer Consulting Inc. > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/2093e151/attachment.html From ddfire at gmail.com Tue Apr 8 10:01:20 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:01:20 -0300 Subject: [Vtigercrm-developers] a little bug? Message-ID: hi i have added some custom fields and then i edited the sql to change the blocks where the cf are. now i am trying to disable this fields for one profile but nothing happened... i disabled a normal field and it works. what can i do? thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/de651461/attachment.html From nolan at peaceworks.ca Tue Apr 8 10:15:22 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 10:15:22 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32250839.1271207664065154.JavaMail.root@zimbra> Message-ID: <32428513.1321207664122063.JavaMail.root@zimbra> Hey... Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. Prasad, should I send the code to you, or should I just post it here? peace, Nolan ----- "Prasad" wrote: > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > From ddfire at gmail.com Tue Apr 8 10:21:04 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:21:04 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: hi i think the most important upgrade is the 6. Custom Field Improvements this should go first. David 2008/4/8 Nolan Andres : > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/a1597200/attachment.html From james at sitek.com.au Tue Apr 8 10:26:59 2008 From: james at sitek.com.au (James Moey) Date: Wed, 09 Apr 2008 00:26:59 +1000 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <47FB80B3.3060003@sitek.com.au> I can help with the porting. I am interested in Custom Field Improvement as well. I have some experience in block and JS. I would be more than happy to port that over to 5.0.4. Regards, James Nolan Andres wrote: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > >> Hi Nolan Andres, >> >> Really a good piece of work. I would like to thank you and your >> client(s) for deciding to contribute back. >> >> If you can share code with us with more details that will make it easy >> to analyze it further. >> >> Regards, >> Prasad >> vtiger Team >> >> >> > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/0ffc52d3/attachment.html From prasad at vtiger.com Tue Apr 8 10:29:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 19:59:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <39d18b250804080729v7b70c418o77c0b1c09a3365f2@mail.gmail.com> Hi Nolan Andres, Thank you very much for taking more initiative. Kindly share code with me and also put CC to out developer list This way our developers can enhance the interesting feature a bit more. It will definitely take more time for us to analyze the code contribution, so please be patient till then. Hope you don't mind if we get back to you for any clarifications. Regards, Prasad On 4/8/08, Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > > Nolan > > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/c2b721b5/attachment.html From prasad at vtiger.com Tue Apr 8 10:37:15 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:07:15 +0530 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: References: Message-ID: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Hi David, What changes did you make to change the blocks for the custom field? Can you please check if without change the blocks, the custom field can be disabled for the profile? Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > hi > i have added some custom fields and then i edited the sql to change the > blocks where the cf are. > now i am trying to disable this fields for one profile but nothing > happened... i disabled a normal field and it works. > what can i do? > thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/eec1f14b/attachment.html From prasad at vtiger.com Tue Apr 8 10:39:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:09:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FB80B3.3060003@sitek.com.au> References: <32428513.1321207664122063.JavaMail.root@zimbra> <47FB80B3.3060003@sitek.com.au> Message-ID: <39d18b250804080739o6e8b2d69q76328f7031339384@mail.gmail.com> Hi James, Thank you for taking up the initiative. I have asked Nolan to copy over the code contribution, please keep watching the thread. Regards, Prasad vtiger Team On 4/8/08, James Moey wrote: > > I can help with the porting. I am interested in Custom Field Improvement > as well. I have some experience in block and JS. I would be more than happy > to port that over to 5.0.4. > > Regards, > James > > Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/8621afb5/attachment.html From ddfire at gmail.com Tue Apr 8 10:52:30 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:52:30 -0300 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> References: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Message-ID: i only change the field block inthe vtiger_field table i created a new profile and it works perfect. thanks David 2008/4/8 Prasad : > Hi David, > > What changes did you make to change the blocks for the custom field? > > Can you please check if without change the blocks, the custom field can be > disabled for the profile? > > Regards, > Prasad > vtiger Team > > On 4/8/08, David fire wrote: > > > hi > > i have added some custom fields and then i edited the sql to change the > > blocks where the cf are. > > now i am trying to disable this fields for one profile but nothing > > happened... i disabled a normal field and it works. > > what can i do? > > thanks > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/d229f8e4/attachment.html From joe at tsolucio.com Tue Apr 8 11:33:21 2008 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 08 Apr 2008 17:33:21 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <1207668801.26617.40.camel@joesunix.int> Hi All, I have been contracted by IMED Mobility to create a vtigerCRM email list system. The design we have accorded with Imed, has more or less the same goals as Peaceworks/Sutherland-Schultz number 1 extension. Imed decided to fund the development of the extension and release it as an opensource extension on the forge. I have been given permission to speak in their name and help Peaceworks to port their extension to 5.0.4 and make it available to the community, on the forge and in the base product if vtiger team sees it fit. At the moment I would like to thank Peaceworks and Sutherland-Schultz for there contribution. Nolan, if you are interested in working with TSolucio drop me an email. We will set up a forge project and port your mailing system to 5.0.4 Regards, Joe TSolucio El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From prasad at vtiger.com Tue Apr 8 12:50:00 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:20:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <39d18b250804080950h486d1609tadc37ba99498536@mail.gmail.com> Hi Joe, Thank you for the updates Joe. We have are being informed about several extensions on the mailing part of vtiger CRM. Glad to see your initiative on the item 1. Regards, Prasad vtiger Team On 4/8/08, Joe Bordes wrote: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, we > might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > > Hi Nolan Andres, > > > > > > Really a good piece of work. I would like to thank you and your > > > client(s) for deciding to contribute back. > > > > > > If you can share code with us with more details that will make it easy > > > to analyze it further. > > > > > > Regards, > > > Prasad > > > vtiger Team > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/7353fe0f/attachment.html From tzenk at gmx.net Tue Apr 8 12:55:08 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 08 Apr 2008 18:55:08 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <47FBA36C.5020301@gmx.net> Hi everybody, besides the fact that all of these modules sound very interesting i think #6 is the most interesting for the majority of vTiger-users, as the custom fields do play a BIG role in setting up different setups of vTiger for different usage. The custom fields feature is a vast Plus within vtiger already, a little more extended makes it even vaster, to leave my few words on this. And as always: If you wizards need an extensive themer /tester / documenter/ translator (native german/ native english) on anything around vTiger count me in. Greetings Torsten Zenk Joe Bordes schrieb: > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > >> Hey... >> >> Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) >> >> It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. >> >> As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. >> >> That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) >> >> If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. >> >> Prasad, should I send the code to you, or should I just post it here? >> >> peace, >> Nolan >> >> >> ----- "Prasad" wrote: >> >> >>> Hi Nolan Andres, >>> >>> Really a good piece of work. I would like to thank you and your >>> client(s) for deciding to contribute back. >>> >>> If you can share code with us with more details that will make it easy >>> to analyze it further. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> >>> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/82607ff9/attachment.html From prasad at vtiger.com Tue Apr 8 13:11:46 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:41:46 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> <47FBA36C.5020301@gmx.net> Message-ID: <39d18b250804081011j6f173a19u74071920c23dcff4@mail.gmail.com> Hi Torsten, Glad to hear about your involvement :) Regards, Prasad On 4/8/08, Torsten Zenk wrote: > > Hi everybody, > besides the fact that all of these modules sound very interesting i think > #6 is the most interesting for the majority of vTiger-users, as the custom > fields do play a BIG role in setting up different setups of vTiger for > different usage. The custom fields feature is a vast Plus within vtiger > already, a little more extended makes it even vaster, to leave my few words > on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything around > vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/6ff25893/attachment.html From alanslists at gmail.com Tue Apr 8 16:55:47 2008 From: alanslists at gmail.com (Alan Lord) Date: Tue, 08 Apr 2008 21:55:47 +0100 Subject: [Vtigercrm-developers] Hello and the webform module Message-ID: <47FBDBD3.60602@gmail.com> Sorry in advance - this is quite a long message... ---------- Hello. I'm Alan, and I run an Open Source training, consulting and support services business here in the UK. We have been "playing" with vtiger for some time and now would like to contribute something back. I have recently been looking at the webform module and have some ideas, but I am struggling to get passed first base due to the db abstraction library and some rather obfuscated code... Anyway, first, A brief idea of what I'd like to do with the webform module: 1. Abstract the client side so that there is minimal or no hardcoding of form parameters and eliminate the need for manual duplication of lists of php arrays in 5 or 6 places as is now the case. 2. Migrate the forms to be valid XHTML (no tables) with external stylesheet(s). 3. Option to notify admin or other vtiger user by email that a form has been submitted. 4. Introduce a nice and friendly form builder (probably using something like the dojo toolkit to give a good user experience). With respect to the above I have done some work already. 1. During some initial hacking, the client end of the webform package now has a single array construct which holds the basic form field parameters and labels etc in config.php. This is the only place - on the client side - where changes need to be made to alter your form's basic field layout and structure. However, the interaction to the server is not fixed. The vtiger file soap/webform.php needs manually hacking in several places to match the client side configuration. 2. This is kind of done. 3. Sort of done. It works but the email notification is done at the client end. This depends on the client server having sendmail(). I'd like to move this function back to vtiger. Don't think it should be too hard, but haven't looked into it yet. 4. Not started Completing "1." above is giving me a headache! What I am trying to achieve is something along the following lines: *Start the client end "form building process" *Select the type of form you'd like to make/edit *Upload the schema for the relevant fields from the user's vtiger installation and use that information to create the basic form layout data... It is here's where I am stuck. Is there any decent documentation on the database abstraction library that is being used? I find even simple queries respond with vast amounts of superfluous data. For example a query like: "SHOW TABLES LIKE 'vtiger_".$form."%'" responds with the data but also with a tremendous amount of noise. And with that particular query I can't seem to iterate through the result and filter it because of using a wildcard in the query. Any ideas? My plan is generate an xml schema for the fields that are available for a particular kind of form. This would be used to generate the wsdl on vtiger and be cached in a local (client-side) file and only updated as and when necessary. The benefit being it will display any custom fields or should vtiger's schema change with a new release, no manual updating would be necessary. The client side Form Builder would be able to use this data to build the initial UI and when the user has selected the fields to display etc, the "design" will be saved in an XHTML file for deployment along with a basic stylesheet. **Any help with extracting the data from the db would be most helpful.** I have looked at some of the functions in the MS word module (which gets the "lead" field structure for example, but no schema information) as a starting point but it doesn't go far enough and also has hardcoded wsdl structures. I also have some ideas to develop the webform module further once I get the basics working: Possibly use a Javascript SOAP library, so no client-side "server scripting" language like PHP would be needed at all (fully platform agnostic). Or, enable the form to be so standalone that other contributors could write client form processors in other languages like ASP, Ruby, Java etc... Improvements in end-user functionality such as addition of optional calendar features for using the form for booking appointments/events, adding a unique UUID to individual mail campaign emails (or just campaigns) so when a new user hit's the form, we know how he got there... And a few others ideas too. Sorry again for the length. Alan -- The way out is open! http://www.theopensourcerer.com From nolan at peaceworks.ca Tue Apr 8 17:39:09 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 17:39:09 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> Message-ID: <8292881.6651207690749583.JavaMail.root@zimbra> hey... I agree with Torsten. The Custom Field stuff is important. For the same reason, actually, I think the Reports stuff is pretty valuable, too. Based on the replies so far, though... 1. I've submitted a request for a forge project for the AutoEmail stuff, and am in conversation with Joe on that. I'll make sure to keep this list apprised of any developments as things move forward there. 2. I'll start pulling together some of the Custom Field stuff tonight so that I can let people know what's all involved. I'm thinking that this particular one may be a fairly easy port to 5.0.4 if the decisions I made stand the test of community inspection. Even if not, I think it'll still be pretty quick. It's really not all that complex in the end. peace, Nolan PeaceWorks Computer Consulting Inc. www.peaceworks.ca Empowering People We Believe In ----- "Torsten Zenk" wrote: > Hi everybody, > besides the fact that all of these modules sound very interesting i > think #6 is the most interesting for the majority of vTiger-users, as > the custom fields do play a BIG role in setting up different setups of > vTiger for different usage. The custom fields feature is a vast Plus > within vtiger already, a little more extended makes it even vaster, to > leave my few words on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything > around vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email > list > system. The design we have accorded with Imed, has more or less the > same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it > as > an opensource extension on the forge. > I have been given permission to speak in their name and help > Peaceworks > to port their extension to 5.0.4 and make it available to the > community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an > email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention > my client, who have generously agreed to contribute this work that > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > Canada. ( www.sutherland-schultz.com ) > > It looks like this is the way to proceed. I think what I'll do is > start pulling together some screenshots and example code chunks for > each of the features, and send them to Prasad so they can check them > out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) > they have some client-specific parts that we will want to excise > (stuff that I don't think is very useful for the community at large) > before they are contributed. The upshot is that it will take a little > bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there > are certain things that would be *really* helpful to someone, I could > see us prioritizing them so that we do those first. Not sure we'll be > able to get everything together for a single version release (thanks > for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, > we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From prasad at vtiger.com Wed Apr 9 11:31:16 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 9 Apr 2008 21:01:16 +0530 Subject: [Vtigercrm-developers] Hello and the webform module In-Reply-To: <47FBDBD3.60602@gmail.com> References: <47FBDBD3.60602@gmail.com> Message-ID: <39d18b250804090831n27af6b6crc36846b746865848@mail.gmail.com> Hi Alan, Good to see you got started on the developer list. vtiger CRM uses adodb library: http://adodb.sourceforge.net/ Look at vtigercrm/include/database/PearDatabase.php which uses adodb functions. Regards, Prasad vtiger Team On 4/9/08, Alan Lord wrote: > > Sorry in advance - this is quite a long message... > ---------- > > Hello. > > I'm Alan, and I run an Open Source training, consulting and support > services business here in the UK. > > We have been "playing" with vtiger for some time and now would like to > contribute something back. > > I have recently been looking at the webform module and have some ideas, > but I am struggling to get passed first base due to the db abstraction > library and some rather obfuscated code... > > Anyway, first, A brief idea of what I'd like to do with the webform > module: > > 1. Abstract the client side so that there is minimal or no hardcoding of > form parameters and eliminate the need for manual duplication of lists > of php arrays in 5 or 6 places as is now the case. > 2. Migrate the forms to be valid XHTML (no tables) with external > stylesheet(s). > 3. Option to notify admin or other vtiger user by email that a form has > been submitted. > 4. Introduce a nice and friendly form builder (probably using something > like the dojo toolkit to give a good user experience). > > > With respect to the above I have done some work already. > > 1. During some initial hacking, the client end of the webform package > now has a single array construct which holds the basic form field > parameters and labels etc in config.php. This is the only place - on the > client side - where changes need to be made to alter your form's basic > field layout and structure. However, the interaction to the server is > not fixed. The vtiger file soap/webform.php needs manually hacking in > several places to match the client side configuration. > 2. This is kind of done. > 3. Sort of done. It works but the email notification is done at the > client end. This depends on the client server having sendmail(). I'd > like to move this function back to vtiger. Don't think it should be too > hard, but haven't looked into it yet. > 4. Not started > > Completing "1." above is giving me a headache! > > What I am trying to achieve is something along the following lines: > > *Start the client end "form building process" > *Select the type of form you'd like to make/edit > *Upload the schema for the relevant fields from the user's vtiger > installation and use that information to create the basic form layout > data... > > It is here's where I am stuck. Is there any decent documentation on the > database abstraction library that is being used? I find even simple > queries respond with vast amounts of superfluous data. For example a > query like: > > "SHOW TABLES LIKE 'vtiger_".$form."%'" > > responds with the data but also with a tremendous amount of noise. And > with that particular query I can't seem to iterate through the result > and filter it because of using a wildcard in the query. Any ideas? > > My plan is generate an xml schema for the fields that are available for > a particular kind of form. This would be used to generate the wsdl on > vtiger and be cached in a local (client-side) file and only updated as > and when necessary. The benefit being it will display any custom fields > or should vtiger's schema change with a new release, no manual updating > would be necessary. > > The client side Form Builder would be able to use this data to build the > initial UI and when the user has selected the fields to display etc, > the "design" will be saved in an XHTML file for deployment along with a > basic stylesheet. > > **Any help with extracting the data from the db would be most helpful.** > > I have looked at some of the functions in the MS word module (which gets > the "lead" field structure for example, but no schema information) as a > starting point but it doesn't go far enough and also has hardcoded wsdl > structures. > > I also have some ideas to develop the webform module further once I get > the basics working: > > Possibly use a Javascript SOAP library, so no client-side "server > scripting" language like PHP would be needed at all (fully platform > agnostic). Or, enable the form to be so standalone that other > contributors could write client form processors in other languages like > ASP, Ruby, Java etc... > > Improvements in end-user functionality such as addition of optional > calendar features for using the form for booking appointments/events, > adding a unique UUID to individual mail campaign emails (or just > campaigns) so when a new user hit's the form, we know how he got > there... And a few others ideas too. > > Sorry again for the length. > > Alan > > > -- > The way out is open! > http://www.theopensourcerer.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/590a9cb5/attachment.html From nolan at peaceworks.ca Thu Apr 10 01:28:23 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Thu, 10 Apr 2008 01:28:23 -0400 (EDT) Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <10479955.131207805299108.JavaMail.root@zimbra> Message-ID: <21806911.151207805303970.JavaMail.root@zimbra> OK... I'm not quite sure how to get started on this Custom Fields thing. Not having had the opportunity to contribute something substantial to this project, I'm not quite sure what the logistics should look like. So...what I've done is package up a first set of stuff, and attached it to this email as a zip. The zip includes: * new files I added * one file I massively altered: include/uifromdbutil.php - this file no longer exists, it's split between include/utils/EditViewUtil.php and DetailViewUtil.php, I believe * one set of instructions for applying my changes to modules/Settings/AddCustomFieldToDB.php In order to complete this, I'll need to either compile a whole bunch more instructions, or else make the changes to the 5.0.4 files myself. Here's where I ask for guidance. If I'm going to make the changes to the 5.0.4 files, I might as well do the port myself. However, going through the remaining files and making the instructions may not be less work. Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 (that's where we branched), but I don't think those will help anyone, will they? peace, Nolan -------------- next part -------------- A non-text attachment was scrubbed... Name: CustomFields.zip Type: application/zip Size: 48443 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/88d9f691/attachment.zip From prasad at vtiger.com Thu Apr 10 04:54:22 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 10 Apr 2008 14:24:22 +0530 Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <21806911.151207805303970.JavaMail.root@zimbra> References: <10479955.131207805299108.JavaMail.root@zimbra> <21806911.151207805303970.JavaMail.root@zimbra> Message-ID: <39d18b250804100154n71443e09s9f69187b317bfc8@mail.gmail.com> Hi Nolan, Good to see your code contribution. Providing the diffs would definitely be useful. Is it possible to include some screenshot to show the changes or enhancements made? Regards, Prasad vtiger Team On 4/10/08, Nolan Andres wrote: > > OK... > > I'm not quite sure how to get started on this Custom Fields thing. Not > having had the opportunity to contribute something substantial to this > project, I'm not quite sure what the logistics should look like. > > So...what I've done is package up a first set of stuff, and attached it to > this email as a zip. The zip includes: > > * new files I added > * one file I massively altered: include/uifromdbutil.php > - this file no longer exists, it's split between > include/utils/EditViewUtil.php and DetailViewUtil.php, I believe > * one set of instructions for applying my changes to > modules/Settings/AddCustomFieldToDB.php > > In order to complete this, I'll need to either compile a whole bunch more > instructions, or else make the changes to the 5.0.4 files myself. Here's > where I ask for guidance. If I'm going to make the changes to the 5.0.4 > files, I might as well do the port myself. However, going through the > remaining files and making the instructions may not be less work. > > Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 > (that's where we branched), but I don't think those will help anyone, will > they? > > peace, > > Nolan > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/037f53ca/attachment.html From greg at ct-net.org Thu Apr 10 07:10:59 2008 From: greg at ct-net.org (Gregory Machin) Date: Thu, 10 Apr 2008 13:10:59 +0200 Subject: [Vtigercrm-developers] thuderbird plugin not uploading the body for emails Message-ID: <47FDF5C3.1050809@ct-net.org> Hi When I try and use the thunderbird plugin it loses the body of the message and replaces it with "

Experience the difference. Thunderbird is developed and supported by Mozilla, a global community working together to make the Internet a better place for everyone.

For frequently asked questions, tips and general help, visit Thunderbird Help Center.

For product information, visit the Thunderbird Home Page.

" what would cause this ? i'm using thunderbird ver version 2.0.0.12 (20080213) on fedora core 8 linux thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From jcrisp at safeandsoundit.co.uk Thu Apr 10 13:14:35 2008 From: jcrisp at safeandsoundit.co.uk (John Crisp) Date: Thu, 10 Apr 2008 19:14:35 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <47FE4AFB.4010306@safeandsoundit.co.uk> Nolan Andres wrote: > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. > > Me too, but not for quite so long Re custom fields, the biggest bind is that 'LINKED' Custom Fields do not cross update from say an Account to a Contact or vice versa as say the address fields do - there is no linking beyond the point where a Lead is converted to an Account/Potential - at that point they are entities in their own right. I have had a play about with this for a while to see if I can get the fields to update with SQL triggers but am no coder and cannot get anything satisfactory - probably just lousy SQl syntax ! ANY improvement on the usability would be useful. If not, a change to the naming convention for 'LINKED' Custom Fields ;-) Absolutely brilliant to see people contributing stuff back so many thanks to you and your clients ! B. Rgds John From greg at ct-net.org Fri Apr 11 09:13:19 2008 From: greg at ct-net.org (Gregory Machin) Date: Fri, 11 Apr 2008 15:13:19 +0200 Subject: [Vtigercrm-developers] faq loosess leading spaces.. Message-ID: <47FF63EF.9070300@ct-net.org> Hi I have been creating some faq's today and I noticed that once u save the faq it loose all the leading spaces of each line and when u edit again it the spaces are there ... I have a faq that has alot of indentation (leading spaces) and with out it, it looks very messy.. how do I get past this ? notes work station > Using gedit to type the documents ... copy pasted into the faq and edited again to fit Using firefox 2.0.0.13 Using linux Fedora core 8 Thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From prasad at vtiger.com Fri Apr 11 13:35:36 2008 From: prasad at vtiger.com (Prasad) Date: Fri, 11 Apr 2008 23:05:36 +0530 Subject: [Vtigercrm-developers] faq loosess leading spaces.. In-Reply-To: <47FF63EF.9070300@ct-net.org> References: <47FF63EF.9070300@ct-net.org> Message-ID: <39d18b250804111035n334c1d1fwf8c54e98899ba35b@mail.gmail.com> Hi Gregory, The leading and trailing spaces are trimmed off from the input values in the following: File: include/utils/CommonUtils.php function setObjectValuesFromRequest($focus) The highlighted line of code can help you to preserve the leading and trailing spaces for Faq module record saving. NOTE: This code is based on vtiger 5.0.4 function setObjectValuesFromRequest($focus) { global $log; ... if(isset($_REQUEST['mode'])) { $focus->mode = $_REQUEST['mode']; } foreach($focus->column_fields as $fieldname => $val) { if(isset($_REQUEST[$fieldname])) { if(is_array($_REQUEST[$fieldname])) $value = $_REQUEST[$fieldname]; else if ($_REQUEST['module'] == 'Faq') $value = $_REQUEST[$fieldname]; else $value = trim($_REQUEST[$fieldname]); $focus->column_fields[$fieldname] = $value; } Hope you find this useful. Regards, Prasad vtiger Team On 4/11/08, Gregory Machin wrote: > > Hi > I have been creating some faq's today and I noticed that once u save the > faq it loose all the leading spaces of each line and when u edit again > it the spaces are there ... I have a faq that has alot of indentation > (leading spaces) and with out it, it looks very messy.. how do I get > past this ? > > notes > work station > > Using gedit to type the documents ... copy pasted into the faq and > edited again to fit > Using firefox 2.0.0.13 > Using linux Fedora core 8 > > Thanks > > > -- > Gregory Machin > CT-Net > www.ct-net.org > greg at ct-net.org > phone : +27 12 379 3497 > fax : +27 12 379 4113 > Cell : +27 72 524 8096 > > humans do not use the address > below its for trapping spam. > spamtrap imasucker at ct-net.org > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080411/6954b26c/attachment.html From prasad at vtiger.com Mon Apr 14 12:51:00 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 14 Apr 2008 22:21:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: <39d18b250804140951n40ef9e3bocfb2c6f5ff7088f@mail.gmail.com> Hi Nolan, Wanted to make a follow up on the contribution items. How are things coming along. I saw the forge project on email but didn't find any downloads. http://forge.vtiger.com/projects/autoemails/ Kindly keep us updated on the work progress, our community will be able to provide more assistance. Regards, Prasad vtiger Team On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080414/18aa8625/attachment.html From asha at vtiger.com Tue Apr 15 04:00:07 2008 From: asha at vtiger.com (Asha) Date: Tue, 15 Apr 2008 13:30:07 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: Hi Nolan, I agree with you. Security on Reports is also very important stuff. I would like to know the update on it and would be great if we can getting it ported to 5.0.4. Let me know if I can help you in this. On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/a7048e7a/attachment.html From leandro at hipertek.net Tue Apr 15 06:14:53 2008 From: leandro at hipertek.net (leandro at hipertek.net) Date: Tue, 15 Apr 2008 05:14:53 -0500 (COT) Subject: [Vtigercrm-developers] Oracle Support Message-ID: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im working too in to implement a customized Price Book (List of prices) by client, and improve the module for to have accounts/contacts by list and products by list and management of profitability by list of products and customized profitability of product in some list of prices. My question is: How i work for that the improves are evaluated and integrated in vtiger by default, how I work with other persons interested in help to port vtiger to oracle,really the oracle support need changes in the names of the tables, because the actual names present troubles for the max size of name in oracle. Im expecting for yours recomendations, it would be a fork named vtiger x oracle meanwhile this updates are integrated in the official version. Im expecting of yours comments and suggestions, Leandro Rache. Hipertek. From prasad at vtiger.com Tue Apr 15 07:47:24 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 15 Apr 2008 17:17:24 +0530 Subject: [Vtigercrm-developers] Oracle Support In-Reply-To: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> References: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Message-ID: <39d18b250804150447l2ff1774chbfda1d0a672b7e8c@mail.gmail.com> Hi Leandro, I would recommend you to create a project of forge for which can serve as an add-on for vtiger 5.0.4 to work with Oracle. This give our community direct access and they will be able to provide more support to your work. Regards, Prasad vtiger Team On 4/15/08, leandro at hipertek.net wrote: > > Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im > working too in to implement a customized Price Book (List of prices) by > client, and improve the module for to have accounts/contacts by list and > products by list and management of profitability by list of products and > customized profitability of product in some list of prices. My question > is: How i work for that the improves are evaluated and integrated in > vtiger by default, how I work with other persons interested in help to > port vtiger to oracle,really the oracle support need changes in the names > of the tables, because the actual names present troubles for the max size > of name in oracle. > > Im expecting for yours recomendations, it would be a fork named vtiger x > oracle meanwhile this updates are integrated in the official version. > > Im expecting of yours comments and suggestions, > > Leandro Rache. > Hipertek. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/28727221/attachment.html From chazarra.clement at gmail.com Tue Apr 22 11:10:20 2008 From: chazarra.clement at gmail.com (clement chazarra) Date: Tue, 22 Apr 2008 16:10:20 +0100 Subject: [Vtigercrm-developers] Custom field in list view Message-ID: Hi guys, I need a little help, I posted on the forum a question but didn't get any answer yet (http://forums.vtiger.com/viewtopic.php?p=64151) I am trying to display a custom field in a list view, for exemple the sale order list in a specific account should display my custom field cf_354. In 4.2.3 I made it work but cannot get it working with the same method in 5.0.4: In salesorder.php I add my custom field in var $list_fields = Array( 'Order No'=>Array('crmentity'=>'crmid'), 'Subject'=>Array('salesorder'=>'subject'), 'Account Name'=>Array('account'=>'accountid'), 'Quote Name'=>Array('quotes'=>'quoteid'), * 'My Custom field'=>Array('salesordercf'=>'cf_354'),* 'Total'=>Array('salesorder'=>'total'), 'Assigned To'=>Array('crmentity'=>'smownerid') ); var $list_fields_name = Array( 'Order No'=>'', 'Subject'=>'subject', 'Account Name'=>'account_id', 'Quote Name'=>'quote_id', * 'My Custom field'=>'cf_354',* 'Total'=>'hdnGrandTfdotal', 'Assigned To'=>'assigned_user_id' ); I also had a look for an error in the log, but none is logged.. If somebody get it working with the exact same method as in 4.2.3, I would be glad to know(It would mean that I made a mistake) else if somebody get it to work on 5.0.4, I would be very thankful for an hint. Bye guys, Clem -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080422/80e8c356/attachment.html From prasad at vtiger.com Tue Apr 22 15:00:17 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <39d18b250804221200n33a3ba44i90e0451f38aea1f8@mail.gmail.com> Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/8103cf05/attachment.html From scott at centritechsolutions.com Tue Apr 22 16:20:01 2008 From: scott at centritechsolutions.com (scott at centritechsolutions.com) Date: Tue, 22 Apr 2008 16:20:01 -0400 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <5822983184.20080422162001@centritechsolutions.com> What kind of features does it have? ------Original Mail------ From: "Prasad" To: Sent: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team From srini at vtiger.com Wed Apr 23 03:18:35 2008 From: srini at vtiger.com (Srini) Date: Wed, 23 Apr 2008 12:48:35 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn In-Reply-To: <5822983184.20080422162001@centritechsolutions.com> References: <5822983184.20080422162001@centritechsolutions.com> Message-ID: <391a06170804230018v102a429am1229492c2af69b1c@mail.gmail.com> Dear Team, As a starting point, the vQuickBooks add-on is developed to synchronize the Contacts from vtigerCRM and Customer List from QuickBooks via the QuickBooks - WebConnector. The Basic QuickBooks Integration frame work (free package - done by Keith Palmer) is used to develop this add-on. We welcome more questions, results and code contributions from our members to take this add-on into next level. Thanks & Regards, Srini On Wed, Apr 23, 2008 at 1:50 AM, wrote: > What kind of features does it have? > > > ------Original Mail------ > From: "Prasad" > To: > Sent: Wed, 23 Apr 2008 00:30:17 +0530 > Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn > > Dear Members, > > vtiger QuickBook Addon is now available on forge: > http://forge.vtiger.com/projects/vquickbooks/ > > version 1.0 downloads: > http://forge.vtiger.com/frs/?group_id=155&release_id=385 > > We encourage you to extend the support in testing, validating this AddOn > and > take it further from here. > > Regards, > Prasad > vtiger Team > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/7ed8b682/attachment.html From prasad at vtiger.com Thu Apr 24 09:11:40 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 24 Apr 2008 18:41:40 +0530 Subject: [Vtigercrm-developers] [FORUM:5901] Re: Quickbooks Export / Generic Accounting System Export In-Reply-To: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> References: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> Message-ID: <39d18b250804240611q65e7a21i36f038199f9b4674@mail.gmail.com> Dear Keith, We are glad to hear about the support you are extending for getting vtiger QuickBooks integration. I had a question: Is it possible to make WebConnector Application work without https? Regards, Prasad vtiger Team PS: vtiger Forum does not let you post URL's in the first post. On 4/24/08, keith at uglyslug.com wrote: > > > Hello, > > I\'m Keith Palmer the author of the QuickBooks PHP package that kmitz > mentioned here: > (on the Intuit forums... your forums won\'t allow me to post URLs because > I\'m a new user or something...) > > I\'d be interested in helping out as much as I can to help get vTiger > integrated with QuickBooks. If there\'s anything I can help with/features > that I can add to my package/code I can write/questions I can answer, by all > means let me know! > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080424/001f2ef7/attachment.html From denys.potapov at gmail.com Tue Apr 1 07:27:43 2008 From: denys.potapov at gmail.com (=?KOI8-R?B?5MXOydMg8M/UwdDP1w==?=) Date: Tue, 1 Apr 2008 14:27:43 +0300 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> Message-ID: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Hi Prasad, I'm working with Russian language pack and met some problems. Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix them using Vtiger track, but i ask you to include the phputf8 library ( http://phputf8.sourceforge.net/ ) into the vtiger core (vtigerCRM\include\phputf8). It work's fine on many projects (for example Joomla!), and it doing well with VTiger. The other thing that by default the GraphUtils.php uses Vera font: line 27: DEFINE("FF_FONT1",'Vera'); but it has no Cyrillic support. Probably it's better to change it to Arial. Will it be right if I add this issue on track. The last thing I think deals with any localisation. In Smarty Template 'Smarty/templates/ListViewEntries.tpl': line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! In both cases the plural form is added in template, that is absolutely unsuitable for localisation. For now we solve it by adding all this core (and template) files to language pack that is totally incorrect. What can be the solution? Best regards, Denys Potapov 2008/3/26, Prasad : > > Hi Denys, > > To use mb_strlen and mb_substr you need to enable mb_string php extension. > > Also check out this library: http://phputf8.sourceforge.net/ which has > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > If you work with this, kindly let us know your observations in more > details. > > Good luck. > > Regards, > Prasad > > > On 3/25/08, ????? ??????? wrote: > > > > Hi all! > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > use > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > Best regards, > > Denys Potapov > > > > _______________________________________________ > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/12fb3d82/attachment-0001.html From prasad at vtiger.com Tue Apr 1 08:04:45 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 1 Apr 2008 17:34:45 +0530 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Message-ID: <39d18b250804010504q59be1e00l9017d0a17ba6149e@mail.gmail.com> Hi Denys, Thank you for keep us updated on your work. You can update the comments on the trac ticket: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5245 with your findings. Also please create new tickets for other issues you have mentioned and suggest the fix also, this could be helpful for us and community. Regards, Prasad vtiger Team On 4/1/08, ????? ??????? wrote: > > Hi Prasad, > > > > I'm working with Russian language pack and met some problems. > > Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix > them using Vtiger track, but i ask you to include the phputf8 library ( > http://phputf8.sourceforge.net/ ) into the vtiger core > (vtigerCRM\include\phputf8). It work's fine on many projects (for example > Joomla!), and it doing well with VTiger. > > The other thing that by default the GraphUtils.php uses Vera font: > line 27: DEFINE("FF_FONT1",'Vera'); > but it has no Cyrillic support. Probably it's better to change it to > Arial. Will it be right if I add this issue on track. > > The last thing I think deals with any localisation. In Smarty Template > 'Smarty/templates/ListViewEntries.tpl': > line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! > line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} > ! > In both cases the plural form is added in template, that is absolutely > unsuitable for localisation. > > For now we solve it by adding all this core (and template) files to > language pack that is totally incorrect. What can be the solution? > > > > > Best regards, > Denys Potapov > > > > > > > > > > > 2008/3/26, Prasad : > > > > Hi Denys, > > > > To use mb_strlen and mb_substr you need to enable mb_string php > > extension. > > > > Also check out this library: http://phputf8.sourceforge.net/ which has > > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > > > If you work with this, kindly let us know your observations in more > > details. > > > > Good luck. > > > > Regards, > > Prasad > > > > > > On 3/25/08, ????? ??????? wrote: > > > > > > Hi all! > > > > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > > use > > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > > > > > > > > Best regards, > > > Denys Potapov > > > > > > _______________________________________________ > > > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/2584e57e/attachment-0001.html From stephen at cass-ltd.co.uk Tue Apr 1 08:38:47 2008 From: stephen at cass-ltd.co.uk (stephen at cass-ltd.co.uk) Date: Tue, 1 Apr 2008 13:38:47 +0100 Subject: [Vtigercrm-developers] PostgreSQL support Message-ID: <2b2cf48288ead57e23c7254ea0d5f05a@localhost> Hello all, I saw a thread in December about PostgreSQL support for VTiger. Jens Hamisch had done a fair amount of work to achieving this goal and I am wondering on the current status. Regards, Stephen. From ckwu at ck-erp.net Fri Apr 4 01:46:54 2008 From: ckwu at ck-erp.net (C K Wu) Date: Fri, 04 Apr 2008 13:46:54 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.27.1 released (with vTiger 5.0.4 connector) Message-ID: <47F5C0CE.2000200@ck-erp.net> Hi, folks, I have posted a new release, v.0.27.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, connector for AssetMan connector for Coppermine connector for Gallery2 connector for phpMyTicket enhanced navigation bar CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 22 modules - Administration, i18n, Contact Management, Customer Relationship, Customer Self Service, Vendor Relationship, Ledger, Bank Reconciliation, MRP, Warehouse, Inventory, Service, AP, AR, PO, SO, Quotation, POS for Cashier, POS for Manager, HR, Staff Self Service and Payroll. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Please report error and suggestion to the discussion group / mailing list, CK-ERP-en(at)googlegroups.com or CK-ERP-zh_CN(at)googlegroups.com . General history and expected development is available at the discussion group's Archive. Supported MiddleWares: AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; MyHandyRestaurant; PHPJB; FreightFleetManagementSystem; OpenX, LandShop, FreeRealty; IRM; LegalCase; MirrorMed, ClearHealth, OpenEMR; eGroupWare, Horde-GroupWare; Zencart, CRELoaded, osCMax, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger, XRMS; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net http://ck-erp.info Download is available from, http://sourceforge.net/projects/ck-erp http://gforge.oss.org.cn/projects/ck-erp http://gforge.lupaworld.com/projects/ck-erp http://gro.clinux.org/projects/ck-ledger Cheers, Wu Chiu Kay, aka CK Wu, aka CK (CK is the preferred alias) Hong Kong From nolan at peaceworks.ca Tue Apr 8 01:04:24 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 01:04:24 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <12613936.161207630770748.JavaMail.root@zimbra> Message-ID: <29762786.181207631064709.JavaMail.root@zimbra> Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. From brian at pr2k.com Tue Apr 8 01:35:16 2008 From: brian at pr2k.com (Brian Laughlin) Date: Mon, 7 Apr 2008 22:35:16 -0700 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: Wow, that is a great list. -----Original Message----- From: Nolan Andres [mailto:nolan at peaceworks.ca] Sent: Monday, April 07, 2008 10:04 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] List of potential contributions - feedback requested Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com From ddfire at gmail.com Tue Apr 8 08:07:58 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 09:07:58 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: all the items are VERY interesting. your list is a new version. vtiger 5.0.5 code name paceworks :-) thanks. David 2008/4/8 Nolan Andres : > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/fd8fa686/attachment-0001.html From prasad at vtiger.com Tue Apr 8 08:19:26 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:49:26 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080519n51d8eedel67f29fa691692b3d@mail.gmail.com> Hi Nolan Andres, Really a good piece of work. I would like to thank you and your client(s) for deciding to contribute back. If you can share code with us with more details that will make it easy to analyze it further. Regards, Prasad vtiger Team On 4/8/08, Nolan Andres wrote: > > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/1130ff0f/attachment-0001.html From prasad at vtiger.com Tue Apr 8 08:20:03 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:50:03 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Hi David, Interesting code name :) Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > all the items are VERY interesting. > your list is a new version. > vtiger 5.0.5 code name paceworks :-) > > thanks. > David > > 2008/4/8 Nolan Andres : > > > Hey, everyone... > > > > I've been lurking on this list for quite a while (could be 2 years!) For > > over 2 years, now, my company has been doing customization work on vTiger, > > most of it on a highly customized installation that is still running v4.2. > > > > The customizations are so extensive, and the transition from 4.2 to 5.0 > > was so rocky that the client has never been willing to make the move. They > > still aren't. > > > > However, we just got permission from them to contribute any useful > > modifications and modules to the project. Hooray! My company is willing to > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > for these components, but I wanted to post a short annotated list to find > > out whether any of these pieces might be of interest to the community, and > > if so, how they might be prioritized. > > > > Here's the list. Please let me know what you think. Any of these sound > > interesting? > > > > -------- > > 1. Auto-Email Standardization > > > > Our client found the vTiger email notification stuff disconcerting. > > Reasons for emails going out were not clearly enumerated or codified, and > > control over these emails was limited at best. We wrote a framework that > > provides a series of Auto-Email categories: > > * entity-created: sends when an entity of the chosen type is created > > * entity-altered: sends when an entity of the chosen type is altered > > * entity-deleted: sends when an entity of the chosen type is deleted > > * value-triggered: sends when a set of value conditions on an entity of > > the chosen type is met (can be scheduled, or reactive--on save) > > * scheduled custom: executes a custom function on schedule > > * scheduled report: emails a report on schedule > > > > A wide variety of options exist for sending the email notifications: > > * send to arbitrary email address(es) > > * send to user(s) > > * send to contact(s) > > * send to assigned user > > * send to team > > * do not send to triggering user > > * can send attachments > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > > > Subject and body are template-driven, allowing parameters from > > triggering entities of the chosen type. > > > > ------------------------------- > > > > 2. Google Earth Report Integration > > > > Provides a configuration tool (part of the report specification) that > > allows report attributes to be output within the context of a real-time KML > > feed as parts of a placemark. As an example, you can visualize the results > > of a report...say a report on your Accounts...in Google Earth...see the > > geographic distribution of your Accounts. > > > > ------------------------------- > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > Implements per-entity-type file repositories that can have internal > > folder hierarchies and maintain per-entity folders (no more clobbering files > > of the same name that were uploaded/attached to a different entity). > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > permissions on files and folders (optional). > > > > -------------------------------- > > > > 4. Timesheets > > > > I know TSolucio has one of these. We tried it out and it didn't match > > the needs we had very well. I suspect we'll just provide this one as an > > alternative to the TSolucio one from our website, just in case someone > > else's needs are more closely aligned with the ones our client had. > > > > --------------------------------- > > > > 5. Report Folder Permissions / Personal Report Folders > > > > We added Reports to the profile management functionality, and added a > > personal "My Reports" folder for each user. You can hide report folders from > > some users, allow certain users to create new reports or manage certain > > folders, etc. Each user has their own My Reports folder where they can > > create reports of their own. When users have access to view a Report (but > > not edit it) and they want to customize it, they can clone it to their My > > Reports folder and modify it there. > > > > ----------------------------------- > > > > 6. Custom Field Improvements > > > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > > management functionality that allows admin users to create more tabs, > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > them. Really useful when you have a lot of custom fields. When multiple tabs > > have not been created, the Custom Fields block looks as it normally does. > > Also allows Custom Fields to be renamed. > > > > ------------------------------------ > > > > > > As I said, we'd love to hear feedback on these. If there's anything that > > the vTiger project can use, we'd be happy to contribute them. We've done a > > lot of work with vTiger, and it's been a huge success both for us and for > > our client. It would be great to have the opportunity to contribute back. > > > > peace, > > Nolan Andres > > PeaceWorks Computer Consulting Inc. > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/80478339/attachment-0001.html From ddfire at gmail.com Tue Apr 8 09:37:23 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 10:37:23 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Message-ID: hi i am still looking for a complete or at least a almost complete guide to make a news module, i am not a programing guru but i can program a new module if i have a good guide.... any one? of course i will give the new modules to the community thanks David 2008/4/8 Prasad : > Hi David, > > Interesting code name :) > > Regards, > Prasad > vtiger Team > > > On 4/8/08, David fire wrote: > > > > all the items are VERY interesting. > > your list is a new version. > > vtiger 5.0.5 code name paceworks :-) > > > > thanks. > > David > > > > 2008/4/8 Nolan Andres : > > > > > Hey, everyone... > > > > > > I've been lurking on this list for quite a while (could be 2 years!) > > > For over 2 years, now, my company has been doing customization work on > > > vTiger, most of it on a highly customized installation that is still running > > > v4.2. > > > > > > The customizations are so extensive, and the transition from 4.2 to > > > 5.0 was so rocky that the client has never been willing to make the move. > > > They still aren't. > > > > > > However, we just got permission from them to contribute any useful > > > modifications and modules to the project. Hooray! My company is willing to > > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > > for these components, but I wanted to post a short annotated list to find > > > out whether any of these pieces might be of interest to the community, and > > > if so, how they might be prioritized. > > > > > > Here's the list. Please let me know what you think. Any of these sound > > > interesting? > > > > > > -------- > > > 1. Auto-Email Standardization > > > > > > Our client found the vTiger email notification stuff disconcerting. > > > Reasons for emails going out were not clearly enumerated or codified, and > > > control over these emails was limited at best. We wrote a framework that > > > provides a series of Auto-Email categories: > > > * entity-created: sends when an entity of the chosen type is created > > > * entity-altered: sends when an entity of the chosen type is altered > > > * entity-deleted: sends when an entity of the chosen type is deleted > > > * value-triggered: sends when a set of value conditions on an entity > > > of the chosen type is met (can be scheduled, or reactive--on save) > > > * scheduled custom: executes a custom function on schedule > > > * scheduled report: emails a report on schedule > > > > > > A wide variety of options exist for sending the email notifications: > > > * send to arbitrary email address(es) > > > * send to user(s) > > > * send to contact(s) > > > * send to assigned user > > > * send to team > > > * do not send to triggering user > > > * can send attachments > > > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each > > > minute > > > > > > Subject and body are template-driven, allowing parameters from > > > triggering entities of the chosen type. > > > > > > ------------------------------- > > > > > > 2. Google Earth Report Integration > > > > > > Provides a configuration tool (part of the report specification) that > > > allows report attributes to be output within the context of a real-time KML > > > feed as parts of a placemark. As an example, you can visualize the results > > > of a report...say a report on your Accounts...in Google Earth...see the > > > geographic distribution of your Accounts. > > > > > > ------------------------------- > > > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > > > Implements per-entity-type file repositories that can have internal > > > folder hierarchies and maintain per-entity folders (no more clobbering files > > > of the same name that were uploaded/attached to a different entity). > > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > > permissions on files and folders (optional). > > > > > > -------------------------------- > > > > > > 4. Timesheets > > > > > > I know TSolucio has one of these. We tried it out and it didn't match > > > the needs we had very well. I suspect we'll just provide this one as an > > > alternative to the TSolucio one from our website, just in case someone > > > else's needs are more closely aligned with the ones our client had. > > > > > > --------------------------------- > > > > > > 5. Report Folder Permissions / Personal Report Folders > > > > > > We added Reports to the profile management functionality, and added a > > > personal "My Reports" folder for each user. You can hide report folders from > > > some users, allow certain users to create new reports or manage certain > > > folders, etc. Each user has their own My Reports folder where they can > > > create reports of their own. When users have access to view a Report (but > > > not edit it) and they want to customize it, they can clone it to their My > > > Reports folder and modify it there. > > > > > > ----------------------------------- > > > > > > 6. Custom Field Improvements > > > > > > We put the custom fields inside a tabbed (JS) block. Added Custom > > > Field management functionality that allows admin users to create more tabs, > > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > > them. Really useful when you have a lot of custom fields. When multiple tabs > > > have not been created, the Custom Fields block looks as it normally does. > > > Also allows Custom Fields to be renamed. > > > > > > ------------------------------------ > > > > > > > > > As I said, we'd love to hear feedback on these. If there's anything > > > that the vTiger project can use, we'd be happy to contribute them. We've > > > done a lot of work with vTiger, and it's been a huge success both for us and > > > for our client. It would be great to have the opportunity to contribute > > > back. > > > > > > peace, > > > Nolan Andres > > > PeaceWorks Computer Consulting Inc. > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/2093e151/attachment-0001.html From ddfire at gmail.com Tue Apr 8 10:01:20 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:01:20 -0300 Subject: [Vtigercrm-developers] a little bug? Message-ID: hi i have added some custom fields and then i edited the sql to change the blocks where the cf are. now i am trying to disable this fields for one profile but nothing happened... i disabled a normal field and it works. what can i do? thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/de651461/attachment-0001.html From nolan at peaceworks.ca Tue Apr 8 10:15:22 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 10:15:22 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32250839.1271207664065154.JavaMail.root@zimbra> Message-ID: <32428513.1321207664122063.JavaMail.root@zimbra> Hey... Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. Prasad, should I send the code to you, or should I just post it here? peace, Nolan ----- "Prasad" wrote: > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > From ddfire at gmail.com Tue Apr 8 10:21:04 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:21:04 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: hi i think the most important upgrade is the 6. Custom Field Improvements this should go first. David 2008/4/8 Nolan Andres : > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/a1597200/attachment-0001.html From james at sitek.com.au Tue Apr 8 10:26:59 2008 From: james at sitek.com.au (James Moey) Date: Wed, 09 Apr 2008 00:26:59 +1000 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <47FB80B3.3060003@sitek.com.au> I can help with the porting. I am interested in Custom Field Improvement as well. I have some experience in block and JS. I would be more than happy to port that over to 5.0.4. Regards, James Nolan Andres wrote: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > >> Hi Nolan Andres, >> >> Really a good piece of work. I would like to thank you and your >> client(s) for deciding to contribute back. >> >> If you can share code with us with more details that will make it easy >> to analyze it further. >> >> Regards, >> Prasad >> vtiger Team >> >> >> > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/0ffc52d3/attachment-0001.html From prasad at vtiger.com Tue Apr 8 10:29:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 19:59:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <39d18b250804080729v7b70c418o77c0b1c09a3365f2@mail.gmail.com> Hi Nolan Andres, Thank you very much for taking more initiative. Kindly share code with me and also put CC to out developer list This way our developers can enhance the interesting feature a bit more. It will definitely take more time for us to analyze the code contribution, so please be patient till then. Hope you don't mind if we get back to you for any clarifications. Regards, Prasad On 4/8/08, Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > > Nolan > > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/c2b721b5/attachment-0001.html From prasad at vtiger.com Tue Apr 8 10:37:15 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:07:15 +0530 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: References: Message-ID: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Hi David, What changes did you make to change the blocks for the custom field? Can you please check if without change the blocks, the custom field can be disabled for the profile? Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > hi > i have added some custom fields and then i edited the sql to change the > blocks where the cf are. > now i am trying to disable this fields for one profile but nothing > happened... i disabled a normal field and it works. > what can i do? > thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/eec1f14b/attachment-0001.html From prasad at vtiger.com Tue Apr 8 10:39:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:09:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FB80B3.3060003@sitek.com.au> References: <32428513.1321207664122063.JavaMail.root@zimbra> <47FB80B3.3060003@sitek.com.au> Message-ID: <39d18b250804080739o6e8b2d69q76328f7031339384@mail.gmail.com> Hi James, Thank you for taking up the initiative. I have asked Nolan to copy over the code contribution, please keep watching the thread. Regards, Prasad vtiger Team On 4/8/08, James Moey wrote: > > I can help with the porting. I am interested in Custom Field Improvement > as well. I have some experience in block and JS. I would be more than happy > to port that over to 5.0.4. > > Regards, > James > > Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/8621afb5/attachment-0001.html From ddfire at gmail.com Tue Apr 8 10:52:30 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:52:30 -0300 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> References: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Message-ID: i only change the field block inthe vtiger_field table i created a new profile and it works perfect. thanks David 2008/4/8 Prasad : > Hi David, > > What changes did you make to change the blocks for the custom field? > > Can you please check if without change the blocks, the custom field can be > disabled for the profile? > > Regards, > Prasad > vtiger Team > > On 4/8/08, David fire wrote: > > > hi > > i have added some custom fields and then i edited the sql to change the > > blocks where the cf are. > > now i am trying to disable this fields for one profile but nothing > > happened... i disabled a normal field and it works. > > what can i do? > > thanks > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/d229f8e4/attachment-0001.html From joe at tsolucio.com Tue Apr 8 11:33:21 2008 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 08 Apr 2008 17:33:21 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <1207668801.26617.40.camel@joesunix.int> Hi All, I have been contracted by IMED Mobility to create a vtigerCRM email list system. The design we have accorded with Imed, has more or less the same goals as Peaceworks/Sutherland-Schultz number 1 extension. Imed decided to fund the development of the extension and release it as an opensource extension on the forge. I have been given permission to speak in their name and help Peaceworks to port their extension to 5.0.4 and make it available to the community, on the forge and in the base product if vtiger team sees it fit. At the moment I would like to thank Peaceworks and Sutherland-Schultz for there contribution. Nolan, if you are interested in working with TSolucio drop me an email. We will set up a forge project and port your mailing system to 5.0.4 Regards, Joe TSolucio El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From prasad at vtiger.com Tue Apr 8 12:50:00 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:20:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <39d18b250804080950h486d1609tadc37ba99498536@mail.gmail.com> Hi Joe, Thank you for the updates Joe. We have are being informed about several extensions on the mailing part of vtiger CRM. Glad to see your initiative on the item 1. Regards, Prasad vtiger Team On 4/8/08, Joe Bordes wrote: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, we > might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > > Hi Nolan Andres, > > > > > > Really a good piece of work. I would like to thank you and your > > > client(s) for deciding to contribute back. > > > > > > If you can share code with us with more details that will make it easy > > > to analyze it further. > > > > > > Regards, > > > Prasad > > > vtiger Team > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/7353fe0f/attachment-0001.html From tzenk at gmx.net Tue Apr 8 12:55:08 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 08 Apr 2008 18:55:08 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <47FBA36C.5020301@gmx.net> Hi everybody, besides the fact that all of these modules sound very interesting i think #6 is the most interesting for the majority of vTiger-users, as the custom fields do play a BIG role in setting up different setups of vTiger for different usage. The custom fields feature is a vast Plus within vtiger already, a little more extended makes it even vaster, to leave my few words on this. And as always: If you wizards need an extensive themer /tester / documenter/ translator (native german/ native english) on anything around vTiger count me in. Greetings Torsten Zenk Joe Bordes schrieb: > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > >> Hey... >> >> Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) >> >> It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. >> >> As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. >> >> That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) >> >> If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. >> >> Prasad, should I send the code to you, or should I just post it here? >> >> peace, >> Nolan >> >> >> ----- "Prasad" wrote: >> >> >>> Hi Nolan Andres, >>> >>> Really a good piece of work. I would like to thank you and your >>> client(s) for deciding to contribute back. >>> >>> If you can share code with us with more details that will make it easy >>> to analyze it further. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> >>> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/82607ff9/attachment-0001.html From prasad at vtiger.com Tue Apr 8 13:11:46 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:41:46 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> <47FBA36C.5020301@gmx.net> Message-ID: <39d18b250804081011j6f173a19u74071920c23dcff4@mail.gmail.com> Hi Torsten, Glad to hear about your involvement :) Regards, Prasad On 4/8/08, Torsten Zenk wrote: > > Hi everybody, > besides the fact that all of these modules sound very interesting i think > #6 is the most interesting for the majority of vTiger-users, as the custom > fields do play a BIG role in setting up different setups of vTiger for > different usage. The custom fields feature is a vast Plus within vtiger > already, a little more extended makes it even vaster, to leave my few words > on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything around > vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/6ff25893/attachment-0001.html From alanslists at gmail.com Tue Apr 8 16:55:47 2008 From: alanslists at gmail.com (Alan Lord) Date: Tue, 08 Apr 2008 21:55:47 +0100 Subject: [Vtigercrm-developers] Hello and the webform module Message-ID: <47FBDBD3.60602@gmail.com> Sorry in advance - this is quite a long message... ---------- Hello. I'm Alan, and I run an Open Source training, consulting and support services business here in the UK. We have been "playing" with vtiger for some time and now would like to contribute something back. I have recently been looking at the webform module and have some ideas, but I am struggling to get passed first base due to the db abstraction library and some rather obfuscated code... Anyway, first, A brief idea of what I'd like to do with the webform module: 1. Abstract the client side so that there is minimal or no hardcoding of form parameters and eliminate the need for manual duplication of lists of php arrays in 5 or 6 places as is now the case. 2. Migrate the forms to be valid XHTML (no tables) with external stylesheet(s). 3. Option to notify admin or other vtiger user by email that a form has been submitted. 4. Introduce a nice and friendly form builder (probably using something like the dojo toolkit to give a good user experience). With respect to the above I have done some work already. 1. During some initial hacking, the client end of the webform package now has a single array construct which holds the basic form field parameters and labels etc in config.php. This is the only place - on the client side - where changes need to be made to alter your form's basic field layout and structure. However, the interaction to the server is not fixed. The vtiger file soap/webform.php needs manually hacking in several places to match the client side configuration. 2. This is kind of done. 3. Sort of done. It works but the email notification is done at the client end. This depends on the client server having sendmail(). I'd like to move this function back to vtiger. Don't think it should be too hard, but haven't looked into it yet. 4. Not started Completing "1." above is giving me a headache! What I am trying to achieve is something along the following lines: *Start the client end "form building process" *Select the type of form you'd like to make/edit *Upload the schema for the relevant fields from the user's vtiger installation and use that information to create the basic form layout data... It is here's where I am stuck. Is there any decent documentation on the database abstraction library that is being used? I find even simple queries respond with vast amounts of superfluous data. For example a query like: "SHOW TABLES LIKE 'vtiger_".$form."%'" responds with the data but also with a tremendous amount of noise. And with that particular query I can't seem to iterate through the result and filter it because of using a wildcard in the query. Any ideas? My plan is generate an xml schema for the fields that are available for a particular kind of form. This would be used to generate the wsdl on vtiger and be cached in a local (client-side) file and only updated as and when necessary. The benefit being it will display any custom fields or should vtiger's schema change with a new release, no manual updating would be necessary. The client side Form Builder would be able to use this data to build the initial UI and when the user has selected the fields to display etc, the "design" will be saved in an XHTML file for deployment along with a basic stylesheet. **Any help with extracting the data from the db would be most helpful.** I have looked at some of the functions in the MS word module (which gets the "lead" field structure for example, but no schema information) as a starting point but it doesn't go far enough and also has hardcoded wsdl structures. I also have some ideas to develop the webform module further once I get the basics working: Possibly use a Javascript SOAP library, so no client-side "server scripting" language like PHP would be needed at all (fully platform agnostic). Or, enable the form to be so standalone that other contributors could write client form processors in other languages like ASP, Ruby, Java etc... Improvements in end-user functionality such as addition of optional calendar features for using the form for booking appointments/events, adding a unique UUID to individual mail campaign emails (or just campaigns) so when a new user hit's the form, we know how he got there... And a few others ideas too. Sorry again for the length. Alan -- The way out is open! http://www.theopensourcerer.com From nolan at peaceworks.ca Tue Apr 8 17:39:09 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 17:39:09 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> Message-ID: <8292881.6651207690749583.JavaMail.root@zimbra> hey... I agree with Torsten. The Custom Field stuff is important. For the same reason, actually, I think the Reports stuff is pretty valuable, too. Based on the replies so far, though... 1. I've submitted a request for a forge project for the AutoEmail stuff, and am in conversation with Joe on that. I'll make sure to keep this list apprised of any developments as things move forward there. 2. I'll start pulling together some of the Custom Field stuff tonight so that I can let people know what's all involved. I'm thinking that this particular one may be a fairly easy port to 5.0.4 if the decisions I made stand the test of community inspection. Even if not, I think it'll still be pretty quick. It's really not all that complex in the end. peace, Nolan PeaceWorks Computer Consulting Inc. www.peaceworks.ca Empowering People We Believe In ----- "Torsten Zenk" wrote: > Hi everybody, > besides the fact that all of these modules sound very interesting i > think #6 is the most interesting for the majority of vTiger-users, as > the custom fields do play a BIG role in setting up different setups of > vTiger for different usage. The custom fields feature is a vast Plus > within vtiger already, a little more extended makes it even vaster, to > leave my few words on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything > around vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email > list > system. The design we have accorded with Imed, has more or less the > same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it > as > an opensource extension on the forge. > I have been given permission to speak in their name and help > Peaceworks > to port their extension to 5.0.4 and make it available to the > community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an > email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention > my client, who have generously agreed to contribute this work that > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > Canada. ( www.sutherland-schultz.com ) > > It looks like this is the way to proceed. I think what I'll do is > start pulling together some screenshots and example code chunks for > each of the features, and send them to Prasad so they can check them > out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) > they have some client-specific parts that we will want to excise > (stuff that I don't think is very useful for the community at large) > before they are contributed. The upshot is that it will take a little > bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there > are certain things that would be *really* helpful to someone, I could > see us prioritizing them so that we do those first. Not sure we'll be > able to get everything together for a single version release (thanks > for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, > we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From prasad at vtiger.com Wed Apr 9 11:31:16 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 9 Apr 2008 21:01:16 +0530 Subject: [Vtigercrm-developers] Hello and the webform module In-Reply-To: <47FBDBD3.60602@gmail.com> References: <47FBDBD3.60602@gmail.com> Message-ID: <39d18b250804090831n27af6b6crc36846b746865848@mail.gmail.com> Hi Alan, Good to see you got started on the developer list. vtiger CRM uses adodb library: http://adodb.sourceforge.net/ Look at vtigercrm/include/database/PearDatabase.php which uses adodb functions. Regards, Prasad vtiger Team On 4/9/08, Alan Lord wrote: > > Sorry in advance - this is quite a long message... > ---------- > > Hello. > > I'm Alan, and I run an Open Source training, consulting and support > services business here in the UK. > > We have been "playing" with vtiger for some time and now would like to > contribute something back. > > I have recently been looking at the webform module and have some ideas, > but I am struggling to get passed first base due to the db abstraction > library and some rather obfuscated code... > > Anyway, first, A brief idea of what I'd like to do with the webform > module: > > 1. Abstract the client side so that there is minimal or no hardcoding of > form parameters and eliminate the need for manual duplication of lists > of php arrays in 5 or 6 places as is now the case. > 2. Migrate the forms to be valid XHTML (no tables) with external > stylesheet(s). > 3. Option to notify admin or other vtiger user by email that a form has > been submitted. > 4. Introduce a nice and friendly form builder (probably using something > like the dojo toolkit to give a good user experience). > > > With respect to the above I have done some work already. > > 1. During some initial hacking, the client end of the webform package > now has a single array construct which holds the basic form field > parameters and labels etc in config.php. This is the only place - on the > client side - where changes need to be made to alter your form's basic > field layout and structure. However, the interaction to the server is > not fixed. The vtiger file soap/webform.php needs manually hacking in > several places to match the client side configuration. > 2. This is kind of done. > 3. Sort of done. It works but the email notification is done at the > client end. This depends on the client server having sendmail(). I'd > like to move this function back to vtiger. Don't think it should be too > hard, but haven't looked into it yet. > 4. Not started > > Completing "1." above is giving me a headache! > > What I am trying to achieve is something along the following lines: > > *Start the client end "form building process" > *Select the type of form you'd like to make/edit > *Upload the schema for the relevant fields from the user's vtiger > installation and use that information to create the basic form layout > data... > > It is here's where I am stuck. Is there any decent documentation on the > database abstraction library that is being used? I find even simple > queries respond with vast amounts of superfluous data. For example a > query like: > > "SHOW TABLES LIKE 'vtiger_".$form."%'" > > responds with the data but also with a tremendous amount of noise. And > with that particular query I can't seem to iterate through the result > and filter it because of using a wildcard in the query. Any ideas? > > My plan is generate an xml schema for the fields that are available for > a particular kind of form. This would be used to generate the wsdl on > vtiger and be cached in a local (client-side) file and only updated as > and when necessary. The benefit being it will display any custom fields > or should vtiger's schema change with a new release, no manual updating > would be necessary. > > The client side Form Builder would be able to use this data to build the > initial UI and when the user has selected the fields to display etc, > the "design" will be saved in an XHTML file for deployment along with a > basic stylesheet. > > **Any help with extracting the data from the db would be most helpful.** > > I have looked at some of the functions in the MS word module (which gets > the "lead" field structure for example, but no schema information) as a > starting point but it doesn't go far enough and also has hardcoded wsdl > structures. > > I also have some ideas to develop the webform module further once I get > the basics working: > > Possibly use a Javascript SOAP library, so no client-side "server > scripting" language like PHP would be needed at all (fully platform > agnostic). Or, enable the form to be so standalone that other > contributors could write client form processors in other languages like > ASP, Ruby, Java etc... > > Improvements in end-user functionality such as addition of optional > calendar features for using the form for booking appointments/events, > adding a unique UUID to individual mail campaign emails (or just > campaigns) so when a new user hit's the form, we know how he got > there... And a few others ideas too. > > Sorry again for the length. > > Alan > > > -- > The way out is open! > http://www.theopensourcerer.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/590a9cb5/attachment-0001.html From nolan at peaceworks.ca Thu Apr 10 01:28:23 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Thu, 10 Apr 2008 01:28:23 -0400 (EDT) Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <10479955.131207805299108.JavaMail.root@zimbra> Message-ID: <21806911.151207805303970.JavaMail.root@zimbra> OK... I'm not quite sure how to get started on this Custom Fields thing. Not having had the opportunity to contribute something substantial to this project, I'm not quite sure what the logistics should look like. So...what I've done is package up a first set of stuff, and attached it to this email as a zip. The zip includes: * new files I added * one file I massively altered: include/uifromdbutil.php - this file no longer exists, it's split between include/utils/EditViewUtil.php and DetailViewUtil.php, I believe * one set of instructions for applying my changes to modules/Settings/AddCustomFieldToDB.php In order to complete this, I'll need to either compile a whole bunch more instructions, or else make the changes to the 5.0.4 files myself. Here's where I ask for guidance. If I'm going to make the changes to the 5.0.4 files, I might as well do the port myself. However, going through the remaining files and making the instructions may not be less work. Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 (that's where we branched), but I don't think those will help anyone, will they? peace, Nolan -------------- next part -------------- A non-text attachment was scrubbed... Name: CustomFields.zip Type: application/zip Size: 48443 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/88d9f691/attachment-0001.zip From prasad at vtiger.com Thu Apr 10 04:54:22 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 10 Apr 2008 14:24:22 +0530 Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <21806911.151207805303970.JavaMail.root@zimbra> References: <10479955.131207805299108.JavaMail.root@zimbra> <21806911.151207805303970.JavaMail.root@zimbra> Message-ID: <39d18b250804100154n71443e09s9f69187b317bfc8@mail.gmail.com> Hi Nolan, Good to see your code contribution. Providing the diffs would definitely be useful. Is it possible to include some screenshot to show the changes or enhancements made? Regards, Prasad vtiger Team On 4/10/08, Nolan Andres wrote: > > OK... > > I'm not quite sure how to get started on this Custom Fields thing. Not > having had the opportunity to contribute something substantial to this > project, I'm not quite sure what the logistics should look like. > > So...what I've done is package up a first set of stuff, and attached it to > this email as a zip. The zip includes: > > * new files I added > * one file I massively altered: include/uifromdbutil.php > - this file no longer exists, it's split between > include/utils/EditViewUtil.php and DetailViewUtil.php, I believe > * one set of instructions for applying my changes to > modules/Settings/AddCustomFieldToDB.php > > In order to complete this, I'll need to either compile a whole bunch more > instructions, or else make the changes to the 5.0.4 files myself. Here's > where I ask for guidance. If I'm going to make the changes to the 5.0.4 > files, I might as well do the port myself. However, going through the > remaining files and making the instructions may not be less work. > > Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 > (that's where we branched), but I don't think those will help anyone, will > they? > > peace, > > Nolan > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/037f53ca/attachment-0001.html From greg at ct-net.org Thu Apr 10 07:10:59 2008 From: greg at ct-net.org (Gregory Machin) Date: Thu, 10 Apr 2008 13:10:59 +0200 Subject: [Vtigercrm-developers] thuderbird plugin not uploading the body for emails Message-ID: <47FDF5C3.1050809@ct-net.org> Hi When I try and use the thunderbird plugin it loses the body of the message and replaces it with "

Experience the difference. Thunderbird is developed and supported by Mozilla, a global community working together to make the Internet a better place for everyone.

For frequently asked questions, tips and general help, visit Thunderbird Help Center.

For product information, visit the Thunderbird Home Page.

" what would cause this ? i'm using thunderbird ver version 2.0.0.12 (20080213) on fedora core 8 linux thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From jcrisp at safeandsoundit.co.uk Thu Apr 10 13:14:35 2008 From: jcrisp at safeandsoundit.co.uk (John Crisp) Date: Thu, 10 Apr 2008 19:14:35 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <47FE4AFB.4010306@safeandsoundit.co.uk> Nolan Andres wrote: > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. > > Me too, but not for quite so long Re custom fields, the biggest bind is that 'LINKED' Custom Fields do not cross update from say an Account to a Contact or vice versa as say the address fields do - there is no linking beyond the point where a Lead is converted to an Account/Potential - at that point they are entities in their own right. I have had a play about with this for a while to see if I can get the fields to update with SQL triggers but am no coder and cannot get anything satisfactory - probably just lousy SQl syntax ! ANY improvement on the usability would be useful. If not, a change to the naming convention for 'LINKED' Custom Fields ;-) Absolutely brilliant to see people contributing stuff back so many thanks to you and your clients ! B. Rgds John From greg at ct-net.org Fri Apr 11 09:13:19 2008 From: greg at ct-net.org (Gregory Machin) Date: Fri, 11 Apr 2008 15:13:19 +0200 Subject: [Vtigercrm-developers] faq loosess leading spaces.. Message-ID: <47FF63EF.9070300@ct-net.org> Hi I have been creating some faq's today and I noticed that once u save the faq it loose all the leading spaces of each line and when u edit again it the spaces are there ... I have a faq that has alot of indentation (leading spaces) and with out it, it looks very messy.. how do I get past this ? notes work station > Using gedit to type the documents ... copy pasted into the faq and edited again to fit Using firefox 2.0.0.13 Using linux Fedora core 8 Thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From prasad at vtiger.com Fri Apr 11 13:35:36 2008 From: prasad at vtiger.com (Prasad) Date: Fri, 11 Apr 2008 23:05:36 +0530 Subject: [Vtigercrm-developers] faq loosess leading spaces.. In-Reply-To: <47FF63EF.9070300@ct-net.org> References: <47FF63EF.9070300@ct-net.org> Message-ID: <39d18b250804111035n334c1d1fwf8c54e98899ba35b@mail.gmail.com> Hi Gregory, The leading and trailing spaces are trimmed off from the input values in the following: File: include/utils/CommonUtils.php function setObjectValuesFromRequest($focus) The highlighted line of code can help you to preserve the leading and trailing spaces for Faq module record saving. NOTE: This code is based on vtiger 5.0.4 function setObjectValuesFromRequest($focus) { global $log; ... if(isset($_REQUEST['mode'])) { $focus->mode = $_REQUEST['mode']; } foreach($focus->column_fields as $fieldname => $val) { if(isset($_REQUEST[$fieldname])) { if(is_array($_REQUEST[$fieldname])) $value = $_REQUEST[$fieldname]; else if ($_REQUEST['module'] == 'Faq') $value = $_REQUEST[$fieldname]; else $value = trim($_REQUEST[$fieldname]); $focus->column_fields[$fieldname] = $value; } Hope you find this useful. Regards, Prasad vtiger Team On 4/11/08, Gregory Machin wrote: > > Hi > I have been creating some faq's today and I noticed that once u save the > faq it loose all the leading spaces of each line and when u edit again > it the spaces are there ... I have a faq that has alot of indentation > (leading spaces) and with out it, it looks very messy.. how do I get > past this ? > > notes > work station > > Using gedit to type the documents ... copy pasted into the faq and > edited again to fit > Using firefox 2.0.0.13 > Using linux Fedora core 8 > > Thanks > > > -- > Gregory Machin > CT-Net > www.ct-net.org > greg at ct-net.org > phone : +27 12 379 3497 > fax : +27 12 379 4113 > Cell : +27 72 524 8096 > > humans do not use the address > below its for trapping spam. > spamtrap imasucker at ct-net.org > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080411/6954b26c/attachment-0001.html From prasad at vtiger.com Mon Apr 14 12:51:00 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 14 Apr 2008 22:21:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: <39d18b250804140951n40ef9e3bocfb2c6f5ff7088f@mail.gmail.com> Hi Nolan, Wanted to make a follow up on the contribution items. How are things coming along. I saw the forge project on email but didn't find any downloads. http://forge.vtiger.com/projects/autoemails/ Kindly keep us updated on the work progress, our community will be able to provide more assistance. Regards, Prasad vtiger Team On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080414/18aa8625/attachment-0001.html From asha at vtiger.com Tue Apr 15 04:00:07 2008 From: asha at vtiger.com (Asha) Date: Tue, 15 Apr 2008 13:30:07 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: Hi Nolan, I agree with you. Security on Reports is also very important stuff. I would like to know the update on it and would be great if we can getting it ported to 5.0.4. Let me know if I can help you in this. On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/a7048e7a/attachment-0001.html From leandro at hipertek.net Tue Apr 15 06:14:53 2008 From: leandro at hipertek.net (leandro at hipertek.net) Date: Tue, 15 Apr 2008 05:14:53 -0500 (COT) Subject: [Vtigercrm-developers] Oracle Support Message-ID: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im working too in to implement a customized Price Book (List of prices) by client, and improve the module for to have accounts/contacts by list and products by list and management of profitability by list of products and customized profitability of product in some list of prices. My question is: How i work for that the improves are evaluated and integrated in vtiger by default, how I work with other persons interested in help to port vtiger to oracle,really the oracle support need changes in the names of the tables, because the actual names present troubles for the max size of name in oracle. Im expecting for yours recomendations, it would be a fork named vtiger x oracle meanwhile this updates are integrated in the official version. Im expecting of yours comments and suggestions, Leandro Rache. Hipertek. From prasad at vtiger.com Tue Apr 15 07:47:24 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 15 Apr 2008 17:17:24 +0530 Subject: [Vtigercrm-developers] Oracle Support In-Reply-To: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> References: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Message-ID: <39d18b250804150447l2ff1774chbfda1d0a672b7e8c@mail.gmail.com> Hi Leandro, I would recommend you to create a project of forge for which can serve as an add-on for vtiger 5.0.4 to work with Oracle. This give our community direct access and they will be able to provide more support to your work. Regards, Prasad vtiger Team On 4/15/08, leandro at hipertek.net wrote: > > Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im > working too in to implement a customized Price Book (List of prices) by > client, and improve the module for to have accounts/contacts by list and > products by list and management of profitability by list of products and > customized profitability of product in some list of prices. My question > is: How i work for that the improves are evaluated and integrated in > vtiger by default, how I work with other persons interested in help to > port vtiger to oracle,really the oracle support need changes in the names > of the tables, because the actual names present troubles for the max size > of name in oracle. > > Im expecting for yours recomendations, it would be a fork named vtiger x > oracle meanwhile this updates are integrated in the official version. > > Im expecting of yours comments and suggestions, > > Leandro Rache. > Hipertek. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/28727221/attachment-0001.html From chazarra.clement at gmail.com Tue Apr 22 11:10:20 2008 From: chazarra.clement at gmail.com (clement chazarra) Date: Tue, 22 Apr 2008 16:10:20 +0100 Subject: [Vtigercrm-developers] Custom field in list view Message-ID: Hi guys, I need a little help, I posted on the forum a question but didn't get any answer yet (http://forums.vtiger.com/viewtopic.php?p=64151) I am trying to display a custom field in a list view, for exemple the sale order list in a specific account should display my custom field cf_354. In 4.2.3 I made it work but cannot get it working with the same method in 5.0.4: In salesorder.php I add my custom field in var $list_fields = Array( 'Order No'=>Array('crmentity'=>'crmid'), 'Subject'=>Array('salesorder'=>'subject'), 'Account Name'=>Array('account'=>'accountid'), 'Quote Name'=>Array('quotes'=>'quoteid'), * 'My Custom field'=>Array('salesordercf'=>'cf_354'),* 'Total'=>Array('salesorder'=>'total'), 'Assigned To'=>Array('crmentity'=>'smownerid') ); var $list_fields_name = Array( 'Order No'=>'', 'Subject'=>'subject', 'Account Name'=>'account_id', 'Quote Name'=>'quote_id', * 'My Custom field'=>'cf_354',* 'Total'=>'hdnGrandTfdotal', 'Assigned To'=>'assigned_user_id' ); I also had a look for an error in the log, but none is logged.. If somebody get it working with the exact same method as in 4.2.3, I would be glad to know(It would mean that I made a mistake) else if somebody get it to work on 5.0.4, I would be very thankful for an hint. Bye guys, Clem -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080422/80e8c356/attachment-0001.html From prasad at vtiger.com Tue Apr 22 15:00:17 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <39d18b250804221200n33a3ba44i90e0451f38aea1f8@mail.gmail.com> Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/8103cf05/attachment-0001.html From scott at centritechsolutions.com Tue Apr 22 16:20:01 2008 From: scott at centritechsolutions.com (scott at centritechsolutions.com) Date: Tue, 22 Apr 2008 16:20:01 -0400 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <5822983184.20080422162001@centritechsolutions.com> What kind of features does it have? ------Original Mail------ From: "Prasad" To: Sent: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team From srini at vtiger.com Wed Apr 23 03:18:35 2008 From: srini at vtiger.com (Srini) Date: Wed, 23 Apr 2008 12:48:35 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn In-Reply-To: <5822983184.20080422162001@centritechsolutions.com> References: <5822983184.20080422162001@centritechsolutions.com> Message-ID: <391a06170804230018v102a429am1229492c2af69b1c@mail.gmail.com> Dear Team, As a starting point, the vQuickBooks add-on is developed to synchronize the Contacts from vtigerCRM and Customer List from QuickBooks via the QuickBooks - WebConnector. The Basic QuickBooks Integration frame work (free package - done by Keith Palmer) is used to develop this add-on. We welcome more questions, results and code contributions from our members to take this add-on into next level. Thanks & Regards, Srini On Wed, Apr 23, 2008 at 1:50 AM, wrote: > What kind of features does it have? > > > ------Original Mail------ > From: "Prasad" > To: > Sent: Wed, 23 Apr 2008 00:30:17 +0530 > Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn > > Dear Members, > > vtiger QuickBook Addon is now available on forge: > http://forge.vtiger.com/projects/vquickbooks/ > > version 1.0 downloads: > http://forge.vtiger.com/frs/?group_id=155&release_id=385 > > We encourage you to extend the support in testing, validating this AddOn > and > take it further from here. > > Regards, > Prasad > vtiger Team > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/7ed8b682/attachment-0001.html From prasad at vtiger.com Thu Apr 24 09:11:40 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 24 Apr 2008 18:41:40 +0530 Subject: [Vtigercrm-developers] [FORUM:5901] Re: Quickbooks Export / Generic Accounting System Export In-Reply-To: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> References: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> Message-ID: <39d18b250804240611q65e7a21i36f038199f9b4674@mail.gmail.com> Dear Keith, We are glad to hear about the support you are extending for getting vtiger QuickBooks integration. I had a question: Is it possible to make WebConnector Application work without https? Regards, Prasad vtiger Team PS: vtiger Forum does not let you post URL's in the first post. On 4/24/08, keith at uglyslug.com wrote: > > > Hello, > > I\'m Keith Palmer the author of the QuickBooks PHP package that kmitz > mentioned here: > (on the Intuit forums... your forums won\'t allow me to post URLs because > I\'m a new user or something...) > > I\'d be interested in helping out as much as I can to help get vTiger > integrated with QuickBooks. If there\'s anything I can help with/features > that I can add to my package/code I can write/questions I can answer, by all > means let me know! > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080424/001f2ef7/attachment-0001.html From denys.potapov at gmail.com Tue Apr 1 07:27:43 2008 From: denys.potapov at gmail.com (=?KOI8-R?B?5MXOydMg8M/UwdDP1w==?=) Date: Tue, 1 Apr 2008 14:27:43 +0300 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> Message-ID: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Hi Prasad, I'm working with Russian language pack and met some problems. Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix them using Vtiger track, but i ask you to include the phputf8 library ( http://phputf8.sourceforge.net/ ) into the vtiger core (vtigerCRM\include\phputf8). It work's fine on many projects (for example Joomla!), and it doing well with VTiger. The other thing that by default the GraphUtils.php uses Vera font: line 27: DEFINE("FF_FONT1",'Vera'); but it has no Cyrillic support. Probably it's better to change it to Arial. Will it be right if I add this issue on track. The last thing I think deals with any localisation. In Smarty Template 'Smarty/templates/ListViewEntries.tpl': line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! In both cases the plural form is added in template, that is absolutely unsuitable for localisation. For now we solve it by adding all this core (and template) files to language pack that is totally incorrect. What can be the solution? Best regards, Denys Potapov 2008/3/26, Prasad : > > Hi Denys, > > To use mb_strlen and mb_substr you need to enable mb_string php extension. > > Also check out this library: http://phputf8.sourceforge.net/ which has > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > If you work with this, kindly let us know your observations in more > details. > > Good luck. > > Regards, > Prasad > > > On 3/25/08, ????? ??????? wrote: > > > > Hi all! > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > use > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > Best regards, > > Denys Potapov > > > > _______________________________________________ > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/12fb3d82/attachment-0002.html From prasad at vtiger.com Tue Apr 1 08:04:45 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 1 Apr 2008 17:34:45 +0530 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Message-ID: <39d18b250804010504q59be1e00l9017d0a17ba6149e@mail.gmail.com> Hi Denys, Thank you for keep us updated on your work. You can update the comments on the trac ticket: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5245 with your findings. Also please create new tickets for other issues you have mentioned and suggest the fix also, this could be helpful for us and community. Regards, Prasad vtiger Team On 4/1/08, ????? ??????? wrote: > > Hi Prasad, > > > > I'm working with Russian language pack and met some problems. > > Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix > them using Vtiger track, but i ask you to include the phputf8 library ( > http://phputf8.sourceforge.net/ ) into the vtiger core > (vtigerCRM\include\phputf8). It work's fine on many projects (for example > Joomla!), and it doing well with VTiger. > > The other thing that by default the GraphUtils.php uses Vera font: > line 27: DEFINE("FF_FONT1",'Vera'); > but it has no Cyrillic support. Probably it's better to change it to > Arial. Will it be right if I add this issue on track. > > The last thing I think deals with any localisation. In Smarty Template > 'Smarty/templates/ListViewEntries.tpl': > line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! > line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} > ! > In both cases the plural form is added in template, that is absolutely > unsuitable for localisation. > > For now we solve it by adding all this core (and template) files to > language pack that is totally incorrect. What can be the solution? > > > > > Best regards, > Denys Potapov > > > > > > > > > > > 2008/3/26, Prasad : > > > > Hi Denys, > > > > To use mb_strlen and mb_substr you need to enable mb_string php > > extension. > > > > Also check out this library: http://phputf8.sourceforge.net/ which has > > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > > > If you work with this, kindly let us know your observations in more > > details. > > > > Good luck. > > > > Regards, > > Prasad > > > > > > On 3/25/08, ????? ??????? wrote: > > > > > > Hi all! > > > > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > > use > > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > > > > > > > > Best regards, > > > Denys Potapov > > > > > > _______________________________________________ > > > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/2584e57e/attachment-0002.html From stephen at cass-ltd.co.uk Tue Apr 1 08:38:47 2008 From: stephen at cass-ltd.co.uk (stephen at cass-ltd.co.uk) Date: Tue, 1 Apr 2008 13:38:47 +0100 Subject: [Vtigercrm-developers] PostgreSQL support Message-ID: <2b2cf48288ead57e23c7254ea0d5f05a@localhost> Hello all, I saw a thread in December about PostgreSQL support for VTiger. Jens Hamisch had done a fair amount of work to achieving this goal and I am wondering on the current status. Regards, Stephen. From ckwu at ck-erp.net Fri Apr 4 01:46:54 2008 From: ckwu at ck-erp.net (C K Wu) Date: Fri, 04 Apr 2008 13:46:54 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.27.1 released (with vTiger 5.0.4 connector) Message-ID: <47F5C0CE.2000200@ck-erp.net> Hi, folks, I have posted a new release, v.0.27.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, connector for AssetMan connector for Coppermine connector for Gallery2 connector for phpMyTicket enhanced navigation bar CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 22 modules - Administration, i18n, Contact Management, Customer Relationship, Customer Self Service, Vendor Relationship, Ledger, Bank Reconciliation, MRP, Warehouse, Inventory, Service, AP, AR, PO, SO, Quotation, POS for Cashier, POS for Manager, HR, Staff Self Service and Payroll. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Please report error and suggestion to the discussion group / mailing list, CK-ERP-en(at)googlegroups.com or CK-ERP-zh_CN(at)googlegroups.com . General history and expected development is available at the discussion group's Archive. Supported MiddleWares: AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; MyHandyRestaurant; PHPJB; FreightFleetManagementSystem; OpenX, LandShop, FreeRealty; IRM; LegalCase; MirrorMed, ClearHealth, OpenEMR; eGroupWare, Horde-GroupWare; Zencart, CRELoaded, osCMax, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger, XRMS; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net http://ck-erp.info Download is available from, http://sourceforge.net/projects/ck-erp http://gforge.oss.org.cn/projects/ck-erp http://gforge.lupaworld.com/projects/ck-erp http://gro.clinux.org/projects/ck-ledger Cheers, Wu Chiu Kay, aka CK Wu, aka CK (CK is the preferred alias) Hong Kong From nolan at peaceworks.ca Tue Apr 8 01:04:24 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 01:04:24 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <12613936.161207630770748.JavaMail.root@zimbra> Message-ID: <29762786.181207631064709.JavaMail.root@zimbra> Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. From brian at pr2k.com Tue Apr 8 01:35:16 2008 From: brian at pr2k.com (Brian Laughlin) Date: Mon, 7 Apr 2008 22:35:16 -0700 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: Wow, that is a great list. -----Original Message----- From: Nolan Andres [mailto:nolan at peaceworks.ca] Sent: Monday, April 07, 2008 10:04 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] List of potential contributions - feedback requested Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com From ddfire at gmail.com Tue Apr 8 08:07:58 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 09:07:58 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: all the items are VERY interesting. your list is a new version. vtiger 5.0.5 code name paceworks :-) thanks. David 2008/4/8 Nolan Andres : > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/fd8fa686/attachment-0002.html From prasad at vtiger.com Tue Apr 8 08:19:26 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:49:26 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080519n51d8eedel67f29fa691692b3d@mail.gmail.com> Hi Nolan Andres, Really a good piece of work. I would like to thank you and your client(s) for deciding to contribute back. If you can share code with us with more details that will make it easy to analyze it further. Regards, Prasad vtiger Team On 4/8/08, Nolan Andres wrote: > > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/1130ff0f/attachment-0002.html From prasad at vtiger.com Tue Apr 8 08:20:03 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:50:03 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Hi David, Interesting code name :) Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > all the items are VERY interesting. > your list is a new version. > vtiger 5.0.5 code name paceworks :-) > > thanks. > David > > 2008/4/8 Nolan Andres : > > > Hey, everyone... > > > > I've been lurking on this list for quite a while (could be 2 years!) For > > over 2 years, now, my company has been doing customization work on vTiger, > > most of it on a highly customized installation that is still running v4.2. > > > > The customizations are so extensive, and the transition from 4.2 to 5.0 > > was so rocky that the client has never been willing to make the move. They > > still aren't. > > > > However, we just got permission from them to contribute any useful > > modifications and modules to the project. Hooray! My company is willing to > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > for these components, but I wanted to post a short annotated list to find > > out whether any of these pieces might be of interest to the community, and > > if so, how they might be prioritized. > > > > Here's the list. Please let me know what you think. Any of these sound > > interesting? > > > > -------- > > 1. Auto-Email Standardization > > > > Our client found the vTiger email notification stuff disconcerting. > > Reasons for emails going out were not clearly enumerated or codified, and > > control over these emails was limited at best. We wrote a framework that > > provides a series of Auto-Email categories: > > * entity-created: sends when an entity of the chosen type is created > > * entity-altered: sends when an entity of the chosen type is altered > > * entity-deleted: sends when an entity of the chosen type is deleted > > * value-triggered: sends when a set of value conditions on an entity of > > the chosen type is met (can be scheduled, or reactive--on save) > > * scheduled custom: executes a custom function on schedule > > * scheduled report: emails a report on schedule > > > > A wide variety of options exist for sending the email notifications: > > * send to arbitrary email address(es) > > * send to user(s) > > * send to contact(s) > > * send to assigned user > > * send to team > > * do not send to triggering user > > * can send attachments > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > > > Subject and body are template-driven, allowing parameters from > > triggering entities of the chosen type. > > > > ------------------------------- > > > > 2. Google Earth Report Integration > > > > Provides a configuration tool (part of the report specification) that > > allows report attributes to be output within the context of a real-time KML > > feed as parts of a placemark. As an example, you can visualize the results > > of a report...say a report on your Accounts...in Google Earth...see the > > geographic distribution of your Accounts. > > > > ------------------------------- > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > Implements per-entity-type file repositories that can have internal > > folder hierarchies and maintain per-entity folders (no more clobbering files > > of the same name that were uploaded/attached to a different entity). > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > permissions on files and folders (optional). > > > > -------------------------------- > > > > 4. Timesheets > > > > I know TSolucio has one of these. We tried it out and it didn't match > > the needs we had very well. I suspect we'll just provide this one as an > > alternative to the TSolucio one from our website, just in case someone > > else's needs are more closely aligned with the ones our client had. > > > > --------------------------------- > > > > 5. Report Folder Permissions / Personal Report Folders > > > > We added Reports to the profile management functionality, and added a > > personal "My Reports" folder for each user. You can hide report folders from > > some users, allow certain users to create new reports or manage certain > > folders, etc. Each user has their own My Reports folder where they can > > create reports of their own. When users have access to view a Report (but > > not edit it) and they want to customize it, they can clone it to their My > > Reports folder and modify it there. > > > > ----------------------------------- > > > > 6. Custom Field Improvements > > > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > > management functionality that allows admin users to create more tabs, > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > them. Really useful when you have a lot of custom fields. When multiple tabs > > have not been created, the Custom Fields block looks as it normally does. > > Also allows Custom Fields to be renamed. > > > > ------------------------------------ > > > > > > As I said, we'd love to hear feedback on these. If there's anything that > > the vTiger project can use, we'd be happy to contribute them. We've done a > > lot of work with vTiger, and it's been a huge success both for us and for > > our client. It would be great to have the opportunity to contribute back. > > > > peace, > > Nolan Andres > > PeaceWorks Computer Consulting Inc. > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/80478339/attachment-0002.html From ddfire at gmail.com Tue Apr 8 09:37:23 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 10:37:23 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Message-ID: hi i am still looking for a complete or at least a almost complete guide to make a news module, i am not a programing guru but i can program a new module if i have a good guide.... any one? of course i will give the new modules to the community thanks David 2008/4/8 Prasad : > Hi David, > > Interesting code name :) > > Regards, > Prasad > vtiger Team > > > On 4/8/08, David fire wrote: > > > > all the items are VERY interesting. > > your list is a new version. > > vtiger 5.0.5 code name paceworks :-) > > > > thanks. > > David > > > > 2008/4/8 Nolan Andres : > > > > > Hey, everyone... > > > > > > I've been lurking on this list for quite a while (could be 2 years!) > > > For over 2 years, now, my company has been doing customization work on > > > vTiger, most of it on a highly customized installation that is still running > > > v4.2. > > > > > > The customizations are so extensive, and the transition from 4.2 to > > > 5.0 was so rocky that the client has never been willing to make the move. > > > They still aren't. > > > > > > However, we just got permission from them to contribute any useful > > > modifications and modules to the project. Hooray! My company is willing to > > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > > for these components, but I wanted to post a short annotated list to find > > > out whether any of these pieces might be of interest to the community, and > > > if so, how they might be prioritized. > > > > > > Here's the list. Please let me know what you think. Any of these sound > > > interesting? > > > > > > -------- > > > 1. Auto-Email Standardization > > > > > > Our client found the vTiger email notification stuff disconcerting. > > > Reasons for emails going out were not clearly enumerated or codified, and > > > control over these emails was limited at best. We wrote a framework that > > > provides a series of Auto-Email categories: > > > * entity-created: sends when an entity of the chosen type is created > > > * entity-altered: sends when an entity of the chosen type is altered > > > * entity-deleted: sends when an entity of the chosen type is deleted > > > * value-triggered: sends when a set of value conditions on an entity > > > of the chosen type is met (can be scheduled, or reactive--on save) > > > * scheduled custom: executes a custom function on schedule > > > * scheduled report: emails a report on schedule > > > > > > A wide variety of options exist for sending the email notifications: > > > * send to arbitrary email address(es) > > > * send to user(s) > > > * send to contact(s) > > > * send to assigned user > > > * send to team > > > * do not send to triggering user > > > * can send attachments > > > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each > > > minute > > > > > > Subject and body are template-driven, allowing parameters from > > > triggering entities of the chosen type. > > > > > > ------------------------------- > > > > > > 2. Google Earth Report Integration > > > > > > Provides a configuration tool (part of the report specification) that > > > allows report attributes to be output within the context of a real-time KML > > > feed as parts of a placemark. As an example, you can visualize the results > > > of a report...say a report on your Accounts...in Google Earth...see the > > > geographic distribution of your Accounts. > > > > > > ------------------------------- > > > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > > > Implements per-entity-type file repositories that can have internal > > > folder hierarchies and maintain per-entity folders (no more clobbering files > > > of the same name that were uploaded/attached to a different entity). > > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > > permissions on files and folders (optional). > > > > > > -------------------------------- > > > > > > 4. Timesheets > > > > > > I know TSolucio has one of these. We tried it out and it didn't match > > > the needs we had very well. I suspect we'll just provide this one as an > > > alternative to the TSolucio one from our website, just in case someone > > > else's needs are more closely aligned with the ones our client had. > > > > > > --------------------------------- > > > > > > 5. Report Folder Permissions / Personal Report Folders > > > > > > We added Reports to the profile management functionality, and added a > > > personal "My Reports" folder for each user. You can hide report folders from > > > some users, allow certain users to create new reports or manage certain > > > folders, etc. Each user has their own My Reports folder where they can > > > create reports of their own. When users have access to view a Report (but > > > not edit it) and they want to customize it, they can clone it to their My > > > Reports folder and modify it there. > > > > > > ----------------------------------- > > > > > > 6. Custom Field Improvements > > > > > > We put the custom fields inside a tabbed (JS) block. Added Custom > > > Field management functionality that allows admin users to create more tabs, > > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > > them. Really useful when you have a lot of custom fields. When multiple tabs > > > have not been created, the Custom Fields block looks as it normally does. > > > Also allows Custom Fields to be renamed. > > > > > > ------------------------------------ > > > > > > > > > As I said, we'd love to hear feedback on these. If there's anything > > > that the vTiger project can use, we'd be happy to contribute them. We've > > > done a lot of work with vTiger, and it's been a huge success both for us and > > > for our client. It would be great to have the opportunity to contribute > > > back. > > > > > > peace, > > > Nolan Andres > > > PeaceWorks Computer Consulting Inc. > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/2093e151/attachment-0002.html From ddfire at gmail.com Tue Apr 8 10:01:20 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:01:20 -0300 Subject: [Vtigercrm-developers] a little bug? Message-ID: hi i have added some custom fields and then i edited the sql to change the blocks where the cf are. now i am trying to disable this fields for one profile but nothing happened... i disabled a normal field and it works. what can i do? thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/de651461/attachment-0002.html From nolan at peaceworks.ca Tue Apr 8 10:15:22 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 10:15:22 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32250839.1271207664065154.JavaMail.root@zimbra> Message-ID: <32428513.1321207664122063.JavaMail.root@zimbra> Hey... Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. Prasad, should I send the code to you, or should I just post it here? peace, Nolan ----- "Prasad" wrote: > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > From ddfire at gmail.com Tue Apr 8 10:21:04 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:21:04 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: hi i think the most important upgrade is the 6. Custom Field Improvements this should go first. David 2008/4/8 Nolan Andres : > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/a1597200/attachment-0002.html From james at sitek.com.au Tue Apr 8 10:26:59 2008 From: james at sitek.com.au (James Moey) Date: Wed, 09 Apr 2008 00:26:59 +1000 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <47FB80B3.3060003@sitek.com.au> I can help with the porting. I am interested in Custom Field Improvement as well. I have some experience in block and JS. I would be more than happy to port that over to 5.0.4. Regards, James Nolan Andres wrote: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > >> Hi Nolan Andres, >> >> Really a good piece of work. I would like to thank you and your >> client(s) for deciding to contribute back. >> >> If you can share code with us with more details that will make it easy >> to analyze it further. >> >> Regards, >> Prasad >> vtiger Team >> >> >> > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/0ffc52d3/attachment-0002.html From prasad at vtiger.com Tue Apr 8 10:29:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 19:59:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <39d18b250804080729v7b70c418o77c0b1c09a3365f2@mail.gmail.com> Hi Nolan Andres, Thank you very much for taking more initiative. Kindly share code with me and also put CC to out developer list This way our developers can enhance the interesting feature a bit more. It will definitely take more time for us to analyze the code contribution, so please be patient till then. Hope you don't mind if we get back to you for any clarifications. Regards, Prasad On 4/8/08, Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > > Nolan > > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/c2b721b5/attachment-0002.html From prasad at vtiger.com Tue Apr 8 10:37:15 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:07:15 +0530 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: References: Message-ID: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Hi David, What changes did you make to change the blocks for the custom field? Can you please check if without change the blocks, the custom field can be disabled for the profile? Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > hi > i have added some custom fields and then i edited the sql to change the > blocks where the cf are. > now i am trying to disable this fields for one profile but nothing > happened... i disabled a normal field and it works. > what can i do? > thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/eec1f14b/attachment-0002.html From prasad at vtiger.com Tue Apr 8 10:39:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:09:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FB80B3.3060003@sitek.com.au> References: <32428513.1321207664122063.JavaMail.root@zimbra> <47FB80B3.3060003@sitek.com.au> Message-ID: <39d18b250804080739o6e8b2d69q76328f7031339384@mail.gmail.com> Hi James, Thank you for taking up the initiative. I have asked Nolan to copy over the code contribution, please keep watching the thread. Regards, Prasad vtiger Team On 4/8/08, James Moey wrote: > > I can help with the porting. I am interested in Custom Field Improvement > as well. I have some experience in block and JS. I would be more than happy > to port that over to 5.0.4. > > Regards, > James > > Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/8621afb5/attachment-0002.html From ddfire at gmail.com Tue Apr 8 10:52:30 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:52:30 -0300 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> References: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Message-ID: i only change the field block inthe vtiger_field table i created a new profile and it works perfect. thanks David 2008/4/8 Prasad : > Hi David, > > What changes did you make to change the blocks for the custom field? > > Can you please check if without change the blocks, the custom field can be > disabled for the profile? > > Regards, > Prasad > vtiger Team > > On 4/8/08, David fire wrote: > > > hi > > i have added some custom fields and then i edited the sql to change the > > blocks where the cf are. > > now i am trying to disable this fields for one profile but nothing > > happened... i disabled a normal field and it works. > > what can i do? > > thanks > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/d229f8e4/attachment-0002.html From joe at tsolucio.com Tue Apr 8 11:33:21 2008 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 08 Apr 2008 17:33:21 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <1207668801.26617.40.camel@joesunix.int> Hi All, I have been contracted by IMED Mobility to create a vtigerCRM email list system. The design we have accorded with Imed, has more or less the same goals as Peaceworks/Sutherland-Schultz number 1 extension. Imed decided to fund the development of the extension and release it as an opensource extension on the forge. I have been given permission to speak in their name and help Peaceworks to port their extension to 5.0.4 and make it available to the community, on the forge and in the base product if vtiger team sees it fit. At the moment I would like to thank Peaceworks and Sutherland-Schultz for there contribution. Nolan, if you are interested in working with TSolucio drop me an email. We will set up a forge project and port your mailing system to 5.0.4 Regards, Joe TSolucio El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From prasad at vtiger.com Tue Apr 8 12:50:00 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:20:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <39d18b250804080950h486d1609tadc37ba99498536@mail.gmail.com> Hi Joe, Thank you for the updates Joe. We have are being informed about several extensions on the mailing part of vtiger CRM. Glad to see your initiative on the item 1. Regards, Prasad vtiger Team On 4/8/08, Joe Bordes wrote: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, we > might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > > Hi Nolan Andres, > > > > > > Really a good piece of work. I would like to thank you and your > > > client(s) for deciding to contribute back. > > > > > > If you can share code with us with more details that will make it easy > > > to analyze it further. > > > > > > Regards, > > > Prasad > > > vtiger Team > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/7353fe0f/attachment-0002.html From tzenk at gmx.net Tue Apr 8 12:55:08 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 08 Apr 2008 18:55:08 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <47FBA36C.5020301@gmx.net> Hi everybody, besides the fact that all of these modules sound very interesting i think #6 is the most interesting for the majority of vTiger-users, as the custom fields do play a BIG role in setting up different setups of vTiger for different usage. The custom fields feature is a vast Plus within vtiger already, a little more extended makes it even vaster, to leave my few words on this. And as always: If you wizards need an extensive themer /tester / documenter/ translator (native german/ native english) on anything around vTiger count me in. Greetings Torsten Zenk Joe Bordes schrieb: > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > >> Hey... >> >> Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) >> >> It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. >> >> As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. >> >> That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) >> >> If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. >> >> Prasad, should I send the code to you, or should I just post it here? >> >> peace, >> Nolan >> >> >> ----- "Prasad" wrote: >> >> >>> Hi Nolan Andres, >>> >>> Really a good piece of work. I would like to thank you and your >>> client(s) for deciding to contribute back. >>> >>> If you can share code with us with more details that will make it easy >>> to analyze it further. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> >>> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/82607ff9/attachment-0002.html From prasad at vtiger.com Tue Apr 8 13:11:46 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:41:46 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> <47FBA36C.5020301@gmx.net> Message-ID: <39d18b250804081011j6f173a19u74071920c23dcff4@mail.gmail.com> Hi Torsten, Glad to hear about your involvement :) Regards, Prasad On 4/8/08, Torsten Zenk wrote: > > Hi everybody, > besides the fact that all of these modules sound very interesting i think > #6 is the most interesting for the majority of vTiger-users, as the custom > fields do play a BIG role in setting up different setups of vTiger for > different usage. The custom fields feature is a vast Plus within vtiger > already, a little more extended makes it even vaster, to leave my few words > on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything around > vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/6ff25893/attachment-0002.html From alanslists at gmail.com Tue Apr 8 16:55:47 2008 From: alanslists at gmail.com (Alan Lord) Date: Tue, 08 Apr 2008 21:55:47 +0100 Subject: [Vtigercrm-developers] Hello and the webform module Message-ID: <47FBDBD3.60602@gmail.com> Sorry in advance - this is quite a long message... ---------- Hello. I'm Alan, and I run an Open Source training, consulting and support services business here in the UK. We have been "playing" with vtiger for some time and now would like to contribute something back. I have recently been looking at the webform module and have some ideas, but I am struggling to get passed first base due to the db abstraction library and some rather obfuscated code... Anyway, first, A brief idea of what I'd like to do with the webform module: 1. Abstract the client side so that there is minimal or no hardcoding of form parameters and eliminate the need for manual duplication of lists of php arrays in 5 or 6 places as is now the case. 2. Migrate the forms to be valid XHTML (no tables) with external stylesheet(s). 3. Option to notify admin or other vtiger user by email that a form has been submitted. 4. Introduce a nice and friendly form builder (probably using something like the dojo toolkit to give a good user experience). With respect to the above I have done some work already. 1. During some initial hacking, the client end of the webform package now has a single array construct which holds the basic form field parameters and labels etc in config.php. This is the only place - on the client side - where changes need to be made to alter your form's basic field layout and structure. However, the interaction to the server is not fixed. The vtiger file soap/webform.php needs manually hacking in several places to match the client side configuration. 2. This is kind of done. 3. Sort of done. It works but the email notification is done at the client end. This depends on the client server having sendmail(). I'd like to move this function back to vtiger. Don't think it should be too hard, but haven't looked into it yet. 4. Not started Completing "1." above is giving me a headache! What I am trying to achieve is something along the following lines: *Start the client end "form building process" *Select the type of form you'd like to make/edit *Upload the schema for the relevant fields from the user's vtiger installation and use that information to create the basic form layout data... It is here's where I am stuck. Is there any decent documentation on the database abstraction library that is being used? I find even simple queries respond with vast amounts of superfluous data. For example a query like: "SHOW TABLES LIKE 'vtiger_".$form."%'" responds with the data but also with a tremendous amount of noise. And with that particular query I can't seem to iterate through the result and filter it because of using a wildcard in the query. Any ideas? My plan is generate an xml schema for the fields that are available for a particular kind of form. This would be used to generate the wsdl on vtiger and be cached in a local (client-side) file and only updated as and when necessary. The benefit being it will display any custom fields or should vtiger's schema change with a new release, no manual updating would be necessary. The client side Form Builder would be able to use this data to build the initial UI and when the user has selected the fields to display etc, the "design" will be saved in an XHTML file for deployment along with a basic stylesheet. **Any help with extracting the data from the db would be most helpful.** I have looked at some of the functions in the MS word module (which gets the "lead" field structure for example, but no schema information) as a starting point but it doesn't go far enough and also has hardcoded wsdl structures. I also have some ideas to develop the webform module further once I get the basics working: Possibly use a Javascript SOAP library, so no client-side "server scripting" language like PHP would be needed at all (fully platform agnostic). Or, enable the form to be so standalone that other contributors could write client form processors in other languages like ASP, Ruby, Java etc... Improvements in end-user functionality such as addition of optional calendar features for using the form for booking appointments/events, adding a unique UUID to individual mail campaign emails (or just campaigns) so when a new user hit's the form, we know how he got there... And a few others ideas too. Sorry again for the length. Alan -- The way out is open! http://www.theopensourcerer.com From nolan at peaceworks.ca Tue Apr 8 17:39:09 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 17:39:09 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> Message-ID: <8292881.6651207690749583.JavaMail.root@zimbra> hey... I agree with Torsten. The Custom Field stuff is important. For the same reason, actually, I think the Reports stuff is pretty valuable, too. Based on the replies so far, though... 1. I've submitted a request for a forge project for the AutoEmail stuff, and am in conversation with Joe on that. I'll make sure to keep this list apprised of any developments as things move forward there. 2. I'll start pulling together some of the Custom Field stuff tonight so that I can let people know what's all involved. I'm thinking that this particular one may be a fairly easy port to 5.0.4 if the decisions I made stand the test of community inspection. Even if not, I think it'll still be pretty quick. It's really not all that complex in the end. peace, Nolan PeaceWorks Computer Consulting Inc. www.peaceworks.ca Empowering People We Believe In ----- "Torsten Zenk" wrote: > Hi everybody, > besides the fact that all of these modules sound very interesting i > think #6 is the most interesting for the majority of vTiger-users, as > the custom fields do play a BIG role in setting up different setups of > vTiger for different usage. The custom fields feature is a vast Plus > within vtiger already, a little more extended makes it even vaster, to > leave my few words on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything > around vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email > list > system. The design we have accorded with Imed, has more or less the > same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it > as > an opensource extension on the forge. > I have been given permission to speak in their name and help > Peaceworks > to port their extension to 5.0.4 and make it available to the > community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an > email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention > my client, who have generously agreed to contribute this work that > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > Canada. ( www.sutherland-schultz.com ) > > It looks like this is the way to proceed. I think what I'll do is > start pulling together some screenshots and example code chunks for > each of the features, and send them to Prasad so they can check them > out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) > they have some client-specific parts that we will want to excise > (stuff that I don't think is very useful for the community at large) > before they are contributed. The upshot is that it will take a little > bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there > are certain things that would be *really* helpful to someone, I could > see us prioritizing them so that we do those first. Not sure we'll be > able to get everything together for a single version release (thanks > for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, > we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From prasad at vtiger.com Wed Apr 9 11:31:16 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 9 Apr 2008 21:01:16 +0530 Subject: [Vtigercrm-developers] Hello and the webform module In-Reply-To: <47FBDBD3.60602@gmail.com> References: <47FBDBD3.60602@gmail.com> Message-ID: <39d18b250804090831n27af6b6crc36846b746865848@mail.gmail.com> Hi Alan, Good to see you got started on the developer list. vtiger CRM uses adodb library: http://adodb.sourceforge.net/ Look at vtigercrm/include/database/PearDatabase.php which uses adodb functions. Regards, Prasad vtiger Team On 4/9/08, Alan Lord wrote: > > Sorry in advance - this is quite a long message... > ---------- > > Hello. > > I'm Alan, and I run an Open Source training, consulting and support > services business here in the UK. > > We have been "playing" with vtiger for some time and now would like to > contribute something back. > > I have recently been looking at the webform module and have some ideas, > but I am struggling to get passed first base due to the db abstraction > library and some rather obfuscated code... > > Anyway, first, A brief idea of what I'd like to do with the webform > module: > > 1. Abstract the client side so that there is minimal or no hardcoding of > form parameters and eliminate the need for manual duplication of lists > of php arrays in 5 or 6 places as is now the case. > 2. Migrate the forms to be valid XHTML (no tables) with external > stylesheet(s). > 3. Option to notify admin or other vtiger user by email that a form has > been submitted. > 4. Introduce a nice and friendly form builder (probably using something > like the dojo toolkit to give a good user experience). > > > With respect to the above I have done some work already. > > 1. During some initial hacking, the client end of the webform package > now has a single array construct which holds the basic form field > parameters and labels etc in config.php. This is the only place - on the > client side - where changes need to be made to alter your form's basic > field layout and structure. However, the interaction to the server is > not fixed. The vtiger file soap/webform.php needs manually hacking in > several places to match the client side configuration. > 2. This is kind of done. > 3. Sort of done. It works but the email notification is done at the > client end. This depends on the client server having sendmail(). I'd > like to move this function back to vtiger. Don't think it should be too > hard, but haven't looked into it yet. > 4. Not started > > Completing "1." above is giving me a headache! > > What I am trying to achieve is something along the following lines: > > *Start the client end "form building process" > *Select the type of form you'd like to make/edit > *Upload the schema for the relevant fields from the user's vtiger > installation and use that information to create the basic form layout > data... > > It is here's where I am stuck. Is there any decent documentation on the > database abstraction library that is being used? I find even simple > queries respond with vast amounts of superfluous data. For example a > query like: > > "SHOW TABLES LIKE 'vtiger_".$form."%'" > > responds with the data but also with a tremendous amount of noise. And > with that particular query I can't seem to iterate through the result > and filter it because of using a wildcard in the query. Any ideas? > > My plan is generate an xml schema for the fields that are available for > a particular kind of form. This would be used to generate the wsdl on > vtiger and be cached in a local (client-side) file and only updated as > and when necessary. The benefit being it will display any custom fields > or should vtiger's schema change with a new release, no manual updating > would be necessary. > > The client side Form Builder would be able to use this data to build the > initial UI and when the user has selected the fields to display etc, > the "design" will be saved in an XHTML file for deployment along with a > basic stylesheet. > > **Any help with extracting the data from the db would be most helpful.** > > I have looked at some of the functions in the MS word module (which gets > the "lead" field structure for example, but no schema information) as a > starting point but it doesn't go far enough and also has hardcoded wsdl > structures. > > I also have some ideas to develop the webform module further once I get > the basics working: > > Possibly use a Javascript SOAP library, so no client-side "server > scripting" language like PHP would be needed at all (fully platform > agnostic). Or, enable the form to be so standalone that other > contributors could write client form processors in other languages like > ASP, Ruby, Java etc... > > Improvements in end-user functionality such as addition of optional > calendar features for using the form for booking appointments/events, > adding a unique UUID to individual mail campaign emails (or just > campaigns) so when a new user hit's the form, we know how he got > there... And a few others ideas too. > > Sorry again for the length. > > Alan > > > -- > The way out is open! > http://www.theopensourcerer.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/590a9cb5/attachment-0002.html From nolan at peaceworks.ca Thu Apr 10 01:28:23 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Thu, 10 Apr 2008 01:28:23 -0400 (EDT) Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <10479955.131207805299108.JavaMail.root@zimbra> Message-ID: <21806911.151207805303970.JavaMail.root@zimbra> OK... I'm not quite sure how to get started on this Custom Fields thing. Not having had the opportunity to contribute something substantial to this project, I'm not quite sure what the logistics should look like. So...what I've done is package up a first set of stuff, and attached it to this email as a zip. The zip includes: * new files I added * one file I massively altered: include/uifromdbutil.php - this file no longer exists, it's split between include/utils/EditViewUtil.php and DetailViewUtil.php, I believe * one set of instructions for applying my changes to modules/Settings/AddCustomFieldToDB.php In order to complete this, I'll need to either compile a whole bunch more instructions, or else make the changes to the 5.0.4 files myself. Here's where I ask for guidance. If I'm going to make the changes to the 5.0.4 files, I might as well do the port myself. However, going through the remaining files and making the instructions may not be less work. Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 (that's where we branched), but I don't think those will help anyone, will they? peace, Nolan -------------- next part -------------- A non-text attachment was scrubbed... Name: CustomFields.zip Type: application/zip Size: 48443 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/88d9f691/attachment-0002.zip From prasad at vtiger.com Thu Apr 10 04:54:22 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 10 Apr 2008 14:24:22 +0530 Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <21806911.151207805303970.JavaMail.root@zimbra> References: <10479955.131207805299108.JavaMail.root@zimbra> <21806911.151207805303970.JavaMail.root@zimbra> Message-ID: <39d18b250804100154n71443e09s9f69187b317bfc8@mail.gmail.com> Hi Nolan, Good to see your code contribution. Providing the diffs would definitely be useful. Is it possible to include some screenshot to show the changes or enhancements made? Regards, Prasad vtiger Team On 4/10/08, Nolan Andres wrote: > > OK... > > I'm not quite sure how to get started on this Custom Fields thing. Not > having had the opportunity to contribute something substantial to this > project, I'm not quite sure what the logistics should look like. > > So...what I've done is package up a first set of stuff, and attached it to > this email as a zip. The zip includes: > > * new files I added > * one file I massively altered: include/uifromdbutil.php > - this file no longer exists, it's split between > include/utils/EditViewUtil.php and DetailViewUtil.php, I believe > * one set of instructions for applying my changes to > modules/Settings/AddCustomFieldToDB.php > > In order to complete this, I'll need to either compile a whole bunch more > instructions, or else make the changes to the 5.0.4 files myself. Here's > where I ask for guidance. If I'm going to make the changes to the 5.0.4 > files, I might as well do the port myself. However, going through the > remaining files and making the instructions may not be less work. > > Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 > (that's where we branched), but I don't think those will help anyone, will > they? > > peace, > > Nolan > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/037f53ca/attachment-0002.html From greg at ct-net.org Thu Apr 10 07:10:59 2008 From: greg at ct-net.org (Gregory Machin) Date: Thu, 10 Apr 2008 13:10:59 +0200 Subject: [Vtigercrm-developers] thuderbird plugin not uploading the body for emails Message-ID: <47FDF5C3.1050809@ct-net.org> Hi When I try and use the thunderbird plugin it loses the body of the message and replaces it with "

Experience the difference. Thunderbird is developed and supported by Mozilla, a global community working together to make the Internet a better place for everyone.

For frequently asked questions, tips and general help, visit Thunderbird Help Center.

For product information, visit the Thunderbird Home Page.

" what would cause this ? i'm using thunderbird ver version 2.0.0.12 (20080213) on fedora core 8 linux thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From jcrisp at safeandsoundit.co.uk Thu Apr 10 13:14:35 2008 From: jcrisp at safeandsoundit.co.uk (John Crisp) Date: Thu, 10 Apr 2008 19:14:35 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <47FE4AFB.4010306@safeandsoundit.co.uk> Nolan Andres wrote: > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. > > Me too, but not for quite so long Re custom fields, the biggest bind is that 'LINKED' Custom Fields do not cross update from say an Account to a Contact or vice versa as say the address fields do - there is no linking beyond the point where a Lead is converted to an Account/Potential - at that point they are entities in their own right. I have had a play about with this for a while to see if I can get the fields to update with SQL triggers but am no coder and cannot get anything satisfactory - probably just lousy SQl syntax ! ANY improvement on the usability would be useful. If not, a change to the naming convention for 'LINKED' Custom Fields ;-) Absolutely brilliant to see people contributing stuff back so many thanks to you and your clients ! B. Rgds John From greg at ct-net.org Fri Apr 11 09:13:19 2008 From: greg at ct-net.org (Gregory Machin) Date: Fri, 11 Apr 2008 15:13:19 +0200 Subject: [Vtigercrm-developers] faq loosess leading spaces.. Message-ID: <47FF63EF.9070300@ct-net.org> Hi I have been creating some faq's today and I noticed that once u save the faq it loose all the leading spaces of each line and when u edit again it the spaces are there ... I have a faq that has alot of indentation (leading spaces) and with out it, it looks very messy.. how do I get past this ? notes work station > Using gedit to type the documents ... copy pasted into the faq and edited again to fit Using firefox 2.0.0.13 Using linux Fedora core 8 Thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From prasad at vtiger.com Fri Apr 11 13:35:36 2008 From: prasad at vtiger.com (Prasad) Date: Fri, 11 Apr 2008 23:05:36 +0530 Subject: [Vtigercrm-developers] faq loosess leading spaces.. In-Reply-To: <47FF63EF.9070300@ct-net.org> References: <47FF63EF.9070300@ct-net.org> Message-ID: <39d18b250804111035n334c1d1fwf8c54e98899ba35b@mail.gmail.com> Hi Gregory, The leading and trailing spaces are trimmed off from the input values in the following: File: include/utils/CommonUtils.php function setObjectValuesFromRequest($focus) The highlighted line of code can help you to preserve the leading and trailing spaces for Faq module record saving. NOTE: This code is based on vtiger 5.0.4 function setObjectValuesFromRequest($focus) { global $log; ... if(isset($_REQUEST['mode'])) { $focus->mode = $_REQUEST['mode']; } foreach($focus->column_fields as $fieldname => $val) { if(isset($_REQUEST[$fieldname])) { if(is_array($_REQUEST[$fieldname])) $value = $_REQUEST[$fieldname]; else if ($_REQUEST['module'] == 'Faq') $value = $_REQUEST[$fieldname]; else $value = trim($_REQUEST[$fieldname]); $focus->column_fields[$fieldname] = $value; } Hope you find this useful. Regards, Prasad vtiger Team On 4/11/08, Gregory Machin wrote: > > Hi > I have been creating some faq's today and I noticed that once u save the > faq it loose all the leading spaces of each line and when u edit again > it the spaces are there ... I have a faq that has alot of indentation > (leading spaces) and with out it, it looks very messy.. how do I get > past this ? > > notes > work station > > Using gedit to type the documents ... copy pasted into the faq and > edited again to fit > Using firefox 2.0.0.13 > Using linux Fedora core 8 > > Thanks > > > -- > Gregory Machin > CT-Net > www.ct-net.org > greg at ct-net.org > phone : +27 12 379 3497 > fax : +27 12 379 4113 > Cell : +27 72 524 8096 > > humans do not use the address > below its for trapping spam. > spamtrap imasucker at ct-net.org > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080411/6954b26c/attachment-0002.html From prasad at vtiger.com Mon Apr 14 12:51:00 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 14 Apr 2008 22:21:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: <39d18b250804140951n40ef9e3bocfb2c6f5ff7088f@mail.gmail.com> Hi Nolan, Wanted to make a follow up on the contribution items. How are things coming along. I saw the forge project on email but didn't find any downloads. http://forge.vtiger.com/projects/autoemails/ Kindly keep us updated on the work progress, our community will be able to provide more assistance. Regards, Prasad vtiger Team On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080414/18aa8625/attachment-0002.html From asha at vtiger.com Tue Apr 15 04:00:07 2008 From: asha at vtiger.com (Asha) Date: Tue, 15 Apr 2008 13:30:07 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: Hi Nolan, I agree with you. Security on Reports is also very important stuff. I would like to know the update on it and would be great if we can getting it ported to 5.0.4. Let me know if I can help you in this. On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/a7048e7a/attachment-0002.html From leandro at hipertek.net Tue Apr 15 06:14:53 2008 From: leandro at hipertek.net (leandro at hipertek.net) Date: Tue, 15 Apr 2008 05:14:53 -0500 (COT) Subject: [Vtigercrm-developers] Oracle Support Message-ID: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im working too in to implement a customized Price Book (List of prices) by client, and improve the module for to have accounts/contacts by list and products by list and management of profitability by list of products and customized profitability of product in some list of prices. My question is: How i work for that the improves are evaluated and integrated in vtiger by default, how I work with other persons interested in help to port vtiger to oracle,really the oracle support need changes in the names of the tables, because the actual names present troubles for the max size of name in oracle. Im expecting for yours recomendations, it would be a fork named vtiger x oracle meanwhile this updates are integrated in the official version. Im expecting of yours comments and suggestions, Leandro Rache. Hipertek. From prasad at vtiger.com Tue Apr 15 07:47:24 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 15 Apr 2008 17:17:24 +0530 Subject: [Vtigercrm-developers] Oracle Support In-Reply-To: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> References: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Message-ID: <39d18b250804150447l2ff1774chbfda1d0a672b7e8c@mail.gmail.com> Hi Leandro, I would recommend you to create a project of forge for which can serve as an add-on for vtiger 5.0.4 to work with Oracle. This give our community direct access and they will be able to provide more support to your work. Regards, Prasad vtiger Team On 4/15/08, leandro at hipertek.net wrote: > > Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im > working too in to implement a customized Price Book (List of prices) by > client, and improve the module for to have accounts/contacts by list and > products by list and management of profitability by list of products and > customized profitability of product in some list of prices. My question > is: How i work for that the improves are evaluated and integrated in > vtiger by default, how I work with other persons interested in help to > port vtiger to oracle,really the oracle support need changes in the names > of the tables, because the actual names present troubles for the max size > of name in oracle. > > Im expecting for yours recomendations, it would be a fork named vtiger x > oracle meanwhile this updates are integrated in the official version. > > Im expecting of yours comments and suggestions, > > Leandro Rache. > Hipertek. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/28727221/attachment-0002.html From chazarra.clement at gmail.com Tue Apr 22 11:10:20 2008 From: chazarra.clement at gmail.com (clement chazarra) Date: Tue, 22 Apr 2008 16:10:20 +0100 Subject: [Vtigercrm-developers] Custom field in list view Message-ID: Hi guys, I need a little help, I posted on the forum a question but didn't get any answer yet (http://forums.vtiger.com/viewtopic.php?p=64151) I am trying to display a custom field in a list view, for exemple the sale order list in a specific account should display my custom field cf_354. In 4.2.3 I made it work but cannot get it working with the same method in 5.0.4: In salesorder.php I add my custom field in var $list_fields = Array( 'Order No'=>Array('crmentity'=>'crmid'), 'Subject'=>Array('salesorder'=>'subject'), 'Account Name'=>Array('account'=>'accountid'), 'Quote Name'=>Array('quotes'=>'quoteid'), * 'My Custom field'=>Array('salesordercf'=>'cf_354'),* 'Total'=>Array('salesorder'=>'total'), 'Assigned To'=>Array('crmentity'=>'smownerid') ); var $list_fields_name = Array( 'Order No'=>'', 'Subject'=>'subject', 'Account Name'=>'account_id', 'Quote Name'=>'quote_id', * 'My Custom field'=>'cf_354',* 'Total'=>'hdnGrandTfdotal', 'Assigned To'=>'assigned_user_id' ); I also had a look for an error in the log, but none is logged.. If somebody get it working with the exact same method as in 4.2.3, I would be glad to know(It would mean that I made a mistake) else if somebody get it to work on 5.0.4, I would be very thankful for an hint. Bye guys, Clem -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080422/80e8c356/attachment-0002.html From prasad at vtiger.com Tue Apr 22 15:00:17 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <39d18b250804221200n33a3ba44i90e0451f38aea1f8@mail.gmail.com> Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/8103cf05/attachment-0002.html From scott at centritechsolutions.com Tue Apr 22 16:20:01 2008 From: scott at centritechsolutions.com (scott at centritechsolutions.com) Date: Tue, 22 Apr 2008 16:20:01 -0400 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <5822983184.20080422162001@centritechsolutions.com> What kind of features does it have? ------Original Mail------ From: "Prasad" To: Sent: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team From srini at vtiger.com Wed Apr 23 03:18:35 2008 From: srini at vtiger.com (Srini) Date: Wed, 23 Apr 2008 12:48:35 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn In-Reply-To: <5822983184.20080422162001@centritechsolutions.com> References: <5822983184.20080422162001@centritechsolutions.com> Message-ID: <391a06170804230018v102a429am1229492c2af69b1c@mail.gmail.com> Dear Team, As a starting point, the vQuickBooks add-on is developed to synchronize the Contacts from vtigerCRM and Customer List from QuickBooks via the QuickBooks - WebConnector. The Basic QuickBooks Integration frame work (free package - done by Keith Palmer) is used to develop this add-on. We welcome more questions, results and code contributions from our members to take this add-on into next level. Thanks & Regards, Srini On Wed, Apr 23, 2008 at 1:50 AM, wrote: > What kind of features does it have? > > > ------Original Mail------ > From: "Prasad" > To: > Sent: Wed, 23 Apr 2008 00:30:17 +0530 > Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn > > Dear Members, > > vtiger QuickBook Addon is now available on forge: > http://forge.vtiger.com/projects/vquickbooks/ > > version 1.0 downloads: > http://forge.vtiger.com/frs/?group_id=155&release_id=385 > > We encourage you to extend the support in testing, validating this AddOn > and > take it further from here. > > Regards, > Prasad > vtiger Team > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/7ed8b682/attachment-0002.html From prasad at vtiger.com Thu Apr 24 09:11:40 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 24 Apr 2008 18:41:40 +0530 Subject: [Vtigercrm-developers] [FORUM:5901] Re: Quickbooks Export / Generic Accounting System Export In-Reply-To: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> References: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> Message-ID: <39d18b250804240611q65e7a21i36f038199f9b4674@mail.gmail.com> Dear Keith, We are glad to hear about the support you are extending for getting vtiger QuickBooks integration. I had a question: Is it possible to make WebConnector Application work without https? Regards, Prasad vtiger Team PS: vtiger Forum does not let you post URL's in the first post. On 4/24/08, keith at uglyslug.com wrote: > > > Hello, > > I\'m Keith Palmer the author of the QuickBooks PHP package that kmitz > mentioned here: > (on the Intuit forums... your forums won\'t allow me to post URLs because > I\'m a new user or something...) > > I\'d be interested in helping out as much as I can to help get vTiger > integrated with QuickBooks. If there\'s anything I can help with/features > that I can add to my package/code I can write/questions I can answer, by all > means let me know! > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080424/001f2ef7/attachment-0002.html From denys.potapov at gmail.com Tue Apr 1 04:27:43 2008 From: denys.potapov at gmail.com (=?KOI8-R?B?5MXOydMg8M/UwdDP1w==?=) Date: Tue, 1 Apr 2008 14:27:43 +0300 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> Message-ID: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Hi Prasad, I'm working with Russian language pack and met some problems. Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix them using Vtiger track, but i ask you to include the phputf8 library ( http://phputf8.sourceforge.net/ ) into the vtiger core (vtigerCRM\include\phputf8). It work's fine on many projects (for example Joomla!), and it doing well with VTiger. The other thing that by default the GraphUtils.php uses Vera font: line 27: DEFINE("FF_FONT1",'Vera'); but it has no Cyrillic support. Probably it's better to change it to Arial. Will it be right if I add this issue on track. The last thing I think deals with any localisation. In Smarty Template 'Smarty/templates/ListViewEntries.tpl': line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! In both cases the plural form is added in template, that is absolutely unsuitable for localisation. For now we solve it by adding all this core (and template) files to language pack that is totally incorrect. What can be the solution? Best regards, Denys Potapov 2008/3/26, Prasad : > > Hi Denys, > > To use mb_strlen and mb_substr you need to enable mb_string php extension. > > Also check out this library: http://phputf8.sourceforge.net/ which has > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > If you work with this, kindly let us know your observations in more > details. > > Good luck. > > Regards, > Prasad > > > On 3/25/08, ????? ??????? wrote: > > > > Hi all! > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > use > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > Best regards, > > Denys Potapov > > > > _______________________________________________ > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/12fb3d82/attachment-0003.html From prasad at vtiger.com Tue Apr 1 05:04:45 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 1 Apr 2008 17:34:45 +0530 Subject: [Vtigercrm-developers] Substr function and unicode In-Reply-To: <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> References: <39d18b250803252317y7ad14036ia250f36c02162170@mail.gmail.com> <181b58150804010427p3374c9b7vd063963060d94569@mail.gmail.com> Message-ID: <39d18b250804010504q59be1e00l9017d0a17ba6149e@mail.gmail.com> Hi Denys, Thank you for keep us updated on your work. You can update the comments on the trac ticket: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5245 with your findings. Also please create new tickets for other issues you have mentioned and suggest the fix also, this could be helpful for us and community. Regards, Prasad vtiger Team On 4/1/08, ????? ??????? wrote: > > Hi Prasad, > > > > I'm working with Russian language pack and met some problems. > > Till now I've noticed 5 bugs with strlen and substr. I'll ready to fix > them using Vtiger track, but i ask you to include the phputf8 library ( > http://phputf8.sourceforge.net/ ) into the vtiger core > (vtigerCRM\include\phputf8). It work's fine on many projects (for example > Joomla!), and it doing well with VTiger. > > The other thing that by default the GraphUtils.php uses Vera font: > line 27: DEFINE("FF_FONT1",'Vera'); > but it has no Cyrillic support. Probably it's better to change it to > Arial. Will it be right if I add this issue on track. > > The last thing I think deals with any localisation. In Smarty Template > 'Smarty/templates/ListViewEntries.tpl': > line 135: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} ! > line 172: {$APP.LBL_NO} {$APP.$MODULE_CREATE}s {$APP.LBL_FOUND} > ! > In both cases the plural form is added in template, that is absolutely > unsuitable for localisation. > > For now we solve it by adding all this core (and template) files to > language pack that is totally incorrect. What can be the solution? > > > > > Best regards, > Denys Potapov > > > > > > > > > > > 2008/3/26, Prasad : > > > > Hi Denys, > > > > To use mb_strlen and mb_substr you need to enable mb_string php > > extension. > > > > Also check out this library: http://phputf8.sourceforge.net/ which has > > wrapper functions: http://phputf8.sourceforge.net/#String_Functions > > > > If you work with this, kindly let us know your observations in more > > details. > > > > Good luck. > > > > Regards, > > Prasad > > > > > > On 3/25/08, ????? ??????? wrote: > > > > > > Hi all! > > > > > > > > > I'm using vtiger CRM 5.0.4 with Russian language Pack. > > > > > > I've noticed a bug in "\modules\Leads\ListViewTop.php" on line 115: > > > > > > $Top_Leads = (strlen($lead['leadname']) > 20) ? > > > (substr($lead['leadname'],0,20).'...') : $lead['leadname']; > > > > > > Neither "substr" nor "strlen" work correct with Unicode chars. > > > > > > I found a solution, to use mb_strlen and mb_substr. Is it suitable to > > > use > > > this functions or there are some other suggestions how to fix it? > > > > > > > > > > > > > > > > > > > > > Best regards, > > > Denys Potapov > > > > > > _______________________________________________ > > > > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080401/2584e57e/attachment-0003.html From stephen at cass-ltd.co.uk Tue Apr 1 05:38:47 2008 From: stephen at cass-ltd.co.uk (stephen at cass-ltd.co.uk) Date: Tue, 1 Apr 2008 13:38:47 +0100 Subject: [Vtigercrm-developers] PostgreSQL support Message-ID: <2b2cf48288ead57e23c7254ea0d5f05a@localhost> Hello all, I saw a thread in December about PostgreSQL support for VTiger. Jens Hamisch had done a fair amount of work to achieving this goal and I am wondering on the current status. Regards, Stephen. From ckwu at ck-erp.net Thu Apr 3 22:46:54 2008 From: ckwu at ck-erp.net (C K Wu) Date: Fri, 04 Apr 2008 13:46:54 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.27.1 released (with vTiger 5.0.4 connector) Message-ID: <47F5C0CE.2000200@ck-erp.net> Hi, folks, I have posted a new release, v.0.27.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, connector for AssetMan connector for Coppermine connector for Gallery2 connector for phpMyTicket enhanced navigation bar CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 22 modules - Administration, i18n, Contact Management, Customer Relationship, Customer Self Service, Vendor Relationship, Ledger, Bank Reconciliation, MRP, Warehouse, Inventory, Service, AP, AR, PO, SO, Quotation, POS for Cashier, POS for Manager, HR, Staff Self Service and Payroll. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Please report error and suggestion to the discussion group / mailing list, CK-ERP-en(at)googlegroups.com or CK-ERP-zh_CN(at)googlegroups.com . General history and expected development is available at the discussion group's Archive. Supported MiddleWares: AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; MyHandyRestaurant; PHPJB; FreightFleetManagementSystem; OpenX, LandShop, FreeRealty; IRM; LegalCase; MirrorMed, ClearHealth, OpenEMR; eGroupWare, Horde-GroupWare; Zencart, CRELoaded, osCMax, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger, XRMS; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net http://ck-erp.info Download is available from, http://sourceforge.net/projects/ck-erp http://gforge.oss.org.cn/projects/ck-erp http://gforge.lupaworld.com/projects/ck-erp http://gro.clinux.org/projects/ck-ledger Cheers, Wu Chiu Kay, aka CK Wu, aka CK (CK is the preferred alias) Hong Kong From nolan at peaceworks.ca Mon Apr 7 22:04:24 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 01:04:24 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <12613936.161207630770748.JavaMail.root@zimbra> Message-ID: <29762786.181207631064709.JavaMail.root@zimbra> Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. From brian at pr2k.com Mon Apr 7 22:35:16 2008 From: brian at pr2k.com (Brian Laughlin) Date: Mon, 7 Apr 2008 22:35:16 -0700 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: Wow, that is a great list. -----Original Message----- From: Nolan Andres [mailto:nolan at peaceworks.ca] Sent: Monday, April 07, 2008 10:04 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] List of potential contributions - feedback requested Hey, everyone... I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. The customizations are so extensive, and the transition from 4.2 to 5.0 was so rocky that the client has never been willing to make the move. They still aren't. However, we just got permission from them to contribute any useful modifications and modules to the project. Hooray! My company is willing to provide at least some amount of work to make the transition from 4.2 to 5.0 for these components, but I wanted to post a short annotated list to find out whether any of these pieces might be of interest to the community, and if so, how they might be prioritized. Here's the list. Please let me know what you think. Any of these sound interesting? -------- 1. Auto-Email Standardization Our client found the vTiger email notification stuff disconcerting. Reasons for emails going out were not clearly enumerated or codified, and control over these emails was limited at best. We wrote a framework that provides a series of Auto-Email categories: * entity-created: sends when an entity of the chosen type is created * entity-altered: sends when an entity of the chosen type is altered * entity-deleted: sends when an entity of the chosen type is deleted * value-triggered: sends when a set of value conditions on an entity of the chosen type is met (can be scheduled, or reactive--on save) * scheduled custom: executes a custom function on schedule * scheduled report: emails a report on schedule A wide variety of options exist for sending the email notifications: * send to arbitrary email address(es) * send to user(s) * send to contact(s) * send to assigned user * send to team * do not send to triggering user * can send attachments Schedules can be set yearly, monthly, weekly, daily, hourly, each minute Subject and body are template-driven, allowing parameters from triggering entities of the chosen type. ------------------------------- 2. Google Earth Report Integration Provides a configuration tool (part of the report specification) that allows report attributes to be output within the context of a real-time KML feed as parts of a placemark. As an example, you can visualize the results of a report...say a report on your Accounts...in Google Earth...see the geographic distribution of your Accounts. ------------------------------- 3. Improvements to Uploads/File Attachments to Entities Implements per-entity-type file repositories that can have internal folder hierarchies and maintain per-entity folders (no more clobbering files of the same name that were uploaded/attached to a different entity). Utilizes a JavaScript file browser, and allows vTiger to maintain file permissions on files and folders (optional). -------------------------------- 4. Timesheets I know TSolucio has one of these. We tried it out and it didn't match the needs we had very well. I suspect we'll just provide this one as an alternative to the TSolucio one from our website, just in case someone else's needs are more closely aligned with the ones our client had. --------------------------------- 5. Report Folder Permissions / Personal Report Folders We added Reports to the profile management functionality, and added a personal "My Reports" folder for each user. You can hide report folders from some users, allow certain users to create new reports or manage certain folders, etc. Each user has their own My Reports folder where they can create reports of their own. When users have access to view a Report (but not edit it) and they want to customize it, they can clone it to their My Reports folder and modify it there. ----------------------------------- 6. Custom Field Improvements We put the custom fields inside a tabbed (JS) block. Added Custom Field management functionality that allows admin users to create more tabs, blocks, and sub-blocks, arranging (and rearranging) custom fields within them. Really useful when you have a lot of custom fields. When multiple tabs have not been created, the Custom Fields block looks as it normally does. Also allows Custom Fields to be renamed. ------------------------------------ As I said, we'd love to hear feedback on these. If there's anything that the vTiger project can use, we'd be happy to contribute them. We've done a lot of work with vTiger, and it's been a huge success both for us and for our client. It would be great to have the opportunity to contribute back. peace, Nolan Andres PeaceWorks Computer Consulting Inc. _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com From ddfire at gmail.com Tue Apr 8 05:07:58 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 09:07:58 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: all the items are VERY interesting. your list is a new version. vtiger 5.0.5 code name paceworks :-) thanks. David 2008/4/8 Nolan Andres : > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/fd8fa686/attachment-0003.html From prasad at vtiger.com Tue Apr 8 05:19:26 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:49:26 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080519n51d8eedel67f29fa691692b3d@mail.gmail.com> Hi Nolan Andres, Really a good piece of work. I would like to thank you and your client(s) for deciding to contribute back. If you can share code with us with more details that will make it easy to analyze it further. Regards, Prasad vtiger Team On 4/8/08, Nolan Andres wrote: > > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For > over 2 years, now, my company has been doing customization work on vTiger, > most of it on a highly customized installation that is still running v4.2. > > The customizations are so extensive, and the transition from 4.2 to 5.0 > was so rocky that the client has never been willing to make the move. They > still aren't. > > However, we just got permission from them to contribute any useful > modifications and modules to the project. Hooray! My company is willing to > provide at least some amount of work to make the transition from 4.2 to 5.0 > for these components, but I wanted to post a short annotated list to find > out whether any of these pieces might be of interest to the community, and > if so, how they might be prioritized. > > Here's the list. Please let me know what you think. Any of these sound > interesting? > > -------- > 1. Auto-Email Standardization > > Our client found the vTiger email notification stuff disconcerting. > Reasons for emails going out were not clearly enumerated or codified, and > control over these emails was limited at best. We wrote a framework that > provides a series of Auto-Email categories: > * entity-created: sends when an entity of the chosen type is created > * entity-altered: sends when an entity of the chosen type is altered > * entity-deleted: sends when an entity of the chosen type is deleted > * value-triggered: sends when a set of value conditions on an entity of > the chosen type is met (can be scheduled, or reactive--on save) > * scheduled custom: executes a custom function on schedule > * scheduled report: emails a report on schedule > > A wide variety of options exist for sending the email notifications: > * send to arbitrary email address(es) > * send to user(s) > * send to contact(s) > * send to assigned user > * send to team > * do not send to triggering user > * can send attachments > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > Subject and body are template-driven, allowing parameters from triggering > entities of the chosen type. > > ------------------------------- > > 2. Google Earth Report Integration > > Provides a configuration tool (part of the report specification) that > allows report attributes to be output within the context of a real-time KML > feed as parts of a placemark. As an example, you can visualize the results > of a report...say a report on your Accounts...in Google Earth...see the > geographic distribution of your Accounts. > > ------------------------------- > > 3. Improvements to Uploads/File Attachments to Entities > > Implements per-entity-type file repositories that can have internal folder > hierarchies and maintain per-entity folders (no more clobbering files of the > same name that were uploaded/attached to a different entity). Utilizes a > JavaScript file browser, and allows vTiger to maintain file permissions on > files and folders (optional). > > -------------------------------- > > 4. Timesheets > > I know TSolucio has one of these. We tried it out and it didn't match the > needs we had very well. I suspect we'll just provide this one as an > alternative to the TSolucio one from our website, just in case someone > else's needs are more closely aligned with the ones our client had. > > --------------------------------- > > 5. Report Folder Permissions / Personal Report Folders > > We added Reports to the profile management functionality, and added a > personal "My Reports" folder for each user. You can hide report folders from > some users, allow certain users to create new reports or manage certain > folders, etc. Each user has their own My Reports folder where they can > create reports of their own. When users have access to view a Report (but > not edit it) and they want to customize it, they can clone it to their My > Reports folder and modify it there. > > ----------------------------------- > > 6. Custom Field Improvements > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > management functionality that allows admin users to create more tabs, > blocks, and sub-blocks, arranging (and rearranging) custom fields within > them. Really useful when you have a lot of custom fields. When multiple tabs > have not been created, the Custom Fields block looks as it normally does. > Also allows Custom Fields to be renamed. > > ------------------------------------ > > > As I said, we'd love to hear feedback on these. If there's anything that > the vTiger project can use, we'd be happy to contribute them. We've done a > lot of work with vTiger, and it's been a huge success both for us and for > our client. It would be great to have the opportunity to contribute back. > > peace, > > Nolan Andres > PeaceWorks Computer Consulting Inc. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/1130ff0f/attachment-0003.html From prasad at vtiger.com Tue Apr 8 05:20:03 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 17:50:03 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Hi David, Interesting code name :) Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > all the items are VERY interesting. > your list is a new version. > vtiger 5.0.5 code name paceworks :-) > > thanks. > David > > 2008/4/8 Nolan Andres : > > > Hey, everyone... > > > > I've been lurking on this list for quite a while (could be 2 years!) For > > over 2 years, now, my company has been doing customization work on vTiger, > > most of it on a highly customized installation that is still running v4.2. > > > > The customizations are so extensive, and the transition from 4.2 to 5.0 > > was so rocky that the client has never been willing to make the move. They > > still aren't. > > > > However, we just got permission from them to contribute any useful > > modifications and modules to the project. Hooray! My company is willing to > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > for these components, but I wanted to post a short annotated list to find > > out whether any of these pieces might be of interest to the community, and > > if so, how they might be prioritized. > > > > Here's the list. Please let me know what you think. Any of these sound > > interesting? > > > > -------- > > 1. Auto-Email Standardization > > > > Our client found the vTiger email notification stuff disconcerting. > > Reasons for emails going out were not clearly enumerated or codified, and > > control over these emails was limited at best. We wrote a framework that > > provides a series of Auto-Email categories: > > * entity-created: sends when an entity of the chosen type is created > > * entity-altered: sends when an entity of the chosen type is altered > > * entity-deleted: sends when an entity of the chosen type is deleted > > * value-triggered: sends when a set of value conditions on an entity of > > the chosen type is met (can be scheduled, or reactive--on save) > > * scheduled custom: executes a custom function on schedule > > * scheduled report: emails a report on schedule > > > > A wide variety of options exist for sending the email notifications: > > * send to arbitrary email address(es) > > * send to user(s) > > * send to contact(s) > > * send to assigned user > > * send to team > > * do not send to triggering user > > * can send attachments > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each minute > > > > Subject and body are template-driven, allowing parameters from > > triggering entities of the chosen type. > > > > ------------------------------- > > > > 2. Google Earth Report Integration > > > > Provides a configuration tool (part of the report specification) that > > allows report attributes to be output within the context of a real-time KML > > feed as parts of a placemark. As an example, you can visualize the results > > of a report...say a report on your Accounts...in Google Earth...see the > > geographic distribution of your Accounts. > > > > ------------------------------- > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > Implements per-entity-type file repositories that can have internal > > folder hierarchies and maintain per-entity folders (no more clobbering files > > of the same name that were uploaded/attached to a different entity). > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > permissions on files and folders (optional). > > > > -------------------------------- > > > > 4. Timesheets > > > > I know TSolucio has one of these. We tried it out and it didn't match > > the needs we had very well. I suspect we'll just provide this one as an > > alternative to the TSolucio one from our website, just in case someone > > else's needs are more closely aligned with the ones our client had. > > > > --------------------------------- > > > > 5. Report Folder Permissions / Personal Report Folders > > > > We added Reports to the profile management functionality, and added a > > personal "My Reports" folder for each user. You can hide report folders from > > some users, allow certain users to create new reports or manage certain > > folders, etc. Each user has their own My Reports folder where they can > > create reports of their own. When users have access to view a Report (but > > not edit it) and they want to customize it, they can clone it to their My > > Reports folder and modify it there. > > > > ----------------------------------- > > > > 6. Custom Field Improvements > > > > We put the custom fields inside a tabbed (JS) block. Added Custom Field > > management functionality that allows admin users to create more tabs, > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > them. Really useful when you have a lot of custom fields. When multiple tabs > > have not been created, the Custom Fields block looks as it normally does. > > Also allows Custom Fields to be renamed. > > > > ------------------------------------ > > > > > > As I said, we'd love to hear feedback on these. If there's anything that > > the vTiger project can use, we'd be happy to contribute them. We've done a > > lot of work with vTiger, and it's been a huge success both for us and for > > our client. It would be great to have the opportunity to contribute back. > > > > peace, > > Nolan Andres > > PeaceWorks Computer Consulting Inc. > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/80478339/attachment-0003.html From ddfire at gmail.com Tue Apr 8 06:37:23 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 10:37:23 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> References: <12613936.161207630770748.JavaMail.root@zimbra> <29762786.181207631064709.JavaMail.root@zimbra> <39d18b250804080520o254154a0k166e29cbde74bcbe@mail.gmail.com> Message-ID: hi i am still looking for a complete or at least a almost complete guide to make a news module, i am not a programing guru but i can program a new module if i have a good guide.... any one? of course i will give the new modules to the community thanks David 2008/4/8 Prasad : > Hi David, > > Interesting code name :) > > Regards, > Prasad > vtiger Team > > > On 4/8/08, David fire wrote: > > > > all the items are VERY interesting. > > your list is a new version. > > vtiger 5.0.5 code name paceworks :-) > > > > thanks. > > David > > > > 2008/4/8 Nolan Andres : > > > > > Hey, everyone... > > > > > > I've been lurking on this list for quite a while (could be 2 years!) > > > For over 2 years, now, my company has been doing customization work on > > > vTiger, most of it on a highly customized installation that is still running > > > v4.2. > > > > > > The customizations are so extensive, and the transition from 4.2 to > > > 5.0 was so rocky that the client has never been willing to make the move. > > > They still aren't. > > > > > > However, we just got permission from them to contribute any useful > > > modifications and modules to the project. Hooray! My company is willing to > > > provide at least some amount of work to make the transition from 4.2 to 5.0 > > > for these components, but I wanted to post a short annotated list to find > > > out whether any of these pieces might be of interest to the community, and > > > if so, how they might be prioritized. > > > > > > Here's the list. Please let me know what you think. Any of these sound > > > interesting? > > > > > > -------- > > > 1. Auto-Email Standardization > > > > > > Our client found the vTiger email notification stuff disconcerting. > > > Reasons for emails going out were not clearly enumerated or codified, and > > > control over these emails was limited at best. We wrote a framework that > > > provides a series of Auto-Email categories: > > > * entity-created: sends when an entity of the chosen type is created > > > * entity-altered: sends when an entity of the chosen type is altered > > > * entity-deleted: sends when an entity of the chosen type is deleted > > > * value-triggered: sends when a set of value conditions on an entity > > > of the chosen type is met (can be scheduled, or reactive--on save) > > > * scheduled custom: executes a custom function on schedule > > > * scheduled report: emails a report on schedule > > > > > > A wide variety of options exist for sending the email notifications: > > > * send to arbitrary email address(es) > > > * send to user(s) > > > * send to contact(s) > > > * send to assigned user > > > * send to team > > > * do not send to triggering user > > > * can send attachments > > > > > > Schedules can be set yearly, monthly, weekly, daily, hourly, each > > > minute > > > > > > Subject and body are template-driven, allowing parameters from > > > triggering entities of the chosen type. > > > > > > ------------------------------- > > > > > > 2. Google Earth Report Integration > > > > > > Provides a configuration tool (part of the report specification) that > > > allows report attributes to be output within the context of a real-time KML > > > feed as parts of a placemark. As an example, you can visualize the results > > > of a report...say a report on your Accounts...in Google Earth...see the > > > geographic distribution of your Accounts. > > > > > > ------------------------------- > > > > > > 3. Improvements to Uploads/File Attachments to Entities > > > > > > Implements per-entity-type file repositories that can have internal > > > folder hierarchies and maintain per-entity folders (no more clobbering files > > > of the same name that were uploaded/attached to a different entity). > > > Utilizes a JavaScript file browser, and allows vTiger to maintain file > > > permissions on files and folders (optional). > > > > > > -------------------------------- > > > > > > 4. Timesheets > > > > > > I know TSolucio has one of these. We tried it out and it didn't match > > > the needs we had very well. I suspect we'll just provide this one as an > > > alternative to the TSolucio one from our website, just in case someone > > > else's needs are more closely aligned with the ones our client had. > > > > > > --------------------------------- > > > > > > 5. Report Folder Permissions / Personal Report Folders > > > > > > We added Reports to the profile management functionality, and added a > > > personal "My Reports" folder for each user. You can hide report folders from > > > some users, allow certain users to create new reports or manage certain > > > folders, etc. Each user has their own My Reports folder where they can > > > create reports of their own. When users have access to view a Report (but > > > not edit it) and they want to customize it, they can clone it to their My > > > Reports folder and modify it there. > > > > > > ----------------------------------- > > > > > > 6. Custom Field Improvements > > > > > > We put the custom fields inside a tabbed (JS) block. Added Custom > > > Field management functionality that allows admin users to create more tabs, > > > blocks, and sub-blocks, arranging (and rearranging) custom fields within > > > them. Really useful when you have a lot of custom fields. When multiple tabs > > > have not been created, the Custom Fields block looks as it normally does. > > > Also allows Custom Fields to be renamed. > > > > > > ------------------------------------ > > > > > > > > > As I said, we'd love to hear feedback on these. If there's anything > > > that the vTiger project can use, we'd be happy to contribute them. We've > > > done a lot of work with vTiger, and it's been a huge success both for us and > > > for our client. It would be great to have the opportunity to contribute > > > back. > > > > > > peace, > > > Nolan Andres > > > PeaceWorks Computer Consulting Inc. > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/2093e151/attachment-0003.html From ddfire at gmail.com Tue Apr 8 07:01:20 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:01:20 -0300 Subject: [Vtigercrm-developers] a little bug? Message-ID: hi i have added some custom fields and then i edited the sql to change the blocks where the cf are. now i am trying to disable this fields for one profile but nothing happened... i disabled a normal field and it works. what can i do? thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/de651461/attachment-0003.html From nolan at peaceworks.ca Tue Apr 8 07:15:22 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 10:15:22 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32250839.1271207664065154.JavaMail.root@zimbra> Message-ID: <32428513.1321207664122063.JavaMail.root@zimbra> Hey... Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. Prasad, should I send the code to you, or should I just post it here? peace, Nolan ----- "Prasad" wrote: > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > From ddfire at gmail.com Tue Apr 8 07:21:04 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:21:04 -0300 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: hi i think the most important upgrade is the 6. Custom Field Improvements this should go first. David 2008/4/8 Nolan Andres : > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/a1597200/attachment-0003.html From james at sitek.com.au Tue Apr 8 07:26:59 2008 From: james at sitek.com.au (James Moey) Date: Wed, 09 Apr 2008 00:26:59 +1000 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <47FB80B3.3060003@sitek.com.au> I can help with the porting. I am interested in Custom Field Improvement as well. I have some experience in block and JS. I would be more than happy to port that over to 5.0.4. Regards, James Nolan Andres wrote: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > >> Hi Nolan Andres, >> >> Really a good piece of work. I would like to thank you and your >> client(s) for deciding to contribute back. >> >> If you can share code with us with more details that will make it easy >> to analyze it further. >> >> Regards, >> Prasad >> vtiger Team >> >> >> > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/0ffc52d3/attachment-0003.html From prasad at vtiger.com Tue Apr 8 07:29:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 19:59:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32250839.1271207664065154.JavaMail.root@zimbra> <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <39d18b250804080729v7b70c418o77c0b1c09a3365f2@mail.gmail.com> Hi Nolan Andres, Thank you very much for taking more initiative. Kindly share code with me and also put CC to out developer list This way our developers can enhance the interesting feature a bit more. It will definitely take more time for us to analyze the code contribution, so please be patient till then. Hope you don't mind if we get back to you for any clarifications. Regards, Prasad On 4/8/08, Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* > quickly and is willing to help with the port of that feature, we might be > able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > > Nolan > > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/c2b721b5/attachment-0003.html From prasad at vtiger.com Tue Apr 8 07:37:15 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:07:15 +0530 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: References: Message-ID: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Hi David, What changes did you make to change the blocks for the custom field? Can you please check if without change the blocks, the custom field can be disabled for the profile? Regards, Prasad vtiger Team On 4/8/08, David fire wrote: > > hi > i have added some custom fields and then i edited the sql to change the > blocks where the cf are. > now i am trying to disable this fields for one profile but nothing > happened... i disabled a normal field and it works. > what can i do? > thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/eec1f14b/attachment-0003.html From prasad at vtiger.com Tue Apr 8 07:39:17 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 20:09:17 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FB80B3.3060003@sitek.com.au> References: <32428513.1321207664122063.JavaMail.root@zimbra> <47FB80B3.3060003@sitek.com.au> Message-ID: <39d18b250804080739o6e8b2d69q76328f7031339384@mail.gmail.com> Hi James, Thank you for taking up the initiative. I have asked Nolan to copy over the code contribution, please keep watching the thread. Regards, Prasad vtiger Team On 4/8/08, James Moey wrote: > > I can help with the porting. I am interested in Custom Field Improvement > as well. I have some experience in block and JS. I would be more than happy > to port that over to 5.0.4. > > Regards, > James > > Nolan Andres wrote: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/8621afb5/attachment-0003.html From ddfire at gmail.com Tue Apr 8 07:52:30 2008 From: ddfire at gmail.com (David fire) Date: Tue, 8 Apr 2008 11:52:30 -0300 Subject: [Vtigercrm-developers] a little bug? In-Reply-To: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> References: <39d18b250804080737q4c9ecfc5g519327132495674f@mail.gmail.com> Message-ID: i only change the field block inthe vtiger_field table i created a new profile and it works perfect. thanks David 2008/4/8 Prasad : > Hi David, > > What changes did you make to change the blocks for the custom field? > > Can you please check if without change the blocks, the custom field can be > disabled for the profile? > > Regards, > Prasad > vtiger Team > > On 4/8/08, David fire wrote: > > > hi > > i have added some custom fields and then i edited the sql to change the > > blocks where the cf are. > > now i am trying to disable this fields for one profile but nothing > > happened... i disabled a normal field and it works. > > what can i do? > > thanks > > > > -- > > (\__/) > > (='.'=)This is Bunny. Copy and paste bunny into your > > (")_(")signature to help him gain world domination. > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/d229f8e4/attachment-0003.html From joe at tsolucio.com Tue Apr 8 08:33:21 2008 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 08 Apr 2008 17:33:21 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <32428513.1321207664122063.JavaMail.root@zimbra> References: <32428513.1321207664122063.JavaMail.root@zimbra> Message-ID: <1207668801.26617.40.camel@joesunix.int> Hi All, I have been contracted by IMED Mobility to create a vtigerCRM email list system. The design we have accorded with Imed, has more or less the same goals as Peaceworks/Sutherland-Schultz number 1 extension. Imed decided to fund the development of the extension and release it as an opensource extension on the forge. I have been given permission to speak in their name and help Peaceworks to port their extension to 5.0.4 and make it available to the community, on the forge and in the base product if vtiger team sees it fit. At the moment I would like to thank Peaceworks and Sutherland-Schultz for there contribution. Nolan, if you are interested in working with TSolucio drop me an email. We will set up a forge project and port your mailing system to 5.0.4 Regards, Joe TSolucio El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From prasad at vtiger.com Tue Apr 8 09:50:00 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:20:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <39d18b250804080950h486d1609tadc37ba99498536@mail.gmail.com> Hi Joe, Thank you for the updates Joe. We have are being informed about several extensions on the mailing part of vtiger CRM. Glad to see your initiative on the item 1. Regards, Prasad vtiger Team On 4/8/08, Joe Bordes wrote: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention my > client, who have generously agreed to contribute this work that they paid > for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. ( > www.sutherland-schultz.com) > > > > It looks like this is the way to proceed. I think what I'll do is start > pulling together some screenshots and example code chunks for each of the > features, and send them to Prasad so they can check them out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) they > have some client-specific parts that we will want to excise (stuff that I > don't think is very useful for the community at large) before they are > contributed. The upshot is that it will take a little bit of work (read > *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there are > certain things that would be *really* helpful to someone, I could see us > prioritizing them so that we do those first. Not sure we'll be able to get > everything together for a single version release (thanks for the nod, > anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, we > might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > > Hi Nolan Andres, > > > > > > Really a good piece of work. I would like to thank you and your > > > client(s) for deciding to contribute back. > > > > > > If you can share code with us with more details that will make it easy > > > to analyze it further. > > > > > > Regards, > > > Prasad > > > vtiger Team > > > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/7353fe0f/attachment-0003.html From tzenk at gmx.net Tue Apr 8 09:55:08 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 08 Apr 2008 18:55:08 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <1207668801.26617.40.camel@joesunix.int> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> Message-ID: <47FBA36C.5020301@gmx.net> Hi everybody, besides the fact that all of these modules sound very interesting i think #6 is the most interesting for the majority of vTiger-users, as the custom fields do play a BIG role in setting up different setups of vTiger for different usage. The custom fields feature is a vast Plus within vtiger already, a little more extended makes it even vaster, to leave my few words on this. And as always: If you wizards need an extensive themer /tester / documenter/ translator (native german/ native english) on anything around vTiger count me in. Greetings Torsten Zenk Joe Bordes schrieb: > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > >> Hey... >> >> Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) >> >> It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. >> >> As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. >> >> That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) >> >> If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. >> >> Prasad, should I send the code to you, or should I just post it here? >> >> peace, >> Nolan >> >> >> ----- "Prasad" wrote: >> >> >>> Hi Nolan Andres, >>> >>> Really a good piece of work. I would like to thank you and your >>> client(s) for deciding to contribute back. >>> >>> If you can share code with us with more details that will make it easy >>> to analyze it further. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> >>> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/82607ff9/attachment-0003.html From prasad at vtiger.com Tue Apr 8 10:11:46 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 8 Apr 2008 22:41:46 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> References: <32428513.1321207664122063.JavaMail.root@zimbra> <1207668801.26617.40.camel@joesunix.int> <47FBA36C.5020301@gmx.net> Message-ID: <39d18b250804081011j6f173a19u74071920c23dcff4@mail.gmail.com> Hi Torsten, Glad to hear about your involvement :) Regards, Prasad On 4/8/08, Torsten Zenk wrote: > > Hi everybody, > besides the fact that all of these modules sound very interesting i think > #6 is the most interesting for the majority of vTiger-users, as the custom > fields do play a BIG role in setting up different setups of vTiger for > different usage. The custom fields feature is a vast Plus within vtiger > already, a little more extended makes it even vaster, to leave my few words > on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything around > vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email list > system. The design we have accorded with Imed, has more or less the same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it as > an opensource extension on the forge. > I have been given permission to speak in their name and help Peaceworks > to port their extension to 5.0.4 and make it available to the community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention my client, who have generously agreed to contribute this work that they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, Canada. (www.sutherland-schultz.com) > > It looks like this is the way to proceed. I think what I'll do is start pulling together some screenshots and example code chunks for each of the features, and send them to Prasad so they can check them out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) they have some client-specific parts that we will want to excise (stuff that I don't think is very useful for the community at large) before they are contributed. The upshot is that it will take a little bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there are certain things that would be *really* helpful to someone, I could see us prioritizing them so that we do those first. Not sure we'll be able to get everything together for a single version release (thanks for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving *very* quickly and is willing to help with the port of that feature, we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080408/6ff25893/attachment-0003.html From alanslists at gmail.com Tue Apr 8 13:55:47 2008 From: alanslists at gmail.com (Alan Lord) Date: Tue, 08 Apr 2008 21:55:47 +0100 Subject: [Vtigercrm-developers] Hello and the webform module Message-ID: <47FBDBD3.60602@gmail.com> Sorry in advance - this is quite a long message... ---------- Hello. I'm Alan, and I run an Open Source training, consulting and support services business here in the UK. We have been "playing" with vtiger for some time and now would like to contribute something back. I have recently been looking at the webform module and have some ideas, but I am struggling to get passed first base due to the db abstraction library and some rather obfuscated code... Anyway, first, A brief idea of what I'd like to do with the webform module: 1. Abstract the client side so that there is minimal or no hardcoding of form parameters and eliminate the need for manual duplication of lists of php arrays in 5 or 6 places as is now the case. 2. Migrate the forms to be valid XHTML (no tables) with external stylesheet(s). 3. Option to notify admin or other vtiger user by email that a form has been submitted. 4. Introduce a nice and friendly form builder (probably using something like the dojo toolkit to give a good user experience). With respect to the above I have done some work already. 1. During some initial hacking, the client end of the webform package now has a single array construct which holds the basic form field parameters and labels etc in config.php. This is the only place - on the client side - where changes need to be made to alter your form's basic field layout and structure. However, the interaction to the server is not fixed. The vtiger file soap/webform.php needs manually hacking in several places to match the client side configuration. 2. This is kind of done. 3. Sort of done. It works but the email notification is done at the client end. This depends on the client server having sendmail(). I'd like to move this function back to vtiger. Don't think it should be too hard, but haven't looked into it yet. 4. Not started Completing "1." above is giving me a headache! What I am trying to achieve is something along the following lines: *Start the client end "form building process" *Select the type of form you'd like to make/edit *Upload the schema for the relevant fields from the user's vtiger installation and use that information to create the basic form layout data... It is here's where I am stuck. Is there any decent documentation on the database abstraction library that is being used? I find even simple queries respond with vast amounts of superfluous data. For example a query like: "SHOW TABLES LIKE 'vtiger_".$form."%'" responds with the data but also with a tremendous amount of noise. And with that particular query I can't seem to iterate through the result and filter it because of using a wildcard in the query. Any ideas? My plan is generate an xml schema for the fields that are available for a particular kind of form. This would be used to generate the wsdl on vtiger and be cached in a local (client-side) file and only updated as and when necessary. The benefit being it will display any custom fields or should vtiger's schema change with a new release, no manual updating would be necessary. The client side Form Builder would be able to use this data to build the initial UI and when the user has selected the fields to display etc, the "design" will be saved in an XHTML file for deployment along with a basic stylesheet. **Any help with extracting the data from the db would be most helpful.** I have looked at some of the functions in the MS word module (which gets the "lead" field structure for example, but no schema information) as a starting point but it doesn't go far enough and also has hardcoded wsdl structures. I also have some ideas to develop the webform module further once I get the basics working: Possibly use a Javascript SOAP library, so no client-side "server scripting" language like PHP would be needed at all (fully platform agnostic). Or, enable the form to be so standalone that other contributors could write client form processors in other languages like ASP, Ruby, Java etc... Improvements in end-user functionality such as addition of optional calendar features for using the form for booking appointments/events, adding a unique UUID to individual mail campaign emails (or just campaigns) so when a new user hit's the form, we know how he got there... And a few others ideas too. Sorry again for the length. Alan -- The way out is open! http://www.theopensourcerer.com From nolan at peaceworks.ca Tue Apr 8 14:39:09 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Tue, 8 Apr 2008 17:39:09 -0400 (EDT) Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <47FBA36C.5020301@gmx.net> Message-ID: <8292881.6651207690749583.JavaMail.root@zimbra> hey... I agree with Torsten. The Custom Field stuff is important. For the same reason, actually, I think the Reports stuff is pretty valuable, too. Based on the replies so far, though... 1. I've submitted a request for a forge project for the AutoEmail stuff, and am in conversation with Joe on that. I'll make sure to keep this list apprised of any developments as things move forward there. 2. I'll start pulling together some of the Custom Field stuff tonight so that I can let people know what's all involved. I'm thinking that this particular one may be a fairly easy port to 5.0.4 if the decisions I made stand the test of community inspection. Even if not, I think it'll still be pretty quick. It's really not all that complex in the end. peace, Nolan PeaceWorks Computer Consulting Inc. www.peaceworks.ca Empowering People We Believe In ----- "Torsten Zenk" wrote: > Hi everybody, > besides the fact that all of these modules sound very interesting i > think #6 is the most interesting for the majority of vTiger-users, as > the custom fields do play a BIG role in setting up different setups of > vTiger for different usage. The custom fields feature is a vast Plus > within vtiger already, a little more extended makes it even vaster, to > leave my few words on this. > > And as always: If you wizards need an extensive themer /tester / > documenter/ translator (native german/ native english) on anything > around vTiger count me in. > > Greetings > Torsten Zenk > > > > Joe Bordes schrieb: > > Hi All, > > I have been contracted by IMED Mobility to create a vtigerCRM email > list > system. The design we have accorded with Imed, has more or less the > same > goals as Peaceworks/Sutherland-Schultz number 1 extension. > Imed decided to fund the development of the extension and release it > as > an opensource extension on the forge. > I have been given permission to speak in their name and help > Peaceworks > to port their extension to 5.0.4 and make it available to the > community, > on the forge and in the base product if vtiger team sees it fit. > At the moment I would like to thank Peaceworks and Sutherland-Schultz > for there contribution. > > Nolan, if you are interested in working with TSolucio drop me an > email. > We will set up a forge project and port your mailing system to 5.0.4 > > Regards, Joe > TSolucio > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > Hey... > > Thanks, folks, for your kind words. I would be remiss to not mention > my client, who have generously agreed to contribute this work that > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > Canada. ( www.sutherland-schultz.com ) > > It looks like this is the way to proceed. I think what I'll do is > start pulling together some screenshots and example code chunks for > each of the features, and send them to Prasad so they can check them > out more carefully. > > As I said, these components are all v4.2, plus (as you may imagine) > they have some client-specific parts that we will want to excise > (stuff that I don't think is very useful for the community at large) > before they are contributed. The upshot is that it will take a little > bit of work (read *time*) to port these to 5.0.x. > > That is to some extent why I wanted to check on priorities. If there > are certain things that would be *really* helpful to someone, I could > see us prioritizing them so that we do those first. Not sure we'll be > able to get everything together for a single version release (thanks > for the nod, anyway, David) but we'll see what we can do ;) > > If anybody else is *really* interested in getting something moving > *very* quickly and is willing to help with the port of that feature, > we might be able to arrange that. > > Prasad, should I send the code to you, or should I just post it here? > > peace, > Nolan > > > ----- "Prasad" wrote: > > Hi Nolan Andres, > > Really a good piece of work. I would like to thank you and your > client(s) for deciding to contribute back. > > If you can share code with us with more details that will make it easy > to analyze it further. > > Regards, > Prasad > vtiger Team _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From prasad at vtiger.com Wed Apr 9 08:31:16 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 9 Apr 2008 21:01:16 +0530 Subject: [Vtigercrm-developers] Hello and the webform module In-Reply-To: <47FBDBD3.60602@gmail.com> References: <47FBDBD3.60602@gmail.com> Message-ID: <39d18b250804090831n27af6b6crc36846b746865848@mail.gmail.com> Hi Alan, Good to see you got started on the developer list. vtiger CRM uses adodb library: http://adodb.sourceforge.net/ Look at vtigercrm/include/database/PearDatabase.php which uses adodb functions. Regards, Prasad vtiger Team On 4/9/08, Alan Lord wrote: > > Sorry in advance - this is quite a long message... > ---------- > > Hello. > > I'm Alan, and I run an Open Source training, consulting and support > services business here in the UK. > > We have been "playing" with vtiger for some time and now would like to > contribute something back. > > I have recently been looking at the webform module and have some ideas, > but I am struggling to get passed first base due to the db abstraction > library and some rather obfuscated code... > > Anyway, first, A brief idea of what I'd like to do with the webform > module: > > 1. Abstract the client side so that there is minimal or no hardcoding of > form parameters and eliminate the need for manual duplication of lists > of php arrays in 5 or 6 places as is now the case. > 2. Migrate the forms to be valid XHTML (no tables) with external > stylesheet(s). > 3. Option to notify admin or other vtiger user by email that a form has > been submitted. > 4. Introduce a nice and friendly form builder (probably using something > like the dojo toolkit to give a good user experience). > > > With respect to the above I have done some work already. > > 1. During some initial hacking, the client end of the webform package > now has a single array construct which holds the basic form field > parameters and labels etc in config.php. This is the only place - on the > client side - where changes need to be made to alter your form's basic > field layout and structure. However, the interaction to the server is > not fixed. The vtiger file soap/webform.php needs manually hacking in > several places to match the client side configuration. > 2. This is kind of done. > 3. Sort of done. It works but the email notification is done at the > client end. This depends on the client server having sendmail(). I'd > like to move this function back to vtiger. Don't think it should be too > hard, but haven't looked into it yet. > 4. Not started > > Completing "1." above is giving me a headache! > > What I am trying to achieve is something along the following lines: > > *Start the client end "form building process" > *Select the type of form you'd like to make/edit > *Upload the schema for the relevant fields from the user's vtiger > installation and use that information to create the basic form layout > data... > > It is here's where I am stuck. Is there any decent documentation on the > database abstraction library that is being used? I find even simple > queries respond with vast amounts of superfluous data. For example a > query like: > > "SHOW TABLES LIKE 'vtiger_".$form."%'" > > responds with the data but also with a tremendous amount of noise. And > with that particular query I can't seem to iterate through the result > and filter it because of using a wildcard in the query. Any ideas? > > My plan is generate an xml schema for the fields that are available for > a particular kind of form. This would be used to generate the wsdl on > vtiger and be cached in a local (client-side) file and only updated as > and when necessary. The benefit being it will display any custom fields > or should vtiger's schema change with a new release, no manual updating > would be necessary. > > The client side Form Builder would be able to use this data to build the > initial UI and when the user has selected the fields to display etc, > the "design" will be saved in an XHTML file for deployment along with a > basic stylesheet. > > **Any help with extracting the data from the db would be most helpful.** > > I have looked at some of the functions in the MS word module (which gets > the "lead" field structure for example, but no schema information) as a > starting point but it doesn't go far enough and also has hardcoded wsdl > structures. > > I also have some ideas to develop the webform module further once I get > the basics working: > > Possibly use a Javascript SOAP library, so no client-side "server > scripting" language like PHP would be needed at all (fully platform > agnostic). Or, enable the form to be so standalone that other > contributors could write client form processors in other languages like > ASP, Ruby, Java etc... > > Improvements in end-user functionality such as addition of optional > calendar features for using the form for booking appointments/events, > adding a unique UUID to individual mail campaign emails (or just > campaigns) so when a new user hit's the form, we know how he got > there... And a few others ideas too. > > Sorry again for the length. > > Alan > > > -- > The way out is open! > http://www.theopensourcerer.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080409/590a9cb5/attachment-0003.html From nolan at peaceworks.ca Wed Apr 9 22:28:23 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Thu, 10 Apr 2008 01:28:23 -0400 (EDT) Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <10479955.131207805299108.JavaMail.root@zimbra> Message-ID: <21806911.151207805303970.JavaMail.root@zimbra> OK... I'm not quite sure how to get started on this Custom Fields thing. Not having had the opportunity to contribute something substantial to this project, I'm not quite sure what the logistics should look like. So...what I've done is package up a first set of stuff, and attached it to this email as a zip. The zip includes: * new files I added * one file I massively altered: include/uifromdbutil.php - this file no longer exists, it's split between include/utils/EditViewUtil.php and DetailViewUtil.php, I believe * one set of instructions for applying my changes to modules/Settings/AddCustomFieldToDB.php In order to complete this, I'll need to either compile a whole bunch more instructions, or else make the changes to the 5.0.4 files myself. Here's where I ask for guidance. If I'm going to make the changes to the 5.0.4 files, I might as well do the port myself. However, going through the remaining files and making the instructions may not be less work. Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 (that's where we branched), but I don't think those will help anyone, will they? peace, Nolan -------------- next part -------------- A non-text attachment was scrubbed... Name: CustomFields.zip Type: application/zip Size: 48443 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/88d9f691/attachment-0003.zip From prasad at vtiger.com Thu Apr 10 01:54:22 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 10 Apr 2008 14:24:22 +0530 Subject: [Vtigercrm-developers] Custom Fields enhancements...getting started In-Reply-To: <21806911.151207805303970.JavaMail.root@zimbra> References: <10479955.131207805299108.JavaMail.root@zimbra> <21806911.151207805303970.JavaMail.root@zimbra> Message-ID: <39d18b250804100154n71443e09s9f69187b317bfc8@mail.gmail.com> Hi Nolan, Good to see your code contribution. Providing the diffs would definitely be useful. Is it possible to include some screenshot to show the changes or enhancements made? Regards, Prasad vtiger Team On 4/10/08, Nolan Andres wrote: > > OK... > > I'm not quite sure how to get started on this Custom Fields thing. Not > having had the opportunity to contribute something substantial to this > project, I'm not quite sure what the logistics should look like. > > So...what I've done is package up a first set of stuff, and attached it to > this email as a zip. The zip includes: > > * new files I added > * one file I massively altered: include/uifromdbutil.php > - this file no longer exists, it's split between > include/utils/EditViewUtil.php and DetailViewUtil.php, I believe > * one set of instructions for applying my changes to > modules/Settings/AddCustomFieldToDB.php > > In order to complete this, I'll need to either compile a whole bunch more > instructions, or else make the changes to the 5.0.4 files myself. Here's > where I ask for guidance. If I'm going to make the changes to the 5.0.4 > files, I might as well do the port myself. However, going through the > remaining files and making the instructions may not be less work. > > Any thoughts, anyone? I could provide diffs for branch 4.2 revision 7802 > (that's where we branched), but I don't think those will help anyone, will > they? > > peace, > > Nolan > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080410/037f53ca/attachment-0003.html From greg at ct-net.org Thu Apr 10 04:10:59 2008 From: greg at ct-net.org (Gregory Machin) Date: Thu, 10 Apr 2008 13:10:59 +0200 Subject: [Vtigercrm-developers] thuderbird plugin not uploading the body for emails Message-ID: <47FDF5C3.1050809@ct-net.org> Hi When I try and use the thunderbird plugin it loses the body of the message and replaces it with "

Experience the difference. Thunderbird is developed and supported by Mozilla, a global community working together to make the Internet a better place for everyone.

For frequently asked questions, tips and general help, visit Thunderbird Help Center.

For product information, visit the Thunderbird Home Page.

" what would cause this ? i'm using thunderbird ver version 2.0.0.12 (20080213) on fedora core 8 linux thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From jcrisp at safeandsoundit.co.uk Thu Apr 10 10:14:35 2008 From: jcrisp at safeandsoundit.co.uk (John Crisp) Date: Thu, 10 Apr 2008 19:14:35 +0200 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <29762786.181207631064709.JavaMail.root@zimbra> References: <29762786.181207631064709.JavaMail.root@zimbra> Message-ID: <47FE4AFB.4010306@safeandsoundit.co.uk> Nolan Andres wrote: > Hey, everyone... > > I've been lurking on this list for quite a while (could be 2 years!) For over 2 years, now, my company has been doing customization work on vTiger, most of it on a highly customized installation that is still running v4.2. > > Me too, but not for quite so long Re custom fields, the biggest bind is that 'LINKED' Custom Fields do not cross update from say an Account to a Contact or vice versa as say the address fields do - there is no linking beyond the point where a Lead is converted to an Account/Potential - at that point they are entities in their own right. I have had a play about with this for a while to see if I can get the fields to update with SQL triggers but am no coder and cannot get anything satisfactory - probably just lousy SQl syntax ! ANY improvement on the usability would be useful. If not, a change to the naming convention for 'LINKED' Custom Fields ;-) Absolutely brilliant to see people contributing stuff back so many thanks to you and your clients ! B. Rgds John From greg at ct-net.org Fri Apr 11 06:13:19 2008 From: greg at ct-net.org (Gregory Machin) Date: Fri, 11 Apr 2008 15:13:19 +0200 Subject: [Vtigercrm-developers] faq loosess leading spaces.. Message-ID: <47FF63EF.9070300@ct-net.org> Hi I have been creating some faq's today and I noticed that once u save the faq it loose all the leading spaces of each line and when u edit again it the spaces are there ... I have a faq that has alot of indentation (leading spaces) and with out it, it looks very messy.. how do I get past this ? notes work station > Using gedit to type the documents ... copy pasted into the faq and edited again to fit Using firefox 2.0.0.13 Using linux Fedora core 8 Thanks -- Gregory Machin CT-Net www.ct-net.org greg at ct-net.org phone : +27 12 379 3497 fax : +27 12 379 4113 Cell : +27 72 524 8096 humans do not use the address below its for trapping spam. spamtrap imasucker at ct-net.org From prasad at vtiger.com Fri Apr 11 10:35:36 2008 From: prasad at vtiger.com (Prasad) Date: Fri, 11 Apr 2008 23:05:36 +0530 Subject: [Vtigercrm-developers] faq loosess leading spaces.. In-Reply-To: <47FF63EF.9070300@ct-net.org> References: <47FF63EF.9070300@ct-net.org> Message-ID: <39d18b250804111035n334c1d1fwf8c54e98899ba35b@mail.gmail.com> Hi Gregory, The leading and trailing spaces are trimmed off from the input values in the following: File: include/utils/CommonUtils.php function setObjectValuesFromRequest($focus) The highlighted line of code can help you to preserve the leading and trailing spaces for Faq module record saving. NOTE: This code is based on vtiger 5.0.4 function setObjectValuesFromRequest($focus) { global $log; ... if(isset($_REQUEST['mode'])) { $focus->mode = $_REQUEST['mode']; } foreach($focus->column_fields as $fieldname => $val) { if(isset($_REQUEST[$fieldname])) { if(is_array($_REQUEST[$fieldname])) $value = $_REQUEST[$fieldname]; else if ($_REQUEST['module'] == 'Faq') $value = $_REQUEST[$fieldname]; else $value = trim($_REQUEST[$fieldname]); $focus->column_fields[$fieldname] = $value; } Hope you find this useful. Regards, Prasad vtiger Team On 4/11/08, Gregory Machin wrote: > > Hi > I have been creating some faq's today and I noticed that once u save the > faq it loose all the leading spaces of each line and when u edit again > it the spaces are there ... I have a faq that has alot of indentation > (leading spaces) and with out it, it looks very messy.. how do I get > past this ? > > notes > work station > > Using gedit to type the documents ... copy pasted into the faq and > edited again to fit > Using firefox 2.0.0.13 > Using linux Fedora core 8 > > Thanks > > > -- > Gregory Machin > CT-Net > www.ct-net.org > greg at ct-net.org > phone : +27 12 379 3497 > fax : +27 12 379 4113 > Cell : +27 72 524 8096 > > humans do not use the address > below its for trapping spam. > spamtrap imasucker at ct-net.org > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080411/6954b26c/attachment-0003.html From prasad at vtiger.com Mon Apr 14 09:51:00 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 14 Apr 2008 22:21:00 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: <39d18b250804140951n40ef9e3bocfb2c6f5ff7088f@mail.gmail.com> Hi Nolan, Wanted to make a follow up on the contribution items. How are things coming along. I saw the forge project on email but didn't find any downloads. http://forge.vtiger.com/projects/autoemails/ Kindly keep us updated on the work progress, our community will be able to provide more assistance. Regards, Prasad vtiger Team On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080414/18aa8625/attachment-0003.html From asha at vtiger.com Tue Apr 15 01:00:07 2008 From: asha at vtiger.com (Asha) Date: Tue, 15 Apr 2008 13:30:07 +0530 Subject: [Vtigercrm-developers] List of potential contributions - feedback requested In-Reply-To: <8292881.6651207690749583.JavaMail.root@zimbra> References: <47FBA36C.5020301@gmx.net> <8292881.6651207690749583.JavaMail.root@zimbra> Message-ID: Hi Nolan, I agree with you. Security on Reports is also very important stuff. I would like to know the update on it and would be great if we can getting it ported to 5.0.4. Let me know if I can help you in this. On 4/9/08, Nolan Andres wrote: > > hey... > > I agree with Torsten. The Custom Field stuff is important. For the same > reason, actually, I think the Reports stuff is pretty valuable, too. Based > on the replies so far, though... > > 1. I've submitted a request for a forge project for the AutoEmail stuff, > and am in conversation with Joe on that. I'll make sure to keep this list > apprised of any developments as things move forward there. > > 2. I'll start pulling together some of the Custom Field stuff tonight so > that I can let people know what's all involved. I'm thinking that this > particular one may be a fairly easy port to 5.0.4 if the decisions I made > stand the test of community inspection. Even if not, I think it'll still be > pretty quick. It's really not all that complex in the end. > > peace, > Nolan > > PeaceWorks Computer Consulting Inc. > www.peaceworks.ca > Empowering People We Believe In > > > ----- "Torsten Zenk" wrote: > > > Hi everybody, > > besides the fact that all of these modules sound very interesting i > > think #6 is the most interesting for the majority of vTiger-users, as > > the custom fields do play a BIG role in setting up different setups of > > vTiger for different usage. The custom fields feature is a vast Plus > > within vtiger already, a little more extended makes it even vaster, to > > leave my few words on this. > > > > And as always: If you wizards need an extensive themer /tester / > > documenter/ translator (native german/ native english) on anything > > around vTiger count me in. > > > > Greetings > > Torsten Zenk > > > > > > > > Joe Bordes schrieb: > > > > Hi All, > > > > I have been contracted by IMED Mobility to create a vtigerCRM email > > list > > system. The design we have accorded with Imed, has more or less the > > same > > goals as Peaceworks/Sutherland-Schultz number 1 extension. > > Imed decided to fund the development of the extension and release it > > as > > an opensource extension on the forge. > > I have been given permission to speak in their name and help > > Peaceworks > > to port their extension to 5.0.4 and make it available to the > > community, > > on the forge and in the base product if vtiger team sees it fit. > > At the moment I would like to thank Peaceworks and Sutherland-Schultz > > for there contribution. > > > > Nolan, if you are interested in working with TSolucio drop me an > > email. > > We will set up a forge project and port your mailing system to 5.0.4 > > > > Regards, Joe > > TSolucio > > > > El mar, 08-04-2008 a las 10:15 -0400, Nolan Andres escribi?: > > > > Hey... > > > > Thanks, folks, for your kind words. I would be remiss to not mention > > my client, who have generously agreed to contribute this work that > > they paid for. They are Sutherland-Schultz Inc. in Cambridge, Ontario, > > Canada. ( www.sutherland-schultz.com ) > > > > It looks like this is the way to proceed. I think what I'll do is > > start pulling together some screenshots and example code chunks for > > each of the features, and send them to Prasad so they can check them > > out more carefully. > > > > As I said, these components are all v4.2, plus (as you may imagine) > > they have some client-specific parts that we will want to excise > > (stuff that I don't think is very useful for the community at large) > > before they are contributed. The upshot is that it will take a little > > bit of work (read *time*) to port these to 5.0.x. > > > > That is to some extent why I wanted to check on priorities. If there > > are certain things that would be *really* helpful to someone, I could > > see us prioritizing them so that we do those first. Not sure we'll be > > able to get everything together for a single version release (thanks > > for the nod, anyway, David) but we'll see what we can do ;) > > > > If anybody else is *really* interested in getting something moving > > *very* quickly and is willing to help with the port of that feature, > > we might be able to arrange that. > > > > Prasad, should I send the code to you, or should I just post it here? > > > > peace, > > Nolan > > > > > > ----- "Prasad" wrote: > > > > Hi Nolan Andres, > > > > Really a good piece of work. I would like to thank you and your > > client(s) for deciding to contribute back. > > > > If you can share code with us with more details that will make it easy > > to analyze it further. > > > > Regards, > > Prasad > > vtiger Team _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/a7048e7a/attachment-0003.html From leandro at hipertek.net Tue Apr 15 03:14:53 2008 From: leandro at hipertek.net (leandro at hipertek.net) Date: Tue, 15 Apr 2008 05:14:53 -0500 (COT) Subject: [Vtigercrm-developers] Oracle Support Message-ID: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im working too in to implement a customized Price Book (List of prices) by client, and improve the module for to have accounts/contacts by list and products by list and management of profitability by list of products and customized profitability of product in some list of prices. My question is: How i work for that the improves are evaluated and integrated in vtiger by default, how I work with other persons interested in help to port vtiger to oracle,really the oracle support need changes in the names of the tables, because the actual names present troubles for the max size of name in oracle. Im expecting for yours recomendations, it would be a fork named vtiger x oracle meanwhile this updates are integrated in the official version. Im expecting of yours comments and suggestions, Leandro Rache. Hipertek. From prasad at vtiger.com Tue Apr 15 04:47:24 2008 From: prasad at vtiger.com (Prasad) Date: Tue, 15 Apr 2008 17:17:24 +0530 Subject: [Vtigercrm-developers] Oracle Support In-Reply-To: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> References: <1777.190.158.154.53.1208254493.squirrel@www.hipertek.net> Message-ID: <39d18b250804150447l2ff1774chbfda1d0a672b7e8c@mail.gmail.com> Hi Leandro, I would recommend you to create a project of forge for which can serve as an add-on for vtiger 5.0.4 to work with Oracle. This give our community direct access and they will be able to provide more support to your work. Regards, Prasad vtiger Team On 4/15/08, leandro at hipertek.net wrote: > > Hi List, im working for to port Vtiger 5.0.3 and 5.0.4 to Oracle, and im > working too in to implement a customized Price Book (List of prices) by > client, and improve the module for to have accounts/contacts by list and > products by list and management of profitability by list of products and > customized profitability of product in some list of prices. My question > is: How i work for that the improves are evaluated and integrated in > vtiger by default, how I work with other persons interested in help to > port vtiger to oracle,really the oracle support need changes in the names > of the tables, because the actual names present troubles for the max size > of name in oracle. > > Im expecting for yours recomendations, it would be a fork named vtiger x > oracle meanwhile this updates are integrated in the official version. > > Im expecting of yours comments and suggestions, > > Leandro Rache. > Hipertek. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080415/28727221/attachment-0003.html From chazarra.clement at gmail.com Tue Apr 22 08:10:20 2008 From: chazarra.clement at gmail.com (clement chazarra) Date: Tue, 22 Apr 2008 16:10:20 +0100 Subject: [Vtigercrm-developers] Custom field in list view Message-ID: Hi guys, I need a little help, I posted on the forum a question but didn't get any answer yet (http://forums.vtiger.com/viewtopic.php?p=64151) I am trying to display a custom field in a list view, for exemple the sale order list in a specific account should display my custom field cf_354. In 4.2.3 I made it work but cannot get it working with the same method in 5.0.4: In salesorder.php I add my custom field in var $list_fields = Array( 'Order No'=>Array('crmentity'=>'crmid'), 'Subject'=>Array('salesorder'=>'subject'), 'Account Name'=>Array('account'=>'accountid'), 'Quote Name'=>Array('quotes'=>'quoteid'), * 'My Custom field'=>Array('salesordercf'=>'cf_354'),* 'Total'=>Array('salesorder'=>'total'), 'Assigned To'=>Array('crmentity'=>'smownerid') ); var $list_fields_name = Array( 'Order No'=>'', 'Subject'=>'subject', 'Account Name'=>'account_id', 'Quote Name'=>'quote_id', * 'My Custom field'=>'cf_354',* 'Total'=>'hdnGrandTfdotal', 'Assigned To'=>'assigned_user_id' ); I also had a look for an error in the log, but none is logged.. If somebody get it working with the exact same method as in 4.2.3, I would be glad to know(It would mean that I made a mistake) else if somebody get it to work on 5.0.4, I would be very thankful for an hint. Bye guys, Clem -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080422/80e8c356/attachment-0003.html From prasad at vtiger.com Tue Apr 22 12:00:17 2008 From: prasad at vtiger.com (Prasad) Date: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <39d18b250804221200n33a3ba44i90e0451f38aea1f8@mail.gmail.com> Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/8103cf05/attachment-0003.html From scott at centritechsolutions.com Tue Apr 22 13:20:01 2008 From: scott at centritechsolutions.com (scott at centritechsolutions.com) Date: Tue, 22 Apr 2008 16:20:01 -0400 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Message-ID: <5822983184.20080422162001@centritechsolutions.com> What kind of features does it have? ------Original Mail------ From: "Prasad" To: Sent: Wed, 23 Apr 2008 00:30:17 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn Dear Members, vtiger QuickBook Addon is now available on forge: http://forge.vtiger.com/projects/vquickbooks/ version 1.0 downloads: http://forge.vtiger.com/frs/?group_id=155&release_id=385 We encourage you to extend the support in testing, validating this AddOn and take it further from here. Regards, Prasad vtiger Team From srini at vtiger.com Wed Apr 23 00:18:35 2008 From: srini at vtiger.com (Srini) Date: Wed, 23 Apr 2008 12:48:35 +0530 Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn In-Reply-To: <5822983184.20080422162001@centritechsolutions.com> References: <5822983184.20080422162001@centritechsolutions.com> Message-ID: <391a06170804230018v102a429am1229492c2af69b1c@mail.gmail.com> Dear Team, As a starting point, the vQuickBooks add-on is developed to synchronize the Contacts from vtigerCRM and Customer List from QuickBooks via the QuickBooks - WebConnector. The Basic QuickBooks Integration frame work (free package - done by Keith Palmer) is used to develop this add-on. We welcome more questions, results and code contributions from our members to take this add-on into next level. Thanks & Regards, Srini On Wed, Apr 23, 2008 at 1:50 AM, wrote: > What kind of features does it have? > > > ------Original Mail------ > From: "Prasad" > To: > Sent: Wed, 23 Apr 2008 00:30:17 +0530 > Subject: [Vtigercrm-developers] vtiger QuickBooks AddOn > > Dear Members, > > vtiger QuickBook Addon is now available on forge: > http://forge.vtiger.com/projects/vquickbooks/ > > version 1.0 downloads: > http://forge.vtiger.com/frs/?group_id=155&release_id=385 > > We encourage you to extend the support in testing, validating this AddOn > and > take it further from here. > > Regards, > Prasad > vtiger Team > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080423/7ed8b682/attachment-0003.html From prasad at vtiger.com Thu Apr 24 06:11:40 2008 From: prasad at vtiger.com (Prasad) Date: Thu, 24 Apr 2008 18:41:40 +0530 Subject: [Vtigercrm-developers] [FORUM:5901] Re: Quickbooks Export / Generic Accounting System Export In-Reply-To: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> References: <65eb4441d351f7bd253ed74231f921ad@forums.vtiger.com> Message-ID: <39d18b250804240611q65e7a21i36f038199f9b4674@mail.gmail.com> Dear Keith, We are glad to hear about the support you are extending for getting vtiger QuickBooks integration. I had a question: Is it possible to make WebConnector Application work without https? Regards, Prasad vtiger Team PS: vtiger Forum does not let you post URL's in the first post. On 4/24/08, keith at uglyslug.com wrote: > > > Hello, > > I\'m Keith Palmer the author of the QuickBooks PHP package that kmitz > mentioned here: > (on the Intuit forums... your forums won\'t allow me to post URLs because > I\'m a new user or something...) > > I\'d be interested in helping out as much as I can to help get vTiger > integrated with QuickBooks. If there\'s anything I can help with/features > that I can add to my package/code I can write/questions I can answer, by all > means let me know! > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080424/001f2ef7/attachment-0003.html