This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page showheader="false" sidebar="false" standardStylesheets="false" > | |
<head> | |
<meta charset="utf-8"></meta> | |
<title>SalesforceAngularDemo</title> | |
<base href="/"></base> | |
<meta name="viewport" content="width=device-width, initial-scale=1"></meta> | |
<link rel="icon" type="image/x-icon" href="{!URLFOR($Resource.sftestassets, 'favicon.ico')}"></link> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>SalesforceAngularDemo</title> | |
<base href="/"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="icon" type="image/x-icon" href="favicon.ico"> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import argparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument("--assets", help="") | |
args = parser.parse_args() | |
assetsName = args.assets | |
html = open('dist/index.html').read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python visualforce_transform.py --assets sftestassets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
salesforce/ | |
lib/ | |
ant-salesforce.jar | |
src-dev-deploy/ | |
package.xml | |
build.xml | |
dev.sf | |
visualforce_transform.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<Package xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<types> | |
<members>*</members> | |
<name>ApexPage</name> | |
</types> | |
<types> | |
<members>*</members> | |
<name>StaticResource</name> | |
</types> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sf.username = #YOUR ORG USER NAME# | |
sf.password = #YOUR PASSWORD# | |
sf.token = #YOUR SECURTY TOKEN# | |
sf.url = https://test.salesforce.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project name="Standard Salesforce Build File" default="validate" basedir="." xmlns:sf="antlib:com.salesforce"> | |
<property name="workingDir" location="." /> | |
<property name="logFile" value="log/ant.log" /> | |
<taskdef uri="antlib:com.salesforce" | |
resource="com/salesforce/antlib.xml" | |
classpath="${basedir}/lib/ant-salesforce.jar"/> | |
<target name="intro" > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import re | |
import argparse | |
import shutil | |
import os | |
import zipfile | |
parser = argparse.ArgumentParser() | |
parser.add_argument("--assets", help="") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python salesforce/visualforce_transform.py --assets sftestassets --pagename sftestpage --builddir src-dev-deploy | |
ant localDevDeploy -f salesforce/build.xml -lib salesforce/lib |
OlderNewer