Changes between Version 8 and Version 9 of TicketToSalesforcePlugin


Ignore:
Timestamp:
Feb 7, 2011, 9:25:47 AM (13 years ago)
Author:
Chris Wolf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TicketToSalesforcePlugin

    v8 v9  
    4646You will need to install the following Salesforce project
    4747artifacts using either the Eclipse SForce plugin or the
    48 ant-based migration tool.
     48ant-based migration tool. 
    4949
    5050{{{
     
    5858src/objects/TicketCommentLink__c.object
    5959}}}
     60
     61
     62The "migration tool" is just a set of Salesforce-specific Ant tasks
     63which use the metadata API to upload/download artifacts, such as
     64custom objects, etc.
     65
     66I provide an Ant script to perform the deployment.  You need to
     67acquire the ''ant-salesforce.jar'' by following these steps:
     68
     69 1. Log into a Salesforce.com org on your deployment machine.
     70 2. Click Your Name ➤ Setup ➤ Develop ➤ Tools, and then click Force.com Migration Tool.
     71 3. Save the .zip file locally and extract the contents to the directory of your choice.
     72 4. Copy ant-salesforce.jar into your Ant installation's lib directory.
     73    The lib directory is located in the root folder of your Ant installation. You could
     74    also just copy this jar to the same directory as build.xml
     75
     76
    6077
    6178== Bugs/Feature Requests ==
     
    7895
    7996 1. !Install the custom objects and custom page layouts into your Salesforce org.
    80  1. Generate the partner WSDL and copy it into your trac/projects/<yourproj>/conf
     97 1. Copy `trunk/src/trac/plugin/ticket2sforce.py` to `trac/projects/<yourproj>/plugins`
     98 1. Generate the partner WSDL and copy it into your `trac/projects/<yourproj>/conf`
    8199    directory 
    82100 1. Edit trac.ini to enable the tick2sforce component as well as setting the web
    83101    service API credentials.
     102
     103To install the custom objects and page layouts:
     104{{{
     105$ cd trunk/src
     106$ ant deploy
     107}}}
    84108
    85109== Author/Contributors ==