21 | <% end %>
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/config/boot.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | require 'rubygems'
19 |
20 | # Set up gems listed in the Gemfile.
21 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
22 |
23 | require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
24 |
--------------------------------------------------------------------------------
/Java/DocuSignSample/src/net/docusign/api_3_0/package-info.java:
--------------------------------------------------------------------------------
1 | /**
2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | *
4 | * This source code is intended only as a supplement to DocuSign SDK
5 | * and/or on-line documentation.
6 | *
7 | * This sample is designed to demonstrate DocuSign features and is not intended
8 | * for production use. Code and policy for a production application must be
9 | * developed to meet the specific data and security requirements of the
10 | * application.
11 | *
12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | * PARTICULAR PURPOSE.
16 | */
17 |
18 | @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.docusign.net/API/3.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
19 | package net.docusign.api_3_0;
20 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/GetStatusAndDocs.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Tabs.Master" AutoEventWireup="true"
2 | CodeBehind="GetStatusAndDocs.aspx.cs" Inherits="DocuSignSample.GetStatusAndDocs" %>
3 |
4 |
5 |
6 |
7 |
8 |
9 |
17 |
19 |
20 |
--------------------------------------------------------------------------------
/Salesforce/NDAKiosk/pages/ndadonesignout.page:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
Checked Out
10 |
11 | Thanks for checking out. Have a great day!
12 |
13 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/MS.NET/Connect/hcc_poc.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2012
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hcc_poc", "hcc_poc.csproj", "{2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Java/DocuSignSample/src/net/docusign/credential/package-info.java:
--------------------------------------------------------------------------------
1 | /**
2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | *
4 | * This source code is intended only as a supplement to DocuSign SDK
5 | * and/or on-line documentation.
6 | *
7 | * This sample is designed to demonstrate DocuSign features and is not intended
8 | * for production use. Code and policy for a production application must be
9 | * developed to meet the specific data and security requirements of the
10 | * application.
11 | *
12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | * PARTICULAR PURPOSE.
16 | */
17 |
18 | @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.docusign.net/API/Credential", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
19 | package net.docusign.credential;
20 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/config/initializers/mime_types.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | # Be sure to restart your server when you modify this file.
19 |
20 | # Add new mime types for use in respond_to blocks:
21 | # Mime::Type.register "text/richtext", :rtf
22 | # Mime::Type.register_alias "text/html", :iphone
23 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/app/helpers/send_document_helper.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | module SendDocumentHelper
19 | def add_tabs
20 |
21 | end
22 |
23 | def construct_recipients
24 |
25 | end
26 |
27 | def create_status_table
28 |
29 | end
30 |
31 | def proces_options
32 |
33 | end
34 | end
35 |
--------------------------------------------------------------------------------
/MS.NET/CodeSnippets/CodeSnippets.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2012
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeSnippets", "CodeSnippets\CodeSnippets.csproj", "{2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/PHP/DocuSignSample/css/Tabs.css:
--------------------------------------------------------------------------------
1 | body {
2 | font: 16px Arial, sans-serif;
3 | }
4 |
5 | .tabs {
6 | height: 50px;
7 | overflow: hidden;
8 | position: relative;
9 | z-index: 1;
10 | display: block;
11 | width: 1000px;
12 | margin-left: auto;
13 | margin-right: auto;
14 | }
15 |
16 | .tabs ul
17 | {
18 | list-style-type:none;
19 | width: 1000px;
20 | padding:0px;
21 | }
22 |
23 | .tabs li {
24 | float: left;
25 | z-index: 1;
26 | width:228px;
27 | background: #d6d5d4;
28 | padding: 3px 10px;
29 | border-radius: 5px 5px 0 0;
30 | margin: 0 1px 0 0;
31 | }
32 |
33 | .tabs li a {
34 | font-weight: bold;
35 | cursor: pointer;
36 | border-style: solid solid none solid;
37 | border-width: 0px;
38 | text-decoration:none;
39 | color: Black;
40 | font-size:large;
41 | }
42 |
43 | .tabs li.current {
44 | background: #fff;
45 | cursor: default;
46 | border-width: 1px;
47 | border-style: solid solid none solid;
48 | }
49 |
50 | .tabs li.passive
51 | {
52 | background: #d6d5d4;
53 | }
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/config/initializers/docusign.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | # Read configuration options from config/docusign.yml
19 |
20 | require 'docusign'
21 |
22 | Docusign::Config = HashWithIndifferentAccess.new(YAML.load_file("#{Rails.root}/config/docusign.yml")[Rails.env])
23 | Docusign::Config[:verify_mode] = OpenSSL::SSL::VERIFY_PEER
24 | Docusign::Config[:ca_file] = '/usr/local/etc/openssl/cert.pem'
25 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/css/Tabs.css:
--------------------------------------------------------------------------------
1 | body {
2 | font: 16px Arial, sans-serif;
3 | }
4 |
5 | .tabs {
6 | height: 50px;
7 | overflow: hidden;
8 | position: relative;
9 | z-index: 1;
10 | display: block;
11 | width: 1000px;
12 | margin-left: auto;
13 | margin-right: auto;
14 | }
15 |
16 | .tabs ul
17 | {
18 | list-style-type:none;
19 | width: 1000px;
20 | padding:0px;
21 | }
22 |
23 | .tabs li {
24 | float: left;
25 | z-index: 1;
26 | width:228px;
27 | background: #d6d5d4;
28 | padding: 3px 10px;
29 | border-radius: 5px 5px 0 0;
30 | margin: 0 1px 0 0;
31 | }
32 |
33 | .tabs li a {
34 | font-weight: bold;
35 | cursor: pointer;
36 | border-style: solid solid none solid;
37 | border-width: 0px;
38 | text-decoration:none;
39 | color: Black;
40 | font-size:large;
41 | }
42 |
43 | .tabs li.current {
44 | background: #fff;
45 | cursor: default;
46 | border-width: 1px;
47 | border-style: solid solid none solid;
48 | }
49 |
50 | .tabs li.passive
51 | {
52 | background: #d6d5d4;
53 | }
--------------------------------------------------------------------------------
/Salesforce/NDAKiosk/pages/ndanotifyreception.page:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | The person you are here to see doesn't seem to be listed. Please notify the receptionist, then press continue.
11 |
11 | Thanks for checking in. Please take a seat, the person you are here to see will be with you shortly.
12 | Please remember to check out at the end of your visit by touching the Sign Out button.
13 |
14 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/Gemfile:
--------------------------------------------------------------------------------
1 | source 'http://rubygems.org'
2 |
3 | ruby "2.3.7"
4 |
5 | gem 'rails', '5.2.1'
6 |
7 | # Bundle edge Rails instead:
8 | # gem 'rails', :git => 'git://github.com/rails/rails.git'
9 |
10 |
11 | gem 'soap4r', :git => 'git://github.com/docusign/soap4r.git'
12 | gem 'docusignsdk', :git => 'git://github.com/market-art/docusignsdk.git'
13 | gem 'intercession', '=2.0.0'
14 | gem 'httpclient', '=2.1.6.1'
15 | gem 'sqlite3'
16 |
17 | gem 'activerecord-session_store'
18 |
19 | # Use unicorn as the web server
20 | # gem 'unicorn'
21 |
22 | # Deploy with Capistrano
23 | # gem 'capistrano'
24 |
25 | # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
26 | # gem 'ruby-debug'
27 | # gem 'ruby-debug19'
28 |
29 | # Bundle the extra gems:
30 | # gem 'bj'
31 | # gem 'nokogiri'
32 | # gem 'sqlite3-ruby', :require => 'sqlite3'
33 | # gem 'aws-s3', :require => 'aws/s3'
34 |
35 | # Bundle gems for the local environment. Make sure to
36 | # put test-only gems in this group so their generators
37 | # and rake tasks are available in development mode:
38 | # group :development, :test do
39 | # gem 'webrat'
40 | # end
41 |
--------------------------------------------------------------------------------
/PHP/CodeSnippets/index_of_ams_sample_functions.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2012
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSignSample", "DocuSignSample\DocuSignSample.csproj", "{2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}"
5 | EndProject
6 | Global
7 | GlobalSection(SubversionScc) = preSolution
8 | Svn-Managed = True
9 | Manager = AnkhSVN - Subversion Support for Visual Studio
10 | EndGlobalSection
11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
12 | Debug|Any CPU = Debug|Any CPU
13 | Release|Any CPU = Release|Any CPU
14 | EndGlobalSection
15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
16 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Debug|Any CPU.Build.0 = Debug|Any CPU
18 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Release|Any CPU.ActiveCfg = Release|Any CPU
19 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Release|Any CPU.Build.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/DefaultPage.Master.cs:
--------------------------------------------------------------------------------
1 | /**
2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | *
4 | * This source code is intended only as a supplement to DocuSign SDK
5 | * and/or on-line documentation.
6 | *
7 | * This sample is designed to demonstrate DocuSign features and is not intended
8 | * for production use. Code and policy for a production application must be
9 | * developed to meet the specific data and security requirements of the
10 | * application.
11 | *
12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | * PARTICULAR PURPOSE.
16 | */
17 |
18 | using System;
19 | using System.Collections.Generic;
20 | using System.Linq;
21 | using System.Web;
22 | using System.Web.UI;
23 | using System.Web.UI.WebControls;
24 |
25 | namespace DocuSignSample
26 | {
27 | public partial class DefaultPage : System.Web.UI.MasterPage
28 | {
29 | protected void Page_Load(object sender, EventArgs e)
30 | {
31 |
32 | }
33 | }
34 | }
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/config/initializers/inflections.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | # Be sure to restart your server when you modify this file.
19 |
20 | # Add new inflection rules using the following format
21 | # (all these examples are active by default):
22 | # ActiveSupport::Inflector.inflections do |inflect|
23 | # inflect.plural /^(ox)$/i, '\1en'
24 | # inflect.singular /^(ox)en/i, '\1'
25 | # inflect.irregular 'person', 'people'
26 | # inflect.uncountable %w( fish sheep )
27 | # end
28 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/config/initializers/secret_token.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | # Be sure to restart your server when you modify this file.
19 |
20 | # Your secret key for verifying the integrity of signed cookies.
21 | # If you change this key, all old signed cookies will become invalid!
22 | # Make sure the secret is at least 30 characters and all random,
23 | # no regular words or you'll be exposed to dictionary attacks.
24 | DocuSignSample::Application.config.secret_token = '{SECRET_TOKEN}'
25 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License
2 |
3 | Copyright (c) 2016- DocuSign, Inc. (https://www.docusign.com)
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/app/models/recipient.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | class Recipient
19 | include ActiveModel::Validations
20 |
21 | attr_accessor :username, :email, :ident, :embedded, :security, :accesscode, :rolename
22 |
23 | def initialize(name, email, ident, embedded, security, code, role)
24 | @username = name
25 | @email = email
26 | @ident = ident
27 | @embedded = embedded
28 | @security = security
29 | @accesscode = code
30 | @rolename = role
31 | end
32 | end
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/config/initializers/backtrace_silencers.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | # Be sure to restart your server when you modify this file.
19 |
20 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
21 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
22 |
23 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
24 | # Rails.backtrace_cleaner.remove_silencers!
25 |
--------------------------------------------------------------------------------
/Java/Connect/WebContent/WEB-INF/web.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Connect
4 |
5 | index.html
6 | index.htm
7 | index.jsp
8 | default.html
9 | default.htm
10 | default.jsp
11 |
12 |
13 | Receives an HTTP Post of XML from Docusign Envelope Reports
14 | Receiver
15 | Receiver
16 | net.docusign.receiver.Receiver
17 |
18 |
19 | Receiver
20 | /Receiver
21 |
22 |
--------------------------------------------------------------------------------
/Java/Connect/src/net/docusign/receiver/OnlyXml.java:
--------------------------------------------------------------------------------
1 | /**
2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | *
4 | * This source code is intended only as a supplement to DocuSign SDK
5 | * and/or on-line documentation.
6 | * This sample is designed to demonstrate DocuSign features and is not intended
7 | * for production use. Code and policy for a production application must be
8 | * developed to meet the specific data and security requirements of the
9 | * application.
10 | *
11 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14 | * PARTICULAR PURPOSE.
15 | */
16 | package net.docusign.receiver;
17 |
18 | import java.io.File;
19 | import java.io.FilenameFilter;
20 |
21 | /**
22 | * @author csmith
23 | *
24 | */
25 | public class OnlyXml implements FilenameFilter {
26 |
27 | /* (non-Javadoc)
28 | * @see java.io.FilenameFilter#accept(java.io.File, java.lang.String)
29 | */
30 | @Override
31 | public boolean accept(File dir, String name) {
32 | return name.endsWith(".xml");
33 | }
34 |
35 | }
36 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/app/assets/stylesheets/scaffold.css:
--------------------------------------------------------------------------------
1 | body { background-color: #fff; color: #333; }
2 |
3 | body, p, ol, ul, td {
4 | font-family: verdana, arial, helvetica, sans-serif;
5 | font-size: 13px;
6 | line-height: 18px;
7 | }
8 |
9 | pre {
10 | background-color: #eee;
11 | padding: 10px;
12 | font-size: 11px;
13 | }
14 |
15 | a { color: #000; }
16 | a:visited { color: #666; }
17 | a:hover { color: #fff; background-color:#000; }
18 |
19 | div.field, div.actions {
20 | margin-bottom: 10px;
21 | }
22 |
23 | #notice {
24 | color: green;
25 | }
26 |
27 | .field_with_errors {
28 | padding: 2px;
29 | background-color: red;
30 | display: table;
31 | }
32 |
33 | #error_explanation {
34 | width: 450px;
35 | border: 2px solid red;
36 | padding: 7px;
37 | padding-bottom: 0;
38 | margin-bottom: 20px;
39 | background-color: #f0f0f0;
40 | }
41 |
42 | #error_explanation h2 {
43 | text-align: left;
44 | font-weight: bold;
45 | padding: 5px 5px 5px 15px;
46 | font-size: 12px;
47 | margin: -7px;
48 | margin-bottom: 0px;
49 | background-color: #c00;
50 | color: #fff;
51 | }
52 |
53 | #error_explanation ul li {
54 | font-size: 12px;
55 | list-style: square;
56 | }
57 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/pop.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | DocuSign SDK - Frame Pop
5 |
6 |
14 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/Salesforce/NDAKiosk/Readme.txt:
--------------------------------------------------------------------------------
1 | Readme.txt for DocuSign SDK Salesforce NDAKios sample
2 | ===========================================================================
3 |
4 | System Requirements:
5 | - Salesforce Developer Edition account
6 |
7 | Overview:
8 | ---------------------------------------------------------------------------
9 |
10 | This sample code requires a DocuSign DevCenter account. If you do not
11 | already have a DevCenter account please go to
12 | http://www.docusign.com/devcenter/ and sign up for one. This sample will
13 | not function without a valid DevCenter account.
14 |
15 | This sample shows how to construct VisualForce pages optimized for an
16 | Apple iPad Safari browser. The use case is for a company that requires
17 | vistors to sign an NDA at the front desk. Instead of handing the visitor
18 | a paper copy to sign, this app lets the user electronically sign the NDA
19 | using an iPad on display!
20 |
21 | Static resources are provided in the sample that can be changed to the
22 | company's branding; including the icon that appears when the app is
23 | bookmarked to the iPad Home Screen!
24 |
25 | Refer to Readme.pdf for a walkthrough on how to implement this from a
26 | Salesforce Dev account.
27 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/config/initializers/session_store.rb:
--------------------------------------------------------------------------------
1 | ##
2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | #
4 | # This source code is intended only as a supplement to DocuSign SDK
5 | # and/or on-line documentation.
6 | #
7 | # This sample is designed to demonstrate DocuSign features and is not intended
8 | # for production use. Code and policy for a production application must be
9 | # developed to meet the specific data and security requirements of the
10 | # application.
11 | #
12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | # PARTICULAR PURPOSE.
16 | #
17 |
18 | # Be sure to restart your server when you modify this file.
19 |
20 | DocuSignSample::Application.config.session_store :active_record_store, :key => '_DocuSignSample_session'
21 |
22 | # Use the database for sessions instead of the cookie-based default,
23 | # which shouldn't be used to store highly confidential information
24 | # (create the session table with "rails generate session_migration")
25 | # DocuSignSample::Application.config.session_store :active_record_store
26 |
--------------------------------------------------------------------------------
/MS.NET/Connect/Receiver.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:2.0.50727.4927
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace hcc_poc {
12 |
13 |
14 | public partial class Receiver {
15 |
16 | ///
17 | /// form1 control.
18 | ///
19 | ///
20 | /// Auto-generated field.
21 | /// To modify move field declaration from designer file to code-behind file.
22 | ///
23 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
24 |
25 | ///
26 | /// statusLabel control.
27 | ///
28 | ///
29 | /// Auto-generated field.
30 | /// To modify move field declaration from designer file to code-behind file.
31 | ///
32 | protected global::System.Web.UI.WebControls.Label statusLabel;
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/db/schema.rb:
--------------------------------------------------------------------------------
1 | # encoding: UTF-8
2 | # This file is auto-generated from the current state of the database. Instead
3 | # of editing this file, please use the migrations feature of Active Record to
4 | # incrementally modify your database, and then regenerate this schema definition.
5 | #
6 | # Note that this schema.rb definition is the authoritative source for your
7 | # database schema. If you need to create the application database on another
8 | # system, you should be using db:schema:load, not running all the migrations
9 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10 | # you'll amass, the slower it'll run and the greater likelihood for issues).
11 | #
12 | # It's strongly recommended to check this file into your version control system.
13 |
14 | ActiveRecord::Schema.define(:version => 20130729051925) do
15 |
16 | create_table "sessions", :force => true do |t|
17 | t.string "session_id", :null => false
18 | t.text "data"
19 | t.datetime "created_at", :null => false
20 | t.datetime "updated_at", :null => false
21 | end
22 |
23 | add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id"
24 | add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at"
25 |
26 | end
27 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/DefaultPage.Master.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace DocuSignSample {
11 |
12 |
13 | public partial class DefaultPage {
14 |
15 | ///
16 | /// head control.
17 | ///
18 | ///
19 | /// Auto-generated field.
20 | /// To modify move field declaration from designer file to code-behind file.
21 | ///
22 | protected global::System.Web.UI.WebControls.ContentPlaceHolder head;
23 |
24 | ///
25 | /// ContentPlaceHolder1 control.
26 | ///
27 | ///
28 | /// Auto-generated field.
29 | /// To modify move field declaration from designer file to code-behind file.
30 | ///
31 | protected global::System.Web.UI.WebControls.ContentPlaceHolder ContentPlaceHolder1;
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/Error.aspx.cs:
--------------------------------------------------------------------------------
1 | /**
2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | *
4 | * This source code is intended only as a supplement to DocuSign SDK
5 | * and/or on-line documentation.
6 | *
7 | * This sample is designed to demonstrate DocuSign features and is not intended
8 | * for production use. Code and policy for a production application must be
9 | * developed to meet the specific data and security requirements of the
10 | * application.
11 | *
12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | * PARTICULAR PURPOSE.
16 | */
17 |
18 | using DocuSignSample.resources;
19 | using System;
20 |
21 | namespace DocuSignSample
22 | {
23 | public partial class Error : System.Web.UI.Page
24 | {
25 | protected void Page_Load(object sender, EventArgs e)
26 | {
27 | if (null != Session[Keys.ErrorMessage])
28 | {
29 | lblErrorMessage.Text = (string)Session[Keys.ErrorMessage];
30 | }
31 | else
32 | {
33 | lblErrorMessage.Text = "No error message in session. ?";
34 |
35 | }
36 | }
37 | }
38 | }
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/EmbedDocuSign.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Tabs.Master" AutoEventWireup="true"
2 | CodeBehind="EmbedDocuSign.aspx.cs" Inherits="DocuSignSample.EmbedDocuSign" %>
3 |
4 |
5 |
6 |
7 |
21 |
<%=signerMessage %>
22 |
24 |
25 |
--------------------------------------------------------------------------------
/MS.NET/CodeSnippets/README.txt:
--------------------------------------------------------------------------------
1 | Readme.txt for Docusign SDK MS.NET samples
2 | ===========================================================================
3 |
4 | System requirements for Microsoft .NET samples:
5 | - Visual Studio 2008+ (with applicable system requirements)
6 | - NUnit 2.5.7+ (from http://www.nunit.org/?p=download)
7 |
8 | Overview:
9 | ---------------------------------------------------------------------------
10 |
11 | This sample code requires a DocuSign DevCenter account. If you do not
12 | already have a DevCenter account please go to
13 | http://www.docusign.com/devcenter/ and sign up for one. This sample will
14 | not function without a valid DevCenter account.
15 |
16 | Each sample includes the source code for the services required to execute
17 | the applications. All of the appications include a Microsoft Visual Studio
18 | solution file that can perform building, deployment, and debugging
19 |
20 | Unit Test Setup
21 | ---------------------------------------------------------------------------
22 |
23 | To run these tests, you need to:
24 | 1. Install the NUnit framework and configure for use with Visual Studio
25 | 2. Replace the placeholder credentials in the app.config appsettings section with your demo credentials
26 | 3. Replace any placeholder strings (usually for email IDs or template IDs, especially within CreateOneSigner) within CodeSnippets.cs
--------------------------------------------------------------------------------
/MS.NET/Connect/Readme.txt:
--------------------------------------------------------------------------------
1 | Readme.txt for Docusign SDK MS.NET Connect sample.
2 | ===========================================================================
3 |
4 | System Requirements:
5 | - Visual Studio 2008+ (with applicable system requirements)
6 |
7 | This sample code requires a DocuSign DevCenter account. If you do not
8 | already have a DevCenter account please go to
9 | http://www.docusign.com/devcenter/ and sign up for one. This sample will
10 | not function without a valid DevCenter account.
11 |
12 | Overview:
13 | ---------------------------------------------------------------------------
14 |
15 | The Connect sample shows a simple ASP.NET servlet to send and receive events.
16 |
17 | Installation
18 | ---------------------------------------------------------------------------
19 |
20 | 1. Open hcc_poc.sln in project root and build.
21 |
22 | 2. Publish to your IIS server.
23 |
24 | Connect solution instructions
25 | ---------------------------------------------------------------------------
26 |
27 | In order to start receiving events from your Docusign account, please
28 | follow the configuration instructions in the DocuSign Connect Service
29 | Guide. Note that the Demo site does not require an HTTPS URL.
30 |
31 | The URL that you can post to is the same that can be used to browse the
32 | files that were POSTed. It is http:///HCC/Receiver.aspx
33 |
--------------------------------------------------------------------------------
/Salesforce/Readme.txt:
--------------------------------------------------------------------------------
1 | Readme.txt for DocuSign SDK Salesforce samples
2 | ===========================================================================
3 |
4 | System Requirements:
5 | - Salesforce Developer Edition account
6 |
7 | Overview:
8 | ---------------------------------------------------------------------------
9 |
10 | This sample code requires a DocuSign DevCenter account. If you do not
11 | already have a DevCenter account please go to
12 | http://www.docusign.com/devcenter/ and sign up for one. This sample will
13 | not function without a valid DevCenter account.
14 |
15 | Each sample includes the source code for the services required to execute
16 | the applications. All of the samples run as Salesforce applications. Refer
17 | to the Readme.pdf in the root directory of each sample for
18 | further details.
19 |
20 |
21 | ----- Rate Limits -----
22 |
23 | Please note: Applications are not allowed to poll for envelope status more
24 | than once every 15 minutes and we discourage integrators from continuously
25 | retrieving status on envelopes that are in a terminal state (Completed,
26 | Declined, and Voided). Excessive polling will result in your API access
27 | being revoked.
28 | If you need immediate notification of envelope events we encourage you to
29 | review envelope events or use our Connect Publisher technology, DocuSign
30 | Connect as an alternative.
--------------------------------------------------------------------------------
/Java/DocuSignSample/WebContent/pop.jsp:
--------------------------------------------------------------------------------
1 | <%@ page session="true"
2 | import="net.docusign.sample.Utils"
3 | language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
4 |
5 |
6 |
7 |
8 | DocuSign SDK - Frame Pop
9 |
10 |
20 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/Web.Debug.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
29 |
30 |
--------------------------------------------------------------------------------
/Salesforce/NDAKiosk/pages/NDANameRes.page:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
Name resolution screen
10 |
11 |
It seems like your e-mail is already associated with the following eSignatures, please pick one:
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | {!errMsg}
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/Java/Connect/Readme.txt:
--------------------------------------------------------------------------------
1 | Readme.txt for Docusign SDK Java Connect sample.
2 | ===========================================================================
3 |
4 | System Requirements:
5 | - Java Development Kit 1.6
6 | - Apache Ant 1.6
7 | - Tomcat 6 (or equivalent)
8 |
9 | This sample code requires a DocuSign DevCenter account. If you do not
10 | already have a DevCenter account please go to
11 | http://www.docusign.com/devcenter/ and sign up for one. This sample will
12 | not function without a valid DevCenter account.
13 |
14 | Overview:
15 | ---------------------------------------------------------------------------
16 |
17 | The Connect sample shows a simple Java servlet to send and receive events.
18 |
19 | Installation
20 | ---------------------------------------------------------------------------
21 |
22 | 1. Run Apache ANT in the project root.
23 |
24 | 2. Deploy the resulting dist/Connect.war file to your Tomcat or equivalent
25 | server.
26 |
27 | Connect solution instructions
28 | ---------------------------------------------------------------------------
29 |
30 | In order to start receiving events from your Docusign account, please
31 | follow the configuration instructions in the DocuSign Connect Service
32 | Guide. Note that the Demo site does not require an HTTPS URL.
33 |
34 | The URL that you can post to is the same that can be used to browse the
35 | files that were POSTed. It is http:///Connect/Receiver
36 |
--------------------------------------------------------------------------------
/MS.NET/Connect/hcc_poc.idc:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/PHP/Connect/Readme.txt:
--------------------------------------------------------------------------------
1 | DocuSign PHP Connect 2011 Readme
2 | ===========================================================================
3 |
4 | The Connect sample show a simple implementation to receive DocuSign events.
5 |
6 | Installation
7 | ---------------------------------------------------------------------------
8 |
9 | This sample code requires a DocuSign DevCenter account. If you do not
10 | already have a DevCenter account please go to
11 | http://www.docusign.com/devcenter/ and sign up for one. This sample will
12 | not function without a valid DevCenter account.
13 |
14 | System requirements for PHP samples:
15 | - PHP Version 5.3+
16 | - libcurl/7.19.4 OpenSSL/0.9.8k zlib/1.2.3
17 |
18 | Sample PHP Connect solution instructions
19 | ---------------------------------------------------------------------------
20 |
21 | In order to start receiving events from your DocuSign account please follow
22 | the configuration in the HTTPS Connect Guide included in the DocuSign SDK.
23 |
24 | PHP Connect solution contains just one project. The project consists of
25 | one PHP file and one sample data file. The data file can be used to test
26 | out the post processing.
27 |
28 | Just like with a lot of PHP solutions deployment of the PHP sample is as
29 | simple as just copying the files into a directory on your server.
30 |
31 | The url that you post the index.php can be used for both sending
32 | https:////index.php
33 |
34 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/Web.Release.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
19 |
30 |
31 |
--------------------------------------------------------------------------------
/MS.NET/DocuSignSample/DocuSignSample/css/jquery.ui.dialog.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Dialog 1.8.9
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Dialog#theming
9 | */
10 | .ui-dialog { position: absolute; padding: .2em; width: 600px; overflow: hidden; }
11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
21 | .ui-draggable .ui-dialog-titlebar { cursor: move; }
22 |
--------------------------------------------------------------------------------
/Ruby/DocuSignSample/app/assets/stylesheets/jquery.ui.dialog.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Dialog 1.8.9
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Dialog#theming
9 | */
10 | .ui-dialog { position: absolute; padding: .2em; width: 600px; overflow: hidden; }
11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
21 | .ui-draggable .ui-dialog-titlebar { cursor: move; }
22 |
--------------------------------------------------------------------------------
/Salesforce/NDAKiosk/pages/ndasignout.page:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
38 | *
39 | *
40 | */
41 | @XmlAccessorType(XmlAccessType.FIELD)
42 | @XmlType(name = "")
43 | @XmlRootElement(name = "Ping")
44 | public class Ping {
45 |
46 |
47 | }
48 |
--------------------------------------------------------------------------------
/Java/DocuSignSample/src/net/docusign/credential/Ping.java:
--------------------------------------------------------------------------------
1 | /**
2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved.
3 | *
4 | * This source code is intended only as a supplement to DocuSign SDK
5 | * and/or on-line documentation.
6 | *
7 | * This sample is designed to demonstrate DocuSign features and is not intended
8 | * for production use. Code and policy for a production application must be
9 | * developed to meet the specific data and security requirements of the
10 | * application.
11 | *
12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
15 | * PARTICULAR PURPOSE.
16 | */
17 | package net.docusign.credential;
18 |
19 | import javax.xml.bind.annotation.XmlAccessType;
20 | import javax.xml.bind.annotation.XmlAccessorType;
21 | import javax.xml.bind.annotation.XmlRootElement;
22 | import javax.xml.bind.annotation.XmlType;
23 |
24 |
25 | /**
26 | *
Java class for anonymous complex type.
27 | *
28 | *
The following schema fragment specifies the expected content contained within this class.
29 | *
30 | *