Skip to content

Commit

Permalink
update readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbaucke committed Nov 30, 2011
1 parent 6548f5d commit cfa2b80
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions readme
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Quickly Add Namespace Prefixes to SFDC Meta-data Source-code

Namespace Prefixes are required for ALL managed packages on the SFDC platform.

All webservice package references must reference a namespace prefix for
deployed code to correctly reference installed packages.

References to custom objects must reference a namespace prefix in API calls:

NSP1__MyCustomObject__c

Managed packages on the SFDC Platform cannot rename/remove member classes,
custom objects, visualforce pages, etc. Therefore, a namingConventions.txt
file will also be run on each individaul file to help users develop a
generic copy of the code in non-managed package developer orgs, to have
classnames and org methods updated.

Format of: namingConventions.txt

OriginalNameString:PackagedNameString

Example:

OriginalNameString.cls --> PackagedNameString.cls

-and-

public OriginalNameString(){ //... } --> public PackageNameString(){ //... }

11/30/2011 - Created Github repo, started construction of methods.

@jordanbaucke
www.bracketlabs.com

0 comments on commit cfa2b80

Please sign in to comment.