From prasad at vtiger.com Mon Sep 1 02:02:46 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 1 Sep 2008 14:32:46 +0530 Subject: [Vtigercrm-developers] vtlib - 1.3 released ! Message-ID: <39d18b250809010202nbacb3fen49da257fb0ae32da@mail.gmail.com> Dear vtigers, vtlib 1.3 is now released. This version includes the following: * API to setup Picklist values after field creation (Associate values to available roles) * Module Manager has been added under Settings to enable / disable access. Check out now and keep the feedback posted. More to come soon...! Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=440 Project URL: http://forge.vtiger.com/projects/vtlib/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080901/2a1b3930/attachment.htm From kristof.kovacs at onlineprojects.hu Mon Sep 1 04:26:28 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 13:26:28 +0200 Subject: [Vtigercrm-developers] mobile's uitype Message-ID: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Hello guys, Anyone know of a reason why the field "mobile" is "uitype 1" (simple text), and not "uitype 11", like the "phone" field, in both the "contactdetails" and "leadaddress" tables? We tested, and found no reason for this. May I submit a patch that changes mobile's uitype to 11 in DefaultDataPopulator.php ? Kristof From michael_post at web.de Mon Sep 1 04:44:56 2008 From: michael_post at web.de (Michael Post) Date: Mon, 01 Sep 2008 13:44:56 +0200 Subject: [Vtigercrm-developers] Thunderbird-Plugin with Synchronisiation / Ho to be involved? Message-ID: <48BBD5B8.8000508@web.de> Hello, i search the offered thunderbird plugin with synchronisation-option like the ms outlook plugin. If there is not such an option or plugin? How can i involved to help devolping this feature in this plugin? I do not want to redevelop the tire twice. Thanks, Michael From kristof.kovacs at onlineprojects.hu Mon Sep 1 09:59:38 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 18:59:38 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Hello guys, On certain browsers, if the user hits a "browser back" after logging in to vtiger, he is presented with a screen that has a menu on the top, and the login screen in the middle. This is of course a minor bug, but there were complaints, so we fixed, and here is the patch. To reproduce the bug on any browser: Log in, and then go to index.php? action=Login&module=Users . Krist?f --- index.php | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { From asha at vtiger.com Wed Sep 3 19:46:18 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:16:18 +0530 Subject: [Vtigercrm-developers] Patch submission to 5.1 branch In-Reply-To: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> References: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> Message-ID: Hi Kristof, We suggest you to upload your patches on trac. (http://trac.vtiger.com). Would be better if you create a ticket on trac, mark the type of the ticket as patch and upload your patch there. This way community can test the patch and update us and we can also test the patch from there and integrate if everything seems fine. We shall send you the trac account soon. Thanks for your support. On Wed, Aug 27, 2008 at 11:47 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > I found no official forum for 5.1 patches, so I send this very-very small > patch here instead. (This first one is a very-very small cosmetical patch -- > almost like just a probe to establish the protocol how this should be done.) > > I you are interested, please read > http://forums.vtiger.com/viewtopic.php?p=69676 on who we are why we base > our development on the alpha branch instead of the stable branch. We would > like to help out in 5.1 development and contribute bug fixes (small and big) > as we encounter them. > > Keep up the good work! > > Kristof > > --- > Smarty/templates/Home/Homestuff.tpl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/Smarty/templates/Home/Homestuff.tpl > b/Smarty/templates/Home/Homestuff.tpl > index 62da17e..e94e864 100644 > --- a/Smarty/templates/Home/Homestuff.tpl > +++ b/Smarty/templates/Home/Homestuff.tpl > @@ -2,7 +2,7 @@ > > > > -; > + > {**} > > > -- > 1.6.0 > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080903/0c07c5f1/attachment.htm From asha at vtiger.com Wed Sep 3 19:55:35 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:25:35 +0530 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: Hi Kristof, Thanks for the patch. We shall try it out and integrate if works well. Btw, we suggest you to submit all the patches through trac. On Mon, Sep 1, 2008 at 10:29 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080903/4e7c7d11/attachment.htm From asha at vtiger.com Wed Sep 3 19:59:26 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:29:26 +0530 Subject: [Vtigercrm-developers] How can I really delete entities from MySQL? In-Reply-To: <48B51BE7.7060403@trackset.com> References: <48B51BE7.7060403@trackset.com> Message-ID: Hi Christian Castelli, There are multiple queries involved for each module to delete an item from the database as the information for each item is spread across multiple tables. Simple thing would be to delete only from vtiger_crmentity table. But this will not be clean. On Wed, Aug 27, 2008 at 2:48 PM, Christian Castelli < christian.castelli at trackset.com> wrote: > Hi there, > I'm new to vTiger and I've discovered that when I delete an item from > the system (via browser), vTiger set to 1 the field vtiger_crmentity in > the database. > I can see all deleted items by a simpel query (and if I'm not wrong, in > future releases it will be possibile to restore these items by the GUI, > won't it?). > My question is: how can I really delete those items in MySQL (in order > to make it cleaner) that I've deleted from vTiger? What queries are > involved? > Thanks. > -- > Christian Castelli > Software Developer > christian.castelli at trackset.com > > > Italian Office > Via Sant'Ilario Sud,109 > 56021 Cascina (PI) - Italia > TEL +39 050 70 03 79 > FAX +39 050 80 70 136 > www.trackset.com > > Questo messaggio ? destinato alle sole persone indicate e pu? contenere > informazioni riservate. > Se ricevuto per errore, si prega di avvisare immediatamente il mittente > e cancellare l'originale. Ogni altro uso del messaggio ? vietato. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080903/9b5a0845/attachment.htm From ckwu at ck-erp.net Thu Sep 4 00:48:29 2008 From: ckwu at ck-erp.net (C K Wu) Date: Thu, 04 Sep 2008 15:48:29 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.28.1 released (with vTiger 5.0.4 connector) Message-ID: <48BF92CD.1020307@ck-erp.net> Hi, folks, I have posted a new release, v.0.28.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, Sample school chart of accounts, System upgrade script, menu choice for warehouse, retail store, tree view for BOM, inventory category, service category, import of eGroupWare addressbook, full (draft) Spanish translation [improvement suggestions most welcome], and, connector for CATS, php-residence, Open-Realty, phpScheduleIT, PSCafePOS, OpenBiblio, Centre/SIS, ClaSS, Care2X CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 23 modules - Administration, i18n, Data Import, 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: Centre/SIS, ClaSS; OpenBiblio; CATS; php-residence, phpScheduleIT; AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; PSCafePOS, MyHandyRestaurant; FreightFleetManagementSystem; OpenX, LandShop, Open-Realty, FreeRealty; IRM; LegalCase; ClearHealth, OpenEMR, Care2X; eGroupWare, Horde-GroupWare; Zencart, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net Download is available from, http://sourceforge.net/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 pavani at vtiger.com Thu Sep 4 23:41:31 2008 From: pavani at vtiger.com (Pavani I) Date: Fri, 5 Sep 2008 12:11:31 +0530 Subject: [Vtigercrm-developers] mobile's uitype In-Reply-To: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> References: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Message-ID: Hi Kristof, We'd appreciate you for identifying this issue. We have given two different uitypes for these fields for future use. We'll definitely consider this as soon as possible. On Mon, Sep 1, 2008 at 4:56 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > Anyone know of a reason why the field "mobile" is "uitype 1" (simple > text), and not "uitype 11", like the "phone" field, in both the > "contactdetails" and "leadaddress" tables? We tested, and found no > reason for this. > > May I submit a patch that changes mobile's uitype to 11 in > DefaultDataPopulator.php ? > > Kristof > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Pavani. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/6c79f851/attachment-0001.htm From joe at tsolucio.com Thu Sep 11 14:15:52 2008 From: joe at tsolucio.com (Joe Bordes) Date: Thu, 11 Sep 2008 23:15:52 +0200 Subject: [Vtigercrm-developers] forge is down. no space left Message-ID: <48C98A88.70401@tsolucio.com> Hi, Somebody take a look at the forge, it says it has run out of space. Joe TSolucio From svk at vtiger.com Thu Sep 11 15:22:11 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 15:22:11 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <48C98A88.70401@tsolucio.com> References: <48C98A88.70401@tsolucio.com> Message-ID: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Hi Joe, Thanks for alerting us. We will fix this shortly. Regards, Sreenivas On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > Hi, > > Somebody take a look at the forge, it says it has run out of space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/2f8d2224/attachment.htm From svk at vtiger.com Thu Sep 11 17:30:03 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 17:30:03 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Message-ID: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> fyi.. http://forge.vtiger.com server is back up now. Sorry for the inconvenience. Regards, Sreenivas On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru wrote: > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > >> Hi, >> >> Somebody take a look at the forge, it says it has run out of space. >> >> Joe >> TSolucio >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/022fce3c/attachment.htm From joe at tsolucio.com Thu Sep 11 22:57:07 2008 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 12 Sep 2008 07:57:07 +0200 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> Message-ID: <48CA04B3.5020407@tsolucio.com> No problem. Thanks for the quick response. Joe TSolucio Sreenivas Kanumuru escribi?: > fyi.. http://forge.vtiger.com server is back up now. Sorry for the > inconvenience. > > Regards, > Sreenivas > > On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru > wrote: > > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes > wrote: > > Hi, > > Somebody take a look at the forge, it says it has run out of > space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > ------------------------------------------------------------------------ > > _______________________________________________ > 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/20080911/ebcbcafa/attachment.htm From tzenk at gmx.net Fri Sep 12 01:22:36 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Fri, 12 Sep 2008 10:22:36 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: <48CA26CC.5070200@gmx.net> Hello Kristof, oh yes i can reproduce it with all of my browsers. After logging there is indeed this mixed screen. But i?m sorry that i can?t reproduce the diff you provided. I am used to the way a diff is provided like this (this is the way drupal and joomla diffs are provided) RCS file: /cvs/drupal-contrib/contributions/modules/imagefield/imagefield.module,v retrieving revision 1.30.2.6.2.64 diff -u -p -r1.30.2.6.2.64 imagefield.module --- imagefield.module 13 May 2008 00:02:02 -0000 1.30.2.6.2.64 +++ imagefield.module 10 Jul 2008 04:00:18 -0000 @@ -163,18 +163,16 @@ function imagefield_field_settings($op, $ext = array_pop(explode('.', $file->filename)); $filename = $field['field_name'] .'.'. $ext; // verify the destination exists and is writeable... - $dst = file_create_path('imagefield_default_images/'. $filename); + $dst = 'imagefield_default_images/'. $filename; if (!imagefield_check_directory(dirname($dst))) { So besides the filename in which the changes have to be made, here i have the functionname, the lines above and below the line that is changed AND the whole row that must be changed. In the way you provide your diff i can not reproduce the patch because: 1. (isset($_SESSION["app_unique_key <<< suddenly ends without any closing, what?s the reason for this? 2. it says 1 files changed, 5 insertions(+), 0 deletions(-) WHAT has to be changed and WHERE do i put the 5 lines that have to be added. Maybe its just me misunderstanding the diff, but i would be glad if you could make it a little easier to understand, so i could provide a better feedback then this ;) Best Regards Torsten Zenk Kristof Kovacs schrieb: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From erical at lynxts.com Sun Sep 14 11:46:58 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 11:46:58 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes Message-ID: <48CD5C22.9050902@lynxts.com> What I am trying to do is allow a client to select some options on our web site, then I was hoping to insert their options/products into the quote table inside vTiger, and then auto email the sales team so they know someone requested a quote. It will make it easier down the road to convert these quotes to sales orders if they were auto entered. I am new to vtiger, but have developed crm systems in other languages before, so I'm familiar with the terms and data. I just need a few pointers to any code within vtiger I can use to insert into the database... or is it safe to just insert a record right into the quotes table? Thanks Erica -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080914/54e9ec53/attachment.htm From nolan at peaceworks.ca Sun Sep 14 12:37:10 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Sun, 14 Sep 2008 15:37:10 -0400 (EDT) Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <33149344.251221420835435.JavaMail.root@zimbra> Message-ID: <29942160.271221421030768.JavaMail.root@zimbra> Erica, This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. peace, Nolan Andres President, PeaceWorks Computer Consulting Inc. 205-55 Erb St. E., Waterloo, ON, N2J 4K8 t: 519.725.7875 c: 519.572.0659 ----- "Erica Lahoda" wrote: > What I am trying to do is allow a client to select some options on our > web site, then I was hoping to insert their options/products into the > quote table inside vTiger, and then auto email the sales team so they > know someone requested a quote. It will make it easier down the road > to convert these quotes to sales orders if they were auto entered. > > I am new to vtiger, but have developed crm systems in other languages > before, so I'm familiar with the terms and data. I just need a few > pointers to any code within vtiger I can use to insert into the > database... or is it safe to just insert a record right into the > quotes table? > > Thanks > > > Erica > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From erical at lynxts.com Sun Sep 14 13:25:03 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 13:25:03 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <29942160.271221421030768.JavaMail.root@zimbra> References: <29942160.271221421030768.JavaMail.root@zimbra> Message-ID: <48CD731F.8010401@lynxts.com> Thanks Nolan I will take a look at the api and see what I can do. I had hoped it would be as simple as that :) Nolan Andres wrote: > Erica, > > This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. > > If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. > > peace, > Nolan Andres > President, PeaceWorks Computer Consulting Inc. > 205-55 Erb St. E., Waterloo, ON, N2J 4K8 > t: 519.725.7875 c: 519.572.0659 > > ----- "Erica Lahoda" wrote: > > >> What I am trying to do is allow a client to select some options on our >> web site, then I was hoping to insert their options/products into the >> quote table inside vTiger, and then auto email the sales team so they >> know someone requested a quote. It will make it easier down the road >> to convert these quotes to sales orders if they were auto entered. >> >> I am new to vtiger, but have developed crm systems in other languages >> before, so I'm familiar with the terms and data. I just need a few >> pointers to any code within vtiger I can use to insert into the >> database... or is it safe to just insert a record right into the >> quotes table? >> >> Thanks >> >> >> Erica >> >> _______________________________________________ >> 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/20080914/f4cd51ad/attachment-0001.htm From kristof.kovacs at onlineprojects.hu Wed Sep 17 15:29:17 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Thu, 18 Sep 2008 00:29:17 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <758B1BE7-0309-450C-B720-5C9C53F68AEF@onlineprojects.hu> Hello Zenk, > Hello Kristof, > oh yes i can reproduce it with all of my browsers. After logging there > is indeed this mixed screen. A reproducible bug is a hundred times better than a random one. :o) > But i?m sorry that i can?t reproduce the diff you provided. I am > used to > the way a diff is provided like this (this is the way drupal and > joomla > diffs are provided) Oh, I see where the misunderstanding comes from. We use "git" as source control (even to access an svn repository), while you use "svn", and git's diff puts a little more information in the patches (but leaves nothing out). Also, this diff contains only lines that were added, this is why you don't see the "changed" lines. Please let me explain those bits: > So besides the filename in which the changes have to be made, here i > have the functionname, the lines above and below the line that is > changed AND the whole row that must be changed. In the way you provide > your diff i can not reproduce the patch because: I'll copy here my original patch too, just to help me: ----------------- diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { ----------------- > 1.(isset($_SESSION["app_unique_key <<< suddenly ends without any > closing, what?s the reason for this? The reason is that this is the line that "patch" uses to locate the place of the diff. Besides the "line number based" identification ("@@ -192,6 +192,11 @@"), my version of diff puts a contextual identification there, too. True, it truncates it. I never noticed this before, since I use "patch -p1 2. it says > 1 files changed, 5 insertions(+), 0 deletions(-) > > WHAT has to be changed and WHERE do i put the 5 lines that have to > be added. It's just a statistic that the "git diff" puts there. :) Feel free to ignore it. :) Just as an example, this is how the statistics for a more complex commit look like: include/RelatedListView.php | 6 +----- include/utils/ListViewUtils.php | 15 ++++++++++----- include/utils/utils.php | 2 +- modules/Calendar/calendarLayout.php | 3 +-- 4 files changed, 13 insertions(+), 13 deletions(-) Here one can see which files has changed, how much text were added, how much removed, how much "chunks" of code changed. When one browses through commits (happens more often with git than with svn, since svn is almost always linear, while git is not), it helps visually distinguish between small a bug commits, big code additions and rewrites, etc... > Best Regards > Torsten Zenk Have a nice day! Krist?f -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080917/0aaea194/attachment.htm From prasad at vtiger.com Mon Sep 29 07:11:16 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 29 Sep 2008 19:41:16 +0530 Subject: [Vtigercrm-developers] vtlib - 1.4 released ! Message-ID: <39d18b250809290711i142fa305w36c9b4c74b845f49@mail.gmail.com> *Dear vtigers, * * * *vtlib-1.4* extends Module Manager features along with several bug fixes. Thanks for the community support. *Exporting and Importing modules* is now possible from Module Manager. Once the new module is created using vtlib API's you can export it either through the Module Manager or using Package API's. This package (zipfile) can be downloaded and imported on other vtiger CRM. Check out the documentation for more details and give a shot today :) Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=452 Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080929/22c3e05e/attachment.htm From prasad at vtiger.com Mon Sep 1 05:02:46 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 1 Sep 2008 14:32:46 +0530 Subject: [Vtigercrm-developers] vtlib - 1.3 released ! Message-ID: <39d18b250809010202nbacb3fen49da257fb0ae32da@mail.gmail.com> Dear vtigers, vtlib 1.3 is now released. This version includes the following: * API to setup Picklist values after field creation (Associate values to available roles) * Module Manager has been added under Settings to enable / disable access. Check out now and keep the feedback posted. More to come soon...! Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=440 Project URL: http://forge.vtiger.com/projects/vtlib/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080901/2a1b3930/attachment.html From kristof.kovacs at onlineprojects.hu Mon Sep 1 07:26:28 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 13:26:28 +0200 Subject: [Vtigercrm-developers] mobile's uitype Message-ID: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Hello guys, Anyone know of a reason why the field "mobile" is "uitype 1" (simple text), and not "uitype 11", like the "phone" field, in both the "contactdetails" and "leadaddress" tables? We tested, and found no reason for this. May I submit a patch that changes mobile's uitype to 11 in DefaultDataPopulator.php ? Kristof From michael_post at web.de Mon Sep 1 07:44:56 2008 From: michael_post at web.de (Michael Post) Date: Mon, 01 Sep 2008 13:44:56 +0200 Subject: [Vtigercrm-developers] Thunderbird-Plugin with Synchronisiation / Ho to be involved? Message-ID: <48BBD5B8.8000508@web.de> Hello, i search the offered thunderbird plugin with synchronisation-option like the ms outlook plugin. If there is not such an option or plugin? How can i involved to help devolping this feature in this plugin? I do not want to redevelop the tire twice. Thanks, Michael From kristof.kovacs at onlineprojects.hu Mon Sep 1 12:59:38 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 18:59:38 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Hello guys, On certain browsers, if the user hits a "browser back" after logging in to vtiger, he is presented with a screen that has a menu on the top, and the login screen in the middle. This is of course a minor bug, but there were complaints, so we fixed, and here is the patch. To reproduce the bug on any browser: Log in, and then go to index.php? action=Login&module=Users . Krist?f --- index.php | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { From asha at vtiger.com Wed Sep 3 22:46:18 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:16:18 +0530 Subject: [Vtigercrm-developers] Patch submission to 5.1 branch In-Reply-To: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> References: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> Message-ID: Hi Kristof, We suggest you to upload your patches on trac. (http://trac.vtiger.com). Would be better if you create a ticket on trac, mark the type of the ticket as patch and upload your patch there. This way community can test the patch and update us and we can also test the patch from there and integrate if everything seems fine. We shall send you the trac account soon. Thanks for your support. On Wed, Aug 27, 2008 at 11:47 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > I found no official forum for 5.1 patches, so I send this very-very small > patch here instead. (This first one is a very-very small cosmetical patch -- > almost like just a probe to establish the protocol how this should be done.) > > I you are interested, please read > http://forums.vtiger.com/viewtopic.php?p=69676 on who we are why we base > our development on the alpha branch instead of the stable branch. We would > like to help out in 5.1 development and contribute bug fixes (small and big) > as we encounter them. > > Keep up the good work! > > Kristof > > --- > Smarty/templates/Home/Homestuff.tpl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/Smarty/templates/Home/Homestuff.tpl > b/Smarty/templates/Home/Homestuff.tpl > index 62da17e..e94e864 100644 > --- a/Smarty/templates/Home/Homestuff.tpl > +++ b/Smarty/templates/Home/Homestuff.tpl > @@ -2,7 +2,7 @@ > > > > -; > + > {**} >
> > -- > 1.6.0 > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/0c07c5f1/attachment.html From asha at vtiger.com Wed Sep 3 22:55:35 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:25:35 +0530 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: Hi Kristof, Thanks for the patch. We shall try it out and integrate if works well. Btw, we suggest you to submit all the patches through trac. On Mon, Sep 1, 2008 at 10:29 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/4e7c7d11/attachment.html From asha at vtiger.com Wed Sep 3 22:59:26 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:29:26 +0530 Subject: [Vtigercrm-developers] How can I really delete entities from MySQL? In-Reply-To: <48B51BE7.7060403@trackset.com> References: <48B51BE7.7060403@trackset.com> Message-ID: Hi Christian Castelli, There are multiple queries involved for each module to delete an item from the database as the information for each item is spread across multiple tables. Simple thing would be to delete only from vtiger_crmentity table. But this will not be clean. On Wed, Aug 27, 2008 at 2:48 PM, Christian Castelli < christian.castelli at trackset.com> wrote: > Hi there, > I'm new to vTiger and I've discovered that when I delete an item from > the system (via browser), vTiger set to 1 the field vtiger_crmentity in > the database. > I can see all deleted items by a simpel query (and if I'm not wrong, in > future releases it will be possibile to restore these items by the GUI, > won't it?). > My question is: how can I really delete those items in MySQL (in order > to make it cleaner) that I've deleted from vTiger? What queries are > involved? > Thanks. > -- > Christian Castelli > Software Developer > christian.castelli at trackset.com > > > Italian Office > Via Sant'Ilario Sud,109 > 56021 Cascina (PI) - Italia > TEL +39 050 70 03 79 > FAX +39 050 80 70 136 > www.trackset.com > > Questo messaggio ? destinato alle sole persone indicate e pu? contenere > informazioni riservate. > Se ricevuto per errore, si prega di avvisare immediatamente il mittente > e cancellare l'originale. Ogni altro uso del messaggio ? vietato. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/9b5a0845/attachment.html From ckwu at ck-erp.net Thu Sep 4 03:48:29 2008 From: ckwu at ck-erp.net (C K Wu) Date: Thu, 04 Sep 2008 15:48:29 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.28.1 released (with vTiger 5.0.4 connector) Message-ID: <48BF92CD.1020307@ck-erp.net> Hi, folks, I have posted a new release, v.0.28.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, Sample school chart of accounts, System upgrade script, menu choice for warehouse, retail store, tree view for BOM, inventory category, service category, import of eGroupWare addressbook, full (draft) Spanish translation [improvement suggestions most welcome], and, connector for CATS, php-residence, Open-Realty, phpScheduleIT, PSCafePOS, OpenBiblio, Centre/SIS, ClaSS, Care2X CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 23 modules - Administration, i18n, Data Import, 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: Centre/SIS, ClaSS; OpenBiblio; CATS; php-residence, phpScheduleIT; AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; PSCafePOS, MyHandyRestaurant; FreightFleetManagementSystem; OpenX, LandShop, Open-Realty, FreeRealty; IRM; LegalCase; ClearHealth, OpenEMR, Care2X; eGroupWare, Horde-GroupWare; Zencart, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net Download is available from, http://sourceforge.net/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 pavani at vtiger.com Fri Sep 5 02:41:31 2008 From: pavani at vtiger.com (Pavani I) Date: Fri, 5 Sep 2008 12:11:31 +0530 Subject: [Vtigercrm-developers] mobile's uitype In-Reply-To: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> References: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Message-ID: Hi Kristof, We'd appreciate you for identifying this issue. We have given two different uitypes for these fields for future use. We'll definitely consider this as soon as possible. On Mon, Sep 1, 2008 at 4:56 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > Anyone know of a reason why the field "mobile" is "uitype 1" (simple > text), and not "uitype 11", like the "phone" field, in both the > "contactdetails" and "leadaddress" tables? We tested, and found no > reason for this. > > May I submit a patch that changes mobile's uitype to 11 in > DefaultDataPopulator.php ? > > Kristof > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Pavani. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080905/6c79f851/attachment.html From joe at tsolucio.com Thu Sep 11 17:15:52 2008 From: joe at tsolucio.com (Joe Bordes) Date: Thu, 11 Sep 2008 23:15:52 +0200 Subject: [Vtigercrm-developers] forge is down. no space left Message-ID: <48C98A88.70401@tsolucio.com> Hi, Somebody take a look at the forge, it says it has run out of space. Joe TSolucio From svk at vtiger.com Thu Sep 11 18:22:11 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 15:22:11 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <48C98A88.70401@tsolucio.com> References: <48C98A88.70401@tsolucio.com> Message-ID: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Hi Joe, Thanks for alerting us. We will fix this shortly. Regards, Sreenivas On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > Hi, > > Somebody take a look at the forge, it says it has run out of space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/2f8d2224/attachment.html From svk at vtiger.com Thu Sep 11 20:30:03 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 17:30:03 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Message-ID: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> fyi.. http://forge.vtiger.com server is back up now. Sorry for the inconvenience. Regards, Sreenivas On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru wrote: > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > >> Hi, >> >> Somebody take a look at the forge, it says it has run out of space. >> >> Joe >> TSolucio >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/022fce3c/attachment.html From joe at tsolucio.com Fri Sep 12 01:57:07 2008 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 12 Sep 2008 07:57:07 +0200 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> Message-ID: <48CA04B3.5020407@tsolucio.com> No problem. Thanks for the quick response. Joe TSolucio Sreenivas Kanumuru escribi?: > fyi.. http://forge.vtiger.com server is back up now. Sorry for the > inconvenience. > > Regards, > Sreenivas > > On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru > wrote: > > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes > wrote: > > Hi, > > Somebody take a look at the forge, it says it has run out of > space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > ------------------------------------------------------------------------ > > _______________________________________________ > 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/20080912/ebcbcafa/attachment.html From tzenk at gmx.net Fri Sep 12 04:22:36 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Fri, 12 Sep 2008 10:22:36 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: <48CA26CC.5070200@gmx.net> Hello Kristof, oh yes i can reproduce it with all of my browsers. After logging there is indeed this mixed screen. But i?m sorry that i can?t reproduce the diff you provided. I am used to the way a diff is provided like this (this is the way drupal and joomla diffs are provided) RCS file: /cvs/drupal-contrib/contributions/modules/imagefield/imagefield.module,v retrieving revision 1.30.2.6.2.64 diff -u -p -r1.30.2.6.2.64 imagefield.module --- imagefield.module 13 May 2008 00:02:02 -0000 1.30.2.6.2.64 +++ imagefield.module 10 Jul 2008 04:00:18 -0000 @@ -163,18 +163,16 @@ function imagefield_field_settings($op, $ext = array_pop(explode('.', $file->filename)); $filename = $field['field_name'] .'.'. $ext; // verify the destination exists and is writeable... - $dst = file_create_path('imagefield_default_images/'. $filename); + $dst = 'imagefield_default_images/'. $filename; if (!imagefield_check_directory(dirname($dst))) { So besides the filename in which the changes have to be made, here i have the functionname, the lines above and below the line that is changed AND the whole row that must be changed. In the way you provide your diff i can not reproduce the patch because: 1. (isset($_SESSION["app_unique_key <<< suddenly ends without any closing, what?s the reason for this? 2. it says 1 files changed, 5 insertions(+), 0 deletions(-) WHAT has to be changed and WHERE do i put the 5 lines that have to be added. Maybe its just me misunderstanding the diff, but i would be glad if you could make it a little easier to understand, so i could provide a better feedback then this ;) Best Regards Torsten Zenk Kristof Kovacs schrieb: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From erical at lynxts.com Sun Sep 14 14:46:58 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 11:46:58 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes Message-ID: <48CD5C22.9050902@lynxts.com> What I am trying to do is allow a client to select some options on our web site, then I was hoping to insert their options/products into the quote table inside vTiger, and then auto email the sales team so they know someone requested a quote. It will make it easier down the road to convert these quotes to sales orders if they were auto entered. I am new to vtiger, but have developed crm systems in other languages before, so I'm familiar with the terms and data. I just need a few pointers to any code within vtiger I can use to insert into the database... or is it safe to just insert a record right into the quotes table? Thanks Erica -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080914/54e9ec53/attachment.html From nolan at peaceworks.ca Sun Sep 14 15:37:10 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Sun, 14 Sep 2008 15:37:10 -0400 (EDT) Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <33149344.251221420835435.JavaMail.root@zimbra> Message-ID: <29942160.271221421030768.JavaMail.root@zimbra> Erica, This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. peace, Nolan Andres President, PeaceWorks Computer Consulting Inc. 205-55 Erb St. E., Waterloo, ON, N2J 4K8 t: 519.725.7875 c: 519.572.0659 ----- "Erica Lahoda" wrote: > What I am trying to do is allow a client to select some options on our > web site, then I was hoping to insert their options/products into the > quote table inside vTiger, and then auto email the sales team so they > know someone requested a quote. It will make it easier down the road > to convert these quotes to sales orders if they were auto entered. > > I am new to vtiger, but have developed crm systems in other languages > before, so I'm familiar with the terms and data. I just need a few > pointers to any code within vtiger I can use to insert into the > database... or is it safe to just insert a record right into the > quotes table? > > Thanks > > > Erica > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From erical at lynxts.com Sun Sep 14 16:25:03 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 13:25:03 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <29942160.271221421030768.JavaMail.root@zimbra> References: <29942160.271221421030768.JavaMail.root@zimbra> Message-ID: <48CD731F.8010401@lynxts.com> Thanks Nolan I will take a look at the api and see what I can do. I had hoped it would be as simple as that :) Nolan Andres wrote: > Erica, > > This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. > > If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. > > peace, > Nolan Andres > President, PeaceWorks Computer Consulting Inc. > 205-55 Erb St. E., Waterloo, ON, N2J 4K8 > t: 519.725.7875 c: 519.572.0659 > > ----- "Erica Lahoda" wrote: > > >> What I am trying to do is allow a client to select some options on our >> web site, then I was hoping to insert their options/products into the >> quote table inside vTiger, and then auto email the sales team so they >> know someone requested a quote. It will make it easier down the road >> to convert these quotes to sales orders if they were auto entered. >> >> I am new to vtiger, but have developed crm systems in other languages >> before, so I'm familiar with the terms and data. I just need a few >> pointers to any code within vtiger I can use to insert into the >> database... or is it safe to just insert a record right into the >> quotes table? >> >> Thanks >> >> >> Erica >> >> _______________________________________________ >> 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/20080914/f4cd51ad/attachment.html From kristof.kovacs at onlineprojects.hu Wed Sep 17 18:29:17 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Thu, 18 Sep 2008 00:29:17 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <758B1BE7-0309-450C-B720-5C9C53F68AEF@onlineprojects.hu> Hello Zenk, > Hello Kristof, > oh yes i can reproduce it with all of my browsers. After logging there > is indeed this mixed screen. A reproducible bug is a hundred times better than a random one. :o) > But i?m sorry that i can?t reproduce the diff you provided. I am > used to > the way a diff is provided like this (this is the way drupal and > joomla > diffs are provided) Oh, I see where the misunderstanding comes from. We use "git" as source control (even to access an svn repository), while you use "svn", and git's diff puts a little more information in the patches (but leaves nothing out). Also, this diff contains only lines that were added, this is why you don't see the "changed" lines. Please let me explain those bits: > So besides the filename in which the changes have to be made, here i > have the functionname, the lines above and below the line that is > changed AND the whole row that must be changed. In the way you provide > your diff i can not reproduce the patch because: I'll copy here my original patch too, just to help me: ----------------- diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { ----------------- > 1.(isset($_SESSION["app_unique_key <<< suddenly ends without any > closing, what?s the reason for this? The reason is that this is the line that "patch" uses to locate the place of the diff. Besides the "line number based" identification ("@@ -192,6 +192,11 @@"), my version of diff puts a contextual identification there, too. True, it truncates it. I never noticed this before, since I use "patch -p1 2. it says > 1 files changed, 5 insertions(+), 0 deletions(-) > > WHAT has to be changed and WHERE do i put the 5 lines that have to > be added. It's just a statistic that the "git diff" puts there. :) Feel free to ignore it. :) Just as an example, this is how the statistics for a more complex commit look like: include/RelatedListView.php | 6 +----- include/utils/ListViewUtils.php | 15 ++++++++++----- include/utils/utils.php | 2 +- modules/Calendar/calendarLayout.php | 3 +-- 4 files changed, 13 insertions(+), 13 deletions(-) Here one can see which files has changed, how much text were added, how much removed, how much "chunks" of code changed. When one browses through commits (happens more often with git than with svn, since svn is almost always linear, while git is not), it helps visually distinguish between small a bug commits, big code additions and rewrites, etc... > Best Regards > Torsten Zenk Have a nice day! Krist?f -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080918/0aaea194/attachment.html From prasad at vtiger.com Mon Sep 29 10:11:16 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 29 Sep 2008 19:41:16 +0530 Subject: [Vtigercrm-developers] vtlib - 1.4 released ! Message-ID: <39d18b250809290711i142fa305w36c9b4c74b845f49@mail.gmail.com> *Dear vtigers, * * * *vtlib-1.4* extends Module Manager features along with several bug fixes. Thanks for the community support. *Exporting and Importing modules* is now possible from Module Manager. Once the new module is created using vtlib API's you can export it either through the Module Manager or using Package API's. This package (zipfile) can be downloaded and imported on other vtiger CRM. Check out the documentation for more details and give a shot today :) Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=452 Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080929/22c3e05e/attachment.html From prasad at vtiger.com Mon Sep 1 05:02:46 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 1 Sep 2008 14:32:46 +0530 Subject: [Vtigercrm-developers] vtlib - 1.3 released ! Message-ID: <39d18b250809010202nbacb3fen49da257fb0ae32da@mail.gmail.com> Dear vtigers, vtlib 1.3 is now released. This version includes the following: * API to setup Picklist values after field creation (Associate values to available roles) * Module Manager has been added under Settings to enable / disable access. Check out now and keep the feedback posted. More to come soon...! Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=440 Project URL: http://forge.vtiger.com/projects/vtlib/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080901/2a1b3930/attachment-0001.html From kristof.kovacs at onlineprojects.hu Mon Sep 1 07:26:28 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 13:26:28 +0200 Subject: [Vtigercrm-developers] mobile's uitype Message-ID: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Hello guys, Anyone know of a reason why the field "mobile" is "uitype 1" (simple text), and not "uitype 11", like the "phone" field, in both the "contactdetails" and "leadaddress" tables? We tested, and found no reason for this. May I submit a patch that changes mobile's uitype to 11 in DefaultDataPopulator.php ? Kristof From michael_post at web.de Mon Sep 1 07:44:56 2008 From: michael_post at web.de (Michael Post) Date: Mon, 01 Sep 2008 13:44:56 +0200 Subject: [Vtigercrm-developers] Thunderbird-Plugin with Synchronisiation / Ho to be involved? Message-ID: <48BBD5B8.8000508@web.de> Hello, i search the offered thunderbird plugin with synchronisation-option like the ms outlook plugin. If there is not such an option or plugin? How can i involved to help devolping this feature in this plugin? I do not want to redevelop the tire twice. Thanks, Michael From kristof.kovacs at onlineprojects.hu Mon Sep 1 12:59:38 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 18:59:38 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Hello guys, On certain browsers, if the user hits a "browser back" after logging in to vtiger, he is presented with a screen that has a menu on the top, and the login screen in the middle. This is of course a minor bug, but there were complaints, so we fixed, and here is the patch. To reproduce the bug on any browser: Log in, and then go to index.php? action=Login&module=Users . Krist?f --- index.php | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { From asha at vtiger.com Wed Sep 3 22:46:18 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:16:18 +0530 Subject: [Vtigercrm-developers] Patch submission to 5.1 branch In-Reply-To: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> References: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> Message-ID: Hi Kristof, We suggest you to upload your patches on trac. (http://trac.vtiger.com). Would be better if you create a ticket on trac, mark the type of the ticket as patch and upload your patch there. This way community can test the patch and update us and we can also test the patch from there and integrate if everything seems fine. We shall send you the trac account soon. Thanks for your support. On Wed, Aug 27, 2008 at 11:47 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > I found no official forum for 5.1 patches, so I send this very-very small > patch here instead. (This first one is a very-very small cosmetical patch -- > almost like just a probe to establish the protocol how this should be done.) > > I you are interested, please read > http://forums.vtiger.com/viewtopic.php?p=69676 on who we are why we base > our development on the alpha branch instead of the stable branch. We would > like to help out in 5.1 development and contribute bug fixes (small and big) > as we encounter them. > > Keep up the good work! > > Kristof > > --- > Smarty/templates/Home/Homestuff.tpl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/Smarty/templates/Home/Homestuff.tpl > b/Smarty/templates/Home/Homestuff.tpl > index 62da17e..e94e864 100644 > --- a/Smarty/templates/Home/Homestuff.tpl > +++ b/Smarty/templates/Home/Homestuff.tpl > @@ -2,7 +2,7 @@ > > > > -; > + > {**} >
> > -- > 1.6.0 > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/0c07c5f1/attachment-0001.html From asha at vtiger.com Wed Sep 3 22:55:35 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:25:35 +0530 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: Hi Kristof, Thanks for the patch. We shall try it out and integrate if works well. Btw, we suggest you to submit all the patches through trac. On Mon, Sep 1, 2008 at 10:29 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/4e7c7d11/attachment-0001.html From asha at vtiger.com Wed Sep 3 22:59:26 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:29:26 +0530 Subject: [Vtigercrm-developers] How can I really delete entities from MySQL? In-Reply-To: <48B51BE7.7060403@trackset.com> References: <48B51BE7.7060403@trackset.com> Message-ID: Hi Christian Castelli, There are multiple queries involved for each module to delete an item from the database as the information for each item is spread across multiple tables. Simple thing would be to delete only from vtiger_crmentity table. But this will not be clean. On Wed, Aug 27, 2008 at 2:48 PM, Christian Castelli < christian.castelli at trackset.com> wrote: > Hi there, > I'm new to vTiger and I've discovered that when I delete an item from > the system (via browser), vTiger set to 1 the field vtiger_crmentity in > the database. > I can see all deleted items by a simpel query (and if I'm not wrong, in > future releases it will be possibile to restore these items by the GUI, > won't it?). > My question is: how can I really delete those items in MySQL (in order > to make it cleaner) that I've deleted from vTiger? What queries are > involved? > Thanks. > -- > Christian Castelli > Software Developer > christian.castelli at trackset.com > > > Italian Office > Via Sant'Ilario Sud,109 > 56021 Cascina (PI) - Italia > TEL +39 050 70 03 79 > FAX +39 050 80 70 136 > www.trackset.com > > Questo messaggio ? destinato alle sole persone indicate e pu? contenere > informazioni riservate. > Se ricevuto per errore, si prega di avvisare immediatamente il mittente > e cancellare l'originale. Ogni altro uso del messaggio ? vietato. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/9b5a0845/attachment-0001.html From ckwu at ck-erp.net Thu Sep 4 03:48:29 2008 From: ckwu at ck-erp.net (C K Wu) Date: Thu, 04 Sep 2008 15:48:29 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.28.1 released (with vTiger 5.0.4 connector) Message-ID: <48BF92CD.1020307@ck-erp.net> Hi, folks, I have posted a new release, v.0.28.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, Sample school chart of accounts, System upgrade script, menu choice for warehouse, retail store, tree view for BOM, inventory category, service category, import of eGroupWare addressbook, full (draft) Spanish translation [improvement suggestions most welcome], and, connector for CATS, php-residence, Open-Realty, phpScheduleIT, PSCafePOS, OpenBiblio, Centre/SIS, ClaSS, Care2X CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 23 modules - Administration, i18n, Data Import, 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: Centre/SIS, ClaSS; OpenBiblio; CATS; php-residence, phpScheduleIT; AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; PSCafePOS, MyHandyRestaurant; FreightFleetManagementSystem; OpenX, LandShop, Open-Realty, FreeRealty; IRM; LegalCase; ClearHealth, OpenEMR, Care2X; eGroupWare, Horde-GroupWare; Zencart, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net Download is available from, http://sourceforge.net/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 pavani at vtiger.com Fri Sep 5 02:41:31 2008 From: pavani at vtiger.com (Pavani I) Date: Fri, 5 Sep 2008 12:11:31 +0530 Subject: [Vtigercrm-developers] mobile's uitype In-Reply-To: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> References: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Message-ID: Hi Kristof, We'd appreciate you for identifying this issue. We have given two different uitypes for these fields for future use. We'll definitely consider this as soon as possible. On Mon, Sep 1, 2008 at 4:56 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > Anyone know of a reason why the field "mobile" is "uitype 1" (simple > text), and not "uitype 11", like the "phone" field, in both the > "contactdetails" and "leadaddress" tables? We tested, and found no > reason for this. > > May I submit a patch that changes mobile's uitype to 11 in > DefaultDataPopulator.php ? > > Kristof > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Pavani. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080905/6c79f851/attachment-0001.html From joe at tsolucio.com Thu Sep 11 17:15:52 2008 From: joe at tsolucio.com (Joe Bordes) Date: Thu, 11 Sep 2008 23:15:52 +0200 Subject: [Vtigercrm-developers] forge is down. no space left Message-ID: <48C98A88.70401@tsolucio.com> Hi, Somebody take a look at the forge, it says it has run out of space. Joe TSolucio From svk at vtiger.com Thu Sep 11 18:22:11 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 15:22:11 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <48C98A88.70401@tsolucio.com> References: <48C98A88.70401@tsolucio.com> Message-ID: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Hi Joe, Thanks for alerting us. We will fix this shortly. Regards, Sreenivas On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > Hi, > > Somebody take a look at the forge, it says it has run out of space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/2f8d2224/attachment-0001.html From svk at vtiger.com Thu Sep 11 20:30:03 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 17:30:03 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Message-ID: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> fyi.. http://forge.vtiger.com server is back up now. Sorry for the inconvenience. Regards, Sreenivas On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru wrote: > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > >> Hi, >> >> Somebody take a look at the forge, it says it has run out of space. >> >> Joe >> TSolucio >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/022fce3c/attachment-0001.html From joe at tsolucio.com Fri Sep 12 01:57:07 2008 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 12 Sep 2008 07:57:07 +0200 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> Message-ID: <48CA04B3.5020407@tsolucio.com> No problem. Thanks for the quick response. Joe TSolucio Sreenivas Kanumuru escribi?: > fyi.. http://forge.vtiger.com server is back up now. Sorry for the > inconvenience. > > Regards, > Sreenivas > > On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru > wrote: > > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes > wrote: > > Hi, > > Somebody take a look at the forge, it says it has run out of > space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > ------------------------------------------------------------------------ > > _______________________________________________ > 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/20080912/ebcbcafa/attachment-0001.html From tzenk at gmx.net Fri Sep 12 04:22:36 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Fri, 12 Sep 2008 10:22:36 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: <48CA26CC.5070200@gmx.net> Hello Kristof, oh yes i can reproduce it with all of my browsers. After logging there is indeed this mixed screen. But i?m sorry that i can?t reproduce the diff you provided. I am used to the way a diff is provided like this (this is the way drupal and joomla diffs are provided) RCS file: /cvs/drupal-contrib/contributions/modules/imagefield/imagefield.module,v retrieving revision 1.30.2.6.2.64 diff -u -p -r1.30.2.6.2.64 imagefield.module --- imagefield.module 13 May 2008 00:02:02 -0000 1.30.2.6.2.64 +++ imagefield.module 10 Jul 2008 04:00:18 -0000 @@ -163,18 +163,16 @@ function imagefield_field_settings($op, $ext = array_pop(explode('.', $file->filename)); $filename = $field['field_name'] .'.'. $ext; // verify the destination exists and is writeable... - $dst = file_create_path('imagefield_default_images/'. $filename); + $dst = 'imagefield_default_images/'. $filename; if (!imagefield_check_directory(dirname($dst))) { So besides the filename in which the changes have to be made, here i have the functionname, the lines above and below the line that is changed AND the whole row that must be changed. In the way you provide your diff i can not reproduce the patch because: 1. (isset($_SESSION["app_unique_key <<< suddenly ends without any closing, what?s the reason for this? 2. it says 1 files changed, 5 insertions(+), 0 deletions(-) WHAT has to be changed and WHERE do i put the 5 lines that have to be added. Maybe its just me misunderstanding the diff, but i would be glad if you could make it a little easier to understand, so i could provide a better feedback then this ;) Best Regards Torsten Zenk Kristof Kovacs schrieb: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From erical at lynxts.com Sun Sep 14 14:46:58 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 11:46:58 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes Message-ID: <48CD5C22.9050902@lynxts.com> What I am trying to do is allow a client to select some options on our web site, then I was hoping to insert their options/products into the quote table inside vTiger, and then auto email the sales team so they know someone requested a quote. It will make it easier down the road to convert these quotes to sales orders if they were auto entered. I am new to vtiger, but have developed crm systems in other languages before, so I'm familiar with the terms and data. I just need a few pointers to any code within vtiger I can use to insert into the database... or is it safe to just insert a record right into the quotes table? Thanks Erica -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080914/54e9ec53/attachment-0001.html From nolan at peaceworks.ca Sun Sep 14 15:37:10 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Sun, 14 Sep 2008 15:37:10 -0400 (EDT) Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <33149344.251221420835435.JavaMail.root@zimbra> Message-ID: <29942160.271221421030768.JavaMail.root@zimbra> Erica, This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. peace, Nolan Andres President, PeaceWorks Computer Consulting Inc. 205-55 Erb St. E., Waterloo, ON, N2J 4K8 t: 519.725.7875 c: 519.572.0659 ----- "Erica Lahoda" wrote: > What I am trying to do is allow a client to select some options on our > web site, then I was hoping to insert their options/products into the > quote table inside vTiger, and then auto email the sales team so they > know someone requested a quote. It will make it easier down the road > to convert these quotes to sales orders if they were auto entered. > > I am new to vtiger, but have developed crm systems in other languages > before, so I'm familiar with the terms and data. I just need a few > pointers to any code within vtiger I can use to insert into the > database... or is it safe to just insert a record right into the > quotes table? > > Thanks > > > Erica > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From erical at lynxts.com Sun Sep 14 16:25:03 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 13:25:03 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <29942160.271221421030768.JavaMail.root@zimbra> References: <29942160.271221421030768.JavaMail.root@zimbra> Message-ID: <48CD731F.8010401@lynxts.com> Thanks Nolan I will take a look at the api and see what I can do. I had hoped it would be as simple as that :) Nolan Andres wrote: > Erica, > > This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. > > If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. > > peace, > Nolan Andres > President, PeaceWorks Computer Consulting Inc. > 205-55 Erb St. E., Waterloo, ON, N2J 4K8 > t: 519.725.7875 c: 519.572.0659 > > ----- "Erica Lahoda" wrote: > > >> What I am trying to do is allow a client to select some options on our >> web site, then I was hoping to insert their options/products into the >> quote table inside vTiger, and then auto email the sales team so they >> know someone requested a quote. It will make it easier down the road >> to convert these quotes to sales orders if they were auto entered. >> >> I am new to vtiger, but have developed crm systems in other languages >> before, so I'm familiar with the terms and data. I just need a few >> pointers to any code within vtiger I can use to insert into the >> database... or is it safe to just insert a record right into the >> quotes table? >> >> Thanks >> >> >> Erica >> >> _______________________________________________ >> 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/20080914/f4cd51ad/attachment-0001.html From kristof.kovacs at onlineprojects.hu Wed Sep 17 18:29:17 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Thu, 18 Sep 2008 00:29:17 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <758B1BE7-0309-450C-B720-5C9C53F68AEF@onlineprojects.hu> Hello Zenk, > Hello Kristof, > oh yes i can reproduce it with all of my browsers. After logging there > is indeed this mixed screen. A reproducible bug is a hundred times better than a random one. :o) > But i?m sorry that i can?t reproduce the diff you provided. I am > used to > the way a diff is provided like this (this is the way drupal and > joomla > diffs are provided) Oh, I see where the misunderstanding comes from. We use "git" as source control (even to access an svn repository), while you use "svn", and git's diff puts a little more information in the patches (but leaves nothing out). Also, this diff contains only lines that were added, this is why you don't see the "changed" lines. Please let me explain those bits: > So besides the filename in which the changes have to be made, here i > have the functionname, the lines above and below the line that is > changed AND the whole row that must be changed. In the way you provide > your diff i can not reproduce the patch because: I'll copy here my original patch too, just to help me: ----------------- diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { ----------------- > 1.(isset($_SESSION["app_unique_key <<< suddenly ends without any > closing, what?s the reason for this? The reason is that this is the line that "patch" uses to locate the place of the diff. Besides the "line number based" identification ("@@ -192,6 +192,11 @@"), my version of diff puts a contextual identification there, too. True, it truncates it. I never noticed this before, since I use "patch -p1 2. it says > 1 files changed, 5 insertions(+), 0 deletions(-) > > WHAT has to be changed and WHERE do i put the 5 lines that have to > be added. It's just a statistic that the "git diff" puts there. :) Feel free to ignore it. :) Just as an example, this is how the statistics for a more complex commit look like: include/RelatedListView.php | 6 +----- include/utils/ListViewUtils.php | 15 ++++++++++----- include/utils/utils.php | 2 +- modules/Calendar/calendarLayout.php | 3 +-- 4 files changed, 13 insertions(+), 13 deletions(-) Here one can see which files has changed, how much text were added, how much removed, how much "chunks" of code changed. When one browses through commits (happens more often with git than with svn, since svn is almost always linear, while git is not), it helps visually distinguish between small a bug commits, big code additions and rewrites, etc... > Best Regards > Torsten Zenk Have a nice day! Krist?f -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080918/0aaea194/attachment-0001.html From prasad at vtiger.com Mon Sep 29 10:11:16 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 29 Sep 2008 19:41:16 +0530 Subject: [Vtigercrm-developers] vtlib - 1.4 released ! Message-ID: <39d18b250809290711i142fa305w36c9b4c74b845f49@mail.gmail.com> *Dear vtigers, * * * *vtlib-1.4* extends Module Manager features along with several bug fixes. Thanks for the community support. *Exporting and Importing modules* is now possible from Module Manager. Once the new module is created using vtlib API's you can export it either through the Module Manager or using Package API's. This package (zipfile) can be downloaded and imported on other vtiger CRM. Check out the documentation for more details and give a shot today :) Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=452 Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080929/22c3e05e/attachment-0001.html From prasad at vtiger.com Mon Sep 1 05:02:46 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 1 Sep 2008 14:32:46 +0530 Subject: [Vtigercrm-developers] vtlib - 1.3 released ! Message-ID: <39d18b250809010202nbacb3fen49da257fb0ae32da@mail.gmail.com> Dear vtigers, vtlib 1.3 is now released. This version includes the following: * API to setup Picklist values after field creation (Associate values to available roles) * Module Manager has been added under Settings to enable / disable access. Check out now and keep the feedback posted. More to come soon...! Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=440 Project URL: http://forge.vtiger.com/projects/vtlib/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080901/2a1b3930/attachment-0002.html From kristof.kovacs at onlineprojects.hu Mon Sep 1 07:26:28 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 13:26:28 +0200 Subject: [Vtigercrm-developers] mobile's uitype Message-ID: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Hello guys, Anyone know of a reason why the field "mobile" is "uitype 1" (simple text), and not "uitype 11", like the "phone" field, in both the "contactdetails" and "leadaddress" tables? We tested, and found no reason for this. May I submit a patch that changes mobile's uitype to 11 in DefaultDataPopulator.php ? Kristof From michael_post at web.de Mon Sep 1 07:44:56 2008 From: michael_post at web.de (Michael Post) Date: Mon, 01 Sep 2008 13:44:56 +0200 Subject: [Vtigercrm-developers] Thunderbird-Plugin with Synchronisiation / Ho to be involved? Message-ID: <48BBD5B8.8000508@web.de> Hello, i search the offered thunderbird plugin with synchronisation-option like the ms outlook plugin. If there is not such an option or plugin? How can i involved to help devolping this feature in this plugin? I do not want to redevelop the tire twice. Thanks, Michael From kristof.kovacs at onlineprojects.hu Mon Sep 1 12:59:38 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Mon, 1 Sep 2008 18:59:38 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Hello guys, On certain browsers, if the user hits a "browser back" after logging in to vtiger, he is presented with a screen that has a menu on the top, and the login screen in the middle. This is of course a minor bug, but there were complaints, so we fixed, and here is the patch. To reproduce the bug on any browser: Log in, and then go to index.php? action=Login&module=Users . Krist?f --- index.php | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { From asha at vtiger.com Wed Sep 3 22:46:18 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:16:18 +0530 Subject: [Vtigercrm-developers] Patch submission to 5.1 branch In-Reply-To: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> References: <5436C0C5-FCEF-4E02-81C0-F9B204D15748@onlineprojects.hu> Message-ID: Hi Kristof, We suggest you to upload your patches on trac. (http://trac.vtiger.com). Would be better if you create a ticket on trac, mark the type of the ticket as patch and upload your patch there. This way community can test the patch and update us and we can also test the patch from there and integrate if everything seems fine. We shall send you the trac account soon. Thanks for your support. On Wed, Aug 27, 2008 at 11:47 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > I found no official forum for 5.1 patches, so I send this very-very small > patch here instead. (This first one is a very-very small cosmetical patch -- > almost like just a probe to establish the protocol how this should be done.) > > I you are interested, please read > http://forums.vtiger.com/viewtopic.php?p=69676 on who we are why we base > our development on the alpha branch instead of the stable branch. We would > like to help out in 5.1 development and contribute bug fixes (small and big) > as we encounter them. > > Keep up the good work! > > Kristof > > --- > Smarty/templates/Home/Homestuff.tpl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/Smarty/templates/Home/Homestuff.tpl > b/Smarty/templates/Home/Homestuff.tpl > index 62da17e..e94e864 100644 > --- a/Smarty/templates/Home/Homestuff.tpl > +++ b/Smarty/templates/Home/Homestuff.tpl > @@ -2,7 +2,7 @@ > > > > -; > + > {**} >
> > -- > 1.6.0 > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/0c07c5f1/attachment-0002.html From asha at vtiger.com Wed Sep 3 22:55:35 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:25:35 +0530 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: Hi Kristof, Thanks for the patch. We shall try it out and integrate if works well. Btw, we suggest you to submit all the patches through trac. On Mon, Sep 1, 2008 at 10:29 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/4e7c7d11/attachment-0002.html From asha at vtiger.com Wed Sep 3 22:59:26 2008 From: asha at vtiger.com (Asha) Date: Thu, 4 Sep 2008 08:29:26 +0530 Subject: [Vtigercrm-developers] How can I really delete entities from MySQL? In-Reply-To: <48B51BE7.7060403@trackset.com> References: <48B51BE7.7060403@trackset.com> Message-ID: Hi Christian Castelli, There are multiple queries involved for each module to delete an item from the database as the information for each item is spread across multiple tables. Simple thing would be to delete only from vtiger_crmentity table. But this will not be clean. On Wed, Aug 27, 2008 at 2:48 PM, Christian Castelli < christian.castelli at trackset.com> wrote: > Hi there, > I'm new to vTiger and I've discovered that when I delete an item from > the system (via browser), vTiger set to 1 the field vtiger_crmentity in > the database. > I can see all deleted items by a simpel query (and if I'm not wrong, in > future releases it will be possibile to restore these items by the GUI, > won't it?). > My question is: how can I really delete those items in MySQL (in order > to make it cleaner) that I've deleted from vTiger? What queries are > involved? > Thanks. > -- > Christian Castelli > Software Developer > christian.castelli at trackset.com > > > Italian Office > Via Sant'Ilario Sud,109 > 56021 Cascina (PI) - Italia > TEL +39 050 70 03 79 > FAX +39 050 80 70 136 > www.trackset.com > > Questo messaggio ? destinato alle sole persone indicate e pu? contenere > informazioni riservate. > Se ricevuto per errore, si prega di avvisare immediatamente il mittente > e cancellare l'originale. Ogni altro uso del messaggio ? vietato. > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080904/9b5a0845/attachment-0002.html From ckwu at ck-erp.net Thu Sep 4 03:48:29 2008 From: ckwu at ck-erp.net (C K Wu) Date: Thu, 04 Sep 2008 15:48:29 +0800 Subject: [Vtigercrm-developers] CK-ERP (Open Source ERP / CRM / MRP) v.0.28.1 released (with vTiger 5.0.4 connector) Message-ID: <48BF92CD.1020307@ck-erp.net> Hi, folks, I have posted a new release, v.0.28.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, Sample school chart of accounts, System upgrade script, menu choice for warehouse, retail store, tree view for BOM, inventory category, service category, import of eGroupWare addressbook, full (draft) Spanish translation [improvement suggestions most welcome], and, connector for CATS, php-residence, Open-Realty, phpScheduleIT, PSCafePOS, OpenBiblio, Centre/SIS, ClaSS, Care2X CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 23 modules - Administration, i18n, Data Import, 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: Centre/SIS, ClaSS; OpenBiblio; CATS; php-residence, phpScheduleIT; AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; PSCafePOS, MyHandyRestaurant; FreightFleetManagementSystem; OpenX, LandShop, Open-Realty, FreeRealty; IRM; LegalCase; ClearHealth, OpenEMR, Care2X; eGroupWare, Horde-GroupWare; Zencart, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net Download is available from, http://sourceforge.net/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 pavani at vtiger.com Fri Sep 5 02:41:31 2008 From: pavani at vtiger.com (Pavani I) Date: Fri, 5 Sep 2008 12:11:31 +0530 Subject: [Vtigercrm-developers] mobile's uitype In-Reply-To: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> References: <8CD70006-5239-4CE6-B27B-2358021B5B29@onlineprojects.hu> Message-ID: Hi Kristof, We'd appreciate you for identifying this issue. We have given two different uitypes for these fields for future use. We'll definitely consider this as soon as possible. On Mon, Sep 1, 2008 at 4:56 PM, Kristof Kovacs < kristof.kovacs at onlineprojects.hu> wrote: > Hello guys, > > Anyone know of a reason why the field "mobile" is "uitype 1" (simple > text), and not "uitype 11", like the "phone" field, in both the > "contactdetails" and "leadaddress" tables? We tested, and found no > reason for this. > > May I submit a patch that changes mobile's uitype to 11 in > DefaultDataPopulator.php ? > > Kristof > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Pavani. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080905/6c79f851/attachment-0002.html From joe at tsolucio.com Thu Sep 11 17:15:52 2008 From: joe at tsolucio.com (Joe Bordes) Date: Thu, 11 Sep 2008 23:15:52 +0200 Subject: [Vtigercrm-developers] forge is down. no space left Message-ID: <48C98A88.70401@tsolucio.com> Hi, Somebody take a look at the forge, it says it has run out of space. Joe TSolucio From svk at vtiger.com Thu Sep 11 18:22:11 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 15:22:11 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <48C98A88.70401@tsolucio.com> References: <48C98A88.70401@tsolucio.com> Message-ID: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Hi Joe, Thanks for alerting us. We will fix this shortly. Regards, Sreenivas On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > Hi, > > Somebody take a look at the forge, it says it has run out of space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/2f8d2224/attachment-0002.html From svk at vtiger.com Thu Sep 11 20:30:03 2008 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 11 Sep 2008 17:30:03 -0700 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> Message-ID: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> fyi.. http://forge.vtiger.com server is back up now. Sorry for the inconvenience. Regards, Sreenivas On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru wrote: > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes wrote: > >> Hi, >> >> Somebody take a look at the forge, it says it has run out of space. >> >> Joe >> TSolucio >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 716-8592 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080911/022fce3c/attachment-0002.html From joe at tsolucio.com Fri Sep 12 01:57:07 2008 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 12 Sep 2008 07:57:07 +0200 Subject: [Vtigercrm-developers] forge is down. no space left In-Reply-To: <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> References: <48C98A88.70401@tsolucio.com> <370368f40809111522l75acb077xdb4a0cf467ba1f08@mail.gmail.com> <370368f40809111730i4ce57a56hf977243cb6372f9f@mail.gmail.com> Message-ID: <48CA04B3.5020407@tsolucio.com> No problem. Thanks for the quick response. Joe TSolucio Sreenivas Kanumuru escribi?: > fyi.. http://forge.vtiger.com server is back up now. Sorry for the > inconvenience. > > Regards, > Sreenivas > > On Thu, Sep 11, 2008 at 3:22 PM, Sreenivas Kanumuru > wrote: > > Hi Joe, > > Thanks for alerting us. We will fix this shortly. > > Regards, > Sreenivas > > > On Thu, Sep 11, 2008 at 2:15 PM, Joe Bordes > wrote: > > Hi, > > Somebody take a look at the forge, it says it has run out of > space. > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > > > > > -- > Sreenivas Kanumuru > vtiger Team > > Location: > Sunnyvale, California > > Office: +1 (408) 716-8592 > Cell: +1 (408) 836-5810 > Skype: skanumuru > ------------------------------------------------------------------------ > > _______________________________________________ > 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/20080912/ebcbcafa/attachment-0002.html From tzenk at gmx.net Fri Sep 12 04:22:36 2008 From: tzenk at gmx.net (Torsten Zenk) Date: Fri, 12 Sep 2008 10:22:36 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen In-Reply-To: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> References: <974D7656-A3ED-4BC1-8CEF-F5D2F5C0AFC0@onlineprojects.hu> Message-ID: <48CA26CC.5070200@gmx.net> Hello Kristof, oh yes i can reproduce it with all of my browsers. After logging there is indeed this mixed screen. But i?m sorry that i can?t reproduce the diff you provided. I am used to the way a diff is provided like this (this is the way drupal and joomla diffs are provided) RCS file: /cvs/drupal-contrib/contributions/modules/imagefield/imagefield.module,v retrieving revision 1.30.2.6.2.64 diff -u -p -r1.30.2.6.2.64 imagefield.module --- imagefield.module 13 May 2008 00:02:02 -0000 1.30.2.6.2.64 +++ imagefield.module 10 Jul 2008 04:00:18 -0000 @@ -163,18 +163,16 @@ function imagefield_field_settings($op, $ext = array_pop(explode('.', $file->filename)); $filename = $field['field_name'] .'.'. $ext; // verify the destination exists and is writeable... - $dst = file_create_path('imagefield_default_images/'. $filename); + $dst = 'imagefield_default_images/'. $filename; if (!imagefield_check_directory(dirname($dst))) { So besides the filename in which the changes have to be made, here i have the functionname, the lines above and below the line that is changed AND the whole row that must be changed. In the way you provide your diff i can not reproduce the patch because: 1. (isset($_SESSION["app_unique_key <<< suddenly ends without any closing, what?s the reason for this? 2. it says 1 files changed, 5 insertions(+), 0 deletions(-) WHAT has to be changed and WHERE do i put the 5 lines that have to be added. Maybe its just me misunderstanding the diff, but i would be glad if you could make it a little easier to understand, so i could provide a better feedback then this ;) Best Regards Torsten Zenk Kristof Kovacs schrieb: > Hello guys, > > On certain browsers, if the user hits a "browser back" after logging > in to vtiger, he is presented with a screen that has a menu on the > top, and the login screen in the middle. This is of course a minor > bug, but there were complaints, so we fixed, and here is the patch. > > To reproduce the bug on any browser: Log in, and then go to index.php? > action=Login&module=Users . > > Krist?f > > --- > index.php | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/index.php b/index.php > index ae23b93..3781a08 100644 > --- a/index.php > +++ b/index.php > @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && > (isset($_SESSION["app_unique_key > $use_current_login = true; > } > > +// Prevent loading Login again if there is an authenticated user in > the session. > +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' > && $action == 'Login') { > + header("Location: index.php?action=$default_action&module= > $default_module"); > +} > + > if($use_current_login) > { > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From erical at lynxts.com Sun Sep 14 14:46:58 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 11:46:58 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes Message-ID: <48CD5C22.9050902@lynxts.com> What I am trying to do is allow a client to select some options on our web site, then I was hoping to insert their options/products into the quote table inside vTiger, and then auto email the sales team so they know someone requested a quote. It will make it easier down the road to convert these quotes to sales orders if they were auto entered. I am new to vtiger, but have developed crm systems in other languages before, so I'm familiar with the terms and data. I just need a few pointers to any code within vtiger I can use to insert into the database... or is it safe to just insert a record right into the quotes table? Thanks Erica -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080914/54e9ec53/attachment-0002.html From nolan at peaceworks.ca Sun Sep 14 15:37:10 2008 From: nolan at peaceworks.ca (Nolan Andres) Date: Sun, 14 Sep 2008 15:37:10 -0400 (EDT) Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <33149344.251221420835435.JavaMail.root@zimbra> Message-ID: <29942160.271221421030768.JavaMail.root@zimbra> Erica, This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. peace, Nolan Andres President, PeaceWorks Computer Consulting Inc. 205-55 Erb St. E., Waterloo, ON, N2J 4K8 t: 519.725.7875 c: 519.572.0659 ----- "Erica Lahoda" wrote: > What I am trying to do is allow a client to select some options on our > web site, then I was hoping to insert their options/products into the > quote table inside vTiger, and then auto email the sales team so they > know someone requested a quote. It will make it easier down the road > to convert these quotes to sales orders if they were auto entered. > > I am new to vtiger, but have developed crm systems in other languages > before, so I'm familiar with the terms and data. I just need a few > pointers to any code within vtiger I can use to insert into the > database... or is it safe to just insert a record right into the > quotes table? > > Thanks > > > Erica > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From erical at lynxts.com Sun Sep 14 16:25:03 2008 From: erical at lynxts.com (Erica Lahoda) Date: Sun, 14 Sep 2008 13:25:03 -0700 Subject: [Vtigercrm-developers] vTiger 5.x - insert into database - quotes In-Reply-To: <29942160.271221421030768.JavaMail.root@zimbra> References: <29942160.271221421030768.JavaMail.root@zimbra> Message-ID: <48CD731F.8010401@lynxts.com> Thanks Nolan I will take a look at the api and see what I can do. I had hoped it would be as simple as that :) Nolan Andres wrote: > Erica, > > This sounds like a job for the API (see api.vtiger.com). Rather than doing direct writes, you can create an instance of a Quote object and then save it. > > If you haven't got the auto email part worked out, try the Auto Email Notification project on the forge (http://forge.vtiger.com/projects/autoemails/). It's built to send exactly that type of email. > > peace, > Nolan Andres > President, PeaceWorks Computer Consulting Inc. > 205-55 Erb St. E., Waterloo, ON, N2J 4K8 > t: 519.725.7875 c: 519.572.0659 > > ----- "Erica Lahoda" wrote: > > >> What I am trying to do is allow a client to select some options on our >> web site, then I was hoping to insert their options/products into the >> quote table inside vTiger, and then auto email the sales team so they >> know someone requested a quote. It will make it easier down the road >> to convert these quotes to sales orders if they were auto entered. >> >> I am new to vtiger, but have developed crm systems in other languages >> before, so I'm familiar with the terms and data. I just need a few >> pointers to any code within vtiger I can use to insert into the >> database... or is it safe to just insert a record right into the >> quotes table? >> >> Thanks >> >> >> Erica >> >> _______________________________________________ >> 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/20080914/f4cd51ad/attachment-0002.html From kristof.kovacs at onlineprojects.hu Wed Sep 17 18:29:17 2008 From: kristof.kovacs at onlineprojects.hu (Kristof Kovacs) Date: Thu, 18 Sep 2008 00:29:17 +0200 Subject: [Vtigercrm-developers] [patch] Login, then "browser back" causes "mixed" screen Message-ID: <758B1BE7-0309-450C-B720-5C9C53F68AEF@onlineprojects.hu> Hello Zenk, > Hello Kristof, > oh yes i can reproduce it with all of my browsers. After logging there > is indeed this mixed screen. A reproducible bug is a hundred times better than a random one. :o) > But i?m sorry that i can?t reproduce the diff you provided. I am > used to > the way a diff is provided like this (this is the way drupal and > joomla > diffs are provided) Oh, I see where the misunderstanding comes from. We use "git" as source control (even to access an svn repository), while you use "svn", and git's diff puts a little more information in the patches (but leaves nothing out). Also, this diff contains only lines that were added, this is why you don't see the "changed" lines. Please let me explain those bits: > So besides the filename in which the changes have to be made, here i > have the functionname, the lines above and below the line that is > changed AND the whole row that must be changed. In the way you provide > your diff i can not reproduce the patch because: I'll copy here my original patch too, just to help me: ----------------- diff --git a/index.php b/index.php index ae23b93..3781a08 100644 --- a/index.php +++ b/index.php @@ -192,6 +192,11 @@ if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key $use_current_login = true; } +// Prevent loading Login again if there is an authenticated user in the session. +if (isset($_SESSION['authenticated_user_id']) && $module == 'Users' && $action == 'Login') { + header("Location: index.php?action=$default_action&module= $default_module"); +} + if($use_current_login) { ----------------- > 1.(isset($_SESSION["app_unique_key <<< suddenly ends without any > closing, what?s the reason for this? The reason is that this is the line that "patch" uses to locate the place of the diff. Besides the "line number based" identification ("@@ -192,6 +192,11 @@"), my version of diff puts a contextual identification there, too. True, it truncates it. I never noticed this before, since I use "patch -p1 2. it says > 1 files changed, 5 insertions(+), 0 deletions(-) > > WHAT has to be changed and WHERE do i put the 5 lines that have to > be added. It's just a statistic that the "git diff" puts there. :) Feel free to ignore it. :) Just as an example, this is how the statistics for a more complex commit look like: include/RelatedListView.php | 6 +----- include/utils/ListViewUtils.php | 15 ++++++++++----- include/utils/utils.php | 2 +- modules/Calendar/calendarLayout.php | 3 +-- 4 files changed, 13 insertions(+), 13 deletions(-) Here one can see which files has changed, how much text were added, how much removed, how much "chunks" of code changed. When one browses through commits (happens more often with git than with svn, since svn is almost always linear, while git is not), it helps visually distinguish between small a bug commits, big code additions and rewrites, etc... > Best Regards > Torsten Zenk Have a nice day! Krist?f -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080918/0aaea194/attachment-0002.html From prasad at vtiger.com Mon Sep 29 10:11:16 2008 From: prasad at vtiger.com (Prasad) Date: Mon, 29 Sep 2008 19:41:16 +0530 Subject: [Vtigercrm-developers] vtlib - 1.4 released ! Message-ID: <39d18b250809290711i142fa305w36c9b4c74b845f49@mail.gmail.com> *Dear vtigers, * * * *vtlib-1.4* extends Module Manager features along with several bug fixes. Thanks for the community support. *Exporting and Importing modules* is now possible from Module Manager. Once the new module is created using vtlib API's you can export it either through the Module Manager or using Package API's. This package (zipfile) can be downloaded and imported on other vtiger CRM. Check out the documentation for more details and give a shot today :) Download URL: http://forge.vtiger.com/frs/?group_id=174&release_id=452 Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20080929/22c3e05e/attachment-0002.html