+
diff --git a/src/Oro/Bundle/DataAuditBundle/Tests/Functional/RestDataAuditApiTest.php b/src/Oro/Bundle/DataAuditBundle/Tests/Functional/API/RestDataAuditApiTest.php
similarity index 87%
rename from src/Oro/Bundle/DataAuditBundle/Tests/Functional/RestDataAuditApiTest.php
rename to src/Oro/Bundle/DataAuditBundle/Tests/Functional/API/RestDataAuditApiTest.php
index 9b906a80b4c..40a785540d7 100644
--- a/src/Oro/Bundle/DataAuditBundle/Tests/Functional/RestDataAuditApiTest.php
+++ b/src/Oro/Bundle/DataAuditBundle/Tests/Functional/API/RestDataAuditApiTest.php
@@ -1,6 +1,6 @@
client)) {
- $this->client = static::createClient(array(), ToolsAPI::generateWsseHeader());
- } else {
- $this->client->restart();
- }
+ $this->client = static::createClient(array(), ToolsAPI::generateWsseHeader());
}
/**
@@ -36,7 +32,10 @@ public function testPreconditions()
ToolsAPI::assertJsonResponse($result, 200);
$result = ToolsAPI::jsonToArray($result->getContent());
foreach ($result as $audit) {
- $this->client->request('DELETE', $this->client->generate('oro_api_delete_audit', array('id' => $audit['id'])));
+ $this->client->request(
+ 'DELETE',
+ $this->client->generate('oro_api_delete_audit', array('id' => $audit['id']))
+ );
$result = $this->client->getResponse();
ToolsAPI::assertJsonResponse($result, 204);
}
@@ -50,7 +49,8 @@ public function testPreconditions()
"plainPassword" => '1231231q',
"firstName" => "firstName",
"lastName" => "lastName",
- "rolesCollection" => array("1")
+ "rolesCollection" => array("1"),
+ "owner" => "1",
)
);
@@ -109,7 +109,10 @@ public function testGetAudit($response)
public function testDeleteAudit($response)
{
foreach ($response as $audit) {
- $this->client->request('DELETE', $this->client->generate('oro_api_delete_audit', array('id' => $audit['id'])));
+ $this->client->request(
+ 'DELETE',
+ $this->client->generate('oro_api_delete_audit', array('id' => $audit['id']))
+ );
$result = $this->client->getResponse();
ToolsAPI::assertJsonResponse($result, 204);
}
diff --git a/src/Oro/Bundle/DataAuditBundle/Tests/Functional/SoapDataAuditApiTest.php b/src/Oro/Bundle/DataAuditBundle/Tests/Functional/API/SoapDataAuditApiTest.php
similarity index 71%
rename from src/Oro/Bundle/DataAuditBundle/Tests/Functional/SoapDataAuditApiTest.php
rename to src/Oro/Bundle/DataAuditBundle/Tests/Functional/API/SoapDataAuditApiTest.php
index 9f22183b670..45fc5189175 100644
--- a/src/Oro/Bundle/DataAuditBundle/Tests/Functional/SoapDataAuditApiTest.php
+++ b/src/Oro/Bundle/DataAuditBundle/Tests/Functional/API/SoapDataAuditApiTest.php
@@ -1,6 +1,6 @@
client)) {
- $this->client = static::createClient(array(), ToolsAPI::generateWsseHeader());
- $this->client->soap(
- "http://localhost/api/soap",
- array(
- 'location' => 'http://localhost/api/soap',
- 'soap_version' => SOAP_1_2
- )
- );
-
- } else {
- $this->client->restart();
- }
+ $this->client = static::createClient(array(), ToolsAPI::generateWsseHeader());
+ $this->client->soap(
+ "http://localhost/api/soap",
+ array(
+ 'location' => 'http://localhost/api/soap',
+ 'soap_version' => SOAP_1_2
+ )
+ );
}
/**
@@ -39,7 +34,7 @@ public function setUp()
public function testPreconditions()
{
//clear Audits
- $result = $this->client->soapClient->getAudits();
+ $result = $this->client->getSoap()->getAudits();
$result = ToolsAPI::classToArray($result);
if (!empty($result)) {
if (!is_array(reset($result['item']))) {
@@ -49,7 +44,7 @@ public function testPreconditions()
$result = $result['item'];
}
foreach ($result as $audit) {
- $this->client->soapClient->deleteAudit($audit['id']);
+ $this->client->getSoap()->deleteAudit($audit['id']);
}
}
@@ -61,10 +56,13 @@ public function testPreconditions()
"plainPassword" => '1231231q',
"firstName" => "firstName",
"lastName" => "lastName",
- "rolesCollection" => array("1")
+ "rolesCollection" => array("1"),
+ "owner" => "1"
);
- $result = $this->client->soapClient->createUser($request);
- $this->assertTrue($result, $this->client->soapClient->__getLastResponse());
+
+ $id = $this->client->getSoap()->createUser($request);
+ $this->assertInternalType('int', $id, $this->client->getSoap()->__getLastResponse());
+ $this->assertGreaterThan(0, $id);
return $request;
}
@@ -76,7 +74,7 @@ public function testPreconditions()
*/
public function testGetAudits($response)
{
- $result = $this->client->soapClient->getAudits();
+ $result = $this->client->getSoap()->getAudits();
$result = ToolsAPI::classToArray($result);
if (!is_array(reset($result['item']))) {
@@ -104,7 +102,7 @@ public function testGetAudits($response)
public function testGetAudit($response)
{
foreach ($response as $audit) {
- $result = $this->client->soapClient->getAudit($audit['id']);
+ $result = $this->client->getSoap()->getAudit($audit['id']);
$result = ToolsAPI::classToArray($result);
unset($result['loggedAt']);
unset($audit['loggedAt']);
@@ -119,9 +117,9 @@ public function testGetAudit($response)
public function testDeleteAudit($response)
{
foreach ($response as $audit) {
- $this->client->soapClient->deleteAudit($audit['id']);
+ $this->client->getSoap()->deleteAudit($audit['id']);
}
- $result = $this->client->soapClient->getAudits();
+ $result = $this->client->getSoap()->getAudits();
$result = ToolsAPI::classToArray($result);
$this->assertEmpty($result);
}
diff --git a/src/Oro/Bundle/DataAuditBundle/Tests/Functional/ControllersTest.php b/src/Oro/Bundle/DataAuditBundle/Tests/Functional/ControllersTest.php
new file mode 100644
index 00000000000..0c88a22df25
--- /dev/null
+++ b/src/Oro/Bundle/DataAuditBundle/Tests/Functional/ControllersTest.php
@@ -0,0 +1,132 @@
+ 'testAdmin',
+ 'email' => 'test@test.com',
+ 'firstName' => 'FirstNameAudit',
+ 'lastName' => 'LastNameAudit',
+ 'birthday' => '07/01/2013',
+ 'enabled' => 1,
+ 'roles' => 'Superadmin',
+ 'groups' => 'Sales',
+ 'company' => 'company',
+ 'gender' => 'Male'
+ );
+ /**
+ * @var Client
+ */
+ protected $client;
+
+ public function setUp()
+ {
+ $this->client = static::createClient(
+ array(),
+ array_merge(ToolsAPI::generateBasicHeader(), array('HTTP_X-CSRF-Header' => 1))
+ );
+ }
+
+ public function prepareFixture()
+ {
+ $crawler = $this->client->request('GET', $this->client->generate('oro_user_create'));
+ $form = $crawler->selectButton('Save and Close')->form();
+ $form['oro_user_user_form[enabled]'] = $this->userData['enabled'];
+ $form['oro_user_user_form[username]'] = $this->userData['username'];
+ $form['oro_user_user_form[plainPassword][first]'] = 'password';
+ $form['oro_user_user_form[plainPassword][second]'] = 'password';
+ $form['oro_user_user_form[firstName]'] = $this->userData['firstName'];
+ $form['oro_user_user_form[lastName]'] = $this->userData['lastName'];
+ $form['oro_user_user_form[birthday]'] = $this->userData['birthday'];
+ $form['oro_user_user_form[email]'] = $this->userData['email'];
+ $form['oro_user_user_form[groups][1]'] = 2;
+ $form['oro_user_user_form[rolesCollection][2]'] = 4;
+ $form['oro_user_user_form[values][company][varchar]'] = $this->userData['company'];
+ $form['oro_user_user_form[owner]'] = 1;
+
+ $this->client->followRedirects(true);
+ $crawler = $this->client->submit($form);
+
+ $result = $this->client->getResponse();
+ ToolsAPI::assertJsonResponse($result, 200, 'text/html; charset=UTF-8');
+ $this->assertContains("User successfully saved", $crawler->html());
+ }
+
+ public function testIndex()
+ {
+ $this->client->request('GET', $this->client->generate('oro_dataaudit_index'));
+ $result = $this->client->getResponse();
+ ToolsAPI::assertJsonResponse($result, 200, 'text/html; charset=UTF-8');
+ }
+
+ public function testHistory()
+ {
+ $this->prepareFixture();
+ $this->client->request(
+ 'GET',
+ $this->client->generate('oro_dataaudit_index', array('_format' =>'json')),
+ array(
+ 'audit[_filter][objectName][type]' => null,
+ 'audit[_filter][objectName][value]' => $this->userData['username'],
+ 'audit[_pager][_page]' => 1,
+ 'audit[_pager][_per_page]' => 10,
+ 'audit[_sort_by][action]' => 'ASC')
+ );
+
+ $result = $this->client->getResponse();
+ ToolsAPI::assertJsonResponse($result, 200);
+ $result = ToolsAPI::jsonToArray($result->getContent());
+ $result = reset($result['data']);
+ $this->client->request(
+ 'GET',
+ $this->client->generate(
+ 'oro_dataaudit_history',
+ array(
+ 'entity' => str_replace('\\', '_', $result['objectClass']),
+ 'id' => $result['objectId'],
+ '_format' =>'json'
+ )
+ )
+ );
+ $result = $this->client->getResponse();
+ ToolsAPI::assertJsonResponse($result, 200);
+ $result = ToolsAPI::jsonToArray($result->getContent());
+ $result = reset($result['data']);
+
+ $result['old'] = strip_tags(preg_replace('/()|(\h)/Uis', '', $result['old']));
+ $count = 0;
+ do {
+ $result['old'] = strip_tags(preg_replace('/\n{2,}/Uis', "\n", $result['old'], -1, $count));
+ } while ($count > 0);
+ $result['new'] = strip_tags(preg_replace('/()|(\h)/Uis', '', $result['new']));
+ $count = 0;
+ do {
+ $result['new'] = strip_tags(preg_replace('/\n{2,}/Uis', "\n", $result['new'], -1, $count));
+ } while ($count > 0);
+ $result['old'] = explode("\n", trim($result['old'], "\n"));
+ $result['new'] = explode("\n", trim($result['new'], "\n"));
+ foreach ($result['old'] as $auditRecord) {
+ $auditValue = explode(':', $auditRecord);
+ $this->assertEquals('', $auditValue[1]);
+ }
+
+ foreach ($result['new'] as $auditRecord) {
+ $auditValue = explode(':', $auditRecord);
+ $this->assertEquals($this->userData[$auditValue[0]], $auditValue[1]);
+ }
+
+ $this->assertEquals('John Doe - admin@example.com', $result['author']);
+
+ }
+}
diff --git a/src/Oro/Bundle/DataAuditBundle/Tests/Unit/Loggable/LoggableManagerTest.php b/src/Oro/Bundle/DataAuditBundle/Tests/Unit/Loggable/LoggableManagerTest.php
index 9ea42160961..e408ebf3447 100644
--- a/src/Oro/Bundle/DataAuditBundle/Tests/Unit/Loggable/LoggableManagerTest.php
+++ b/src/Oro/Bundle/DataAuditBundle/Tests/Unit/Loggable/LoggableManagerTest.php
@@ -46,7 +46,7 @@ public function setUp()
$provider
->expects($this->any())
- ->method('hasConfig')
+ ->method('isConfigurable')
->will($this->returnValue(false));
$this->loggableManager = new LoggableManager('Oro\Bundle\DataAuditBundle\Entity\Audit', $provider);
diff --git a/src/Oro/Bundle/DataFlowBundle/Resources/views/layout.html.twig b/src/Oro/Bundle/DataFlowBundle/Resources/views/layout.html.twig
index 0900f44c128..760c048e6dc 100644
--- a/src/Oro/Bundle/DataFlowBundle/Resources/views/layout.html.twig
+++ b/src/Oro/Bundle/DataFlowBundle/Resources/views/layout.html.twig
@@ -17,7 +17,7 @@
{% endstylesheets %}
{% javascripts
- '@OroUIBundle/Resources/public/lib/jquery.min.js'
+ '@OroUIBundle/Resources/public/lib/jquery-1.10.2.js'
'@OroUIBundle/Resources/public/lib/less-1.3.1.min.js'
'@OroUIBundle/Resources/public/lib/bootstrap.min.js'
'@OroUIBundle/Resources/public/js/layout.js'
diff --git a/src/Oro/Bundle/EmailBundle/.gitignore b/src/Oro/Bundle/EmailBundle/.gitignore
new file mode 100644
index 00000000000..00ae1784e18
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/.gitignore
@@ -0,0 +1,2 @@
+/PoC/*
+*~
diff --git a/src/Oro/Bundle/EmailBundle/Builder/EmailEntityBatchInterface.php b/src/Oro/Bundle/EmailBundle/Builder/EmailEntityBatchInterface.php
new file mode 100644
index 00000000000..e349e376739
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Builder/EmailEntityBatchInterface.php
@@ -0,0 +1,15 @@
+emailAddressManager = $emailAddressManager;
+ $this->emailOwnerProvider = $emailOwnerProvider;
+ }
+
+ /**
+ * Register Email object
+ *
+ * @param Email $obj
+ */
+ public function addEmail(Email $obj)
+ {
+ $this->emails[] = $obj;
+ }
+
+ /**
+ * Register EmailAddress object
+ *
+ * @param EmailAddress $obj
+ * @throws \LogicException
+ */
+ public function addAddress(EmailAddress $obj)
+ {
+ $key = strtolower($obj->getEmail());
+ if (isset($this->addresses[$key])) {
+ throw new \LogicException(sprintf('The email address "%s" already exists in the batch.', $obj->getEmail()));
+ }
+ $this->addresses[$key] = $obj;
+ }
+
+ /**
+ * Get EmailAddress if it exists in the batch
+ *
+ * @param string $email The email address
+ * @return EmailAddress|null
+ */
+ public function getAddress($email)
+ {
+ $key = strtolower($email);
+
+ return isset($this->addresses[$key])
+ ? $this->addresses[$key]
+ : null;
+ }
+
+ /**
+ * Register EmailFolder object
+ *
+ * @param EmailFolder $obj
+ * @throws \LogicException
+ */
+ public function addFolder(EmailFolder $obj)
+ {
+ $key = strtolower(sprintf('%s_%s', $obj->getType(), $obj->getName()));
+ if (isset($this->folders[$key])) {
+ throw new \LogicException(
+ sprintf('The folder "%s" (type: %s) already exists in the batch.', $obj->getName(), $obj->getType())
+ );
+ }
+ $this->folders[$key] = $obj;
+ }
+
+ /**
+ * Get EmailFolder if it exists in the batch
+ *
+ * @param string $type The folder type
+ * @param string $name The folder name
+ * @return EmailFolder|null
+ */
+ public function getFolder($type, $name)
+ {
+ $key = strtolower(sprintf('%s_%s', $type, $name));
+
+ return isset($this->folders[$key])
+ ? $this->folders[$key]
+ : null;
+ }
+
+ /**
+ * Register EmailOrigin object
+ *
+ * @param EmailOrigin $obj
+ * @throws \LogicException
+ */
+ public function addOrigin(EmailOrigin $obj)
+ {
+ $key = strtolower($obj->getName());
+ if (isset($this->origins[$key])) {
+ throw new \LogicException(sprintf('The origin "%s" already exists in the batch.', $obj->getName()));
+ }
+ $this->origins[$key] = $obj;
+ }
+
+ /**
+ * Get EmailOrigin if it exists in the batch
+ *
+ * @param string $name The origin name
+ * @return EmailOrigin|null
+ */
+ public function getOrigin($name)
+ {
+ $key = strtolower($name);
+
+ return isset($this->origins[$key])
+ ? $this->origins[$key]
+ : null;
+ }
+
+ /**
+ * Tell the given EntityManager to manage this batch
+ *
+ * @param EntityManager $em
+ */
+ public function persist(EntityManager $em)
+ {
+ $this->persistOrigins($em);
+ $this->persistFolders($em);
+ $this->persistAddresses($em);
+ $this->persistEmails($em);
+ }
+
+ /**
+ * Tell the given EntityManager to manage Email objects and all its children in this batch
+ *
+ * @param EntityManager $em
+ */
+ protected function persistEmails(EntityManager $em)
+ {
+ foreach ($this->emails as $email) {
+ $em->persist($email);
+ }
+ }
+
+ /**
+ * Tell the given EntityManager to manage EmailAddress objects in this batch
+ *
+ * @param EntityManager $em
+ */
+ protected function persistAddresses(EntityManager $em)
+ {
+ $repository = $this->emailAddressManager->getEmailAddressRepository($em);
+ foreach ($this->addresses as $key => $obj) {
+ /** @var EmailAddress $dbObj */
+ $dbObj = $repository->findOneBy(array('email' => $obj->getEmail()));
+ if ($dbObj === null) {
+ $obj->setOwner($this->emailOwnerProvider->findEmailOwner($em, $obj->getEmail()));
+ $em->persist($obj);
+ } else {
+ $this->updateAddressReferences($obj, $dbObj);
+ $this->origins[$key] = $dbObj;
+ }
+ }
+ }
+
+ /**
+ * Tell the given EntityManager to manage EmailFolder objects in this batch
+ *
+ * @param EntityManager $em
+ */
+ protected function persistFolders(EntityManager $em)
+ {
+ $repository = $em->getRepository('OroEmailBundle:EmailFolder');
+ foreach ($this->folders as $key => $obj) {
+ /** @var EmailFolder $dbObj */
+ $dbObj = $repository->findOneBy(array('name' => $obj->getName(), 'type' => $obj->getType()));
+ if ($dbObj === null) {
+ $em->persist($obj);
+ } else {
+ $this->updateFolderReferences($obj, $dbObj);
+ $this->origins[$key] = $dbObj;
+ }
+ }
+ }
+
+ /**
+ * Tell the given EntityManager to manage EmailOrigin objects in this batch
+ *
+ * @param EntityManager $em
+ */
+ protected function persistOrigins(EntityManager $em)
+ {
+ $repository = $em->getRepository('OroEmailBundle:EmailOrigin');
+ foreach ($this->origins as $key => $obj) {
+ /** @var EmailOrigin $dbObj */
+ $dbObj = $repository->findOneBy(array('name' => $obj->getName()));
+ if ($dbObj === null) {
+ $em->persist($obj);
+ } else {
+ $this->updateOriginReferences($obj, $dbObj);
+ $this->origins[$key] = $dbObj;
+ }
+ }
+ }
+
+ /**
+ * Make sure that all objects in this batch have correct EmailAddress references
+ *
+ * @param EmailAddress $old
+ * @param EmailAddress $new
+ */
+ protected function updateAddressReferences(EmailAddress $old, EmailAddress $new)
+ {
+ foreach ($this->emails as $email) {
+ if ($email->getFromEmailAddress() === $old) {
+ $email->setFromEmailAddress($new);
+ }
+ foreach ($email->getRecipients() as $recipient) {
+ if ($recipient->getEmailAddress() === $old) {
+ $recipient->setEmailAddress($new);
+ }
+ }
+ }
+ }
+
+ /**
+ * Make sure that all objects in this batch have correct EmailFolder references
+ *
+ * @param EmailFolder $old
+ * @param EmailFolder $new
+ */
+ protected function updateFolderReferences(EmailFolder $old, EmailFolder $new)
+ {
+ foreach ($this->emails as $obj) {
+ if ($obj->getFolder() === $old) {
+ $obj->setFolder($new);
+ }
+ }
+ }
+
+ /**
+ * Make sure that all objects in this batch have correct EmailOrigin references
+ *
+ * @param EmailOrigin $old
+ * @param EmailOrigin $new
+ */
+ protected function updateOriginReferences(EmailOrigin $old, EmailOrigin $new)
+ {
+ foreach ($this->folders as $obj) {
+ if ($obj->getOrigin() === $old) {
+ $obj->setOrigin($new);
+ }
+ }
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Builder/EmailEntityBuilder.php b/src/Oro/Bundle/EmailBundle/Builder/EmailEntityBuilder.php
new file mode 100644
index 00000000000..7bed605a9a1
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Builder/EmailEntityBuilder.php
@@ -0,0 +1,319 @@
+batch = $batch;
+ $this->emailAddressManager = $emailAddressManager;
+ }
+
+ /**
+ * Create Email entity object
+ *
+ * @param string $subject The email subject
+ * @param string $from The FROM email address, for example: john@example.com or "John Smith"
+ * @param string|string[]|null $to The TO email address(es). Example of email address see in description of $from parameter
+ * @param \DateTime $sentAt The date/time when email sent
+ * @param \DateTime $receivedAt The date/time when email received
+ * @param \DateTime $internalDate The date/time an email server returned in INTERNALDATE field
+ * @param integer $importance The email importance flag. Can be one of *_IMPORTANCE constants of Email class
+ * @param string|string[]|null $cc The CC email address(es). Example of email address see in description of $from parameter
+ * @param string|string[]|null $bcc The BCC email address(es). Example of email address see in description of $from parameter
+ * @return Email
+ */
+ public function email($subject, $from, $to, $sentAt, $receivedAt, $internalDate, $importance = Email::NORMAL_IMPORTANCE, $cc = null, $bcc = null)
+ {
+ $result = new Email();
+ $result
+ ->setSubject($subject)
+ ->setFromName($from)
+ ->setFromEmailAddress($this->address($from))
+ ->setSentAt($sentAt)
+ ->setReceivedAt($receivedAt)
+ ->setInternalDate($internalDate)
+ ->setImportance($importance);
+
+ $this->addRecipients($result, EmailRecipient::TO, $to);
+ $this->addRecipients($result, EmailRecipient::CC, $cc);
+ $this->addRecipients($result, EmailRecipient::BCC, $bcc);
+
+ return $result;
+ }
+
+ /**
+ * Add recipients to the specified Email object
+ *
+ * @param Email $obj The Email object recipients is added to
+ * @param string $type The recipient type. Can be to, cc or bcc
+ * @param string $email The email address, for example: john@example.com or "John Smith"
+ */
+ protected function addRecipients(Email $obj, $type, $email)
+ {
+ if (!empty($email)) {
+ if (is_string($email)) {
+ $obj->addRecipient($this->recipient($type, $email));
+ } elseif (is_array($email) || $email instanceof \Traversable) {
+ foreach ($email as $e) {
+ $obj->addRecipient($this->recipient($type, $e));
+ }
+ }
+ }
+ }
+
+ /**
+ * Create EmailAddress entity object
+ *
+ * @param string $email The email address, for example: john@example.com or "John Smith"
+ * @return EmailAddress
+ */
+ public function address($email)
+ {
+ $pureEmail = EmailUtil::extractPureEmailAddress($email);
+ $result = $this->batch->getAddress($pureEmail);
+ if ($result === null) {
+ $result = $this->emailAddressManager->newEmailAddress()
+ ->setEmail($pureEmail);
+ $this->batch->addAddress($result);
+ }
+
+ return $result;
+ }
+
+ /**
+ * Create EmailAttachment entity object
+ *
+ * @param string $fileName The attachment file name
+ * @param string $contentType The attachment content type. It may be any MIME type
+ * @return EmailAttachment
+ */
+ public function attachment($fileName, $contentType)
+ {
+ $result = new EmailAttachment();
+ $result
+ ->setFileName($fileName)
+ ->setContentType($contentType);
+
+ return $result;
+ }
+
+ /**
+ * Create EmailAttachmentContent entity object
+ *
+ * @param string $content The attachment content encoded as it is specified in $contentTransferEncoding parameter
+ * @param string $contentTransferEncoding The attachment content encoding type
+ * @return EmailAttachmentContent
+ */
+ public function attachmentContent($content, $contentTransferEncoding)
+ {
+ $result = new EmailAttachmentContent();
+ $result
+ ->setValue($content)
+ ->setContentTransferEncoding($contentTransferEncoding);
+
+ return $result;
+ }
+
+ /**
+ * Create EmailBody entity object
+ *
+ * @param string $content The body content
+ * @param bool $isHtml Indicate whether the body content is HTML or TEXT
+ * @param bool $persistent Indicate whether this email body can be removed by the email cache manager or not
+ * Set false for external email, and false for system email, for example sent by BAP
+ * @return EmailBody
+ */
+ public function body($content, $isHtml, $persistent = false)
+ {
+ $result = new EmailBody();
+ $result
+ ->setContent($content)
+ ->setBodyIsText(!$isHtml)
+ ->setPersistent($persistent);
+
+ return $result;
+ }
+
+ /**
+ * Create EmailFolder entity object for INBOX folder
+ *
+ * @param string $name The name of INBOX folder if known
+ * @return EmailFolder
+ */
+ public function folderInbox($name = null)
+ {
+ return $this->folder(EmailFolder::INBOX, $name !== null ? $name : 'Inbox');
+ }
+
+ /**
+ * Create EmailFolder entity object for SENT folder
+ *
+ * @param string $name The name of SENT folder if known
+ * @return EmailFolder
+ */
+ public function folderSent($name = null)
+ {
+ return $this->folder(EmailFolder::SENT, $name !== null ? $name : 'Sent');
+ }
+
+ /**
+ * Create EmailFolder entity object for TRASH folder
+ *
+ * @param string $name The name of TRASH folder if known
+ * @return EmailFolder
+ */
+ public function folderTrash($name = null)
+ {
+ return $this->folder(EmailFolder::TRASH, $name !== null ? $name : 'Trash');
+ }
+
+ /**
+ * Create EmailFolder entity object for DRAFTS folder
+ *
+ * @param string $name The name of DRAFTS folder if known
+ * @return EmailFolder
+ */
+ public function folderDrafts($name = null)
+ {
+ return $this->folder(EmailFolder::DRAFTS, $name !== null ? $name : 'Drafts');
+ }
+
+ /**
+ * Create EmailFolder entity object for custom folder
+ *
+ * @param string $name The name of the folder
+ * @return EmailFolder
+ */
+ public function folderOther($name)
+ {
+ return $this->folder(EmailFolder::OTHER, $name);
+ }
+
+ /**
+ * Create EmailFolder entity object
+ *
+ * @param string $type The folder type. Can be inbox, sent, trash, drafts or other
+ * @param string $name The folder name
+ * @return EmailFolder
+ */
+ protected function folder($type, $name)
+ {
+ $result = $this->batch->getFolder($type, $name);
+ if ($result === null) {
+ $result = new EmailFolder();
+ $result
+ ->setType($type)
+ ->setName($name);
+ $this->batch->addFolder($result);
+ }
+
+ return $result;
+ }
+
+ /**
+ * Create EmailOrigin entity object
+ *
+ * @param string $name The email origin name
+ * @return EmailOrigin
+ */
+ public function origin($name)
+ {
+ $result = $this->batch->getOrigin($name);
+ if ($result === null) {
+ $result = new EmailOrigin();
+ $result->setName($name);
+ $this->batch->addOrigin($result);
+ }
+
+ return $result;
+ }
+
+ /**
+ * Create EmailRecipient entity object to store TO field
+ *
+ * @param string $email The email address, for example: john@example.com or "John Smith"
+ * @return EmailRecipient
+ */
+ public function recipientTo($email)
+ {
+ return $this->recipient(EmailRecipient::TO, $email);
+ }
+
+ /**
+ * Create EmailRecipient entity object to store CC field
+ *
+ * @param string $email The email address, for example: john@example.com or "John Smith"
+ * @return EmailRecipient
+ */
+ public function recipientCc($email)
+ {
+ return $this->recipient(EmailRecipient::CC, $email);
+ }
+
+ /**
+ * Create EmailRecipient entity object to store BCC field
+ *
+ * @param string $email The email address, for example: john@example.com or "John Smith"
+ * @return EmailRecipient
+ */
+ public function recipientBcc($email)
+ {
+ return $this->recipient(EmailRecipient::BCC, $email);
+ }
+
+ /**
+ * Create EmailRecipient entity object
+ *
+ * @param string $type The recipient type. Can be to, cc or bcc
+ * @param string $email The email address, for example: john@example.com or "John Smith"
+ * @return EmailRecipient
+ */
+ protected function recipient($type, $email)
+ {
+ $result = new EmailRecipient();
+
+ return $result
+ ->setType($type)
+ ->setName($email)
+ ->setEmailAddress($this->address($email));
+ }
+
+ /**
+ * Get built batch contains all entities managed by this builder
+ *
+ * @return EmailEntityBatchInterface
+ */
+ public function getBatch()
+ {
+ return $this->batch;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Cache/EmailCacheManager.php b/src/Oro/Bundle/EmailBundle/Cache/EmailCacheManager.php
new file mode 100644
index 00000000000..dc1acf17940
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Cache/EmailCacheManager.php
@@ -0,0 +1,98 @@
+em = $em;
+ }
+
+ /**
+ * Check that email body is cached. If not load it through an email service connector and add it to a cache
+ *
+ * @param Email $email
+ */
+ public function ensureEmailBodyCached(Email $email)
+ {
+ if ($email->getEmailBody() !== null) {
+ // The email body is already cached
+ return;
+ }
+
+ // TODO: implement getting email details through correct connector here
+
+ //$emailOriginName = $email->getFolder()->getOrigin()->getName();
+ //$connector = $this->get(sprintf('oro_%s.connector', $emailOriginName));
+
+ $emailBody = new EmailBody();
+ $emailBody
+ ->setHeader($email)
+ ->setContent("\n
Sample Email Body
\n some text \n some text \n some text \n some text \n some text");
+
+ $emailBody->addAttachment(
+ $this->createEmailAttachment(
+ 'sample attachment file.txt',
+ 'text/plain',
+ 'binary',
+ 'some text'
+ )
+ );
+
+ $emailBody->addAttachment(
+ $this->createEmailAttachment(
+ 'sample attachment file (base64).txt',
+ 'text/plain',
+ 'base64',
+ 'some text'
+ )
+ );
+
+ $email->setEmailBody($emailBody);
+
+ $this->em->persist($email);
+ $this->em->flush();
+ }
+
+ /**
+ * Create CreateEmailAttachment object
+ *
+ * @param string $fileName
+ * @param string $contentType
+ * @param string $contentTransferEncoding
+ * @param string $content
+ * @return EmailAttachment
+ */
+ protected function createEmailAttachment($fileName, $contentType, $contentTransferEncoding, $content)
+ {
+ $emailAttachmentContent = new EmailAttachmentContent();
+ $emailAttachmentContent
+ ->setContentTransferEncoding($contentTransferEncoding)
+ ->setValue($content);
+
+ $emailAttachment = new EmailAttachment();
+ $emailAttachment
+ ->setFileName($fileName)
+ ->setContentType($contentType)
+ ->setContent($emailAttachmentContent);
+
+ return $emailAttachment;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Cache/EntityCacheClearer.php b/src/Oro/Bundle/EmailBundle/Cache/EntityCacheClearer.php
new file mode 100644
index 00000000000..0738c809716
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Cache/EntityCacheClearer.php
@@ -0,0 +1,73 @@
+entityCacheDir = $entityCacheDir;
+ $this->entityCacheNamespace = $entityCacheNamespace;
+ $this->entityProxyNameTemplate = $entityProxyNameTemplate;
+ }
+
+ /**
+ * {inheritdoc}
+ */
+ public function clear($cacheDir)
+ {
+ $fs = $this->createFilesystem();
+
+ $entityCacheDir = sprintf('%s/%s', $this->entityCacheDir, str_replace('\\', '/', $this->entityCacheNamespace));
+
+ $this->clearEmailAddressCache($entityCacheDir, $fs);
+ }
+
+ /**
+ * Create Filesystem object
+ *
+ * @return Filesystem
+ */
+ protected function createFilesystem()
+ {
+ return new Filesystem();
+ }
+
+ /**
+ * Clear a proxy class for EmailAddress entity and save it in cache
+ *
+ * @param string $entityCacheDir
+ * @param Filesystem $fs
+ */
+ protected function clearEmailAddressCache($entityCacheDir, Filesystem $fs)
+ {
+ $className = sprintf($this->entityProxyNameTemplate, 'EmailAddress');
+ $fs->remove(sprintf('%s/%s.php', $entityCacheDir, $className));
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Cache/EntityCacheWarmer.php b/src/Oro/Bundle/EmailBundle/Cache/EntityCacheWarmer.php
new file mode 100644
index 00000000000..460f1baba73
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Cache/EntityCacheWarmer.php
@@ -0,0 +1,137 @@
+getProviders() as $provider) {
+ $this->emailOwnerClasses[count($this->emailOwnerClasses) + 1] = $provider->getEmailOwnerClass();
+ }
+
+ $this->entityCacheDir = $entityCacheDir;
+ $this->entityCacheNamespace = $entityCacheNamespace;
+ $this->entityProxyNameTemplate = $entityProxyNameTemplate;
+ }
+
+ /**
+ * {inheritdoc}
+ */
+ public function warmUp($cacheDir)
+ {
+ $fs = $this->createFilesystem();
+ $twig = $this->createTwigEnvironment();
+
+ $entityCacheDir = sprintf('%s/%s', $this->entityCacheDir, str_replace('\\', '/', $this->entityCacheNamespace));
+
+ // Ensure the cache directory exists
+ if (!$fs->exists($entityCacheDir)) {
+ $fs->mkdir($entityCacheDir, 0777);
+ }
+
+ $this->processEmailAddressTemplate($entityCacheDir, $twig);
+ }
+
+ /**
+ * {inheritdoc}
+ */
+ public function isOptional()
+ {
+ return false;
+ }
+
+ /**
+ * Create Filesystem object
+ *
+ * @return Filesystem
+ */
+ protected function createFilesystem()
+ {
+ return new Filesystem();
+ }
+
+ /**
+ * Create Twig_Environment object
+ *
+ * @return \Twig_Environment
+ */
+ protected function createTwigEnvironment()
+ {
+ $entityTemplateDir = __DIR__ . '/../Resources/cache/Entity';
+ return new \Twig_Environment(new \Twig_Loader_Filesystem($entityTemplateDir));
+ }
+
+ /**
+ * Create a proxy class for EmailAddress entity and save it in cache
+ *
+ * @param string $entityCacheDir
+ * @param \Twig_Environment $twig
+ */
+ protected function processEmailAddressTemplate($entityCacheDir, \Twig_Environment $twig)
+ {
+ $args = array();
+ foreach ($this->emailOwnerClasses as $key => $emailOwnerClass) {
+ $prefix = strtolower(substr($emailOwnerClass, 0, strpos($emailOwnerClass, '\\')));
+ if ($prefix === 'oro' || $prefix === 'orocrm') {
+ // do not use prefix if email's owner is a part of BAP and CRM
+ $prefix = '';
+ } else {
+ $prefix .= '_';
+ }
+ $suffix = strtolower(substr($emailOwnerClass, strrpos($emailOwnerClass, '\\') + 1));
+
+ $args[] = array(
+ 'targetEntity' => $emailOwnerClass,
+ 'columnName' => sprintf('owner_%s%s_id', $prefix, $suffix),
+ 'fieldName' => sprintf('owner%d', $key)
+ );
+ }
+
+ $className = sprintf($this->entityProxyNameTemplate, 'EmailAddress');
+ $content = $twig->render(
+ 'EmailAddress.php.twig',
+ array(
+ 'namespace' => $this->entityCacheNamespace,
+ 'className' => $className,
+ 'owners' => $args
+ )
+ );
+
+ $this->writeCacheFile(sprintf('%s/%s.php', $entityCacheDir, $className), $content);
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Controller/Api/Rest/EmailController.php b/src/Oro/Bundle/EmailBundle/Controller/Api/Rest/EmailController.php
new file mode 100644
index 00000000000..13e0d1affb4
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Controller/Api/Rest/EmailController.php
@@ -0,0 +1,71 @@
+getRequest()->get('page', 1);
+ $limit = (int)$this->getRequest()->get('limit', self::ITEMS_PER_PAGE);
+
+ return $this->handleGetListRequest($page, $limit);
+ }
+
+ /**
+ * REST GET item
+ *
+ * @param string $id
+ *
+ * @ApiDoc(
+ * description="Get email",
+ * resource=true
+ * )
+ * @AclAncestor("oro_email_view")
+ * @return Response
+ */
+ public function getAction($id)
+ {
+ return $this->handleGetRequest($id);
+ }
+
+ /**
+ * Get entity manager
+ *
+ * @return EmailApiEntityManager
+ */
+ public function getManager()
+ {
+ return $this->container->get('oro_email.manager.email.api');
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Controller/Api/Rest/EmailTemplateController.php b/src/Oro/Bundle/EmailBundle/Controller/Api/Rest/EmailTemplateController.php
index d86c546bc4b..b53aaa4958b 100644
--- a/src/Oro/Bundle/EmailBundle/Controller/Api/Rest/EmailTemplateController.php
+++ b/src/Oro/Bundle/EmailBundle/Controller/Api/Rest/EmailTemplateController.php
@@ -4,6 +4,7 @@
use FOS\Rest\Util\Codes;
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
+use FOS\RestBundle\Controller\Annotations\Get as GetRoute;
use FOS\RestBundle\Controller\Annotations\NamePrefix;
use FOS\RestBundle\Controller\Annotations\RouteResource;
@@ -13,6 +14,7 @@
use Oro\Bundle\UserBundle\Annotation\Acl;
use Oro\Bundle\UserBundle\Annotation\AclAncestor;
use Oro\Bundle\SoapBundle\Form\Handler\ApiFormHandler;
+use Oro\Bundle\EmailBundle\Provider\VariablesProvider;
use Oro\Bundle\SoapBundle\Entity\Manager\ApiEntityManager;
use Oro\Bundle\SoapBundle\Controller\Api\Rest\RestController;
use Oro\Bundle\EmailBundle\Entity\Repository\EmailTemplateRepository;
@@ -93,6 +95,32 @@ public function getAction($entityName = null)
);
}
+ /**
+ * REST GET available variables by entity name
+ *
+ * @param string $entityName
+ *
+ * @ApiDoc(
+ * description="Get available variables by entity name",
+ * resource=true
+ * )
+ * @AclAncestor("oro_email_emailtemplate_update")
+ * @GetRoute(requirements={"entityName"="(.*)"})
+ * @return Response
+ */
+ public function getAvailableVariablesAction($entityName = null)
+ {
+ $entityName = str_replace('_', '\\', $entityName);
+
+ /** @var VariablesProvider $provider */
+ $provider = $this->get('oro_email.provider.variable_provider');
+ $allowedData = $provider->getTemplateVariables($entityName);
+
+ return $this->handleView(
+ $this->view($allowedData, Codes::HTTP_OK)
+ );
+ }
+
/**
* Get entity Manager
*
diff --git a/src/Oro/Bundle/EmailBundle/Controller/Api/Soap/EmailController.php b/src/Oro/Bundle/EmailBundle/Controller/Api/Soap/EmailController.php
new file mode 100644
index 00000000000..995d0ab979e
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Controller/Api/Soap/EmailController.php
@@ -0,0 +1,100 @@
+handleGetListRequest($page, $limit);
+ }
+
+ /**
+ * @Soap\Method("getEmail")
+ * @Soap\Param("id", phpType = "int")
+ * @Soap\Result(phpType = "Oro\Bundle\EmailBundle\Entity\Email")
+ * @AclAncestor("oro_email_view")
+ */
+ public function getAction($id)
+ {
+ return $this->handleGetRequest($id);
+ }
+
+ /**
+ * @Soap\Method("getEmailBody")
+ * @Soap\Param("id", phpType="int")
+ * @Soap\Result(phpType="Oro\Bundle\EmailBundle\Entity\EmailBody")
+ * @AclAncestor("oro_email_view")
+ */
+ public function getEmailBodyAction($id)
+ {
+ $entity = $this->getEntity($id);
+ $this->getEmailCacheManager()->ensureEmailBodyCached($entity);
+
+ return $entity->getEmailBody();
+ }
+
+ /**
+ * @Soap\Method("getEmailAttachment")
+ * @Soap\Param("id", phpType="int")
+ * @Soap\Result(phpType="Oro\Bundle\EmailBundle\Entity\EmailAttachmentContent")
+ * @AclAncestor("oro_email_view")
+ */
+ public function getEmailAttachment($id)
+ {
+ return $this->getEmailAttachmentContentEntity($id);
+ }
+
+ /**
+ * Get email attachment by identifier.
+ *
+ * @param integer $attachmentId
+ * @return EmailAttachmentContent
+ * @throws \SoapFault
+ */
+ protected function getEmailAttachmentContentEntity($attachmentId)
+ {
+ $attachment = $this->getManager()->findEmailAttachment($attachmentId);
+
+ if (!$attachment) {
+ throw new \SoapFault('NOT_FOUND', sprintf('Record #%u can not be found', $attachmentId));
+ }
+
+ return $attachment->getContent();
+ }
+
+ /**
+ * Get entity manager
+ *
+ * @return EmailApiEntityManager
+ */
+ public function getManager()
+ {
+ return $this->container->get('oro_email.manager.email.api');
+ }
+
+ /**
+ * Get email cache manager
+ *
+ * @return EmailCacheManager
+ */
+ protected function getEmailCacheManager()
+ {
+ return $this->container->get('oro_email.email.cache.manager');
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Controller/EmailController.php b/src/Oro/Bundle/EmailBundle/Controller/EmailController.php
new file mode 100644
index 00000000000..356bd59f3cc
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Controller/EmailController.php
@@ -0,0 +1,147 @@
+getEmailCacheManager()->ensureEmailBodyCached($entity);
+
+ return array(
+ 'entity' => $entity
+ );
+ }
+
+ /**
+ * Get email list
+ * TODO: This is a temporary action created for demo purposes. It will be removed when 'display activities'
+ * functionality is implemented
+ *
+ * @AclAncestor("oro_email_view")
+ * @Template
+ */
+ public function activitiesAction($emails)
+ {
+ /** @var $emailRepository EmailRepository */
+ $emailRepository = $this->getDoctrine()->getRepository('OroEmailBundle:Email');
+
+ $emails = $this->extractEmailAddresses($emails);
+ $rows = empty($emails)
+ ? array()
+ : $emailRepository->getEmailListQueryBuilder($emails)->getQuery()->execute();
+
+ return array(
+ 'entities' => $rows
+ );
+ }
+
+ /**
+ * Get the given email body content
+ *
+ * @Route("/body/{id}", name="oro_email_body", requirements={"id"="\d+"})
+ * @AclAncestor("oro_email_view")
+ */
+ public function bodyAction(EmailBody $entity)
+ {
+ return new Response($entity->getContent());
+ }
+
+ /**
+ * Get a response for download the given email attachment
+ *
+ * @Route("/attachment/{id}", name="oro_email_attachment", requirements={"id"="\d+"})
+ * @AclAncestor("oro_email_view")
+ */
+ public function attachmentAction(EmailAttachment $entity)
+ {
+ $response = new Response();
+ $response->headers->set('Content-Type', $entity->getContentType());
+ $response->headers->set('Content-Disposition', sprintf('attachment; filename="%s"', $entity->getFileName()));
+ $response->headers->set('Content-Transfer-Encoding', $entity->getContent()->getContentTransferEncoding());
+ $response->headers->set('Pragma', 'no-cache');
+ $response->headers->set('Expires', '0');
+ $response->setContent($entity->getContent()->getValue());
+
+ return $response;
+ }
+
+ /**
+ * Get email cache manager
+ *
+ * @return EmailCacheManager
+ */
+ protected function getEmailCacheManager()
+ {
+ return $this->container->get('oro_email.email.cache.manager');
+ }
+
+ /**
+ * Extract email addresses from the given argument.
+ * Always return an array, even if no any email is given.
+ *
+ * @param $emails
+ * @return string[]
+ * @throws \InvalidArgumentException
+ */
+ protected function extractEmailAddresses($emails)
+ {
+ if (is_string($emails)) {
+ return empty($emails)
+ ? array()
+ : array($emails);
+ }
+ if (!is_array($emails) && !($emails instanceof \Traversable)) {
+ throw new \InvalidArgumentException('The emails argument must be a string, array or collection.');
+ }
+
+ $result = array();
+ foreach ($emails as $email) {
+ if (is_string($email)) {
+ $result[] = $email;
+ } elseif ($email instanceof EmailInterface) {
+ $result[] = $email->getEmail();
+ } else {
+ throw new \InvalidArgumentException(
+ 'Each item of the emails collection must be a string or an object of EmailInterface.'
+ );
+ }
+ }
+
+ return $result;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Controller/EmailTemplateController.php b/src/Oro/Bundle/EmailBundle/Controller/EmailTemplateController.php
index b9414cf2c07..53234d5fa94 100644
--- a/src/Oro/Bundle/EmailBundle/Controller/EmailTemplateController.php
+++ b/src/Oro/Bundle/EmailBundle/Controller/EmailTemplateController.php
@@ -2,7 +2,9 @@
namespace Oro\Bundle\EmailBundle\Controller;
+use Doctrine\ORM\EntityManager;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
+use Symfony\Component\Form\FormInterface;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
@@ -113,4 +115,44 @@ public function cloneAction(EmailTemplate $entity)
{
return $this->updateAction(clone $entity, true);
}
+
+ /**
+ * @Route("/preview/{id}", requirements={"id"="\d+"}, defaults={"id"=0}))
+ * @Acl(
+ * id="oro_email_emailtemplate_preview",
+ * name="Preview email template",
+ * description="Preview email template",
+ * parent="oro_email_emailtemplate"
+ * )
+ * @Template("OroEmailBundle:EmailTemplate:preview.html.twig")
+ * @param bool|int $emailTemplateId
+ * @return array
+ */
+ public function previewAction($emailTemplateId = false)
+ {
+ if (!$emailTemplateId) {
+ $emailTemplate = new EmailTemplate();
+ } else {
+ /** @var EntityManager $em */
+ $em = $this->get('doctrine.orm.entity_manager');
+ $em->getRepository('Oro\Bundle\EmailBundle\Entity\EmailTemplate')->find($emailTemplateId);
+ }
+
+ /** @var FormInterface $form */
+ $form = $this->get('oro_email.form.emailtemplate');
+ $form->setData($emailTemplate);
+ $request = $this->get('request');
+
+ if (in_array($request->getMethod(), array('POST', 'PUT'))) {
+ $form->submit($request);
+ }
+
+ list ($subjectRendered, $templateRendered) = $this->get('oro_email.email_renderer')
+ ->compileMessage($emailTemplate);
+
+ return array(
+ 'subject' => $subjectRendered,
+ 'content' => $templateRendered,
+ );
+ }
}
diff --git a/src/Oro/Bundle/EmailBundle/DataFixtures/ORM/LoadEmailOriginData.php b/src/Oro/Bundle/EmailBundle/DataFixtures/ORM/LoadEmailOriginData.php
new file mode 100644
index 00000000000..fc4071207ef
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/DataFixtures/ORM/LoadEmailOriginData.php
@@ -0,0 +1,24 @@
+setName('BAP');
+
+ $manager->persist($emailOrigin);
+ $manager->flush();
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/DataFixtures/data/emails/user/update_user.html.twig b/src/Oro/Bundle/EmailBundle/DataFixtures/data/emails/user/update_user.html.twig
index 610c5c18c74..08f74a2ffcf 100644
--- a/src/Oro/Bundle/EmailBundle/DataFixtures/data/emails/user/update_user.html.twig
+++ b/src/Oro/Bundle/EmailBundle/DataFixtures/data/emails/user/update_user.html.twig
@@ -1,5 +1,5 @@
@entityName = Oro\Bundle\UserBundle\Entity\User
-@subject = Subject {{ entity.username }}
+@subject = Subject
@isSystem = 1
-
Some dude updated user '{{ entity.username }}'
\ No newline at end of file
+
Some dude updated user
diff --git a/src/Oro/Bundle/EmailBundle/Datagrid/EmailTemplateDatagridManager.php b/src/Oro/Bundle/EmailBundle/Datagrid/EmailTemplateDatagridManager.php
index 87d2a23dfab..eacf9f95f69 100644
--- a/src/Oro/Bundle/EmailBundle/Datagrid/EmailTemplateDatagridManager.php
+++ b/src/Oro/Bundle/EmailBundle/Datagrid/EmailTemplateDatagridManager.php
@@ -4,6 +4,9 @@
use Doctrine\ORM\QueryBuilder;
+use Oro\Bundle\GridBundle\Action\MassAction\DeleteMassAction;
+use Oro\Bundle\GridBundle\Datagrid\ResultRecordInterface;
+use Oro\Bundle\GridBundle\Property\ActionConfigurationProperty;
use Oro\Bundle\GridBundle\Property\UrlProperty;
use Oro\Bundle\GridBundle\Action\ActionInterface;
use Oro\Bundle\GridBundle\Field\FieldDescription;
@@ -39,6 +42,14 @@ protected function getProperties()
new UrlProperty('update_link', $this->router, 'oro_email_emailtemplate_update', array('id')),
new UrlProperty('clone_link', $this->router, 'oro_email_emailtemplate_clone', array('id')),
new UrlProperty('delete_link', $this->router, 'oro_api_delete_emailtemplate', array('id')),
+ new ActionConfigurationProperty(
+ function (ResultRecordInterface $record) {
+ if ($record->getValue('isSystem')) {
+ return array('delete' => false);
+ }
+ return null;
+ }
+ )
);
}
@@ -47,25 +58,11 @@ protected function getProperties()
*/
protected function configureFields(FieldDescriptionCollection $fieldsCollection)
{
- $fieldId = new FieldDescription();
- $fieldId->setName('id');
- $fieldId->setOptions(
- array(
- 'type' => FieldDescriptionInterface::TYPE_INTEGER,
- 'label' => $this->translate('ID'),
- 'field_name' => 'id',
- 'filter_type' => FilterInterface::TYPE_NUMBER,
- 'show_column' => false
- )
- );
- $fieldsCollection->add($fieldId);
- /*----------------------------------------------------------------*/
-
$fieldEntityName = new FieldDescription();
$fieldEntityName->setName('entityName');
$fieldEntityName->setOptions(
array(
- 'type' => FieldDescriptionInterface::TYPE_TEXT,
+ 'type' => FieldDescriptionInterface::TYPE_HTML,
'label' => $this->translate('oro.email.datagrid.emailtemplate.column.entity_name'),
'field_name' => 'entityName',
'filter_type' => FilterInterface::TYPE_CHOICE,
diff --git a/src/Oro/Bundle/EmailBundle/DependencyInjection/Compiler/EmailOwnerConfigurationPass.php b/src/Oro/Bundle/EmailBundle/DependencyInjection/Compiler/EmailOwnerConfigurationPass.php
new file mode 100644
index 00000000000..6b56b39865d
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/DependencyInjection/Compiler/EmailOwnerConfigurationPass.php
@@ -0,0 +1,76 @@
+hasDefinition(self::SERVICE_KEY)) {
+ return;
+ }
+ $storageDefinition = $container->getDefinition(self::SERVICE_KEY);
+
+ $providers = $this->loadProviders($container);
+ foreach ($providers as $providerServiceId) {
+ $storageDefinition->addMethodCall('addProvider', array(new Reference($providerServiceId)));
+ }
+
+ $this->setEmailAddressEntityResolver($container);
+ }
+
+ /**
+ * Load services implements an email owner providers
+ *
+ * @param ContainerBuilder $container
+ * @return array
+ */
+ protected function loadProviders(ContainerBuilder $container)
+ {
+ $taggedServices = $container->findTaggedServiceIds(self::TAG);
+ $providers = array();
+ foreach ($taggedServices as $id => $tagAttributes) {
+ $order = PHP_INT_MAX;
+ foreach ($tagAttributes as $attributes) {
+ if (!empty($attributes['order'])) {
+ $order = (int)$attributes['order'];
+ break;
+ }
+ }
+ $providers[$order] = $id;
+ }
+ ksort($providers);
+
+ return $providers;
+ }
+
+ /**
+ * Register a proxy of EmailAddress entity in doctrine ORM
+ *
+ * @param ContainerBuilder $container
+ */
+ protected function setEmailAddressEntityResolver(ContainerBuilder $container)
+ {
+ if ($container->hasDefinition('doctrine.orm.listeners.resolve_target_entity')) {
+ $targetEntityResolver = $container->getDefinition('doctrine.orm.listeners.resolve_target_entity');
+ $targetEntityResolver->addMethodCall(
+ 'addResolveTargetEntity',
+ array(
+ 'Oro\Bundle\EmailBundle\Entity\EmailAddress',
+ sprintf('%s\EmailAddressProxy', $container->getParameter('oro_email.entity.cache_namespace')),
+ array()
+ )
+ );
+ }
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Email.php b/src/Oro/Bundle/EmailBundle/Entity/Email.php
new file mode 100644
index 00000000000..11d475ff630
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Email.php
@@ -0,0 +1,508 @@
+importance = self::NORMAL_IMPORTANCE;
+ $this->recipients = new ArrayCollection();
+ }
+
+ /**
+ * Get id
+ *
+ * @return integer
+ */
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ /**
+ * Get entity created date/time
+ *
+ * @return \DateTime
+ */
+ public function getCreatedAt()
+ {
+ return $this->created;
+ }
+
+ /**
+ * Get email subject
+ *
+ * @return string
+ */
+ public function getSubject()
+ {
+ return $this->subject;
+ }
+
+ /**
+ * Set email subject
+ *
+ * @param string $subject
+ * @return $this
+ */
+ public function setSubject($subject)
+ {
+ $this->subject = $subject;
+
+ return $this;
+ }
+
+ /**
+ * Get FROM email name
+ *
+ * @return string
+ */
+ public function getFromName()
+ {
+ return $this->fromName;
+ }
+
+ /**
+ * Set FROM email name
+ *
+ * @param string $fromName
+ * @return $this
+ */
+ public function setFromName($fromName)
+ {
+ $this->fromName = $fromName;
+
+ return $this;
+ }
+
+ /**
+ * Get FROM email address
+ *
+ * @return EmailAddress
+ */
+ public function getFromEmailAddress()
+ {
+ return $this->fromEmailAddress;
+ }
+
+ /**
+ * Set FROM email address
+ *
+ * @param EmailAddress $fromEmailAddress
+ * @return $this
+ */
+ public function setFromEmailAddress(EmailAddress $fromEmailAddress)
+ {
+ $this->fromEmailAddress = $fromEmailAddress;
+
+ return $this;
+ }
+
+ /**
+ * Get email recipients
+ *
+ * @param null|string $recipientType null to get all recipients,
+ * or 'to', 'cc' or 'bcc' if you need specific type of recipients
+ * @return EmailRecipient[]
+ */
+ public function getRecipients($recipientType = null)
+ {
+ if ($recipientType === null) {
+ return $this->recipients;
+ }
+
+ return $this->recipients->filter(
+ function ($recipient) use ($recipientType) {
+ /** @var EmailRecipient $recipient */
+ return $recipient->getType() === $recipientType;
+ }
+ );
+ }
+
+ /**
+ * Add folder
+ *
+ * @param EmailRecipient $recipient
+ * @return $this
+ */
+ public function addRecipient(EmailRecipient $recipient)
+ {
+ $this->recipients[] = $recipient;
+
+ $recipient->setEmail($this);
+
+ return $this;
+ }
+
+ /**
+ * Get date/time when email received
+ *
+ * @return \DateTime
+ */
+ public function getReceivedAt()
+ {
+ return $this->receivedAt;
+ }
+
+ /**
+ * Set date/time when email received
+ *
+ * @param \DateTime $receivedAt
+ * @return $this
+ */
+ public function setReceivedAt($receivedAt)
+ {
+ $this->receivedAt = $receivedAt;
+
+ return $this;
+ }
+
+ /**
+ * Get date/time when email sent
+ *
+ * @return \DateTime
+ */
+ public function getSentAt()
+ {
+ return $this->sentAt;
+ }
+
+ /**
+ * Set date/time when email sent
+ *
+ * @param \DateTime $sentAt
+ * @return $this
+ */
+ public function setSentAt($sentAt)
+ {
+ $this->sentAt = $sentAt;
+
+ return $this;
+ }
+
+ /**
+ * Get email importance
+ *
+ * @return integer Can be one of *_IMPORTANCE constants
+ */
+ public function getImportance()
+ {
+ return $this->importance;
+ }
+
+ /**
+ * Set email importance
+ *
+ * @param integer $importance Can be one of *_IMPORTANCE constants
+ * @return $this
+ */
+ public function setImportance($importance)
+ {
+ $this->importance = $importance;
+
+ return $this;
+ }
+
+ /**
+ * Get email internal date receives from an email server
+ *
+ * @return \DateTime
+ */
+ public function getInternalDate()
+ {
+ return $this->internalDate;
+ }
+
+ /**
+ * Set email internal date receives from an email server
+ *
+ * @param \DateTime $internalDate
+ * @return $this
+ */
+ public function setInternalDate($internalDate)
+ {
+ $this->internalDate = $internalDate;
+
+ return $this;
+ }
+
+ /**
+ * Get value of email Message-ID header
+ *
+ * @return string
+ */
+ public function getMessageId()
+ {
+ return $this->messageId;
+ }
+
+ /**
+ * Set value of email Message-ID header
+ *
+ * @param string $messageId
+ * @return $this
+ */
+ public function setMessageId($messageId)
+ {
+ $this->messageId = $messageId;
+
+ return $this;
+ }
+
+ /**
+ * Get email message id uses for group related messages
+ *
+ * @return string
+ */
+ public function getXMessageId()
+ {
+ return $this->xMessageId;
+ }
+
+ /**
+ * Set email message id uses for group related messages
+ *
+ * @param string $xMessageId
+ * @return $this
+ */
+ public function setXMessageId($xMessageId)
+ {
+ $this->xMessageId = $xMessageId;
+
+ return $this;
+ }
+
+ /**
+ * Get email thread id uses for group related messages
+ *
+ * @return string
+ */
+ public function getXThreadId()
+ {
+ return $this->xThreadId;
+ }
+
+ /**
+ * Set email thread id uses for group related messages
+ *
+ * @param string $xThreadId
+ * @return $this
+ */
+ public function setXThreadId($xThreadId)
+ {
+ $this->xThreadId = $xThreadId;
+
+ return $this;
+ }
+
+ /**
+ * Get email folder
+ *
+ * @return EmailFolder
+ */
+ public function getFolder()
+ {
+ return $this->folder;
+ }
+
+ /**
+ * Set email folder
+ *
+ * @param EmailFolder $folder
+ * @return $this
+ */
+ public function setFolder(EmailFolder $folder)
+ {
+ $this->folder = $folder;
+
+ return $this;
+ }
+
+ /**
+ * Get cached email body
+ *
+ * @return EmailBody
+ */
+ public function getEmailBody()
+ {
+ return $this->emailBody;
+ }
+
+ /**
+ * Set email body
+ *
+ * @param EmailBody $emailBody
+ * @return $this
+ */
+ public function setEmailBody(EmailBody $emailBody)
+ {
+ $this->emailBody = $emailBody;
+
+ return $this;
+ }
+
+ /**
+ * Pre persist event listener
+ *
+ * @ORM\PrePersist
+ */
+ public function beforeSave()
+ {
+ $this->created = EmailUtil::currentUTCDateTime();
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailAddress.php b/src/Oro/Bundle/EmailBundle/Entity/EmailAddress.php
new file mode 100644
index 00000000000..58136a1018b
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailAddress.php
@@ -0,0 +1,131 @@
+id;
+ }
+
+ /**
+ * Get entity created date/time
+ *
+ * @return \DateTime
+ */
+ public function getCreatedAt()
+ {
+ return $this->created;
+ }
+
+ /**
+ * Get entity updated date/time
+ *
+ * @return \DateTime
+ */
+ public function getUpdatedAt()
+ {
+ return $this->updated;
+ }
+
+ /**
+ * Get email address.
+ *
+ * @return string
+ */
+ public function getEmail()
+ {
+ return $this->email;
+ }
+
+ /**
+ * Set email address.
+ *
+ * @param string $email
+ * @return $this
+ */
+ public function setEmail($email)
+ {
+ $this->email = $email;
+
+ return $this;
+ }
+
+ /**
+ * Get email owner
+ *
+ * @return EmailOwnerInterface
+ */
+ public function getOwner()
+ {
+ return null;
+ }
+
+ /**
+ * Set email owner
+ *
+ * @param EmailOwnerInterface|null $owner
+ * @return $this
+ */
+ public function setOwner(EmailOwnerInterface $owner = null)
+ {
+ return $this;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailAttachment.php b/src/Oro/Bundle/EmailBundle/Entity/EmailAttachment.php
new file mode 100644
index 00000000000..11db7b89793
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailAttachment.php
@@ -0,0 +1,168 @@
+id;
+ }
+
+ /**
+ * Get attachment file name
+ *
+ * @return string
+ */
+ public function getFileName()
+ {
+ return $this->fileName;
+ }
+
+ /**
+ * Set attachment file name
+ *
+ * @param string $fileName
+ * @return $this
+ */
+ public function setFileName($fileName)
+ {
+ $this->fileName = $fileName;
+
+ return $this;
+ }
+
+ /**
+ * Get content type. It may be any MIME type
+ *
+ * @return string
+ */
+ public function getContentType()
+ {
+ return $this->contentType;
+ }
+
+ /**
+ * Set content type
+ *
+ * @param string $contentType any MIME type
+ * @return $this
+ */
+ public function setContentType($contentType)
+ {
+ $this->contentType = $contentType;
+
+ return $this;
+ }
+
+ /**
+ * Get content of email attachment
+ *
+ * @return EmailAttachmentContent
+ */
+ public function getContent()
+ {
+ return $this->attachmentContent;
+ }
+
+ /**
+ * Set content of email attachment
+ *
+ * @param EmailAttachmentContent $attachmentContent
+ * @return $this
+ */
+ public function setContent(EmailAttachmentContent $attachmentContent)
+ {
+ $this->attachmentContent = $attachmentContent;
+
+ $attachmentContent->setEmailAttachment($this);
+
+ return $this;
+ }
+
+ /**
+ * Get email body
+ *
+ * @return EmailBody
+ */
+ public function getEmailBody()
+ {
+ return $this->emailBody;
+ }
+
+ /**
+ * Set email body
+ *
+ * @param EmailBody $emailBody
+ * @return $this
+ */
+ public function setEmailBody(EmailBody $emailBody)
+ {
+ $this->emailBody = $emailBody;
+
+ return $this;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailAttachmentContent.php b/src/Oro/Bundle/EmailBundle/Entity/EmailAttachmentContent.php
new file mode 100644
index 00000000000..a3ab42eb4cd
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailAttachmentContent.php
@@ -0,0 +1,133 @@
+id;
+ }
+
+ /**
+ * Get email attachment owner
+ *
+ * @return EmailAttachment
+ */
+ public function getEmailAttachment()
+ {
+ return $this->emailAttachment;
+ }
+
+ /**
+ * Set email attachment owner
+ *
+ * @param EmailAttachment $emailAttachment
+ * @return $this
+ */
+ public function setEmailAttachment(EmailAttachment $emailAttachment)
+ {
+ $this->emailAttachment = $emailAttachment;
+
+ return $this;
+ }
+
+ /**
+ * Get attachment content
+ *
+ * @return string
+ */
+ public function getValue()
+ {
+ return $this->content;
+ }
+
+ /**
+ * Set attachment content
+ *
+ * @param string $content
+ * @return $this
+ */
+ public function setValue($content)
+ {
+ $this->content = $content;
+
+ return $this;
+ }
+
+ /**
+ * Get encoding type of attachment content
+ *
+ * @return string
+ */
+ public function getContentTransferEncoding()
+ {
+ return $this->contentTransferEncoding;
+ }
+
+ /**
+ * Set encoding type of attachment content
+ *
+ * @param string $contentTransferEncoding
+ * @return $this
+ */
+ public function setContentTransferEncoding($contentTransferEncoding)
+ {
+ $this->contentTransferEncoding = $contentTransferEncoding;
+
+ return $this;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailBody.php b/src/Oro/Bundle/EmailBundle/Entity/EmailBody.php
new file mode 100644
index 00000000000..898ab703f7a
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailBody.php
@@ -0,0 +1,271 @@
+bodyIsText = false;
+ $this->hasAttachments = false;
+ $this->persistent = false;
+ $this->attachments = new ArrayCollection();
+ }
+
+ /**
+ * Get id
+ *
+ * @return integer
+ */
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ /**
+ * Get entity created date/time
+ *
+ * @return \DateTime
+ */
+ public function getCreatedAt()
+ {
+ return $this->created;
+ }
+
+ /**
+ * Get body content.
+ *
+ * @return string
+ */
+ public function getContent()
+ {
+ return $this->bodyContent;
+ }
+
+ /**
+ * Set body content.
+ *
+ * @param string $bodyContent
+ * @return $this
+ */
+ public function setContent($bodyContent)
+ {
+ $this->bodyContent = $bodyContent;
+
+ return $this;
+ }
+
+ /**
+ * Indicate whether email body is a text or html.
+ *
+ * @return bool true if body is text/plain; otherwise, the body content is text/html
+ */
+ public function getBodyIsText()
+ {
+ return $this->bodyIsText;
+ }
+
+ /**
+ * Set body content type.
+ *
+ * @param bool $bodyIsText true for text/plain, false for text/html
+ * @return $this
+ */
+ public function setBodyIsText($bodyIsText)
+ {
+ $this->bodyIsText = $bodyIsText;
+
+ return $this;
+ }
+
+ /**
+ * Indicate whether email has attachments or not.
+ *
+ * @return bool true if body is text/plain; otherwise, the body content is text/html
+ */
+ public function getHasAttachments()
+ {
+ return $this->hasAttachments;
+ }
+
+ /**
+ * Set flag indicates whether there are attachments or not.
+ *
+ * @param bool $hasAttachments
+ * @return $this
+ */
+ public function setHasAttachments($hasAttachments)
+ {
+ $this->hasAttachments = $hasAttachments;
+
+ return $this;
+ }
+
+ /**
+ * Indicate whether email is persistent or not.
+ *
+ * @return bool true if this email newer removed from the cache; otherwise, false
+ */
+ public function getPersistent()
+ {
+ return $this->persistent;
+ }
+
+ /**
+ * Set flag indicates whether email can be removed from the cache or not.
+ *
+ * @param bool $persistent true if this email newer removed from the cache; otherwise, false
+ * @return $this
+ */
+ public function setPersistent($persistent)
+ {
+ $this->persistent = $persistent;
+
+ return $this;
+ }
+
+ /**
+ * Get email header
+ *
+ * @return Email
+ */
+ public function getHeader()
+ {
+ return $this->header;
+ }
+
+ /**
+ * Set email header
+ *
+ * @param Email $header
+ * @return $this
+ */
+ public function setHeader(Email $header)
+ {
+ $this->header = $header;
+
+ return $this;
+ }
+
+ /**
+ * Get email attachments
+ *
+ * @return EmailAttachment[]
+ */
+ public function getAttachments()
+ {
+ return $this->attachments;
+ }
+
+ /**
+ * Add email attachment
+ *
+ * @param EmailAttachment $attachment
+ * @return $this
+ */
+ public function addAttachment(EmailAttachment $attachment)
+ {
+ $this->setHasAttachments(true);
+
+ $this->attachments[] = $attachment;
+
+ $attachment->setEmailBody($this);
+
+ return $this;
+ }
+
+ /**
+ * Pre persist event listener
+ *
+ * @ORM\PrePersist
+ */
+ public function beforeSave()
+ {
+ $this->created = EmailUtil::currentUTCDateTime();
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailFolder.php b/src/Oro/Bundle/EmailBundle/Entity/EmailFolder.php
new file mode 100644
index 00000000000..a2f1956726d
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailFolder.php
@@ -0,0 +1,178 @@
+emails = new ArrayCollection();
+ }
+
+ /**
+ * Get id
+ *
+ * @return integer
+ */
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ /**
+ * Get folder name
+ *
+ * @return string
+ */
+ public function getName()
+ {
+ return $this->name;
+ }
+
+ /**
+ * Set folder name
+ *
+ * @param string $name
+ * @return $this
+ */
+ public function setName($name)
+ {
+ $this->name = $name;
+
+ return $this;
+ }
+
+ /**
+ * Get folder type.
+ *
+ * @return string Can be 'inbox', 'sent', 'trash', 'drafts' or 'other'
+ */
+ public function getType()
+ {
+ return $this->type;
+ }
+
+ /**
+ * Set folder type
+ *
+ * @param string $type Can be 'inbox', 'sent', 'trash', 'drafts' or 'other'
+ * @return $this
+ */
+ public function setType($type)
+ {
+ $this->type = $type;
+
+ return $this;
+ }
+
+ /**
+ * Get email folder origin
+ *
+ * @return EmailOrigin
+ */
+ public function getOrigin()
+ {
+ return $this->origin;
+ }
+
+ /**
+ * Set email folder origin
+ *
+ * @param EmailOrigin $origin
+ * @return $this
+ */
+ public function setOrigin(EmailOrigin $origin)
+ {
+ $this->origin = $origin;
+
+ return $this;
+ }
+
+ /**
+ * Get emails
+ *
+ * @return Email[]
+ */
+ public function getEmails()
+ {
+ return $this->emails;
+ }
+
+ /**
+ * Add email
+ *
+ * @param Email $email
+ * @return $this
+ */
+ public function addEmail(Email $email)
+ {
+ $this->emails[] = $email;
+
+ $email->setFolder($this);
+
+ return $this;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailInterface.php b/src/Oro/Bundle/EmailBundle/Entity/EmailInterface.php
new file mode 100644
index 00000000000..7eab1bf5518
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailInterface.php
@@ -0,0 +1,34 @@
+folders = new ArrayCollection();
+ }
+
+ /**
+ * Get id
+ *
+ * @return integer
+ */
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ /**
+ * Get email origin name
+ *
+ * @return string
+ */
+ public function getName()
+ {
+ return $this->name;
+ }
+
+ /**
+ * Set email origin name
+ *
+ * @param string $name
+ * @return $this
+ */
+ public function setName($name)
+ {
+ $this->name = $name;
+
+ return $this;
+ }
+
+ /**
+ * Get email folders
+ *
+ * @return EmailFolder[]
+ */
+ public function getFolders()
+ {
+ return $this->folders;
+ }
+
+ /**
+ * Add folder
+ *
+ * @param EmailFolder $folder
+ * @return $this
+ */
+ public function addFolder(EmailFolder $folder)
+ {
+ $this->folders[] = $folder;
+
+ $folder->setOrigin($this);
+
+ return $this;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailOwnerInterface.php b/src/Oro/Bundle/EmailBundle/Entity/EmailOwnerInterface.php
new file mode 100644
index 00000000000..96ced7e2357
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailOwnerInterface.php
@@ -0,0 +1,54 @@
+id;
+ }
+
+ /**
+ * Get full email name
+ *
+ * @return string
+ */
+ public function getName()
+ {
+ return $this->name;
+ }
+
+ /**
+ * Set full email name
+ *
+ * @param string $name
+ * @return $this
+ */
+ public function setName($name)
+ {
+ $this->name = $name;
+
+ return $this;
+ }
+
+ /**
+ * Get recipient type.
+ *
+ * @return string Can be 'to', 'cc' or 'bcc'
+ */
+ public function getType()
+ {
+ return $this->type;
+ }
+
+ /**
+ * Set recipient type
+ *
+ * @param string $type Can be 'to', 'cc' or 'bcc'
+ * @return $this
+ */
+ public function setType($type)
+ {
+ $this->type = $type;
+
+ return $this;
+ }
+
+ /**
+ * Get email address
+ *
+ * @return EmailAddress
+ */
+ public function getEmailAddress()
+ {
+ return $this->emailAddress;
+ }
+
+ /**
+ * Set email address
+ *
+ * @param EmailAddress $emailAddress
+ * @return $this
+ */
+ public function setEmailAddress(EmailAddress $emailAddress)
+ {
+ $this->emailAddress = $emailAddress;
+
+ return $this;
+ }
+
+ /**
+ * Get email
+ *
+ * @return Email
+ */
+ public function getEmail()
+ {
+ return $this->email;
+ }
+
+ /**
+ * Set email
+ *
+ * @param Email $email
+ * @return $this
+ */
+ public function setEmail(Email $email)
+ {
+ $this->email = $email;
+
+ return $this;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/EmailTemplate.php b/src/Oro/Bundle/EmailBundle/Entity/EmailTemplate.php
index 7433befd921..3757d8cb09e 100644
--- a/src/Oro/Bundle/EmailBundle/Entity/EmailTemplate.php
+++ b/src/Oro/Bundle/EmailBundle/Entity/EmailTemplate.php
@@ -10,6 +10,8 @@
use Symfony\Component\Validator\Constraints as Assert;
+use Oro\Bundle\EntityConfigBundle\Metadata\Annotation\Configurable;
+
/**
* EmailTemplate
*
@@ -19,7 +21,7 @@
* @ORM\Index(name="email_is_system_idx", columns={"isSystem"}),
* @ORM\Index(name="email_entity_name_idx", columns={"entityName"})})
* @ORM\Entity(repositoryClass="Oro\Bundle\EmailBundle\Entity\Repository\EmailTemplateRepository")
- * @Gedmo\TranslationEntity(class="Oro\Bundle\EmailBundle\Entity\EmailTemplateTranslation")*
+ * @Gedmo\TranslationEntity(class="Oro\Bundle\EmailBundle\Entity\EmailTemplateTranslation")
*/
class EmailTemplate implements Translatable
{
@@ -356,6 +358,14 @@ public function __clone()
$this->parent = $this->id;
$this->id = null;
$this->isSystem = false;
+
+ if ($this->getTranslations() instanceof ArrayCollection) {
+ $clonedTranslations = new ArrayCollection();
+ foreach ($this->getTranslations() as $translation) {
+ $clonedTranslations->add(clone $translation);
+ }
+ $this->setTranslations($clonedTranslations);
+ }
}
/**
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailAddressManager.php b/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailAddressManager.php
new file mode 100644
index 00000000000..82162bb047a
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailAddressManager.php
@@ -0,0 +1,66 @@
+entityCacheNamespace = $entityCacheNamespace;
+ $this->entityProxyNameTemplate = $entityProxyNameTemplate;
+ }
+
+ /**
+ * Create EmailAddress entity object. Actually a proxy class is created
+ *
+ * @return EmailAddress
+ */
+ public function newEmailAddress()
+ {
+ $emailAddressClass = $this->getEmailAddressProxyClass();
+
+ return new $emailAddressClass();
+ }
+
+ /**
+ * Get a repository for EmailAddress entity
+ *
+ * @param EntityManager $em
+ * @return EntityRepository
+ */
+ public function getEmailAddressRepository(EntityManager $em)
+ {
+ return $em->getRepository($this->getEmailAddressProxyClass());
+ }
+
+ /**
+ * Get full class name of a proxy of EmailAddress entity
+ *
+ * @return string
+ */
+ protected function getEmailAddressProxyClass()
+ {
+ return sprintf('%s\%s', $this->entityCacheNamespace, sprintf($this->entityProxyNameTemplate, 'EmailAddress'));
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailApiEntityManager.php b/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailApiEntityManager.php
new file mode 100644
index 00000000000..d40320fb753
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailApiEntityManager.php
@@ -0,0 +1,32 @@
+getEmailAttachmentRepository()->find($id);
+ }
+
+ /**
+ * Get email attachment repository
+ *
+ * @return ObjectRepository
+ */
+ public function getEmailAttachmentRepository()
+ {
+ return $this->getObjectManager()->getRepository('Oro\Bundle\EmailBundle\Entity\EmailAttachment');
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailOwnerManager.php b/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailOwnerManager.php
new file mode 100644
index 00000000000..660e5529ae5
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Manager/EmailOwnerManager.php
@@ -0,0 +1,223 @@
+getProviders() as $provider) {
+ $fieldName = sprintf('owner%d', count($this->emailOwnerClasses) + 1);
+ $this->emailOwnerClasses[$fieldName] = $provider->getEmailOwnerClass();
+ }
+ $this->emailAddressManager = $emailAddressManager;
+ }
+
+ /**
+ * Handle onFlush event
+ *
+ * @param OnFlushEventArgs $event
+ */
+ public function handleOnFlush(OnFlushEventArgs $event)
+ {
+ $em = $event->getEntityManager();
+ $uow = $em->getUnitOfWork();
+ $needChangeSetsComputing = false;
+
+ $needChangeSetsComputing |= $this->handleInsertionsOrUpdates($uow->getScheduledEntityInsertions(), $em, $uow);
+ $needChangeSetsComputing |= $this->handleInsertionsOrUpdates($uow->getScheduledEntityUpdates(), $em, $uow);
+ $needChangeSetsComputing |= $this->handleDeletions($uow->getScheduledEntityDeletions(), $em);
+
+ if ($needChangeSetsComputing) {
+ $uow->computeChangeSets();
+ }
+ }
+
+ /**
+ * @param array $entities
+ * @param EntityManager $em
+ * @param UnitOfWork $uow
+ * @return bool true if UnitOfWork change set need to be recomputed
+ */
+ protected function handleInsertionsOrUpdates(array $entities, EntityManager $em, UnitOfWork $uow)
+ {
+ $needChangeSetsComputing = false;
+ foreach ($entities as $entity) {
+ if ($entity instanceof EmailOwnerInterface) {
+ $needChangeSetsComputing |= $this->processInsertionOrUpdateEntity(
+ $entity->getPrimaryEmailField(),
+ $entity,
+ $entity,
+ $em,
+ $uow
+ );
+ } elseif ($entity instanceof EmailInterface) {
+ $needChangeSetsComputing |= $this->processInsertionOrUpdateEntity(
+ $entity->getEmailField(),
+ $entity,
+ $entity->getEmailOwner(),
+ $em,
+ $uow
+ );
+ }
+ }
+
+ return $needChangeSetsComputing;
+ }
+
+ /**
+ * @param $emailField
+ * @param mixed $entity
+ * @param EmailOwnerInterface $owner
+ * @param EntityManager $em
+ * @param UnitOfWork $uow
+ * @return bool true if UnitOfWork change set need to be recomputed
+ */
+ protected function processInsertionOrUpdateEntity(
+ $emailField,
+ $entity,
+ EmailOwnerInterface $owner,
+ EntityManager $em,
+ UnitOfWork $uow
+ ) {
+ $needChangeSetsComputing = false;
+ if (!empty($emailField)) {
+ foreach ($uow->getEntityChangeSet($entity) as $field => $vals) {
+ if ($field === $emailField) {
+ list($oldValue, $newValue) = $vals;
+ if ($newValue !== $oldValue) {
+ $needChangeSetsComputing |= $this->bindEmailAddress($em, $owner, $newValue, $oldValue);
+ }
+ }
+ }
+ }
+
+ return $needChangeSetsComputing;
+ }
+
+ /**
+ * @param array $entities
+ * @param EntityManager $em
+ * @return bool true if UnitOfWork change set need to be recomputed
+ */
+ protected function handleDeletions(array $entities, EntityManager $em)
+ {
+ $needChangeSetsComputing = false;
+ foreach ($entities as $entity) {
+ if ($entity instanceof EmailOwnerInterface) {
+ $needChangeSetsComputing |= $this->unbindEmailAddress($em, $entity);
+ } elseif ($entity instanceof EmailInterface) {
+ $needChangeSetsComputing |= $this->unbindEmailAddress($em, $entity->getEmailOwner(), $entity);
+ }
+ }
+
+ return $needChangeSetsComputing;
+ }
+
+ /**
+ * Bind EmailAddress entity to the given owner
+ *
+ * @param EntityManager $em
+ * @param EmailOwnerInterface $owner
+ * @param string $newEmail
+ * @param string $oldEmail
+ * @return bool true if UnitOfWork change set need to be recomputed
+ */
+ protected function bindEmailAddress(EntityManager $em, EmailOwnerInterface $owner, $newEmail, $oldEmail)
+ {
+ $result = false;
+ $repository = $this->emailAddressManager->getEmailAddressRepository($em);
+ if (!empty($newEmail)) {
+ $emailAddress = $repository->findOneBy(array('email' => $newEmail));
+ if ($emailAddress === null) {
+ $em->persist($this->createEmailAddress($newEmail, $owner));
+ $result = true;
+ } elseif ($emailAddress->getOwner() != $owner) {
+ $emailAddress->setOwner($owner);
+ $result = true;
+ }
+ }
+ if (!empty($oldEmail)) {
+ $emailAddress = $repository->findOneBy(array('email' => $oldEmail));
+ if ($emailAddress !== null) {
+ $emailAddress->setOwner(null);
+ $result = true;
+ }
+ }
+
+ return $result;
+ }
+
+ /**
+ * Unbind EmailAddress entity from the given owner
+ *
+ * @param EntityManager $em
+ * @param EmailOwnerInterface $owner
+ * @param EmailInterface $email
+ * @return bool true if UnitOfWork change set need to be recomputed
+ */
+ protected function unbindEmailAddress(EntityManager $em, EmailOwnerInterface $owner, EmailInterface $email = null)
+ {
+ $result = false;
+ $repository = $this->emailAddressManager->getEmailAddressRepository($em);
+ foreach ($this->emailOwnerClasses as $fieldName => $emailOwnerClass) {
+ $condition = array($fieldName => $owner);
+ if ($email !== null) {
+ $condition['email'] = $email->getEmail();
+ }
+ /** @var EmailAddress $emailAddress */
+ foreach ($repository->findBy($condition) as $emailAddress) {
+ $emailAddress->setOwner(null);
+ $result = true;
+ }
+ }
+
+ return $result;
+ }
+
+ /**
+ * Create EmailAddress entity object
+ *
+ * @param string $email
+ * @param EmailOwnerInterface $owner
+ * @return EmailAddress
+ */
+ protected function createEmailAddress($email, EmailOwnerInterface $owner)
+ {
+ return $this->emailAddressManager->newEmailAddress()
+ ->setEmail($email)
+ ->setOwner($owner);
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Provider/EmailOwnerProvider.php b/src/Oro/Bundle/EmailBundle/Entity/Provider/EmailOwnerProvider.php
new file mode 100644
index 00000000000..aeb807f5d0e
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Provider/EmailOwnerProvider.php
@@ -0,0 +1,47 @@
+emailOwnerProviderStorage = $emailOwnerProviderStorage;
+ }
+
+ /**
+ * Find an entity object which is an owner of the given email address
+ *
+ * @param \Doctrine\ORM\EntityManager $em
+ * @param string $email
+ * @return EmailOwnerInterface
+ */
+ public function findEmailOwner(EntityManager $em, $email)
+ {
+ $emailOwner = null;
+ foreach ($this->emailOwnerProviderStorage->getProviders() as $provider) {
+ $emailOwner = $provider->findEmailOwner($em, $email);
+ if ($emailOwner !== null) {
+ break;
+ }
+ }
+
+ return $emailOwner;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Provider/EmailOwnerProviderInterface.php b/src/Oro/Bundle/EmailBundle/Entity/Provider/EmailOwnerProviderInterface.php
new file mode 100644
index 00000000000..8fda66a66fb
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Provider/EmailOwnerProviderInterface.php
@@ -0,0 +1,28 @@
+emailOwnerProviders[] = $provider;
+ }
+
+ /**
+ * Get all email owner providers
+ *
+ * @return EmailOwnerProviderInterface[]
+ */
+ public function getProviders()
+ {
+ return $this->emailOwnerProviders;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Repository/EmailRepository.php b/src/Oro/Bundle/EmailBundle/Entity/Repository/EmailRepository.php
new file mode 100644
index 00000000000..c18fd7c02d3
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Repository/EmailRepository.php
@@ -0,0 +1,51 @@
+getEntityManager()->createQueryBuilder()
+ ->select('re.id')
+ ->from('OroEmailBundle:Email', 're')
+ ->innerJoin('re.recipients', 'r')
+ ->innerJoin('r.emailAddress', 'ra');
+ $qbRecipients->where($qbRecipients->expr()->in('ra.email', $emails));
+
+ $qb = $this->createQueryBuilder('e')
+ ->select('partial e.{id, fromName, subject, sentAt}, a')
+ ->innerJoin('e.fromEmailAddress', 'a')
+ ->orderBy('e.sentAt', 'DESC');
+ $qb->where(
+ $qb->expr()->orX(
+ $qb->expr()->in('e.id', $qbRecipients->getDQL()),
+ $qb->expr()->in('a.email', $emails)
+ )
+ );
+
+ if ($firstResult !== null) {
+ $qb->setFirstResult($firstResult);
+ }
+ if ($maxResults !== null) {
+ $qb->setMaxResults($maxResults);
+ }
+
+ return $qb;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Entity/Util/EmailUtil.php b/src/Oro/Bundle/EmailBundle/Entity/Util/EmailUtil.php
new file mode 100644
index 00000000000..4f004d4be29
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Entity/Util/EmailUtil.php
@@ -0,0 +1,48 @@
+; 'pure' email address john@example.com
+ * email address: John Smith ; 'pure' email address john@example.com
+ * email address: ; 'pure' email address john@example.com
+ * email address: john@example.com; 'pure' email address john@example.com
+ *
+ * @param string $fullEmailAddress
+ * @return string
+ */
+ public static function extractPureEmailAddress($fullEmailAddress)
+ {
+ $atPos = strpos($fullEmailAddress, '@');
+ if ($atPos === false) {
+ return $fullEmailAddress;
+ }
+
+ $startPos = strrpos($fullEmailAddress, '<', -$atPos);
+ if ($startPos === false) {
+ return $fullEmailAddress;
+ }
+
+ $endPos = strpos($fullEmailAddress, '>', $atPos);
+ if ($endPos === false) {
+ return $fullEmailAddress;
+ }
+
+ return substr($fullEmailAddress, $startPos + 1, $endPos - $startPos - 1);
+ }
+
+ /**
+ * Return current UTC date/time
+ *
+ * @return \DateTime
+ */
+ public static function currentUTCDateTime()
+ {
+ return new \DateTime('now', new \DateTimeZone('UTC'));
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/EventListener/ConfigSubscriber.php b/src/Oro/Bundle/EmailBundle/EventListener/ConfigSubscriber.php
new file mode 100644
index 00000000000..51cd33ddf23
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/EventListener/ConfigSubscriber.php
@@ -0,0 +1,71 @@
+cache = $cache;
+ $this->cacheKey = $cacheKey;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public static function getSubscribedEvents()
+ {
+ return array(
+ Events::NEW_ENTITY_CONFIG_MODEL => 'newEntityConfig',
+ Events::PRE_PERSIST_CONFIG => 'persistConfig',
+ );
+ }
+
+ /**
+ * @param NewEntityConfigModelEvent $event
+ */
+ public function newEntityConfig(NewEntityConfigModelEvent $event)
+ {
+ // clear cache when new entity added to configurator
+ // in case if default value for some fields will equal true
+ $cp = $event->getConfigManager()->getProvider('email');
+ $fieldConfigs = $cp->filter(
+ function (ConfigInterface $config) {
+ return $config->is('available_in_template');
+ },
+ $event->getClassName()
+ );
+
+ if (count($fieldConfigs)) {
+ $this->cache->delete($this->cacheKey);
+ }
+ }
+
+ /**
+ * @param PersistConfigEvent $event
+ */
+ public function persistConfig(PersistConfigEvent $event)
+ {
+ $event->getConfigManager()->calculateConfigChangeSet($event->getConfig());
+ $change = $event->getConfigManager()->getConfigChangeSet($event->getConfig());
+
+ if ($event->getConfig()->getId()->getScope() == 'email' && isset($change['available_in_template'])) {
+ $this->cache->delete($this->cacheKey);
+ }
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/EventListener/EntitySubscriber.php b/src/Oro/Bundle/EmailBundle/EventListener/EntitySubscriber.php
new file mode 100644
index 00000000000..1f23a337fbf
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/EventListener/EntitySubscriber.php
@@ -0,0 +1,42 @@
+emailOwnerManager = $emailOwnerManager;
+ }
+
+ /**
+ * @return array
+ */
+ public function getSubscribedEvents()
+ {
+ return array(
+ //@codingStandardsIgnoreStart
+ Events::onFlush
+ //@codingStandardsIgnoreEnd
+ );
+ }
+
+ /**
+ * @param OnFlushEventArgs $event
+ */
+ public function onFlush(OnFlushEventArgs $event)
+ {
+ $this->emailOwnerManager->handleOnFlush($event);
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Form/Handler/EmailTemplateHandler.php b/src/Oro/Bundle/EmailBundle/Form/Handler/EmailTemplateHandler.php
index c2011144844..6fbd9436b48 100644
--- a/src/Oro/Bundle/EmailBundle/Form/Handler/EmailTemplateHandler.php
+++ b/src/Oro/Bundle/EmailBundle/Form/Handler/EmailTemplateHandler.php
@@ -61,7 +61,7 @@ public function process(EmailTemplate $entity)
// deny to modify system templates
if ($entity->getIsSystem()) {
$message = $this->translator->trans(
- 'oro.mail.validators.emailtemplate.attempt_save_system_template',
+ 'oro.email.handler.attempt_save_system_template',
array(),
'validators'
);
diff --git a/src/Oro/Bundle/EmailBundle/Form/Type/EmailTemplateType.php b/src/Oro/Bundle/EmailBundle/Form/Type/EmailTemplateType.php
index d2b45def822..003a57219e9 100644
--- a/src/Oro/Bundle/EmailBundle/Form/Type/EmailTemplateType.php
+++ b/src/Oro/Bundle/EmailBundle/Form/Type/EmailTemplateType.php
@@ -62,8 +62,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
'html' => 'oro.email.datagrid.emailtemplate.filter.type.html',
'txt' => 'oro.email.datagrid.emailtemplate.filter.type.txt'
),
- 'required' => true,
- 'translation_domain' => 'datagrid'
+ 'required' => true
)
);
@@ -76,8 +75,11 @@ public function buildForm(FormBuilderInterface $builder, array $options)
);
$builder->add(
- 'parent',
- 'hidden'
+ 'parentTemplate',
+ 'hidden',
+ array(
+ 'property_path' => 'parent'
+ )
);
}
diff --git a/src/Oro/Bundle/EmailBundle/LICENSE b/src/Oro/Bundle/EmailBundle/LICENSE
new file mode 100644
index 00000000000..938870a7a30
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2013 Oro, Inc
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished
+to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/src/Oro/Bundle/EmailBundle/OroEmailBundle.php b/src/Oro/Bundle/EmailBundle/OroEmailBundle.php
index 2e5e81d059b..1f047ad0a3b 100644
--- a/src/Oro/Bundle/EmailBundle/OroEmailBundle.php
+++ b/src/Oro/Bundle/EmailBundle/OroEmailBundle.php
@@ -2,8 +2,72 @@
namespace Oro\Bundle\EmailBundle;
+use Symfony\Component\DependencyInjection\Definition;
+use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\Bundle\Bundle;
+use Symfony\Component\DependencyInjection\ContainerBuilder;
+use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass;
+use Oro\Bundle\EmailBundle\DependencyInjection\Compiler\EmailOwnerConfigurationPass;
+use Symfony\Component\Filesystem\Filesystem;
class OroEmailBundle extends Bundle
{
+ /**
+ * {@inheritdoc}
+ */
+ public function build(ContainerBuilder $container)
+ {
+ parent::build($container);
+
+ $container->addCompilerPass(new EmailOwnerConfigurationPass());
+ $this->addDoctrineOrmMappingsPass($container);
+ }
+
+ /**
+ * Add a compiler pass handles annotations of extended entities
+ *
+ * @param ContainerBuilder $container
+ */
+ protected function addDoctrineOrmMappingsPass(ContainerBuilder $container)
+ {
+ $cacheDir = sprintf('%s/entities', $container->getParameter('kernel.root_dir'));
+ $entityCacheNamespace = 'Extend\Cache\OroEmailBundle\Entity';
+
+ $container->setParameter('oro_email.entity.cache_dir', $cacheDir);
+ $container->setParameter('oro_email.entity.cache_namespace', $entityCacheNamespace);
+ $container->setParameter('oro_email.entity.proxy_name_template', '%sProxy');
+
+ $entityCacheDir = sprintf('%s/%s', $cacheDir, str_replace('\\', '/', $entityCacheNamespace));
+ // Ensure the cache directory exists
+ $fs = new Filesystem();
+ if (!is_dir($entityCacheDir)) {
+ $fs->mkdir($entityCacheDir, 0777);
+ }
+
+ $container->addCompilerPass(
+ $this->createAnnotationMappingDriver(
+ array($entityCacheNamespace),
+ array($entityCacheDir)
+ )
+ );
+ }
+
+ /**
+ * Create DoctrineOrmMappingsPass object
+ *
+ * @param array $namespaces List of namespaces that are handled with annotation mapping
+ * @param array $directories List of directories to look for annotated classes
+ * @param string[] $managerParameters List of parameters that could which object manager name your bundle uses.
+ * This compiler pass will automatically append the parameter name for the default entity manager to this list.
+ * @param bool|string $enabledParameter Service container parameter that must be present to enable the mapping
+ * Set to false to not do any check, optional.
+ * @return DoctrineOrmMappingsPass
+ */
+ protected function createAnnotationMappingDriver(array $namespaces, array $directories, array $managerParameters = array(), $enabledParameter = false)
+ {
+ $reader = new Reference('annotation_reader');
+ $driver = new Definition('Doctrine\ORM\Mapping\Driver\AnnotationDriver', array($reader, $directories));
+
+ return new DoctrineOrmMappingsPass($driver, $namespaces, $managerParameters, $enabledParameter);
+ }
}
diff --git a/src/Oro/Bundle/EmailBundle/Provider/EmailRenderer.php b/src/Oro/Bundle/EmailBundle/Provider/EmailRenderer.php
new file mode 100644
index 00000000000..dc6c9227cbd
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Provider/EmailRenderer.php
@@ -0,0 +1,125 @@
+configProvider = $configProvider;
+ $this->sandBoxConfigCache = $cache;
+ $this->cacheKey = $cacheKey;
+ $this->user = $securityContext->getToken() && !is_string($securityContext->getToken()->getUser())
+ ? $securityContext->getToken()->getUser() : false;
+
+ $this->addExtension($sandbox);
+ $this->configureSandbox();
+ }
+
+ /**
+ * Configure sandbox form config data
+ *
+ */
+ protected function configureSandbox()
+ {
+ $allowedData = $this->sandBoxConfigCache->fetch($this->cacheKey);
+
+ if (false === $allowedData) {
+ $allowedData = $this->prepareConfiguration();
+ $this->sandBoxConfigCache->save($this->cacheKey, serialize($allowedData));
+ } else {
+ $allowedData = unserialize($allowedData);
+ }
+
+ /** @var \Twig_Extension_Sandbox $sandbox */
+ $sandbox = $this->getExtension('sandbox');
+ /** @var \Twig_Sandbox_SecurityPolicy $security */
+ $security = $sandbox->getSecurityPolicy();
+ $security->setAllowedMethods($allowedData);
+ }
+
+ /**
+ * Prepare configuration from entity config
+ *
+ * @return array
+ */
+ private function prepareConfiguration()
+ {
+ $configuration = array();
+
+ foreach ($this->configProvider->getIds() as $entityConfigId) {
+ $className = $entityConfigId->getClassName();
+ $fields = $this->configProvider->filter(
+ function (ConfigInterface $fieldConfig) {
+ return $fieldConfig->is('available_in_template');
+ },
+ $className
+ );
+
+ if (count($fields)) {
+ $configuration[$className] = array();
+ foreach ($fields as $fieldConfig) {
+ $configuration[$className][] = 'get' . strtolower($fieldConfig->getId()->getFieldName());
+ }
+ }
+ }
+
+ return $configuration;
+ }
+
+ /**
+ * Compile email message
+ *
+ * @param EmailTemplate $entity
+ * @param array $templateParams
+ *
+ * @return array first element is email subject, second - message
+ */
+ public function compileMessage(EmailTemplate $entity, array $templateParams = array())
+ {
+ // ensure we have no html tags in txt template
+ $content = $entity->getContent();
+ $content = $entity->getType() == 'txt' ? strip_tags($content) : $content;
+
+ $templateParams['user'] = $this->user;
+
+ $templateRendered = $this->render('{% verbatim %}' . $content . '{% endverbatim %}', $templateParams);
+ $subjectRendered = $this->render(
+ '{% verbatim %}' . $entity->getSubject() . '{% endverbatim %}',
+ $templateParams
+ );
+
+ return array($subjectRendered, $templateRendered);
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Provider/VariablesProvider.php b/src/Oro/Bundle/EmailBundle/Provider/VariablesProvider.php
new file mode 100644
index 00000000000..9a687bda7b6
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Provider/VariablesProvider.php
@@ -0,0 +1,88 @@
+securityContext = $securityContext;
+ $this->configProvider = $provider;
+ }
+
+ /**
+ * Return available in template variables
+ *
+ * @param string $entityName
+ * @return array
+ */
+ public function getTemplateVariables($entityName)
+ {
+ $userClassName = $this->getUser() ? get_class($this->getUser()) : false;
+ $allowedData = array(
+ 'entity' => array(),
+ 'user' => array()
+ );
+
+ $ids = $this->configProvider->getIds();
+ foreach ($ids as $entityConfigId) {
+ // export variables of asked entity and current user entity class
+ $className = $entityConfigId->getClassName();
+ if ($className == $entityName || $className == $userClassName) {
+ $fields = $this->configProvider->filter(
+ function (ConfigInterface $config) {
+ return $config->is('available_in_template');
+ },
+ $className
+ );
+
+ $fields = array_values(
+ array_map(
+ function (ConfigInterface $field) {
+ return $field->getId()->getFieldName();
+ },
+ $fields
+ )
+ );
+
+ switch ($className) {
+ case $entityName:
+ $allowedData['entity'] = $fields;
+ break;
+ case $userClassName:
+ $allowedData['user'] = $fields;
+ break;
+ }
+
+ if ($entityName == $userClassName) {
+ $allowedData['user'] = $allowedData['entity'];
+ }
+ }
+ }
+
+ return $allowedData;
+ }
+
+ /**
+ * Return current user
+ *
+ * @return UserInterface|bool
+ */
+ private function getUser()
+ {
+ return $this->securityContext->getToken() && !is_string($this->securityContext->getToken()->getUser())
+ ? $this->securityContext->getToken()->getUser() : false;
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Resources/cache/Entity/EmailAddress.php.twig b/src/Oro/Bundle/EmailBundle/Resources/cache/Entity/EmailAddress.php.twig
new file mode 100644
index 00000000000..a89038d5a14
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/cache/Entity/EmailAddress.php.twig
@@ -0,0 +1,81 @@
+{{ owner.fieldName }} !== null) {
+ return $this->{{ owner.fieldName }};
+ }
+{% endfor %}
+
+ return null;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function setOwner(EmailOwnerInterface $owner = null)
+ {
+{% for owner in owners %}
+ if (is_a($owner, '{{ owner.targetEntity }}')) {
+ $this->{{ owner.fieldName }} = $owner;
+ } else {
+ $this->{{ owner.fieldName }} = null;
+ }
+{% endfor %}
+
+ return $this;
+ }
+
+ /**
+ * Pre persist event listener
+ *
+ * @ORM\PrePersist
+ */
+ public function beforeSave()
+ {
+ $this->created = EmailUtil::currentUTCDateTime();
+ $this->updated = EmailUtil::currentUTCDateTime();
+ }
+
+ /**
+ * Pre update event listener
+ *
+ * @ORM\PreUpdate
+ */
+ public function beforeUpdate()
+ {
+ $this->updated = EmailUtil::currentUTCDateTime();
+ }
+}
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/assets.yml b/src/Oro/Bundle/EmailBundle/Resources/config/assets.yml
index 412124533f8..438a58fa6f2 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/config/assets.yml
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/assets.yml
@@ -3,6 +3,12 @@ js:
- '@OroEmailBundle/Resources/public/js/views/templates.updater.js'
- '@OroEmailBundle/Resources/public/js/models/templates.updater.js'
- '@OroEmailBundle/Resources/public/js/collections/templates.updater.js'
+ - '@OroEmailBundle/Resources/public/js/email.js'
+
+ 'email_variables':
+ - '@OroEmailBundle/Resources/public/js/models/variable.js'
+ - '@OroEmailBundle/Resources/public/js/views/variables.updater.js'
+
css:
'email':
- '@OroEmailBundle/Resources/public/css/style.css'
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/datagrid.yml b/src/Oro/Bundle/EmailBundle/Resources/config/datagrid.yml
index 847133ebabe..6e6d67f430c 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/config/datagrid.yml
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/datagrid.yml
@@ -9,5 +9,6 @@ services:
- name: oro_grid.datagrid.manager
datagrid_name: emailtemplate
entity_name: %oro_email.emailtemplate.entity.class%
- entity_hint: email templates
+ entity_hint: email template
route_name: oro_email_emailtemplate_index
+ identifier_field: "id"
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/entity_config.yml b/src/Oro/Bundle/EmailBundle/Resources/config/entity_config.yml
new file mode 100644
index 00000000000..0bb7802db9b
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/entity_config.yml
@@ -0,0 +1,15 @@
+oro_entity_config:
+ email:
+ field:
+ items:
+ available_in_template:
+ options:
+ default_value: false
+ is_bool: true
+ form:
+ type: choice
+ options:
+ choices: ['No', 'Yes']
+ empty_value: false
+ block: other
+ label: 'Available in email templates'
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/entity_output.yml b/src/Oro/Bundle/EmailBundle/Resources/config/entity_output.yml
new file mode 100644
index 00000000000..7fefbdae6d5
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/entity_output.yml
@@ -0,0 +1,4 @@
+Oro\Bundle\EmailBundle\Entity\Email:
+ icon_class: icon-envelope
+ name: entity.email.name
+ description: entity.email.description
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/navigation.yml b/src/Oro/Bundle/EmailBundle/Resources/config/navigation.yml
index 797fbd3807f..b5be9220f75 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/config/navigation.yml
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/navigation.yml
@@ -1,7 +1,7 @@
oro_menu_config:
items:
oro_email_emailtemplate_list:
- label: 'Email templates'
+ label: 'Email Templates'
route: 'oro_email_emailtemplate_index'
extras:
routes: ['oro_email_emailtemplate_*']
@@ -13,6 +13,7 @@ oro_menu_config:
oro_email_emailtemplate_list: ~
oro_titles:
+ oro_email_view: "%%subject%% - Email"
oro_email_emailtemplate_index: ~
oro_email_emailtemplate_update: "Edit Template %%name%%"
oro_email_emailtemplate_create: "Create Email Template"
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/routing.yml b/src/Oro/Bundle/EmailBundle/Resources/config/routing.yml
index 71ddbfd6b79..74707b7aa7b 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/config/routing.yml
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/routing.yml
@@ -3,12 +3,11 @@ oro_email:
type: annotation
prefix: /email
-
-oro_email_api:
- resource: Oro\Bundle\EmailBundle\Controller\Api\Rest\EmailTemplateController
+oro_email_bundle_api:
+ resource: "@OroEmailBundle/Resources/config/routing_api.yml"
type: rest
- prefix: api/rest/{version}/
+ prefix: api/rest/{version}
requirements:
- version: latest|v1
+ version: latest|v1
defaults:
- version: latest
\ No newline at end of file
+ version: latest
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/routing_api.yml b/src/Oro/Bundle/EmailBundle/Resources/config/routing_api.yml
new file mode 100644
index 00000000000..b6bb463e90b
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/routing_api.yml
@@ -0,0 +1,7 @@
+oro_email_api:
+ resource: Oro\Bundle\EmailBundle\Controller\Api\Rest\EmailController
+ type: rest
+
+oro_email_emailtemplate_api:
+ resource: Oro\Bundle\EmailBundle\Controller\Api\Rest\EmailTemplateController
+ type: rest
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/search.yml b/src/Oro/Bundle/EmailBundle/Resources/config/search.yml
new file mode 100644
index 00000000000..ec8e7eac497
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/search.yml
@@ -0,0 +1,14 @@
+Oro\Bundle\EmailBundle\Entity\Email:
+ alias: oro_email
+ label: Emails
+ search_template: OroEmailBundle:Email:searchResult.html.twig
+ route:
+ name: oro_email_view
+ parameters:
+ id: id
+ title_fields: [subject]
+ fields:
+ -
+ name: subject
+ target_type: text
+ target_fields: [subject]
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/services.yml b/src/Oro/Bundle/EmailBundle/Resources/config/services.yml
index b4dc39d581d..470f30d80f0 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/config/services.yml
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/services.yml
@@ -1,4 +1,17 @@
parameters:
+ oro_email.email.entity.class: Oro\Bundle\EmailBundle\Entity\Email
+ oro_email.email.cache.manager.class: Oro\Bundle\EmailBundle\Cache\EmailCacheManager
+ oro_email.email.address.manager.class: Oro\Bundle\EmailBundle\Entity\Manager\EmailAddressManager
+ oro_email.email.owner.provider.class: Oro\Bundle\EmailBundle\Entity\Provider\EmailOwnerProvider
+ oro_email.email.owner.provider.storage.class: Oro\Bundle\EmailBundle\Entity\Provider\EmailOwnerProviderStorage
+ oro_email.email.owner.manager.class: Oro\Bundle\EmailBundle\Entity\Manager\EmailOwnerManager
+ oro_email.email.entity.builder.class: Oro\Bundle\EmailBundle\Builder\EmailEntityBuilder
+ oro_email.email.entity.batch_processor.class: Oro\Bundle\EmailBundle\Builder\EmailEntityBatchProcessor
+ oro_email.listener.entity_subscriber.class: Oro\Bundle\EmailBundle\EventListener\EntitySubscriber
+ oro_email.manager.email.api.class: Oro\Bundle\EmailBundle\Entity\Manager\EmailApiEntityManager
+ oro_email.entity.cache.warmer.class: Oro\Bundle\EmailBundle\Cache\EntityCacheWarmer
+ oro_email.entity.cache.clearer.class: Oro\Bundle\EmailBundle\Cache\EntityCacheClearer
+
oro_email.emailtemplate.entity.class: Oro\Bundle\EmailBundle\Entity\EmailTemplate
# Email template field
@@ -14,7 +27,99 @@ parameters:
oro_email.manager.emailtemplate.api.class: Oro\Bundle\SoapBundle\Entity\Manager\ApiEntityManager
oro_email.form.type.emailtemplate.api.class: Oro\Bundle\EmailBundle\Form\Type\EmailTemplateApiType
+ # Entity config event listener
+ oro_email.listener.config_subscriber.class: Oro\Bundle\EmailBundle\EventListener\ConfigSubscriber
+
+ # Providers
+ oro_email.provider.variable_provider.class: Oro\Bundle\EmailBundle\Provider\VariablesProvider
+
+ # Cache keys
+ oro_email.cache.available_in_template_key: 'oro_email.available_in_template_fields'
+
+ # Email renderer, twig instance
+ oro_email.email_renderer.class: Oro\Bundle\EmailBundle\Provider\EmailRenderer
+ oro_email.twig.email_security_policy.class: Twig_Sandbox_SecurityPolicy
+
services:
+ oro_email.entity.cache.warmer:
+ public: false
+ class: %oro_email.entity.cache.warmer.class%
+ arguments:
+ - @oro_email.email.owner.provider.storage
+ - %oro_email.entity.cache_dir%
+ - %oro_email.entity.cache_namespace%
+ - %oro_email.entity.proxy_name_template%
+ tags:
+ - { name: kernel.cache_warmer, priority: 30 }
+
+ oro_email.entity.cache.clearer:
+ public: false
+ class: %oro_email.entity.cache.clearer.class%
+ arguments:
+ - %oro_email.entity.cache_dir%
+ - %oro_email.entity.cache_namespace%
+ - %oro_email.entity.proxy_name_template%
+ tags:
+ - { name: kernel.cache_clearer }
+
+ oro_email.email.cache.manager:
+ class: %oro_email.email.cache.manager.class%
+ arguments:
+ - @doctrine.orm.entity_manager
+
+ oro_email.email.address.manager:
+ public: false
+ class: %oro_email.email.address.manager.class%
+ arguments:
+ - %oro_email.entity.cache_namespace%
+ - %oro_email.entity.proxy_name_template%
+
+ oro_email.email.owner.provider.storage:
+ public: false
+ class: %oro_email.email.owner.provider.storage.class%
+
+ oro_email.email.owner.provider:
+ public: false
+ class: %oro_email.email.owner.provider.class%
+ arguments:
+ - @oro_email.email.owner.provider.storage
+
+ oro_email.email.owner.manager:
+ public: false
+ class: %oro_email.email.owner.manager.class%
+ arguments:
+ - @oro_email.email.owner.provider.storage
+ - @oro_email.email.address.manager
+
+ oro_email.email.entity.builder:
+ class: %oro_email.email.entity.builder.class%
+ scope: prototype
+ arguments:
+ - @oro_email.email.entity.batch_processor
+ - @oro_email.email.address.manager
+
+ oro_email.email.entity.batch_processor:
+ class: %oro_email.email.entity.batch_processor.class%
+ public: false
+ scope: prototype
+ arguments:
+ - @oro_email.email.address.manager
+ - @oro_email.email.owner.provider
+
+ oro_email.listener.entity_subscriber:
+ public: false
+ class: %oro_email.listener.entity_subscriber.class%
+ arguments:
+ - @oro_email.email.owner.manager
+ tags:
+ - { name: doctrine.event_subscriber, connection: default }
+
+ oro_email.manager.email.api:
+ class: %oro_email.manager.email.api.class%
+ arguments:
+ - %oro_email.email.entity.class%
+ - @doctrine.orm.entity_manager
+
# Email template field
oro_email.form.subscriber.emailtemplate:
class: %oro_email.form.subscriber.emailtemplate.class%
@@ -81,3 +186,65 @@ services:
- @request
- @doctrine.orm.entity_manager
- @translator
+
+ oro_email.cache:
+ parent: oro.cache.abstract
+ calls:
+ - [setNamespace, ['oro_email.cache']]
+
+ # Available variables services
+ oro_email.listener.config_subscriber:
+ class: %oro_email.listener.config_subscriber.class%
+ arguments: [@oro_email.cache, %oro_email.cache.available_in_template_key%]
+ tags:
+ - { name: kernel.event_subscriber}
+
+ # email template twig instance
+ oro_email.twig.string_loader:
+ class: Twig_Loader_String
+
+ oro_email.email_renderer:
+ class: %oro_email.email_renderer.class%
+ arguments:
+ - @oro_email.twig.string_loader
+ - # twig environment options
+ strict_variables: true
+ - @oro_entity_config.provider.email
+ - @oro_email.cache
+ - %oro_email.cache.available_in_template_key%
+ - @security.context
+ - @oro_email.twig.email_sandbox
+
+ oro_email.twig.email_security_policy:
+ class: %oro_email.twig.email_security_policy.class%
+ arguments:
+ # tags
+ - [ 'if', 'app' ]
+ # filters
+ - [ 'upper', 'escape' ]
+ # methods
+ - []
+ # properties
+ - []
+ # functions
+ - []
+
+ oro_email.twig.email_sandbox:
+ class: Twig_Extension_Sandbox
+ arguments:
+ - @oro_email.twig.email_security_policy
+ - true # use sandbox globally in instance
+
+ oro_email.provider.variable_provider:
+ class: %oro_email.provider.variable_provider.class%
+ arguments:
+ - @security.context
+ - @oro_entity_config.provider.email
+
+ oro_email.validator.variables_validator:
+ class: Oro\Bundle\EmailBundle\Validator\VariablesValidator
+ arguments:
+ - @oro_email.email_renderer
+ - @security.context
+ tags:
+ - { name: validator.constraint_validator, alias: oro_email.variables_validator }
diff --git a/src/Oro/Bundle/EmailBundle/Resources/config/validation.yml b/src/Oro/Bundle/EmailBundle/Resources/config/validation.yml
index 34cc488ad8d..234d2c6a8ea 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/config/validation.yml
+++ b/src/Oro/Bundle/EmailBundle/Resources/config/validation.yml
@@ -1,7 +1,7 @@
Oro\Bundle\EmailBundle\Entity\EmailTemplate:
constraints:
- Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity: [ name, entityName ]
-
+ - Oro\Bundle\EmailBundle\Validator\Constraints\VariablesConstraint: ~
properties:
name:
- NotBlank: ~
diff --git a/src/Oro/Bundle/EmailBundle/Resources/public/css/style.css b/src/Oro/Bundle/EmailBundle/Resources/public/css/style.css
index bc09aa6110c..c9653d36242 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/public/css/style.css
+++ b/src/Oro/Bundle/EmailBundle/Resources/public/css/style.css
@@ -10,3 +10,7 @@
.a2lix_translationsFields.tab-content .tab-pane textarea {
width: 700px;
}
+.modal-body .loading-content {
+ background: #fff url('/bundles/orogrid/img/loader.gif') no-repeat center left;
+ padding-left: 30px;
+}
diff --git a/src/Oro/Bundle/EmailBundle/Resources/public/js/email.js b/src/Oro/Bundle/EmailBundle/Resources/public/js/email.js
new file mode 100644
index 00000000000..b45c7e94018
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/public/js/email.js
@@ -0,0 +1,16 @@
+$(function () {
+ $(document).on('click', '.view-email-entity-btn', function (e) {
+ new Oro.widget.DialogView({
+ url: $(this).attr('href'),
+ dialogOptions: {
+ allowMaximize: true,
+ allowMinimize: true,
+ dblclick: 'maximize',
+ maximizedHeightDecreaseBy: 'minimize-bar',
+ width: 1000,
+ title: $(this).attr('title')
+ }
+ }).render();
+ e.preventDefault();
+ });
+});
diff --git a/src/Oro/Bundle/EmailBundle/Resources/public/js/models/variable.js b/src/Oro/Bundle/EmailBundle/Resources/public/js/models/variable.js
new file mode 100644
index 00000000000..7166e5c7b32
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/public/js/models/variable.js
@@ -0,0 +1,26 @@
+Oro = Oro || {};
+Oro.Email = Oro.Email || {};
+Oro.Email.VariablesUpdater = Oro.Email.VariablesUpdater || {};
+
+Oro.Email.VariablesUpdater.Variable = Backbone.Model.extend({
+ defaults: {
+ user: [],
+ entity: [],
+ entityName: null
+ },
+
+ route: 'oro_api_get_emailtemplate_available_variables',
+ url: null,
+
+ initialize: function() {
+ this.updateUrl();
+ this.bind('change:entityName', this.updateUrl, this);
+ },
+
+ /**
+ * onChange entityName attribute
+ */
+ updateUrl: function() {
+ this.url = Routing.generate(this.route, {entityName: this.get('entityName')});
+ }
+});
diff --git a/src/Oro/Bundle/EmailBundle/Resources/public/js/views/variables.updater.js b/src/Oro/Bundle/EmailBundle/Resources/public/js/views/variables.updater.js
new file mode 100644
index 00000000000..2c2a9eae8bf
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/public/js/views/variables.updater.js
@@ -0,0 +1,81 @@
+Oro = Oro || {};
+Oro.Email = Oro.Email || {};
+Oro.Email.VariablesUpdater = Oro.Email.VariablesUpdater || {};
+
+Oro.Email.VariablesUpdater.View = Backbone.View.extend({
+ events: {
+ 'click ul li a': 'addVariable'
+ },
+ target: null,
+
+ lastElement: null,
+
+ /**
+ * Constructor
+ *
+ * @param options {Object}
+ */
+ initialize: function (options) {
+ this.target = options.target;
+
+ this.listenTo(this.model, 'sync', this.render);
+ this.target.on('change', _.bind(this.selectionChanged, this));
+
+ $('input[name*="subject"], textarea[name*="content"]').on('blur', _.bind(this._updateElementsMetaData, this));
+ this.render();
+ },
+
+ /**
+ * onChange event listener
+ *
+ * @param e {Object}
+ */
+ selectionChanged: function (e) {
+ var entityName = $(e.currentTarget).val();
+ this.model.set('entityName', entityName.split('\\').join('_'));
+ this.model.fetch();
+ },
+
+ /**
+ * Renders target element
+ *
+ * @returns {*}
+ */
+ render: function() {
+ var html = _.template(this.options.template.html(), {
+ userVars: this.model.get('user'),
+ entityVars: this.model.get('entity')
+ });
+
+ $(this.el).html(html);
+
+ return this;
+ },
+
+ /**
+ * Add variable to last element
+ *
+ * @param e
+ * @returns {*}
+ */
+ addVariable: function(e) {
+ if (!_.isNull(this.lastElement) && this.lastElement.is(':visible')) {
+ this.lastElement.val(this.lastElement.val() + $(e.currentTarget).html());
+ }
+
+ return this;
+ },
+
+ /**
+ * Update elements metadata
+ *
+ * @param e
+ * @private
+ * @returns {*}
+ */
+ _updateElementsMetaData: function(e) {
+ this.lastElement = $(e.currentTarget);
+
+ return this;
+ }
+});
diff --git a/src/Oro/Bundle/EmailBundle/Resources/translations/config.en.yml b/src/Oro/Bundle/EmailBundle/Resources/translations/config.en.yml
new file mode 100644
index 00000000000..23359375e9b
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/translations/config.en.yml
@@ -0,0 +1,4 @@
+entity:
+ email:
+ name: Email
+ description: Email message
diff --git a/src/Oro/Bundle/EmailBundle/Resources/translations/datagrid.en.yml b/src/Oro/Bundle/EmailBundle/Resources/translations/datagrid.en.yml
deleted file mode 100644
index 219f57115bc..00000000000
--- a/src/Oro/Bundle/EmailBundle/Resources/translations/datagrid.en.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-oro:
- email:
- datagrid:
- emailtemplate:
- action:
- update: "Update"
- clone: "Clone"
- delete: "Delete"
- column:
- entity_name: "Entity name"
- name: "Template name"
- isSystem: "Is system"
- type: "Type"
- filter:
- type:
- html: "HTML"
- txt: "Plain text"
- isSystem:
- yes: "Yes"
- no: "No"
-
diff --git a/src/Oro/Bundle/EmailBundle/Resources/translations/messages.en.yml b/src/Oro/Bundle/EmailBundle/Resources/translations/messages.en.yml
index da42cb102d4..26e799b7919 100644
--- a/src/Oro/Bundle/EmailBundle/Resources/translations/messages.en.yml
+++ b/src/Oro/Bundle/EmailBundle/Resources/translations/messages.en.yml
@@ -6,3 +6,35 @@ oro:
message: "Template sucessfully saved"
form:
choose_template: "Choose a template..."
+ datagrid:
+ emailtemplate:
+ action:
+ update: "Update"
+ clone: "Clone"
+ delete: "Delete"
+ column:
+ entity_name: "Entity name"
+ name: "Template name"
+ isSystem: "Is system"
+ type: "Type"
+ filter:
+ type:
+ html: "HTML"
+ txt: "Plain text"
+ isSystem:
+ yes: "Yes"
+ no: "No"
+ page_size:
+ all: "All"
+ handler:
+ attempt_save_system_template: "Overriding of system's templates is prohibited, clone it instead."
+"%subject% - Email": "%subject% - Email"
+"Emails": "Emails"
+"Email": "Email"
+"Subject": "Subject"
+"Sent": "Sent"
+"From": "From"
+"To": "To"
+"Cc": "Cc"
+"Bcc": "Bcc"
+"Attachments": "Attachments"
diff --git a/src/Oro/Bundle/EmailBundle/Resources/translations/validators.en.yml b/src/Oro/Bundle/EmailBundle/Resources/translations/validators.en.yml
deleted file mode 100644
index 23b2934d501..00000000000
--- a/src/Oro/Bundle/EmailBundle/Resources/translations/validators.en.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-oro:
- mail:
- validators:
- emailtemplate:
- attempt_save_system_template: "Overriding of system's templates is prohibited, clone it instead."
diff --git a/src/Oro/Bundle/EmailBundle/Resources/views/Email/activities.html.twig b/src/Oro/Bundle/EmailBundle/Resources/views/Email/activities.html.twig
new file mode 100644
index 00000000000..408bbf3e2ea
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/views/Email/activities.html.twig
@@ -0,0 +1,33 @@
+{#
+ Available variables:
+ * entities - array of activity entities. Which items of this array is an associative array contains subset of fields of an activity entity
+#}
+{# TODO: This is a temporary template created for demo purposes. It will be removed when 'display activities' functionality is implemented #}
+{% import 'OroUIBundle::macros.html.twig' as UI %}
+{% import 'OroEmailBundle::macros.html.twig' as EA %}
+{% set format = oro_config_value('oro_user.name_format') %}
+
+
+
+
+
+
+
+
+
ID
+
From
+
Subject
+
Sent
+
+
+
+ {% for entity in entities %}
+ {% include 'OroEmailBundle:Email:activity.html.twig' with {'entity': entity} %}
+ {% endfor %}
+
+
+
+
+
+
+
diff --git a/src/Oro/Bundle/EmailBundle/Resources/views/Email/activity.html.twig b/src/Oro/Bundle/EmailBundle/Resources/views/Email/activity.html.twig
new file mode 100644
index 00000000000..bb16624a711
--- /dev/null
+++ b/src/Oro/Bundle/EmailBundle/Resources/views/Email/activity.html.twig
@@ -0,0 +1,11 @@
+{#
+ Available variables:
+ * entity - email entity Oro\Bundle\EmailBundle\Entity\Email
+#}
+{# TODO: This is a demo template. It need to be replaced with a real one #}
+
')
+ }
+ ),
+
+ initialize: function(options) {
+ options = options || {}
+ this.initializeWidget(options);
+
+ this.widget = Backbone.$(this.options.template({
+ 'title': this.options.title,
+ 'contentClasses': this.options.contentClasses
+ }));
+ this.widgetContentContainer = this.widget.find(this.options.contentContainer);
+ },
+
+ setTitle: function(title) {
+ this.options.title = title;
+ this._getTitleContainer().html(this.options.title);
+ },
+
+ getActionsElement: function() {
+ if (this.actionsContainer === undefined) {
+ this.actionsContainer = this.widget.find(this.options.actionsContainer);
+ }
+ return this.actionsContainer;
+ },
+
+ _getTitleContainer: function() {
+ if (this.titleContainer === undefined) {
+ this.titleContainer = this.widget.find(this.options.titleContainer);
+ }
+ return this.titleContainer;
+ },
+
+ show: function() {
+ if (!this.$el.data('wid')) {
+ if (this.$el.parent().length) {
+ this._showStatic();
+ } else {
+ this._showRemote();
+ }
+ }
+ Oro.widget.Abstract.prototype.show.apply(this);
+ },
+
+ _showStatic: function() {
+ var anchorDiv = Backbone.$('');
+ anchorDiv.insertAfter(this.$el);
+ this.widgetContentContainer.append(this.$el);
+ anchorDiv.replaceWith(Backbone.$(this.widget));
+ },
+
+ _showRemote: function() {
+ this.widgetContentContainer.empty();
+ this.widgetContentContainer.append(this.$el);
+ }
+});
+
+Oro.widget.Manager.registerWidgetContainer('block', Oro.widget.Block);
diff --git a/src/Oro/Bundle/UIBundle/Resources/public/js/backbone/widget/manager.js b/src/Oro/Bundle/UIBundle/Resources/public/js/backbone/widget/manager.js
new file mode 100644
index 00000000000..92b01d18d9d
--- /dev/null
+++ b/src/Oro/Bundle/UIBundle/Resources/public/js/backbone/widget/manager.js
@@ -0,0 +1,29 @@
+var Oro = Oro || {};
+Oro.widget = Oro.widget || {};
+
+Oro.widget.Manager = {
+ types: {},
+ widgets: {},
+
+ isSupportedType: function(type) {
+ return this.types.hasOwnProperty(type);
+ },
+
+ registerWidgetContainer: function(type, initializer) {
+ this.types[type] = initializer;
+ },
+
+ createWidget: function(type, options) {
+ var widget = new this.types[type](options);
+ this.widgets[widget.getWid()] = widget;
+ return widget;
+ },
+
+ getWidgetInstance: function(wid) {
+ return this.widgets[wid];
+ },
+
+ removeWidget: function(wid) {
+ delete this.widgets[wid];
+ }
+};
diff --git a/src/Oro/Bundle/UIBundle/Resources/public/js/height_fix.js b/src/Oro/Bundle/UIBundle/Resources/public/js/height_fix.js
index dc6a0226318..697c7ae5709 100644
--- a/src/Oro/Bundle/UIBundle/Resources/public/js/height_fix.js
+++ b/src/Oro/Bundle/UIBundle/Resources/public/js/height_fix.js
@@ -1,4 +1,8 @@
/* dynamic height for central column */
+jQuery.expr[':'].parents = function(a, i, m){
+ return jQuery(a).parents(m[3]).length < 1;
+};
+
$(document).ready(function () {
var debugBar = $('.sf-toolbar');
var anchor = $('#bottom-anchor');
@@ -17,7 +21,7 @@ $(document).ready(function () {
var initializeContent = function() {
if (!content) {
- content = $('.scrollable-container');
+ content = $('.scrollable-container').filter(':parents(.ui-widget)');
content.css('overflow', 'auto');
$('.scrollable-substructure').css({
diff --git a/src/Oro/Bundle/UIBundle/Resources/public/js/layout.js b/src/Oro/Bundle/UIBundle/Resources/public/js/layout.js
index e4b771418e5..cc87f5e1fea 100644
--- a/src/Oro/Bundle/UIBundle/Resources/public/js/layout.js
+++ b/src/Oro/Bundle/UIBundle/Resources/public/js/layout.js
@@ -110,7 +110,13 @@ $(document).ready(function () {
* ============================================================ */
var dropdownToggles = $('.oro-dropdown-toggle');
dropdownToggles.click(function(e) {
- $(this).parent().toggleClass('open')
+ var $parent = $(this).parent().toggleClass('open');
+ if ($parent.hasClass('open')) {
+ $parent.find('input[type=text]').first().focus().select();
+ }
+ });
+ $('body').on('focus.dropdown.data-api', '[data-toggle=dropdown]', function (e) {
+ $(e.target).parent().find('input[type=text]').first().focus();
});
$('html').click(function(e) {
@@ -172,7 +178,12 @@ function initLayout() {
el = $(el);
el.datepicker({
- dateFormat: el.attr('data-dateformat') ? el.attr('data-dateformat') : 'm/d/y'
+ dateFormat: el.attr('data-dateformat') ? el.attr('data-dateformat') : 'm/d/y',
+ changeMonth: true,
+ changeYear: true,
+ yearRange: '-80:+1',
+ showButtonPanel: true,
+ currentText: _.__('Now')
});
});
}
@@ -183,7 +194,12 @@ function initLayout() {
el.datetimepicker({
dateFormat: el.attr('data-dateformat') ? el.attr('data-dateformat') : 'm/d/y',
- timeFormat: el.attr('data-timeformat') ? el.attr('data-timeformat') : 'hh:mm tt'
+ timeFormat: el.attr('data-timeformat') ? el.attr('data-timeformat') : 'hh:mm tt',
+ changeMonth: true,
+ changeYear: true,
+ yearRange: '-80:+1',
+ showButtonPanel: true,
+ currentText: _.__('Now')
});
});
}
diff --git a/src/Oro/Bundle/UIBundle/Resources/public/lib/jquery-1.10.2.js b/src/Oro/Bundle/UIBundle/Resources/public/lib/jquery-1.10.2.js
new file mode 100644
index 00000000000..c5c648255c1
--- /dev/null
+++ b/src/Oro/Bundle/UIBundle/Resources/public/lib/jquery-1.10.2.js
@@ -0,0 +1,9789 @@
+/*!
+ * jQuery JavaScript Library v1.10.2
+ * http://jquery.com/
+ *
+ * Includes Sizzle.js
+ * http://sizzlejs.com/
+ *
+ * Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
+ * Released under the MIT license
+ * http://jquery.org/license
+ *
+ * Date: 2013-07-03T13:48Z
+ */
+(function( window, undefined ) {
+
+// Can't do this because several apps including ASP.NET trace
+// the stack via arguments.caller.callee and Firefox dies if
+// you try to trace through "use strict" call chains. (#13335)
+// Support: Firefox 18+
+//"use strict";
+var
+ // The deferred used on DOM ready
+ readyList,
+
+ // A central reference to the root jQuery(document)
+ rootjQuery,
+
+ // Support: IE<10
+ // For `typeof xmlNode.method` instead of `xmlNode.method !== undefined`
+ core_strundefined = typeof undefined,
+
+ // Use the correct document accordingly with window argument (sandbox)
+ location = window.location,
+ document = window.document,
+ docElem = document.documentElement,
+
+ // Map over jQuery in case of overwrite
+ _jQuery = window.jQuery,
+
+ // Map over the $ in case of overwrite
+ _$ = window.$,
+
+ // [[Class]] -> type pairs
+ class2type = {},
+
+ // List of deleted data cache ids, so we can reuse them
+ core_deletedIds = [],
+
+ core_version = "1.10.2",
+
+ // Save a reference to some core methods
+ core_concat = core_deletedIds.concat,
+ core_push = core_deletedIds.push,
+ core_slice = core_deletedIds.slice,
+ core_indexOf = core_deletedIds.indexOf,
+ core_toString = class2type.toString,
+ core_hasOwn = class2type.hasOwnProperty,
+ core_trim = core_version.trim,
+
+ // Define a local copy of jQuery
+ jQuery = function( selector, context ) {
+ // The jQuery object is actually just the init constructor 'enhanced'
+ return new jQuery.fn.init( selector, context, rootjQuery );
+ },
+
+ // Used for matching numbers
+ core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,
+
+ // Used for splitting on whitespace
+ core_rnotwhite = /\S+/g,
+
+ // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE)
+ rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
+
+ // A simple way to check for HTML strings
+ // Prioritize #id over to avoid XSS via location.hash (#9521)
+ // Strict HTML recognition (#11290: must start with <)
+ rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
+
+ // Match a standalone tag
+ rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
+
+ // JSON RegExp
+ rvalidchars = /^[\],:{}\s]*$/,
+ rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g,
+ rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,
+ rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,
+
+ // Matches dashed string for camelizing
+ rmsPrefix = /^-ms-/,
+ rdashAlpha = /-([\da-z])/gi,
+
+ // Used by jQuery.camelCase as callback to replace()
+ fcamelCase = function( all, letter ) {
+ return letter.toUpperCase();
+ },
+
+ // The ready event handler
+ completed = function( event ) {
+
+ // readyState === "complete" is good enough for us to call the dom ready in oldIE
+ if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) {
+ detach();
+ jQuery.ready();
+ }
+ },
+ // Clean-up method for dom ready events
+ detach = function() {
+ if ( document.addEventListener ) {
+ document.removeEventListener( "DOMContentLoaded", completed, false );
+ window.removeEventListener( "load", completed, false );
+
+ } else {
+ document.detachEvent( "onreadystatechange", completed );
+ window.detachEvent( "onload", completed );
+ }
+ };
+
+jQuery.fn = jQuery.prototype = {
+ // The current version of jQuery being used
+ jquery: core_version,
+
+ constructor: jQuery,
+ init: function( selector, context, rootjQuery ) {
+ var match, elem;
+
+ // HANDLE: $(""), $(null), $(undefined), $(false)
+ if ( !selector ) {
+ return this;
+ }
+
+ // Handle HTML strings
+ if ( typeof selector === "string" ) {
+ if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
+ // Assume that strings that start and end with <> are HTML and skip the regex check
+ match = [ null, selector, null ];
+
+ } else {
+ match = rquickExpr.exec( selector );
+ }
+
+ // Match html or make sure no context is specified for #id
+ if ( match && (match[1] || !context) ) {
+
+ // HANDLE: $(html) -> $(array)
+ if ( match[1] ) {
+ context = context instanceof jQuery ? context[0] : context;
+
+ // scripts is true for back-compat
+ jQuery.merge( this, jQuery.parseHTML(
+ match[1],
+ context && context.nodeType ? context.ownerDocument || context : document,
+ true
+ ) );
+
+ // HANDLE: $(html, props)
+ if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
+ for ( match in context ) {
+ // Properties of context are called as methods if possible
+ if ( jQuery.isFunction( this[ match ] ) ) {
+ this[ match ]( context[ match ] );
+
+ // ...and otherwise set as attributes
+ } else {
+ this.attr( match, context[ match ] );
+ }
+ }
+ }
+
+ return this;
+
+ // HANDLE: $(#id)
+ } else {
+ elem = document.getElementById( match[2] );
+
+ // Check parentNode to catch when Blackberry 4.6 returns
+ // nodes that are no longer in the document #6963
+ if ( elem && elem.parentNode ) {
+ // Handle the case where IE and Opera return items
+ // by name instead of ID
+ if ( elem.id !== match[2] ) {
+ return rootjQuery.find( selector );
+ }
+
+ // Otherwise, we inject the element directly into the jQuery object
+ this.length = 1;
+ this[0] = elem;
+ }
+
+ this.context = document;
+ this.selector = selector;
+ return this;
+ }
+
+ // HANDLE: $(expr, $(...))
+ } else if ( !context || context.jquery ) {
+ return ( context || rootjQuery ).find( selector );
+
+ // HANDLE: $(expr, context)
+ // (which is just equivalent to: $(context).find(expr)
+ } else {
+ return this.constructor( context ).find( selector );
+ }
+
+ // HANDLE: $(DOMElement)
+ } else if ( selector.nodeType ) {
+ this.context = this[0] = selector;
+ this.length = 1;
+ return this;
+
+ // HANDLE: $(function)
+ // Shortcut for document ready
+ } else if ( jQuery.isFunction( selector ) ) {
+ return rootjQuery.ready( selector );
+ }
+
+ if ( selector.selector !== undefined ) {
+ this.selector = selector.selector;
+ this.context = selector.context;
+ }
+
+ return jQuery.makeArray( selector, this );
+ },
+
+ // Start with an empty selector
+ selector: "",
+
+ // The default length of a jQuery object is 0
+ length: 0,
+
+ toArray: function() {
+ return core_slice.call( this );
+ },
+
+ // Get the Nth element in the matched element set OR
+ // Get the whole matched element set as a clean array
+ get: function( num ) {
+ return num == null ?
+
+ // Return a 'clean' array
+ this.toArray() :
+
+ // Return just the object
+ ( num < 0 ? this[ this.length + num ] : this[ num ] );
+ },
+
+ // Take an array of elements and push it onto the stack
+ // (returning the new matched element set)
+ pushStack: function( elems ) {
+
+ // Build a new jQuery matched element set
+ var ret = jQuery.merge( this.constructor(), elems );
+
+ // Add the old object onto the stack (as a reference)
+ ret.prevObject = this;
+ ret.context = this.context;
+
+ // Return the newly-formed element set
+ return ret;
+ },
+
+ // Execute a callback for every element in the matched set.
+ // (You can seed the arguments with an array of args, but this is
+ // only used internally.)
+ each: function( callback, args ) {
+ return jQuery.each( this, callback, args );
+ },
+
+ ready: function( fn ) {
+ // Add the callback
+ jQuery.ready.promise().done( fn );
+
+ return this;
+ },
+
+ slice: function() {
+ return this.pushStack( core_slice.apply( this, arguments ) );
+ },
+
+ first: function() {
+ return this.eq( 0 );
+ },
+
+ last: function() {
+ return this.eq( -1 );
+ },
+
+ eq: function( i ) {
+ var len = this.length,
+ j = +i + ( i < 0 ? len : 0 );
+ return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
+ },
+
+ map: function( callback ) {
+ return this.pushStack( jQuery.map(this, function( elem, i ) {
+ return callback.call( elem, i, elem );
+ }));
+ },
+
+ end: function() {
+ return this.prevObject || this.constructor(null);
+ },
+
+ // For internal use only.
+ // Behaves like an Array's method, not like a jQuery method.
+ push: core_push,
+ sort: [].sort,
+ splice: [].splice
+};
+
+// Give the init function the jQuery prototype for later instantiation
+jQuery.fn.init.prototype = jQuery.fn;
+
+jQuery.extend = jQuery.fn.extend = function() {
+ var src, copyIsArray, copy, name, options, clone,
+ target = arguments[0] || {},
+ i = 1,
+ length = arguments.length,
+ deep = false;
+
+ // Handle a deep copy situation
+ if ( typeof target === "boolean" ) {
+ deep = target;
+ target = arguments[1] || {};
+ // skip the boolean and the target
+ i = 2;
+ }
+
+ // Handle case when target is a string or something (possible in deep copy)
+ if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
+ target = {};
+ }
+
+ // extend jQuery itself if only one argument is passed
+ if ( length === i ) {
+ target = this;
+ --i;
+ }
+
+ for ( ; i < length; i++ ) {
+ // Only deal with non-null/undefined values
+ if ( (options = arguments[ i ]) != null ) {
+ // Extend the base object
+ for ( name in options ) {
+ src = target[ name ];
+ copy = options[ name ];
+
+ // Prevent never-ending loop
+ if ( target === copy ) {
+ continue;
+ }
+
+ // Recurse if we're merging plain objects or arrays
+ if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
+ if ( copyIsArray ) {
+ copyIsArray = false;
+ clone = src && jQuery.isArray(src) ? src : [];
+
+ } else {
+ clone = src && jQuery.isPlainObject(src) ? src : {};
+ }
+
+ // Never move original objects, clone them
+ target[ name ] = jQuery.extend( deep, clone, copy );
+
+ // Don't bring in undefined values
+ } else if ( copy !== undefined ) {
+ target[ name ] = copy;
+ }
+ }
+ }
+ }
+
+ // Return the modified object
+ return target;
+};
+
+jQuery.extend({
+ // Unique for each copy of jQuery on the page
+ // Non-digits removed to match rinlinejQuery
+ expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ),
+
+ noConflict: function( deep ) {
+ if ( window.$ === jQuery ) {
+ window.$ = _$;
+ }
+
+ if ( deep && window.jQuery === jQuery ) {
+ window.jQuery = _jQuery;
+ }
+
+ return jQuery;
+ },
+
+ // Is the DOM ready to be used? Set to true once it occurs.
+ isReady: false,
+
+ // A counter to track how many items to wait for before
+ // the ready event fires. See #6781
+ readyWait: 1,
+
+ // Hold (or release) the ready event
+ holdReady: function( hold ) {
+ if ( hold ) {
+ jQuery.readyWait++;
+ } else {
+ jQuery.ready( true );
+ }
+ },
+
+ // Handle when the DOM is ready
+ ready: function( wait ) {
+
+ // Abort if there are pending holds or we're already ready
+ if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
+ return;
+ }
+
+ // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
+ if ( !document.body ) {
+ return setTimeout( jQuery.ready );
+ }
+
+ // Remember that the DOM is ready
+ jQuery.isReady = true;
+
+ // If a normal DOM Ready event fired, decrement, and wait if need be
+ if ( wait !== true && --jQuery.readyWait > 0 ) {
+ return;
+ }
+
+ // If there are functions bound, to execute
+ readyList.resolveWith( document, [ jQuery ] );
+
+ // Trigger any bound ready events
+ if ( jQuery.fn.trigger ) {
+ jQuery( document ).trigger("ready").off("ready");
+ }
+ },
+
+ // See test/unit/core.js for details concerning isFunction.
+ // Since version 1.3, DOM methods and functions like alert
+ // aren't supported. They return false on IE (#2968).
+ isFunction: function( obj ) {
+ return jQuery.type(obj) === "function";
+ },
+
+ isArray: Array.isArray || function( obj ) {
+ return jQuery.type(obj) === "array";
+ },
+
+ isWindow: function( obj ) {
+ /* jshint eqeqeq: false */
+ return obj != null && obj == obj.window;
+ },
+
+ isNumeric: function( obj ) {
+ return !isNaN( parseFloat(obj) ) && isFinite( obj );
+ },
+
+ type: function( obj ) {
+ if ( obj == null ) {
+ return String( obj );
+ }
+ return typeof obj === "object" || typeof obj === "function" ?
+ class2type[ core_toString.call(obj) ] || "object" :
+ typeof obj;
+ },
+
+ isPlainObject: function( obj ) {
+ var key;
+
+ // Must be an Object.
+ // Because of IE, we also have to check the presence of the constructor property.
+ // Make sure that DOM nodes and window objects don't pass through, as well
+ if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
+ return false;
+ }
+
+ try {
+ // Not own constructor property must be Object
+ if ( obj.constructor &&
+ !core_hasOwn.call(obj, "constructor") &&
+ !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) {
+ return false;
+ }
+ } catch ( e ) {
+ // IE8,9 Will throw exceptions on certain host objects #9897
+ return false;
+ }
+
+ // Support: IE<9
+ // Handle iteration over inherited properties before own properties.
+ if ( jQuery.support.ownLast ) {
+ for ( key in obj ) {
+ return core_hasOwn.call( obj, key );
+ }
+ }
+
+ // Own properties are enumerated firstly, so to speed up,
+ // if last one is own, then all properties are own.
+ for ( key in obj ) {}
+
+ return key === undefined || core_hasOwn.call( obj, key );
+ },
+
+ isEmptyObject: function( obj ) {
+ var name;
+ for ( name in obj ) {
+ return false;
+ }
+ return true;
+ },
+
+ error: function( msg ) {
+ throw new Error( msg );
+ },
+
+ // data: string of html
+ // context (optional): If specified, the fragment will be created in this context, defaults to document
+ // keepScripts (optional): If true, will include scripts passed in the html string
+ parseHTML: function( data, context, keepScripts ) {
+ if ( !data || typeof data !== "string" ) {
+ return null;
+ }
+ if ( typeof context === "boolean" ) {
+ keepScripts = context;
+ context = false;
+ }
+ context = context || document;
+
+ var parsed = rsingleTag.exec( data ),
+ scripts = !keepScripts && [];
+
+ // Single tag
+ if ( parsed ) {
+ return [ context.createElement( parsed[1] ) ];
+ }
+
+ parsed = jQuery.buildFragment( [ data ], context, scripts );
+ if ( scripts ) {
+ jQuery( scripts ).remove();
+ }
+ return jQuery.merge( [], parsed.childNodes );
+ },
+
+ parseJSON: function( data ) {
+ // Attempt to parse using the native JSON parser first
+ if ( window.JSON && window.JSON.parse ) {
+ return window.JSON.parse( data );
+ }
+
+ if ( data === null ) {
+ return data;
+ }
+
+ if ( typeof data === "string" ) {
+
+ // Make sure leading/trailing whitespace is removed (IE can't handle it)
+ data = jQuery.trim( data );
+
+ if ( data ) {
+ // Make sure the incoming data is actual JSON
+ // Logic borrowed from http://json.org/json2.js
+ if ( rvalidchars.test( data.replace( rvalidescape, "@" )
+ .replace( rvalidtokens, "]" )
+ .replace( rvalidbraces, "")) ) {
+
+ return ( new Function( "return " + data ) )();
+ }
+ }
+ }
+
+ jQuery.error( "Invalid JSON: " + data );
+ },
+
+ // Cross-browser xml parsing
+ parseXML: function( data ) {
+ var xml, tmp;
+ if ( !data || typeof data !== "string" ) {
+ return null;
+ }
+ try {
+ if ( window.DOMParser ) { // Standard
+ tmp = new DOMParser();
+ xml = tmp.parseFromString( data , "text/xml" );
+ } else { // IE
+ xml = new ActiveXObject( "Microsoft.XMLDOM" );
+ xml.async = "false";
+ xml.loadXML( data );
+ }
+ } catch( e ) {
+ xml = undefined;
+ }
+ if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) {
+ jQuery.error( "Invalid XML: " + data );
+ }
+ return xml;
+ },
+
+ noop: function() {},
+
+ // Evaluates a script in a global context
+ // Workarounds based on findings by Jim Driscoll
+ // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
+ globalEval: function( data ) {
+ if ( data && jQuery.trim( data ) ) {
+ // We use execScript on Internet Explorer
+ // We use an anonymous function so that context is window
+ // rather than jQuery in Firefox
+ ( window.execScript || function( data ) {
+ window[ "eval" ].call( window, data );
+ } )( data );
+ }
+ },
+
+ // Convert dashed to camelCase; used by the css and data modules
+ // Microsoft forgot to hump their vendor prefix (#9572)
+ camelCase: function( string ) {
+ return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
+ },
+
+ nodeName: function( elem, name ) {
+ return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
+ },
+
+ // args is for internal usage only
+ each: function( obj, callback, args ) {
+ var value,
+ i = 0,
+ length = obj.length,
+ isArray = isArraylike( obj );
+
+ if ( args ) {
+ if ( isArray ) {
+ for ( ; i < length; i++ ) {
+ value = callback.apply( obj[ i ], args );
+
+ if ( value === false ) {
+ break;
+ }
+ }
+ } else {
+ for ( i in obj ) {
+ value = callback.apply( obj[ i ], args );
+
+ if ( value === false ) {
+ break;
+ }
+ }
+ }
+
+ // A special, fast, case for the most common use of each
+ } else {
+ if ( isArray ) {
+ for ( ; i < length; i++ ) {
+ value = callback.call( obj[ i ], i, obj[ i ] );
+
+ if ( value === false ) {
+ break;
+ }
+ }
+ } else {
+ for ( i in obj ) {
+ value = callback.call( obj[ i ], i, obj[ i ] );
+
+ if ( value === false ) {
+ break;
+ }
+ }
+ }
+ }
+
+ return obj;
+ },
+
+ // Use native String.trim function wherever possible
+ trim: core_trim && !core_trim.call("\uFEFF\xA0") ?
+ function( text ) {
+ return text == null ?
+ "" :
+ core_trim.call( text );
+ } :
+
+ // Otherwise use our own trimming functionality
+ function( text ) {
+ return text == null ?
+ "" :
+ ( text + "" ).replace( rtrim, "" );
+ },
+
+ // results is for internal usage only
+ makeArray: function( arr, results ) {
+ var ret = results || [];
+
+ if ( arr != null ) {
+ if ( isArraylike( Object(arr) ) ) {
+ jQuery.merge( ret,
+ typeof arr === "string" ?
+ [ arr ] : arr
+ );
+ } else {
+ core_push.call( ret, arr );
+ }
+ }
+
+ return ret;
+ },
+
+ inArray: function( elem, arr, i ) {
+ var len;
+
+ if ( arr ) {
+ if ( core_indexOf ) {
+ return core_indexOf.call( arr, elem, i );
+ }
+
+ len = arr.length;
+ i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;
+
+ for ( ; i < len; i++ ) {
+ // Skip accessing in sparse arrays
+ if ( i in arr && arr[ i ] === elem ) {
+ return i;
+ }
+ }
+ }
+
+ return -1;
+ },
+
+ merge: function( first, second ) {
+ var l = second.length,
+ i = first.length,
+ j = 0;
+
+ if ( typeof l === "number" ) {
+ for ( ; j < l; j++ ) {
+ first[ i++ ] = second[ j ];
+ }
+ } else {
+ while ( second[j] !== undefined ) {
+ first[ i++ ] = second[ j++ ];
+ }
+ }
+
+ first.length = i;
+
+ return first;
+ },
+
+ grep: function( elems, callback, inv ) {
+ var retVal,
+ ret = [],
+ i = 0,
+ length = elems.length;
+ inv = !!inv;
+
+ // Go through the array, only saving the items
+ // that pass the validator function
+ for ( ; i < length; i++ ) {
+ retVal = !!callback( elems[ i ], i );
+ if ( inv !== retVal ) {
+ ret.push( elems[ i ] );
+ }
+ }
+
+ return ret;
+ },
+
+ // arg is for internal usage only
+ map: function( elems, callback, arg ) {
+ var value,
+ i = 0,
+ length = elems.length,
+ isArray = isArraylike( elems ),
+ ret = [];
+
+ // Go through the array, translating each of the items to their
+ if ( isArray ) {
+ for ( ; i < length; i++ ) {
+ value = callback( elems[ i ], i, arg );
+
+ if ( value != null ) {
+ ret[ ret.length ] = value;
+ }
+ }
+
+ // Go through every key on the object,
+ } else {
+ for ( i in elems ) {
+ value = callback( elems[ i ], i, arg );
+
+ if ( value != null ) {
+ ret[ ret.length ] = value;
+ }
+ }
+ }
+
+ // Flatten any nested arrays
+ return core_concat.apply( [], ret );
+ },
+
+ // A global GUID counter for objects
+ guid: 1,
+
+ // Bind a function to a context, optionally partially applying any
+ // arguments.
+ proxy: function( fn, context ) {
+ var args, proxy, tmp;
+
+ if ( typeof context === "string" ) {
+ tmp = fn[ context ];
+ context = fn;
+ fn = tmp;
+ }
+
+ // Quick check to determine if target is callable, in the spec
+ // this throws a TypeError, but we will just return undefined.
+ if ( !jQuery.isFunction( fn ) ) {
+ return undefined;
+ }
+
+ // Simulated bind
+ args = core_slice.call( arguments, 2 );
+ proxy = function() {
+ return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) );
+ };
+
+ // Set the guid of unique handler to the same of original handler, so it can be removed
+ proxy.guid = fn.guid = fn.guid || jQuery.guid++;
+
+ return proxy;
+ },
+
+ // Multifunctional method to get and set values of a collection
+ // The value/s can optionally be executed if it's a function
+ access: function( elems, fn, key, value, chainable, emptyGet, raw ) {
+ var i = 0,
+ length = elems.length,
+ bulk = key == null;
+
+ // Sets many values
+ if ( jQuery.type( key ) === "object" ) {
+ chainable = true;
+ for ( i in key ) {
+ jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
+ }
+
+ // Sets one value
+ } else if ( value !== undefined ) {
+ chainable = true;
+
+ if ( !jQuery.isFunction( value ) ) {
+ raw = true;
+ }
+
+ if ( bulk ) {
+ // Bulk operations run against the entire set
+ if ( raw ) {
+ fn.call( elems, value );
+ fn = null;
+
+ // ...except when executing function values
+ } else {
+ bulk = fn;
+ fn = function( elem, key, value ) {
+ return bulk.call( jQuery( elem ), value );
+ };
+ }
+ }
+
+ if ( fn ) {
+ for ( ; i < length; i++ ) {
+ fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
+ }
+ }
+ }
+
+ return chainable ?
+ elems :
+
+ // Gets
+ bulk ?
+ fn.call( elems ) :
+ length ? fn( elems[0], key ) : emptyGet;
+ },
+
+ now: function() {
+ return ( new Date() ).getTime();
+ },
+
+ // A method for quickly swapping in/out CSS properties to get correct calculations.
+ // Note: this method belongs to the css module but it's needed here for the support module.
+ // If support gets modularized, this method should be moved back to the css module.
+ swap: function( elem, options, callback, args ) {
+ var ret, name,
+ old = {};
+
+ // Remember the old values, and insert the new ones
+ for ( name in options ) {
+ old[ name ] = elem.style[ name ];
+ elem.style[ name ] = options[ name ];
+ }
+
+ ret = callback.apply( elem, args || [] );
+
+ // Revert the old values
+ for ( name in options ) {
+ elem.style[ name ] = old[ name ];
+ }
+
+ return ret;
+ }
+});
+
+jQuery.ready.promise = function( obj ) {
+ if ( !readyList ) {
+
+ readyList = jQuery.Deferred();
+
+ // Catch cases where $(document).ready() is called after the browser event has already occurred.
+ // we once tried to use readyState "interactive" here, but it caused issues like the one
+ // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
+ if ( document.readyState === "complete" ) {
+ // Handle it asynchronously to allow scripts the opportunity to delay ready
+ setTimeout( jQuery.ready );
+
+ // Standards-based browsers support DOMContentLoaded
+ } else if ( document.addEventListener ) {
+ // Use the handy event callback
+ document.addEventListener( "DOMContentLoaded", completed, false );
+
+ // A fallback to window.onload, that will always work
+ window.addEventListener( "load", completed, false );
+
+ // If IE event model is used
+ } else {
+ // Ensure firing before onload, maybe late but safe also for iframes
+ document.attachEvent( "onreadystatechange", completed );
+
+ // A fallback to window.onload, that will always work
+ window.attachEvent( "onload", completed );
+
+ // If IE and not a frame
+ // continually check to see if the document is ready
+ var top = false;
+
+ try {
+ top = window.frameElement == null && document.documentElement;
+ } catch(e) {}
+
+ if ( top && top.doScroll ) {
+ (function doScrollCheck() {
+ if ( !jQuery.isReady ) {
+
+ try {
+ // Use the trick by Diego Perini
+ // http://javascript.nwbox.com/IEContentLoaded/
+ top.doScroll("left");
+ } catch(e) {
+ return setTimeout( doScrollCheck, 50 );
+ }
+
+ // detach all dom ready events
+ detach();
+
+ // and execute any waiting functions
+ jQuery.ready();
+ }
+ })();
+ }
+ }
+ }
+ return readyList.promise( obj );
+};
+
+// Populate the class2type map
+jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
+ class2type[ "[object " + name + "]" ] = name.toLowerCase();
+});
+
+function isArraylike( obj ) {
+ var length = obj.length,
+ type = jQuery.type( obj );
+
+ if ( jQuery.isWindow( obj ) ) {
+ return false;
+ }
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === "array" || type !== "function" &&
+ ( length === 0 ||
+ typeof length === "number" && length > 0 && ( length - 1 ) in obj );
+}
+
+// All jQuery objects should point back to these
+rootjQuery = jQuery(document);
+/*!
+ * Sizzle CSS Selector Engine v1.10.2
+ * http://sizzlejs.com/
+ *
+ * Copyright 2013 jQuery Foundation, Inc. and other contributors
+ * Released under the MIT license
+ * http://jquery.org/license
+ *
+ * Date: 2013-07-03
+ */
+(function( window, undefined ) {
+
+var i,
+ support,
+ cachedruns,
+ Expr,
+ getText,
+ isXML,
+ compile,
+ outermostContext,
+ sortInput,
+
+ // Local document vars
+ setDocument,
+ document,
+ docElem,
+ documentIsHTML,
+ rbuggyQSA,
+ rbuggyMatches,
+ matches,
+ contains,
+
+ // Instance-specific data
+ expando = "sizzle" + -(new Date()),
+ preferredDoc = window.document,
+ dirruns = 0,
+ done = 0,
+ classCache = createCache(),
+ tokenCache = createCache(),
+ compilerCache = createCache(),
+ hasDuplicate = false,
+ sortOrder = function( a, b ) {
+ if ( a === b ) {
+ hasDuplicate = true;
+ return 0;
+ }
+ return 0;
+ },
+
+ // General-purpose constants
+ strundefined = typeof undefined,
+ MAX_NEGATIVE = 1 << 31,
+
+ // Instance methods
+ hasOwn = ({}).hasOwnProperty,
+ arr = [],
+ pop = arr.pop,
+ push_native = arr.push,
+ push = arr.push,
+ slice = arr.slice,
+ // Use a stripped-down indexOf if we can't use a native one
+ indexOf = arr.indexOf || function( elem ) {
+ var i = 0,
+ len = this.length;
+ for ( ; i < len; i++ ) {
+ if ( this[i] === elem ) {
+ return i;
+ }
+ }
+ return -1;
+ },
+
+ booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
+
+ // Regular expressions
+
+ // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
+ whitespace = "[\\x20\\t\\r\\n\\f]",
+ // http://www.w3.org/TR/css3-syntax/#characters
+ characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
+
+ // Loosely modeled on CSS identifier characters
+ // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
+ // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
+ identifier = characterEncoding.replace( "w", "w#" ),
+
+ // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors
+ attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace +
+ "*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]",
+
+ // Prefer arguments quoted,
+ // then not containing pseudos/brackets,
+ // then attribute selectors/non-parenthetical expressions,
+ // then anything else
+ // These preferences are here to reduce the number of selectors
+ // needing tokenize in the PSEUDO preFilter
+ pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)",
+
+ // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
+ rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
+
+ rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
+ rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
+
+ rsibling = new RegExp( whitespace + "*[+~]" ),
+ rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*)" + whitespace + "*\\]", "g" ),
+
+ rpseudo = new RegExp( pseudos ),
+ ridentifier = new RegExp( "^" + identifier + "$" ),
+
+ matchExpr = {
+ "ID": new RegExp( "^#(" + characterEncoding + ")" ),
+ "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
+ "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
+ "ATTR": new RegExp( "^" + attributes ),
+ "PSEUDO": new RegExp( "^" + pseudos ),
+ "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
+ "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
+ "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
+ "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
+ // For use in libraries implementing .is()
+ // We use this for POS matching in `select`
+ "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
+ whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
+ },
+
+ rnative = /^[^{]+\{\s*\[native \w/,
+
+ // Easily-parseable/retrievable ID or TAG or CLASS selectors
+ rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
+
+ rinputs = /^(?:input|select|textarea|button)$/i,
+ rheader = /^h\d$/i,
+
+ rescape = /'|\\/g,
+
+ // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
+ runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
+ funescape = function( _, escaped, escapedWhitespace ) {
+ var high = "0x" + escaped - 0x10000;
+ // NaN means non-codepoint
+ // Support: Firefox
+ // Workaround erroneous numeric interpretation of +"0x"
+ return high !== high || escapedWhitespace ?
+ escaped :
+ // BMP codepoint
+ high < 0 ?
+ String.fromCharCode( high + 0x10000 ) :
+ // Supplemental Plane codepoint (surrogate pair)
+ String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
+ };
+
+// Optimize for push.apply( _, NodeList )
+try {
+ push.apply(
+ (arr = slice.call( preferredDoc.childNodes )),
+ preferredDoc.childNodes
+ );
+ // Support: Android<4.0
+ // Detect silently failing push.apply
+ arr[ preferredDoc.childNodes.length ].nodeType;
+} catch ( e ) {
+ push = { apply: arr.length ?
+
+ // Leverage slice if possible
+ function( target, els ) {
+ push_native.apply( target, slice.call(els) );
+ } :
+
+ // Support: IE<9
+ // Otherwise append directly
+ function( target, els ) {
+ var j = target.length,
+ i = 0;
+ // Can't trust NodeList.length
+ while ( (target[j++] = els[i++]) ) {}
+ target.length = j - 1;
+ }
+ };
+}
+
+function Sizzle( selector, context, results, seed ) {
+ var match, elem, m, nodeType,
+ // QSA vars
+ i, groups, old, nid, newContext, newSelector;
+
+ if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
+ setDocument( context );
+ }
+
+ context = context || document;
+ results = results || [];
+
+ if ( !selector || typeof selector !== "string" ) {
+ return results;
+ }
+
+ if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
+ return [];
+ }
+
+ if ( documentIsHTML && !seed ) {
+
+ // Shortcuts
+ if ( (match = rquickExpr.exec( selector )) ) {
+ // Speed-up: Sizzle("#ID")
+ if ( (m = match[1]) ) {
+ if ( nodeType === 9 ) {
+ elem = context.getElementById( m );
+ // Check parentNode to catch when Blackberry 4.6 returns
+ // nodes that are no longer in the document #6963
+ if ( elem && elem.parentNode ) {
+ // Handle the case where IE, Opera, and Webkit return items
+ // by name instead of ID
+ if ( elem.id === m ) {
+ results.push( elem );
+ return results;
+ }
+ } else {
+ return results;
+ }
+ } else {
+ // Context is not a document
+ if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
+ contains( context, elem ) && elem.id === m ) {
+ results.push( elem );
+ return results;
+ }
+ }
+
+ // Speed-up: Sizzle("TAG")
+ } else if ( match[2] ) {
+ push.apply( results, context.getElementsByTagName( selector ) );
+ return results;
+
+ // Speed-up: Sizzle(".CLASS")
+ } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
+ push.apply( results, context.getElementsByClassName( m ) );
+ return results;
+ }
+ }
+
+ // QSA path
+ if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
+ nid = old = expando;
+ newContext = context;
+ newSelector = nodeType === 9 && selector;
+
+ // qSA works strangely on Element-rooted queries
+ // We can work around this by specifying an extra ID on the root
+ // and working up from there (Thanks to Andrew Dupont for the technique)
+ // IE 8 doesn't work on object elements
+ if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
+ groups = tokenize( selector );
+
+ if ( (old = context.getAttribute("id")) ) {
+ nid = old.replace( rescape, "\\$&" );
+ } else {
+ context.setAttribute( "id", nid );
+ }
+ nid = "[id='" + nid + "'] ";
+
+ i = groups.length;
+ while ( i-- ) {
+ groups[i] = nid + toSelector( groups[i] );
+ }
+ newContext = rsibling.test( selector ) && context.parentNode || context;
+ newSelector = groups.join(",");
+ }
+
+ if ( newSelector ) {
+ try {
+ push.apply( results,
+ newContext.querySelectorAll( newSelector )
+ );
+ return results;
+ } catch(qsaError) {
+ } finally {
+ if ( !old ) {
+ context.removeAttribute("id");
+ }
+ }
+ }
+ }
+ }
+
+ // All others
+ return select( selector.replace( rtrim, "$1" ), context, results, seed );
+}
+
+/**
+ * Create key-value caches of limited size
+ * @returns {Function(string, Object)} Returns the Object data after storing it on itself with
+ * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
+ * deleting the oldest entry
+ */
+function createCache() {
+ var keys = [];
+
+ function cache( key, value ) {
+ // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
+ if ( keys.push( key += " " ) > Expr.cacheLength ) {
+ // Only keep the most recent entries
+ delete cache[ keys.shift() ];
+ }
+ return (cache[ key ] = value);
+ }
+ return cache;
+}
+
+/**
+ * Mark a function for special use by Sizzle
+ * @param {Function} fn The function to mark
+ */
+function markFunction( fn ) {
+ fn[ expando ] = true;
+ return fn;
+}
+
+/**
+ * Support testing using an element
+ * @param {Function} fn Passed the created div and expects a boolean result
+ */
+function assert( fn ) {
+ var div = document.createElement("div");
+
+ try {
+ return !!fn( div );
+ } catch (e) {
+ return false;
+ } finally {
+ // Remove from its parent by default
+ if ( div.parentNode ) {
+ div.parentNode.removeChild( div );
+ }
+ // release memory in IE
+ div = null;
+ }
+}
+
+/**
+ * Adds the same handler for all of the specified attrs
+ * @param {String} attrs Pipe-separated list of attributes
+ * @param {Function} handler The method that will be applied
+ */
+function addHandle( attrs, handler ) {
+ var arr = attrs.split("|"),
+ i = attrs.length;
+
+ while ( i-- ) {
+ Expr.attrHandle[ arr[i] ] = handler;
+ }
+}
+
+/**
+ * Checks document order of two siblings
+ * @param {Element} a
+ * @param {Element} b
+ * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
+ */
+function siblingCheck( a, b ) {
+ var cur = b && a,
+ diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
+ ( ~b.sourceIndex || MAX_NEGATIVE ) -
+ ( ~a.sourceIndex || MAX_NEGATIVE );
+
+ // Use IE sourceIndex if available on both nodes
+ if ( diff ) {
+ return diff;
+ }
+
+ // Check if b follows a
+ if ( cur ) {
+ while ( (cur = cur.nextSibling) ) {
+ if ( cur === b ) {
+ return -1;
+ }
+ }
+ }
+
+ return a ? 1 : -1;
+}
+
+/**
+ * Returns a function to use in pseudos for input types
+ * @param {String} type
+ */
+function createInputPseudo( type ) {
+ return function( elem ) {
+ var name = elem.nodeName.toLowerCase();
+ return name === "input" && elem.type === type;
+ };
+}
+
+/**
+ * Returns a function to use in pseudos for buttons
+ * @param {String} type
+ */
+function createButtonPseudo( type ) {
+ return function( elem ) {
+ var name = elem.nodeName.toLowerCase();
+ return (name === "input" || name === "button") && elem.type === type;
+ };
+}
+
+/**
+ * Returns a function to use in pseudos for positionals
+ * @param {Function} fn
+ */
+function createPositionalPseudo( fn ) {
+ return markFunction(function( argument ) {
+ argument = +argument;
+ return markFunction(function( seed, matches ) {
+ var j,
+ matchIndexes = fn( [], seed.length, argument ),
+ i = matchIndexes.length;
+
+ // Match elements found at the specified indexes
+ while ( i-- ) {
+ if ( seed[ (j = matchIndexes[i]) ] ) {
+ seed[j] = !(matches[j] = seed[j]);
+ }
+ }
+ });
+ });
+}
+
+/**
+ * Detect xml
+ * @param {Element|Object} elem An element or a document
+ */
+isXML = Sizzle.isXML = function( elem ) {
+ // documentElement is verified for cases where it doesn't yet exist
+ // (such as loading iframes in IE - #4833)
+ var documentElement = elem && (elem.ownerDocument || elem).documentElement;
+ return documentElement ? documentElement.nodeName !== "HTML" : false;
+};
+
+// Expose support vars for convenience
+support = Sizzle.support = {};
+
+/**
+ * Sets document-related variables once based on the current document
+ * @param {Element|Object} [doc] An element or document object to use to set the document
+ * @returns {Object} Returns the current document
+ */
+setDocument = Sizzle.setDocument = function( node ) {
+ var doc = node ? node.ownerDocument || node : preferredDoc,
+ parent = doc.defaultView;
+
+ // If no document and documentElement is available, return
+ if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
+ return document;
+ }
+
+ // Set our document
+ document = doc;
+ docElem = doc.documentElement;
+
+ // Support tests
+ documentIsHTML = !isXML( doc );
+
+ // Support: IE>8
+ // If iframe document is assigned to "document" variable and if iframe has been reloaded,
+ // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
+ // IE6-8 do not support the defaultView property so parent will be undefined
+ if ( parent && parent.attachEvent && parent !== parent.top ) {
+ parent.attachEvent( "onbeforeunload", function() {
+ setDocument();
+ });
+ }
+
+ /* Attributes
+ ---------------------------------------------------------------------- */
+
+ // Support: IE<8
+ // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans)
+ support.attributes = assert(function( div ) {
+ div.className = "i";
+ return !div.getAttribute("className");
+ });
+
+ /* getElement(s)By*
+ ---------------------------------------------------------------------- */
+
+ // Check if getElementsByTagName("*") returns only elements
+ support.getElementsByTagName = assert(function( div ) {
+ div.appendChild( doc.createComment("") );
+ return !div.getElementsByTagName("*").length;
+ });
+
+ // Check if getElementsByClassName can be trusted
+ support.getElementsByClassName = assert(function( div ) {
+ div.innerHTML = "";
+
+ // Support: Safari<4
+ // Catch class over-caching
+ div.firstChild.className = "i";
+ // Support: Opera<10
+ // Catch gEBCN failure to find non-leading classes
+ return div.getElementsByClassName("i").length === 2;
+ });
+
+ // Support: IE<10
+ // Check if getElementById returns elements by name
+ // The broken getElementById methods don't pick up programatically-set names,
+ // so use a roundabout getElementsByName test
+ support.getById = assert(function( div ) {
+ docElem.appendChild( div ).id = expando;
+ return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
+ });
+
+ // ID find and filter
+ if ( support.getById ) {
+ Expr.find["ID"] = function( id, context ) {
+ if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
+ var m = context.getElementById( id );
+ // Check parentNode to catch when Blackberry 4.6 returns
+ // nodes that are no longer in the document #6963
+ return m && m.parentNode ? [m] : [];
+ }
+ };
+ Expr.filter["ID"] = function( id ) {
+ var attrId = id.replace( runescape, funescape );
+ return function( elem ) {
+ return elem.getAttribute("id") === attrId;
+ };
+ };
+ } else {
+ // Support: IE6/7
+ // getElementById is not reliable as a find shortcut
+ delete Expr.find["ID"];
+
+ Expr.filter["ID"] = function( id ) {
+ var attrId = id.replace( runescape, funescape );
+ return function( elem ) {
+ var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
+ return node && node.value === attrId;
+ };
+ };
+ }
+
+ // Tag
+ Expr.find["TAG"] = support.getElementsByTagName ?
+ function( tag, context ) {
+ if ( typeof context.getElementsByTagName !== strundefined ) {
+ return context.getElementsByTagName( tag );
+ }
+ } :
+ function( tag, context ) {
+ var elem,
+ tmp = [],
+ i = 0,
+ results = context.getElementsByTagName( tag );
+
+ // Filter out possible comments
+ if ( tag === "*" ) {
+ while ( (elem = results[i++]) ) {
+ if ( elem.nodeType === 1 ) {
+ tmp.push( elem );
+ }
+ }
+
+ return tmp;
+ }
+ return results;
+ };
+
+ // Class
+ Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
+ if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
+ return context.getElementsByClassName( className );
+ }
+ };
+
+ /* QSA/matchesSelector
+ ---------------------------------------------------------------------- */
+
+ // QSA and matchesSelector support
+
+ // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
+ rbuggyMatches = [];
+
+ // qSa(:focus) reports false when true (Chrome 21)
+ // We allow this because of a bug in IE8/9 that throws an error
+ // whenever `document.activeElement` is accessed on an iframe
+ // So, we allow :focus to pass through QSA all the time to avoid the IE error
+ // See http://bugs.jquery.com/ticket/13378
+ rbuggyQSA = [];
+
+ if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
+ // Build QSA regex
+ // Regex strategy adopted from Diego Perini
+ assert(function( div ) {
+ // Select is set to empty string on purpose
+ // This is to test IE's treatment of not explicitly
+ // setting a boolean content attribute,
+ // since its presence should be enough
+ // http://bugs.jquery.com/ticket/12359
+ div.innerHTML = "";
+
+ // Support: IE8
+ // Boolean attributes and "value" are not treated correctly
+ if ( !div.querySelectorAll("[selected]").length ) {
+ rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
+ }
+
+ // Webkit/Opera - :checked should return selected option elements
+ // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+ // IE8 throws error here and will not see later tests
+ if ( !div.querySelectorAll(":checked").length ) {
+ rbuggyQSA.push(":checked");
+ }
+ });
+
+ assert(function( div ) {
+
+ // Support: Opera 10-12/IE8
+ // ^= $= *= and empty values
+ // Should not select anything
+ // Support: Windows 8 Native Apps
+ // The type attribute is restricted during .innerHTML assignment
+ var input = doc.createElement("input");
+ input.setAttribute( "type", "hidden" );
+ div.appendChild( input ).setAttribute( "t", "" );
+
+ if ( div.querySelectorAll("[t^='']").length ) {
+ rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
+ }
+
+ // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
+ // IE8 throws error here and will not see later tests
+ if ( !div.querySelectorAll(":enabled").length ) {
+ rbuggyQSA.push( ":enabled", ":disabled" );
+ }
+
+ // Opera 10-11 does not throw on post-comma invalid pseudos
+ div.querySelectorAll("*,:x");
+ rbuggyQSA.push(",.*:");
+ });
+ }
+
+ if ( (support.matchesSelector = rnative.test( (matches = docElem.webkitMatchesSelector ||
+ docElem.mozMatchesSelector ||
+ docElem.oMatchesSelector ||
+ docElem.msMatchesSelector) )) ) {
+
+ assert(function( div ) {
+ // Check to see if it's possible to do matchesSelector
+ // on a disconnected node (IE 9)
+ support.disconnectedMatch = matches.call( div, "div" );
+
+ // This should fail with an exception
+ // Gecko does not error, returns false instead
+ matches.call( div, "[s!='']:x" );
+ rbuggyMatches.push( "!=", pseudos );
+ });
+ }
+
+ rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
+ rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
+
+ /* Contains
+ ---------------------------------------------------------------------- */
+
+ // Element contains another
+ // Purposefully does not implement inclusive descendent
+ // As in, an element does not contain itself
+ contains = rnative.test( docElem.contains ) || docElem.compareDocumentPosition ?
+ function( a, b ) {
+ var adown = a.nodeType === 9 ? a.documentElement : a,
+ bup = b && b.parentNode;
+ return a === bup || !!( bup && bup.nodeType === 1 && (
+ adown.contains ?
+ adown.contains( bup ) :
+ a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
+ ));
+ } :
+ function( a, b ) {
+ if ( b ) {
+ while ( (b = b.parentNode) ) {
+ if ( b === a ) {
+ return true;
+ }
+ }
+ }
+ return false;
+ };
+
+ /* Sorting
+ ---------------------------------------------------------------------- */
+
+ // Document order sorting
+ sortOrder = docElem.compareDocumentPosition ?
+ function( a, b ) {
+
+ // Flag for duplicate removal
+ if ( a === b ) {
+ hasDuplicate = true;
+ return 0;
+ }
+
+ var compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b );
+
+ if ( compare ) {
+ // Disconnected nodes
+ if ( compare & 1 ||
+ (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
+
+ // Choose the first element that is related to our preferred document
+ if ( a === doc || contains(preferredDoc, a) ) {
+ return -1;
+ }
+ if ( b === doc || contains(preferredDoc, b) ) {
+ return 1;
+ }
+
+ // Maintain original order
+ return sortInput ?
+ ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
+ 0;
+ }
+
+ return compare & 4 ? -1 : 1;
+ }
+
+ // Not directly comparable, sort on existence of method
+ return a.compareDocumentPosition ? -1 : 1;
+ } :
+ function( a, b ) {
+ var cur,
+ i = 0,
+ aup = a.parentNode,
+ bup = b.parentNode,
+ ap = [ a ],
+ bp = [ b ];
+
+ // Exit early if the nodes are identical
+ if ( a === b ) {
+ hasDuplicate = true;
+ return 0;
+
+ // Parentless nodes are either documents or disconnected
+ } else if ( !aup || !bup ) {
+ return a === doc ? -1 :
+ b === doc ? 1 :
+ aup ? -1 :
+ bup ? 1 :
+ sortInput ?
+ ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
+ 0;
+
+ // If the nodes are siblings, we can do a quick check
+ } else if ( aup === bup ) {
+ return siblingCheck( a, b );
+ }
+
+ // Otherwise we need full lists of their ancestors for comparison
+ cur = a;
+ while ( (cur = cur.parentNode) ) {
+ ap.unshift( cur );
+ }
+ cur = b;
+ while ( (cur = cur.parentNode) ) {
+ bp.unshift( cur );
+ }
+
+ // Walk down the tree looking for a discrepancy
+ while ( ap[i] === bp[i] ) {
+ i++;
+ }
+
+ return i ?
+ // Do a sibling check if the nodes have a common ancestor
+ siblingCheck( ap[i], bp[i] ) :
+
+ // Otherwise nodes in our document sort first
+ ap[i] === preferredDoc ? -1 :
+ bp[i] === preferredDoc ? 1 :
+ 0;
+ };
+
+ return doc;
+};
+
+Sizzle.matches = function( expr, elements ) {
+ return Sizzle( expr, null, null, elements );
+};
+
+Sizzle.matchesSelector = function( elem, expr ) {
+ // Set document vars if needed
+ if ( ( elem.ownerDocument || elem ) !== document ) {
+ setDocument( elem );
+ }
+
+ // Make sure that attribute selectors are quoted
+ expr = expr.replace( rattributeQuotes, "='$1']" );
+
+ if ( support.matchesSelector && documentIsHTML &&
+ ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
+ ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
+
+ try {
+ var ret = matches.call( elem, expr );
+
+ // IE 9's matchesSelector returns false on disconnected nodes
+ if ( ret || support.disconnectedMatch ||
+ // As well, disconnected nodes are said to be in a document
+ // fragment in IE 9
+ elem.document && elem.document.nodeType !== 11 ) {
+ return ret;
+ }
+ } catch(e) {}
+ }
+
+ return Sizzle( expr, document, null, [elem] ).length > 0;
+};
+
+Sizzle.contains = function( context, elem ) {
+ // Set document vars if needed
+ if ( ( context.ownerDocument || context ) !== document ) {
+ setDocument( context );
+ }
+ return contains( context, elem );
+};
+
+Sizzle.attr = function( elem, name ) {
+ // Set document vars if needed
+ if ( ( elem.ownerDocument || elem ) !== document ) {
+ setDocument( elem );
+ }
+
+ var fn = Expr.attrHandle[ name.toLowerCase() ],
+ // Don't get fooled by Object.prototype properties (jQuery #13807)
+ val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
+ fn( elem, name, !documentIsHTML ) :
+ undefined;
+
+ return val === undefined ?
+ support.attributes || !documentIsHTML ?
+ elem.getAttribute( name ) :
+ (val = elem.getAttributeNode(name)) && val.specified ?
+ val.value :
+ null :
+ val;
+};
+
+Sizzle.error = function( msg ) {
+ throw new Error( "Syntax error, unrecognized expression: " + msg );
+};
+
+/**
+ * Document sorting and removing duplicates
+ * @param {ArrayLike} results
+ */
+Sizzle.uniqueSort = function( results ) {
+ var elem,
+ duplicates = [],
+ j = 0,
+ i = 0;
+
+ // Unless we *know* we can detect duplicates, assume their presence
+ hasDuplicate = !support.detectDuplicates;
+ sortInput = !support.sortStable && results.slice( 0 );
+ results.sort( sortOrder );
+
+ if ( hasDuplicate ) {
+ while ( (elem = results[i++]) ) {
+ if ( elem === results[ i ] ) {
+ j = duplicates.push( i );
+ }
+ }
+ while ( j-- ) {
+ results.splice( duplicates[ j ], 1 );
+ }
+ }
+
+ return results;
+};
+
+/**
+ * Utility function for retrieving the text value of an array of DOM nodes
+ * @param {Array|Element} elem
+ */
+getText = Sizzle.getText = function( elem ) {
+ var node,
+ ret = "",
+ i = 0,
+ nodeType = elem.nodeType;
+
+ if ( !nodeType ) {
+ // If no nodeType, this is expected to be an array
+ for ( ; (node = elem[i]); i++ ) {
+ // Do not traverse comment nodes
+ ret += getText( node );
+ }
+ } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
+ // Use textContent for elements
+ // innerText usage removed for consistency of new lines (see #11153)
+ if ( typeof elem.textContent === "string" ) {
+ return elem.textContent;
+ } else {
+ // Traverse its children
+ for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+ ret += getText( elem );
+ }
+ }
+ } else if ( nodeType === 3 || nodeType === 4 ) {
+ return elem.nodeValue;
+ }
+ // Do not include comment or processing instruction nodes
+
+ return ret;
+};
+
+Expr = Sizzle.selectors = {
+
+ // Can be adjusted by the user
+ cacheLength: 50,
+
+ createPseudo: markFunction,
+
+ match: matchExpr,
+
+ attrHandle: {},
+
+ find: {},
+
+ relative: {
+ ">": { dir: "parentNode", first: true },
+ " ": { dir: "parentNode" },
+ "+": { dir: "previousSibling", first: true },
+ "~": { dir: "previousSibling" }
+ },
+
+ preFilter: {
+ "ATTR": function( match ) {
+ match[1] = match[1].replace( runescape, funescape );
+
+ // Move the given value to match[3] whether quoted or unquoted
+ match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape );
+
+ if ( match[2] === "~=" ) {
+ match[3] = " " + match[3] + " ";
+ }
+
+ return match.slice( 0, 4 );
+ },
+
+ "CHILD": function( match ) {
+ /* matches from matchExpr["CHILD"]
+ 1 type (only|nth|...)
+ 2 what (child|of-type)
+ 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
+ 4 xn-component of xn+y argument ([+-]?\d*n|)
+ 5 sign of xn-component
+ 6 x of xn-component
+ 7 sign of y-component
+ 8 y of y-component
+ */
+ match[1] = match[1].toLowerCase();
+
+ if ( match[1].slice( 0, 3 ) === "nth" ) {
+ // nth-* requires argument
+ if ( !match[3] ) {
+ Sizzle.error( match[0] );
+ }
+
+ // numeric x and y parameters for Expr.filter.CHILD
+ // remember that false/true cast respectively to 0/1
+ match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
+ match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
+
+ // other types prohibit arguments
+ } else if ( match[3] ) {
+ Sizzle.error( match[0] );
+ }
+
+ return match;
+ },
+
+ "PSEUDO": function( match ) {
+ var excess,
+ unquoted = !match[5] && match[2];
+
+ if ( matchExpr["CHILD"].test( match[0] ) ) {
+ return null;
+ }
+
+ // Accept quoted arguments as-is
+ if ( match[3] && match[4] !== undefined ) {
+ match[2] = match[4];
+
+ // Strip excess characters from unquoted arguments
+ } else if ( unquoted && rpseudo.test( unquoted ) &&
+ // Get excess from tokenize (recursively)
+ (excess = tokenize( unquoted, true )) &&
+ // advance to the next closing parenthesis
+ (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
+
+ // excess is a negative index
+ match[0] = match[0].slice( 0, excess );
+ match[2] = unquoted.slice( 0, excess );
+ }
+
+ // Return only captures needed by the pseudo filter method (type and argument)
+ return match.slice( 0, 3 );
+ }
+ },
+
+ filter: {
+
+ "TAG": function( nodeNameSelector ) {
+ var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
+ return nodeNameSelector === "*" ?
+ function() { return true; } :
+ function( elem ) {
+ return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
+ };
+ },
+
+ "CLASS": function( className ) {
+ var pattern = classCache[ className + " " ];
+
+ return pattern ||
+ (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
+ classCache( className, function( elem ) {
+ return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" );
+ });
+ },
+
+ "ATTR": function( name, operator, check ) {
+ return function( elem ) {
+ var result = Sizzle.attr( elem, name );
+
+ if ( result == null ) {
+ return operator === "!=";
+ }
+ if ( !operator ) {
+ return true;
+ }
+
+ result += "";
+
+ return operator === "=" ? result === check :
+ operator === "!=" ? result !== check :
+ operator === "^=" ? check && result.indexOf( check ) === 0 :
+ operator === "*=" ? check && result.indexOf( check ) > -1 :
+ operator === "$=" ? check && result.slice( -check.length ) === check :
+ operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
+ operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
+ false;
+ };
+ },
+
+ "CHILD": function( type, what, argument, first, last ) {
+ var simple = type.slice( 0, 3 ) !== "nth",
+ forward = type.slice( -4 ) !== "last",
+ ofType = what === "of-type";
+
+ return first === 1 && last === 0 ?
+
+ // Shortcut for :nth-*(n)
+ function( elem ) {
+ return !!elem.parentNode;
+ } :
+
+ function( elem, context, xml ) {
+ var cache, outerCache, node, diff, nodeIndex, start,
+ dir = simple !== forward ? "nextSibling" : "previousSibling",
+ parent = elem.parentNode,
+ name = ofType && elem.nodeName.toLowerCase(),
+ useCache = !xml && !ofType;
+
+ if ( parent ) {
+
+ // :(first|last|only)-(child|of-type)
+ if ( simple ) {
+ while ( dir ) {
+ node = elem;
+ while ( (node = node[ dir ]) ) {
+ if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
+ return false;
+ }
+ }
+ // Reverse direction for :only-* (if we haven't yet done so)
+ start = dir = type === "only" && !start && "nextSibling";
+ }
+ return true;
+ }
+
+ start = [ forward ? parent.firstChild : parent.lastChild ];
+
+ // non-xml :nth-child(...) stores cache data on `parent`
+ if ( forward && useCache ) {
+ // Seek `elem` from a previously-cached index
+ outerCache = parent[ expando ] || (parent[ expando ] = {});
+ cache = outerCache[ type ] || [];
+ nodeIndex = cache[0] === dirruns && cache[1];
+ diff = cache[0] === dirruns && cache[2];
+ node = nodeIndex && parent.childNodes[ nodeIndex ];
+
+ while ( (node = ++nodeIndex && node && node[ dir ] ||
+
+ // Fallback to seeking `elem` from the start
+ (diff = nodeIndex = 0) || start.pop()) ) {
+
+ // When found, cache indexes on `parent` and break
+ if ( node.nodeType === 1 && ++diff && node === elem ) {
+ outerCache[ type ] = [ dirruns, nodeIndex, diff ];
+ break;
+ }
+ }
+
+ // Use previously-cached element index if available
+ } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
+ diff = cache[1];
+
+ // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
+ } else {
+ // Use the same loop as above to seek `elem` from the start
+ while ( (node = ++nodeIndex && node && node[ dir ] ||
+ (diff = nodeIndex = 0) || start.pop()) ) {
+
+ if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
+ // Cache the index of each encountered element
+ if ( useCache ) {
+ (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
+ }
+
+ if ( node === elem ) {
+ break;
+ }
+ }
+ }
+ }
+
+ // Incorporate the offset, then check against cycle size
+ diff -= last;
+ return diff === first || ( diff % first === 0 && diff / first >= 0 );
+ }
+ };
+ },
+
+ "PSEUDO": function( pseudo, argument ) {
+ // pseudo-class names are case-insensitive
+ // http://www.w3.org/TR/selectors/#pseudo-classes
+ // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
+ // Remember that setFilters inherits from pseudos
+ var args,
+ fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
+ Sizzle.error( "unsupported pseudo: " + pseudo );
+
+ // The user may use createPseudo to indicate that
+ // arguments are needed to create the filter function
+ // just as Sizzle does
+ if ( fn[ expando ] ) {
+ return fn( argument );
+ }
+
+ // But maintain support for old signatures
+ if ( fn.length > 1 ) {
+ args = [ pseudo, pseudo, "", argument ];
+ return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
+ markFunction(function( seed, matches ) {
+ var idx,
+ matched = fn( seed, argument ),
+ i = matched.length;
+ while ( i-- ) {
+ idx = indexOf.call( seed, matched[i] );
+ seed[ idx ] = !( matches[ idx ] = matched[i] );
+ }
+ }) :
+ function( elem ) {
+ return fn( elem, 0, args );
+ };
+ }
+
+ return fn;
+ }
+ },
+
+ pseudos: {
+ // Potentially complex pseudos
+ "not": markFunction(function( selector ) {
+ // Trim the selector passed to compile
+ // to avoid treating leading and trailing
+ // spaces as combinators
+ var input = [],
+ results = [],
+ matcher = compile( selector.replace( rtrim, "$1" ) );
+
+ return matcher[ expando ] ?
+ markFunction(function( seed, matches, context, xml ) {
+ var elem,
+ unmatched = matcher( seed, null, xml, [] ),
+ i = seed.length;
+
+ // Match elements unmatched by `matcher`
+ while ( i-- ) {
+ if ( (elem = unmatched[i]) ) {
+ seed[i] = !(matches[i] = elem);
+ }
+ }
+ }) :
+ function( elem, context, xml ) {
+ input[0] = elem;
+ matcher( input, null, xml, results );
+ return !results.pop();
+ };
+ }),
+
+ "has": markFunction(function( selector ) {
+ return function( elem ) {
+ return Sizzle( selector, elem ).length > 0;
+ };
+ }),
+
+ "contains": markFunction(function( text ) {
+ return function( elem ) {
+ return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
+ };
+ }),
+
+ // "Whether an element is represented by a :lang() selector
+ // is based solely on the element's language value
+ // being equal to the identifier C,
+ // or beginning with the identifier C immediately followed by "-".
+ // The matching of C against the element's language value is performed case-insensitively.
+ // The identifier C does not have to be a valid language name."
+ // http://www.w3.org/TR/selectors/#lang-pseudo
+ "lang": markFunction( function( lang ) {
+ // lang value must be a valid identifier
+ if ( !ridentifier.test(lang || "") ) {
+ Sizzle.error( "unsupported lang: " + lang );
+ }
+ lang = lang.replace( runescape, funescape ).toLowerCase();
+ return function( elem ) {
+ var elemLang;
+ do {
+ if ( (elemLang = documentIsHTML ?
+ elem.lang :
+ elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
+
+ elemLang = elemLang.toLowerCase();
+ return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
+ }
+ } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
+ return false;
+ };
+ }),
+
+ // Miscellaneous
+ "target": function( elem ) {
+ var hash = window.location && window.location.hash;
+ return hash && hash.slice( 1 ) === elem.id;
+ },
+
+ "root": function( elem ) {
+ return elem === docElem;
+ },
+
+ "focus": function( elem ) {
+ return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
+ },
+
+ // Boolean properties
+ "enabled": function( elem ) {
+ return elem.disabled === false;
+ },
+
+ "disabled": function( elem ) {
+ return elem.disabled === true;
+ },
+
+ "checked": function( elem ) {
+ // In CSS3, :checked should return both checked and selected elements
+ // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+ var nodeName = elem.nodeName.toLowerCase();
+ return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
+ },
+
+ "selected": function( elem ) {
+ // Accessing this property makes selected-by-default
+ // options in Safari work properly
+ if ( elem.parentNode ) {
+ elem.parentNode.selectedIndex;
+ }
+
+ return elem.selected === true;
+ },
+
+ // Contents
+ "empty": function( elem ) {
+ // http://www.w3.org/TR/selectors/#empty-pseudo
+ // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)),
+ // not comment, processing instructions, or others
+ // Thanks to Diego Perini for the nodeName shortcut
+ // Greater than "@" means alpha characters (specifically not starting with "#" or "?")
+ for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+ if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) {
+ return false;
+ }
+ }
+ return true;
+ },
+
+ "parent": function( elem ) {
+ return !Expr.pseudos["empty"]( elem );
+ },
+
+ // Element/input types
+ "header": function( elem ) {
+ return rheader.test( elem.nodeName );
+ },
+
+ "input": function( elem ) {
+ return rinputs.test( elem.nodeName );
+ },
+
+ "button": function( elem ) {
+ var name = elem.nodeName.toLowerCase();
+ return name === "input" && elem.type === "button" || name === "button";
+ },
+
+ "text": function( elem ) {
+ var attr;
+ // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc)
+ // use getAttribute instead to test this case
+ return elem.nodeName.toLowerCase() === "input" &&
+ elem.type === "text" &&
+ ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type );
+ },
+
+ // Position-in-collection
+ "first": createPositionalPseudo(function() {
+ return [ 0 ];
+ }),
+
+ "last": createPositionalPseudo(function( matchIndexes, length ) {
+ return [ length - 1 ];
+ }),
+
+ "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
+ return [ argument < 0 ? argument + length : argument ];
+ }),
+
+ "even": createPositionalPseudo(function( matchIndexes, length ) {
+ var i = 0;
+ for ( ; i < length; i += 2 ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ }),
+
+ "odd": createPositionalPseudo(function( matchIndexes, length ) {
+ var i = 1;
+ for ( ; i < length; i += 2 ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ }),
+
+ "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
+ var i = argument < 0 ? argument + length : argument;
+ for ( ; --i >= 0; ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ }),
+
+ "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
+ var i = argument < 0 ? argument + length : argument;
+ for ( ; ++i < length; ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ })
+ }
+};
+
+Expr.pseudos["nth"] = Expr.pseudos["eq"];
+
+// Add button/input type pseudos
+for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
+ Expr.pseudos[ i ] = createInputPseudo( i );
+}
+for ( i in { submit: true, reset: true } ) {
+ Expr.pseudos[ i ] = createButtonPseudo( i );
+}
+
+// Easy API for creating new setFilters
+function setFilters() {}
+setFilters.prototype = Expr.filters = Expr.pseudos;
+Expr.setFilters = new setFilters();
+
+function tokenize( selector, parseOnly ) {
+ var matched, match, tokens, type,
+ soFar, groups, preFilters,
+ cached = tokenCache[ selector + " " ];
+
+ if ( cached ) {
+ return parseOnly ? 0 : cached.slice( 0 );
+ }
+
+ soFar = selector;
+ groups = [];
+ preFilters = Expr.preFilter;
+
+ while ( soFar ) {
+
+ // Comma and first run
+ if ( !matched || (match = rcomma.exec( soFar )) ) {
+ if ( match ) {
+ // Don't consume trailing commas as valid
+ soFar = soFar.slice( match[0].length ) || soFar;
+ }
+ groups.push( tokens = [] );
+ }
+
+ matched = false;
+
+ // Combinators
+ if ( (match = rcombinators.exec( soFar )) ) {
+ matched = match.shift();
+ tokens.push({
+ value: matched,
+ // Cast descendant combinators to space
+ type: match[0].replace( rtrim, " " )
+ });
+ soFar = soFar.slice( matched.length );
+ }
+
+ // Filters
+ for ( type in Expr.filter ) {
+ if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
+ (match = preFilters[ type ]( match ))) ) {
+ matched = match.shift();
+ tokens.push({
+ value: matched,
+ type: type,
+ matches: match
+ });
+ soFar = soFar.slice( matched.length );
+ }
+ }
+
+ if ( !matched ) {
+ break;
+ }
+ }
+
+ // Return the length of the invalid excess
+ // if we're just parsing
+ // Otherwise, throw an error or return tokens
+ return parseOnly ?
+ soFar.length :
+ soFar ?
+ Sizzle.error( selector ) :
+ // Cache the tokens
+ tokenCache( selector, groups ).slice( 0 );
+}
+
+function toSelector( tokens ) {
+ var i = 0,
+ len = tokens.length,
+ selector = "";
+ for ( ; i < len; i++ ) {
+ selector += tokens[i].value;
+ }
+ return selector;
+}
+
+function addCombinator( matcher, combinator, base ) {
+ var dir = combinator.dir,
+ checkNonElements = base && dir === "parentNode",
+ doneName = done++;
+
+ return combinator.first ?
+ // Check against closest ancestor/preceding element
+ function( elem, context, xml ) {
+ while ( (elem = elem[ dir ]) ) {
+ if ( elem.nodeType === 1 || checkNonElements ) {
+ return matcher( elem, context, xml );
+ }
+ }
+ } :
+
+ // Check against all ancestor/preceding elements
+ function( elem, context, xml ) {
+ var data, cache, outerCache,
+ dirkey = dirruns + " " + doneName;
+
+ // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
+ if ( xml ) {
+ while ( (elem = elem[ dir ]) ) {
+ if ( elem.nodeType === 1 || checkNonElements ) {
+ if ( matcher( elem, context, xml ) ) {
+ return true;
+ }
+ }
+ }
+ } else {
+ while ( (elem = elem[ dir ]) ) {
+ if ( elem.nodeType === 1 || checkNonElements ) {
+ outerCache = elem[ expando ] || (elem[ expando ] = {});
+ if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) {
+ if ( (data = cache[1]) === true || data === cachedruns ) {
+ return data === true;
+ }
+ } else {
+ cache = outerCache[ dir ] = [ dirkey ];
+ cache[1] = matcher( elem, context, xml ) || cachedruns;
+ if ( cache[1] === true ) {
+ return true;
+ }
+ }
+ }
+ }
+ }
+ };
+}
+
+function elementMatcher( matchers ) {
+ return matchers.length > 1 ?
+ function( elem, context, xml ) {
+ var i = matchers.length;
+ while ( i-- ) {
+ if ( !matchers[i]( elem, context, xml ) ) {
+ return false;
+ }
+ }
+ return true;
+ } :
+ matchers[0];
+}
+
+function condense( unmatched, map, filter, context, xml ) {
+ var elem,
+ newUnmatched = [],
+ i = 0,
+ len = unmatched.length,
+ mapped = map != null;
+
+ for ( ; i < len; i++ ) {
+ if ( (elem = unmatched[i]) ) {
+ if ( !filter || filter( elem, context, xml ) ) {
+ newUnmatched.push( elem );
+ if ( mapped ) {
+ map.push( i );
+ }
+ }
+ }
+ }
+
+ return newUnmatched;
+}
+
+function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
+ if ( postFilter && !postFilter[ expando ] ) {
+ postFilter = setMatcher( postFilter );
+ }
+ if ( postFinder && !postFinder[ expando ] ) {
+ postFinder = setMatcher( postFinder, postSelector );
+ }
+ return markFunction(function( seed, results, context, xml ) {
+ var temp, i, elem,
+ preMap = [],
+ postMap = [],
+ preexisting = results.length,
+
+ // Get initial elements from seed or context
+ elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
+
+ // Prefilter to get matcher input, preserving a map for seed-results synchronization
+ matcherIn = preFilter && ( seed || !selector ) ?
+ condense( elems, preMap, preFilter, context, xml ) :
+ elems,
+
+ matcherOut = matcher ?
+ // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
+ postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
+
+ // ...intermediate processing is necessary
+ [] :
+
+ // ...otherwise use results directly
+ results :
+ matcherIn;
+
+ // Find primary matches
+ if ( matcher ) {
+ matcher( matcherIn, matcherOut, context, xml );
+ }
+
+ // Apply postFilter
+ if ( postFilter ) {
+ temp = condense( matcherOut, postMap );
+ postFilter( temp, [], context, xml );
+
+ // Un-match failing elements by moving them back to matcherIn
+ i = temp.length;
+ while ( i-- ) {
+ if ( (elem = temp[i]) ) {
+ matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
+ }
+ }
+ }
+
+ if ( seed ) {
+ if ( postFinder || preFilter ) {
+ if ( postFinder ) {
+ // Get the final matcherOut by condensing this intermediate into postFinder contexts
+ temp = [];
+ i = matcherOut.length;
+ while ( i-- ) {
+ if ( (elem = matcherOut[i]) ) {
+ // Restore matcherIn since elem is not yet a final match
+ temp.push( (matcherIn[i] = elem) );
+ }
+ }
+ postFinder( null, (matcherOut = []), temp, xml );
+ }
+
+ // Move matched elements from seed to results to keep them synchronized
+ i = matcherOut.length;
+ while ( i-- ) {
+ if ( (elem = matcherOut[i]) &&
+ (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
+
+ seed[temp] = !(results[temp] = elem);
+ }
+ }
+ }
+
+ // Add elements to results, through postFinder if defined
+ } else {
+ matcherOut = condense(
+ matcherOut === results ?
+ matcherOut.splice( preexisting, matcherOut.length ) :
+ matcherOut
+ );
+ if ( postFinder ) {
+ postFinder( null, results, matcherOut, xml );
+ } else {
+ push.apply( results, matcherOut );
+ }
+ }
+ });
+}
+
+function matcherFromTokens( tokens ) {
+ var checkContext, matcher, j,
+ len = tokens.length,
+ leadingRelative = Expr.relative[ tokens[0].type ],
+ implicitRelative = leadingRelative || Expr.relative[" "],
+ i = leadingRelative ? 1 : 0,
+
+ // The foundational matcher ensures that elements are reachable from top-level context(s)
+ matchContext = addCombinator( function( elem ) {
+ return elem === checkContext;
+ }, implicitRelative, true ),
+ matchAnyContext = addCombinator( function( elem ) {
+ return indexOf.call( checkContext, elem ) > -1;
+ }, implicitRelative, true ),
+ matchers = [ function( elem, context, xml ) {
+ return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
+ (checkContext = context).nodeType ?
+ matchContext( elem, context, xml ) :
+ matchAnyContext( elem, context, xml ) );
+ } ];
+
+ for ( ; i < len; i++ ) {
+ if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
+ matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
+ } else {
+ matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
+
+ // Return special upon seeing a positional matcher
+ if ( matcher[ expando ] ) {
+ // Find the next relative operator (if any) for proper handling
+ j = ++i;
+ for ( ; j < len; j++ ) {
+ if ( Expr.relative[ tokens[j].type ] ) {
+ break;
+ }
+ }
+ return setMatcher(
+ i > 1 && elementMatcher( matchers ),
+ i > 1 && toSelector(
+ // If the preceding token was a descendant combinator, insert an implicit any-element `*`
+ tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
+ ).replace( rtrim, "$1" ),
+ matcher,
+ i < j && matcherFromTokens( tokens.slice( i, j ) ),
+ j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
+ j < len && toSelector( tokens )
+ );
+ }
+ matchers.push( matcher );
+ }
+ }
+
+ return elementMatcher( matchers );
+}
+
+function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
+ // A counter to specify which element is currently being matched
+ var matcherCachedRuns = 0,
+ bySet = setMatchers.length > 0,
+ byElement = elementMatchers.length > 0,
+ superMatcher = function( seed, context, xml, results, expandContext ) {
+ var elem, j, matcher,
+ setMatched = [],
+ matchedCount = 0,
+ i = "0",
+ unmatched = seed && [],
+ outermost = expandContext != null,
+ contextBackup = outermostContext,
+ // We must always have either seed elements or context
+ elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ),
+ // Use integer dirruns iff this is the outermost matcher
+ dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1);
+
+ if ( outermost ) {
+ outermostContext = context !== document && context;
+ cachedruns = matcherCachedRuns;
+ }
+
+ // Add elements passing elementMatchers directly to results
+ // Keep `i` a string if there are no elements so `matchedCount` will be "00" below
+ for ( ; (elem = elems[i]) != null; i++ ) {
+ if ( byElement && elem ) {
+ j = 0;
+ while ( (matcher = elementMatchers[j++]) ) {
+ if ( matcher( elem, context, xml ) ) {
+ results.push( elem );
+ break;
+ }
+ }
+ if ( outermost ) {
+ dirruns = dirrunsUnique;
+ cachedruns = ++matcherCachedRuns;
+ }
+ }
+
+ // Track unmatched elements for set filters
+ if ( bySet ) {
+ // They will have gone through all possible matchers
+ if ( (elem = !matcher && elem) ) {
+ matchedCount--;
+ }
+
+ // Lengthen the array for every element, matched or not
+ if ( seed ) {
+ unmatched.push( elem );
+ }
+ }
+ }
+
+ // Apply set filters to unmatched elements
+ matchedCount += i;
+ if ( bySet && i !== matchedCount ) {
+ j = 0;
+ while ( (matcher = setMatchers[j++]) ) {
+ matcher( unmatched, setMatched, context, xml );
+ }
+
+ if ( seed ) {
+ // Reintegrate element matches to eliminate the need for sorting
+ if ( matchedCount > 0 ) {
+ while ( i-- ) {
+ if ( !(unmatched[i] || setMatched[i]) ) {
+ setMatched[i] = pop.call( results );
+ }
+ }
+ }
+
+ // Discard index placeholder values to get only actual matches
+ setMatched = condense( setMatched );
+ }
+
+ // Add matches to results
+ push.apply( results, setMatched );
+
+ // Seedless set matches succeeding multiple successful matchers stipulate sorting
+ if ( outermost && !seed && setMatched.length > 0 &&
+ ( matchedCount + setMatchers.length ) > 1 ) {
+
+ Sizzle.uniqueSort( results );
+ }
+ }
+
+ // Override manipulation of globals by nested matchers
+ if ( outermost ) {
+ dirruns = dirrunsUnique;
+ outermostContext = contextBackup;
+ }
+
+ return unmatched;
+ };
+
+ return bySet ?
+ markFunction( superMatcher ) :
+ superMatcher;
+}
+
+compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
+ var i,
+ setMatchers = [],
+ elementMatchers = [],
+ cached = compilerCache[ selector + " " ];
+
+ if ( !cached ) {
+ // Generate a function of recursive functions that can be used to check each element
+ if ( !group ) {
+ group = tokenize( selector );
+ }
+ i = group.length;
+ while ( i-- ) {
+ cached = matcherFromTokens( group[i] );
+ if ( cached[ expando ] ) {
+ setMatchers.push( cached );
+ } else {
+ elementMatchers.push( cached );
+ }
+ }
+
+ // Cache the compiled function
+ cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
+ }
+ return cached;
+};
+
+function multipleContexts( selector, contexts, results ) {
+ var i = 0,
+ len = contexts.length;
+ for ( ; i < len; i++ ) {
+ Sizzle( selector, contexts[i], results );
+ }
+ return results;
+}
+
+function select( selector, context, results, seed ) {
+ var i, tokens, token, type, find,
+ match = tokenize( selector );
+
+ if ( !seed ) {
+ // Try to minimize operations if there is only one group
+ if ( match.length === 1 ) {
+
+ // Take a shortcut and set the context if the root selector is an ID
+ tokens = match[0] = match[0].slice( 0 );
+ if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
+ support.getById && context.nodeType === 9 && documentIsHTML &&
+ Expr.relative[ tokens[1].type ] ) {
+
+ context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
+ if ( !context ) {
+ return results;
+ }
+ selector = selector.slice( tokens.shift().value.length );
+ }
+
+ // Fetch a seed set for right-to-left matching
+ i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
+ while ( i-- ) {
+ token = tokens[i];
+
+ // Abort if we hit a combinator
+ if ( Expr.relative[ (type = token.type) ] ) {
+ break;
+ }
+ if ( (find = Expr.find[ type ]) ) {
+ // Search, expanding context for leading sibling combinators
+ if ( (seed = find(
+ token.matches[0].replace( runescape, funescape ),
+ rsibling.test( tokens[0].type ) && context.parentNode || context
+ )) ) {
+
+ // If seed is empty or no tokens remain, we can return early
+ tokens.splice( i, 1 );
+ selector = seed.length && toSelector( tokens );
+ if ( !selector ) {
+ push.apply( results, seed );
+ return results;
+ }
+
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ // Compile and execute a filtering function
+ // Provide `match` to avoid retokenization if we modified the selector above
+ compile( selector, match )(
+ seed,
+ context,
+ !documentIsHTML,
+ results,
+ rsibling.test( selector )
+ );
+ return results;
+}
+
+// One-time assignments
+
+// Sort stability
+support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
+
+// Support: Chrome<14
+// Always assume duplicates if they aren't passed to the comparison function
+support.detectDuplicates = hasDuplicate;
+
+// Initialize against the default document
+setDocument();
+
+// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
+// Detached nodes confoundingly follow *each other*
+support.sortDetached = assert(function( div1 ) {
+ // Should return 1, but returns 4 (following)
+ return div1.compareDocumentPosition( document.createElement("div") ) & 1;
+});
+
+// Support: IE<8
+// Prevent attribute/property "interpolation"
+// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
+if ( !assert(function( div ) {
+ div.innerHTML = "";
+ return div.firstChild.getAttribute("href") === "#" ;
+}) ) {
+ addHandle( "type|href|height|width", function( elem, name, isXML ) {
+ if ( !isXML ) {
+ return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
+ }
+ });
+}
+
+// Support: IE<9
+// Use defaultValue in place of getAttribute("value")
+if ( !support.attributes || !assert(function( div ) {
+ div.innerHTML = "";
+ div.firstChild.setAttribute( "value", "" );
+ return div.firstChild.getAttribute( "value" ) === "";
+}) ) {
+ addHandle( "value", function( elem, name, isXML ) {
+ if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
+ return elem.defaultValue;
+ }
+ });
+}
+
+// Support: IE<9
+// Use getAttributeNode to fetch booleans when getAttribute lies
+if ( !assert(function( div ) {
+ return div.getAttribute("disabled") == null;
+}) ) {
+ addHandle( booleans, function( elem, name, isXML ) {
+ var val;
+ if ( !isXML ) {
+ return (val = elem.getAttributeNode( name )) && val.specified ?
+ val.value :
+ elem[ name ] === true ? name.toLowerCase() : null;
+ }
+ });
+}
+
+jQuery.find = Sizzle;
+jQuery.expr = Sizzle.selectors;
+jQuery.expr[":"] = jQuery.expr.pseudos;
+jQuery.unique = Sizzle.uniqueSort;
+jQuery.text = Sizzle.getText;
+jQuery.isXMLDoc = Sizzle.isXML;
+jQuery.contains = Sizzle.contains;
+
+
+})( window );
+// String to Object options format cache
+var optionsCache = {};
+
+// Convert String-formatted options into Object-formatted ones and store in cache
+function createOptions( options ) {
+ var object = optionsCache[ options ] = {};
+ jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) {
+ object[ flag ] = true;
+ });
+ return object;
+}
+
+/*
+ * Create a callback list using the following parameters:
+ *
+ * options: an optional list of space-separated options that will change how
+ * the callback list behaves or a more traditional option object
+ *
+ * By default a callback list will act like an event callback list and can be
+ * "fired" multiple times.
+ *
+ * Possible options:
+ *
+ * once: will ensure the callback list can only be fired once (like a Deferred)
+ *
+ * memory: will keep track of previous values and will call any callback added
+ * after the list has been fired right away with the latest "memorized"
+ * values (like a Deferred)
+ *
+ * unique: will ensure a callback can only be added once (no duplicate in the list)
+ *
+ * stopOnFalse: interrupt callings when a callback returns false
+ *
+ */
+jQuery.Callbacks = function( options ) {
+
+ // Convert options from String-formatted to Object-formatted if needed
+ // (we check in cache first)
+ options = typeof options === "string" ?
+ ( optionsCache[ options ] || createOptions( options ) ) :
+ jQuery.extend( {}, options );
+
+ var // Flag to know if list is currently firing
+ firing,
+ // Last fire value (for non-forgettable lists)
+ memory,
+ // Flag to know if list was already fired
+ fired,
+ // End of the loop when firing
+ firingLength,
+ // Index of currently firing callback (modified by remove if needed)
+ firingIndex,
+ // First callback to fire (used internally by add and fireWith)
+ firingStart,
+ // Actual callback list
+ list = [],
+ // Stack of fire calls for repeatable lists
+ stack = !options.once && [],
+ // Fire callbacks
+ fire = function( data ) {
+ memory = options.memory && data;
+ fired = true;
+ firingIndex = firingStart || 0;
+ firingStart = 0;
+ firingLength = list.length;
+ firing = true;
+ for ( ; list && firingIndex < firingLength; firingIndex++ ) {
+ if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
+ memory = false; // To prevent further calls using add
+ break;
+ }
+ }
+ firing = false;
+ if ( list ) {
+ if ( stack ) {
+ if ( stack.length ) {
+ fire( stack.shift() );
+ }
+ } else if ( memory ) {
+ list = [];
+ } else {
+ self.disable();
+ }
+ }
+ },
+ // Actual Callbacks object
+ self = {
+ // Add a callback or a collection of callbacks to the list
+ add: function() {
+ if ( list ) {
+ // First, we save the current length
+ var start = list.length;
+ (function add( args ) {
+ jQuery.each( args, function( _, arg ) {
+ var type = jQuery.type( arg );
+ if ( type === "function" ) {
+ if ( !options.unique || !self.has( arg ) ) {
+ list.push( arg );
+ }
+ } else if ( arg && arg.length && type !== "string" ) {
+ // Inspect recursively
+ add( arg );
+ }
+ });
+ })( arguments );
+ // Do we need to add the callbacks to the
+ // current firing batch?
+ if ( firing ) {
+ firingLength = list.length;
+ // With memory, if we're not firing then
+ // we should call right away
+ } else if ( memory ) {
+ firingStart = start;
+ fire( memory );
+ }
+ }
+ return this;
+ },
+ // Remove a callback from the list
+ remove: function() {
+ if ( list ) {
+ jQuery.each( arguments, function( _, arg ) {
+ var index;
+ while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
+ list.splice( index, 1 );
+ // Handle firing indexes
+ if ( firing ) {
+ if ( index <= firingLength ) {
+ firingLength--;
+ }
+ if ( index <= firingIndex ) {
+ firingIndex--;
+ }
+ }
+ }
+ });
+ }
+ return this;
+ },
+ // Check if a given callback is in the list.
+ // If no argument is given, return whether or not list has callbacks attached.
+ has: function( fn ) {
+ return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
+ },
+ // Remove all callbacks from the list
+ empty: function() {
+ list = [];
+ firingLength = 0;
+ return this;
+ },
+ // Have the list do nothing anymore
+ disable: function() {
+ list = stack = memory = undefined;
+ return this;
+ },
+ // Is it disabled?
+ disabled: function() {
+ return !list;
+ },
+ // Lock the list in its current state
+ lock: function() {
+ stack = undefined;
+ if ( !memory ) {
+ self.disable();
+ }
+ return this;
+ },
+ // Is it locked?
+ locked: function() {
+ return !stack;
+ },
+ // Call all callbacks with the given context and arguments
+ fireWith: function( context, args ) {
+ if ( list && ( !fired || stack ) ) {
+ args = args || [];
+ args = [ context, args.slice ? args.slice() : args ];
+ if ( firing ) {
+ stack.push( args );
+ } else {
+ fire( args );
+ }
+ }
+ return this;
+ },
+ // Call all the callbacks with the given arguments
+ fire: function() {
+ self.fireWith( this, arguments );
+ return this;
+ },
+ // To know if the callbacks have already been called at least once
+ fired: function() {
+ return !!fired;
+ }
+ };
+
+ return self;
+};
+jQuery.extend({
+
+ Deferred: function( func ) {
+ var tuples = [
+ // action, add listener, listener list, final state
+ [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
+ [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
+ [ "notify", "progress", jQuery.Callbacks("memory") ]
+ ],
+ state = "pending",
+ promise = {
+ state: function() {
+ return state;
+ },
+ always: function() {
+ deferred.done( arguments ).fail( arguments );
+ return this;
+ },
+ then: function( /* fnDone, fnFail, fnProgress */ ) {
+ var fns = arguments;
+ return jQuery.Deferred(function( newDefer ) {
+ jQuery.each( tuples, function( i, tuple ) {
+ var action = tuple[ 0 ],
+ fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
+ // deferred[ done | fail | progress ] for forwarding actions to newDefer
+ deferred[ tuple[1] ](function() {
+ var returned = fn && fn.apply( this, arguments );
+ if ( returned && jQuery.isFunction( returned.promise ) ) {
+ returned.promise()
+ .done( newDefer.resolve )
+ .fail( newDefer.reject )
+ .progress( newDefer.notify );
+ } else {
+ newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
+ }
+ });
+ });
+ fns = null;
+ }).promise();
+ },
+ // Get a promise for this deferred
+ // If obj is provided, the promise aspect is added to the object
+ promise: function( obj ) {
+ return obj != null ? jQuery.extend( obj, promise ) : promise;
+ }
+ },
+ deferred = {};
+
+ // Keep pipe for back-compat
+ promise.pipe = promise.then;
+
+ // Add list-specific methods
+ jQuery.each( tuples, function( i, tuple ) {
+ var list = tuple[ 2 ],
+ stateString = tuple[ 3 ];
+
+ // promise[ done | fail | progress ] = list.add
+ promise[ tuple[1] ] = list.add;
+
+ // Handle state
+ if ( stateString ) {
+ list.add(function() {
+ // state = [ resolved | rejected ]
+ state = stateString;
+
+ // [ reject_list | resolve_list ].disable; progress_list.lock
+ }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
+ }
+
+ // deferred[ resolve | reject | notify ]
+ deferred[ tuple[0] ] = function() {
+ deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
+ return this;
+ };
+ deferred[ tuple[0] + "With" ] = list.fireWith;
+ });
+
+ // Make the deferred a promise
+ promise.promise( deferred );
+
+ // Call given func if any
+ if ( func ) {
+ func.call( deferred, deferred );
+ }
+
+ // All done!
+ return deferred;
+ },
+
+ // Deferred helper
+ when: function( subordinate /* , ..., subordinateN */ ) {
+ var i = 0,
+ resolveValues = core_slice.call( arguments ),
+ length = resolveValues.length,
+
+ // the count of uncompleted subordinates
+ remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
+
+ // the master Deferred. If resolveValues consist of only a single Deferred, just use that.
+ deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
+
+ // Update function for both resolve and progress values
+ updateFunc = function( i, contexts, values ) {
+ return function( value ) {
+ contexts[ i ] = this;
+ values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value;
+ if( values === progressValues ) {
+ deferred.notifyWith( contexts, values );
+ } else if ( !( --remaining ) ) {
+ deferred.resolveWith( contexts, values );
+ }
+ };
+ },
+
+ progressValues, progressContexts, resolveContexts;
+
+ // add listeners to Deferred subordinates; treat others as resolved
+ if ( length > 1 ) {
+ progressValues = new Array( length );
+ progressContexts = new Array( length );
+ resolveContexts = new Array( length );
+ for ( ; i < length; i++ ) {
+ if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
+ resolveValues[ i ].promise()
+ .done( updateFunc( i, resolveContexts, resolveValues ) )
+ .fail( deferred.reject )
+ .progress( updateFunc( i, progressContexts, progressValues ) );
+ } else {
+ --remaining;
+ }
+ }
+ }
+
+ // if we're not waiting on anything, resolve the master
+ if ( !remaining ) {
+ deferred.resolveWith( resolveContexts, resolveValues );
+ }
+
+ return deferred.promise();
+ }
+});
+jQuery.support = (function( support ) {
+
+ var all, a, input, select, fragment, opt, eventName, isSupported, i,
+ div = document.createElement("div");
+
+ // Setup
+ div.setAttribute( "className", "t" );
+ div.innerHTML = "
a";
+
+ // Finish early in limited (non-browser) environments
+ all = div.getElementsByTagName("*") || [];
+ a = div.getElementsByTagName("a")[ 0 ];
+ if ( !a || !a.style || !all.length ) {
+ return support;
+ }
+
+ // First batch of tests
+ select = document.createElement("select");
+ opt = select.appendChild( document.createElement("option") );
+ input = div.getElementsByTagName("input")[ 0 ];
+
+ a.style.cssText = "top:1px;float:left;opacity:.5";
+
+ // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
+ support.getSetAttribute = div.className !== "t";
+
+ // IE strips leading whitespace when .innerHTML is used
+ support.leadingWhitespace = div.firstChild.nodeType === 3;
+
+ // Make sure that tbody elements aren't automatically inserted
+ // IE will insert them into empty tables
+ support.tbody = !div.getElementsByTagName("tbody").length;
+
+ // Make sure that link elements get serialized correctly by innerHTML
+ // This requires a wrapper element in IE
+ support.htmlSerialize = !!div.getElementsByTagName("link").length;
+
+ // Get the style information from getAttribute
+ // (IE uses .cssText instead)
+ support.style = /top/.test( a.getAttribute("style") );
+
+ // Make sure that URLs aren't manipulated
+ // (IE normalizes it by default)
+ support.hrefNormalized = a.getAttribute("href") === "/a";
+
+ // Make sure that element opacity exists
+ // (IE uses filter instead)
+ // Use a regex to work around a WebKit issue. See #5145
+ support.opacity = /^0.5/.test( a.style.opacity );
+
+ // Verify style float existence
+ // (IE uses styleFloat instead of cssFloat)
+ support.cssFloat = !!a.style.cssFloat;
+
+ // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere)
+ support.checkOn = !!input.value;
+
+ // Make sure that a selected-by-default option has a working selected property.
+ // (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
+ support.optSelected = opt.selected;
+
+ // Tests for enctype support on a form (#6743)
+ support.enctype = !!document.createElement("form").enctype;
+
+ // Makes sure cloning an html5 element does not cause problems
+ // Where outerHTML is undefined, this still works
+ support.html5Clone = document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>";
+
+ // Will be defined later
+ support.inlineBlockNeedsLayout = false;
+ support.shrinkWrapBlocks = false;
+ support.pixelPosition = false;
+ support.deleteExpando = true;
+ support.noCloneEvent = true;
+ support.reliableMarginRight = true;
+ support.boxSizingReliable = true;
+
+ // Make sure checked status is properly cloned
+ input.checked = true;
+ support.noCloneChecked = input.cloneNode( true ).checked;
+
+ // Make sure that the options inside disabled selects aren't marked as disabled
+ // (WebKit marks them as disabled)
+ select.disabled = true;
+ support.optDisabled = !opt.disabled;
+
+ // Support: IE<9
+ try {
+ delete div.test;
+ } catch( e ) {
+ support.deleteExpando = false;
+ }
+
+ // Check if we can trust getAttribute("value")
+ input = document.createElement("input");
+ input.setAttribute( "value", "" );
+ support.input = input.getAttribute( "value" ) === "";
+
+ // Check if an input maintains its value after becoming a radio
+ input.value = "t";
+ input.setAttribute( "type", "radio" );
+ support.radioValue = input.value === "t";
+
+ // #11217 - WebKit loses check when the name is after the checked attribute
+ input.setAttribute( "checked", "t" );
+ input.setAttribute( "name", "t" );
+
+ fragment = document.createDocumentFragment();
+ fragment.appendChild( input );
+
+ // Check if a disconnected checkbox will retain its checked
+ // value of true after appended to the DOM (IE6/7)
+ support.appendChecked = input.checked;
+
+ // WebKit doesn't clone checked state correctly in fragments
+ support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;
+
+ // Support: IE<9
+ // Opera does not clone events (and typeof div.attachEvent === undefined).
+ // IE9-10 clones events bound via attachEvent, but they don't trigger with .click()
+ if ( div.attachEvent ) {
+ div.attachEvent( "onclick", function() {
+ support.noCloneEvent = false;
+ });
+
+ div.cloneNode( true ).click();
+ }
+
+ // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event)
+ // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)
+ for ( i in { submit: true, change: true, focusin: true }) {
+ div.setAttribute( eventName = "on" + i, "t" );
+
+ support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false;
+ }
+
+ div.style.backgroundClip = "content-box";
+ div.cloneNode( true ).style.backgroundClip = "";
+ support.clearCloneStyle = div.style.backgroundClip === "content-box";
+
+ // Support: IE<9
+ // Iteration over object's inherited properties before its own.
+ for ( i in jQuery( support ) ) {
+ break;
+ }
+ support.ownLast = i !== "0";
+
+ // Run tests that need a body at doc ready
+ jQuery(function() {
+ var container, marginDiv, tds,
+ divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",
+ body = document.getElementsByTagName("body")[0];
+
+ if ( !body ) {
+ // Return for frameset docs that don't have a body
+ return;
+ }
+
+ container = document.createElement("div");
+ container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px";
+
+ body.appendChild( container ).appendChild( div );
+
+ // Support: IE8
+ // Check if table cells still have offsetWidth/Height when they are set
+ // to display:none and there are still other visible table cells in a
+ // table row; if so, offsetWidth/Height are not reliable for use when
+ // determining if an element has been hidden directly using
+ // display:none (it is still safe to use offsets if a parent element is
+ // hidden; don safety goggles and see bug #4512 for more information).
+ div.innerHTML = "
t
";
+ tds = div.getElementsByTagName("td");
+ tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none";
+ isSupported = ( tds[ 0 ].offsetHeight === 0 );
+
+ tds[ 0 ].style.display = "";
+ tds[ 1 ].style.display = "none";
+
+ // Support: IE8
+ // Check if empty table cells still have offsetWidth/Height
+ support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );
+
+ // Check box-sizing and margin behavior.
+ div.innerHTML = "";
+ div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;";
+
+ // Workaround failing boxSizing test due to offsetWidth returning wrong value
+ // with some non-1 values of body zoom, ticket #13543
+ jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() {
+ support.boxSizing = div.offsetWidth === 4;
+ });
+
+ // Use window.getComputedStyle because jsdom on node.js will break without it.
+ if ( window.getComputedStyle ) {
+ support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
+ support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";
+
+ // Check if div with explicit width and no margin-right incorrectly
+ // gets computed margin-right based on width of container. (#3333)
+ // Fails in WebKit before Feb 2011 nightlies
+ // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
+ marginDiv = div.appendChild( document.createElement("div") );
+ marginDiv.style.cssText = div.style.cssText = divReset;
+ marginDiv.style.marginRight = marginDiv.style.width = "0";
+ div.style.width = "1px";
+
+ support.reliableMarginRight =
+ !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight );
+ }
+
+ if ( typeof div.style.zoom !== core_strundefined ) {
+ // Support: IE<8
+ // Check if natively block-level elements act like inline-block
+ // elements when setting their display to 'inline' and giving
+ // them layout
+ div.innerHTML = "";
+ div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1";
+ support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 );
+
+ // Support: IE6
+ // Check if elements with layout shrink-wrap their children
+ div.style.display = "block";
+ div.innerHTML = "";
+ div.firstChild.style.width = "5px";
+ support.shrinkWrapBlocks = ( div.offsetWidth !== 3 );
+
+ if ( support.inlineBlockNeedsLayout ) {
+ // Prevent IE 6 from affecting layout for positioned elements #11048
+ // Prevent IE from shrinking the body in IE 7 mode #12869
+ // Support: IE<8
+ body.style.zoom = 1;
+ }
+ }
+
+ body.removeChild( container );
+
+ // Null elements to avoid leaks in IE
+ container = div = tds = marginDiv = null;
+ });
+
+ // Null elements to avoid leaks in IE
+ all = select = fragment = opt = a = input = null;
+
+ return support;
+})({});
+
+var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/,
+ rmultiDash = /([A-Z])/g;
+
+function internalData( elem, name, data, pvt /* Internal Use Only */ ){
+ if ( !jQuery.acceptData( elem ) ) {
+ return;
+ }
+
+ var ret, thisCache,
+ internalKey = jQuery.expando,
+
+ // We have to handle DOM nodes and JS objects differently because IE6-7
+ // can't GC object references properly across the DOM-JS boundary
+ isNode = elem.nodeType,
+
+ // Only DOM nodes need the global jQuery cache; JS object data is
+ // attached directly to the object so GC can occur automatically
+ cache = isNode ? jQuery.cache : elem,
+
+ // Only defining an ID for JS objects if its cache already exists allows
+ // the code to shortcut on the same path as a DOM node with no cache
+ id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;
+
+ // Avoid doing any more work than we need to when trying to get data on an
+ // object that has no data at all
+ if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) {
+ return;
+ }
+
+ if ( !id ) {
+ // Only DOM nodes need a new unique ID for each element since their data
+ // ends up in the global cache
+ if ( isNode ) {
+ id = elem[ internalKey ] = core_deletedIds.pop() || jQuery.guid++;
+ } else {
+ id = internalKey;
+ }
+ }
+
+ if ( !cache[ id ] ) {
+ // Avoid exposing jQuery metadata on plain JS objects when the object
+ // is serialized using JSON.stringify
+ cache[ id ] = isNode ? {} : { toJSON: jQuery.noop };
+ }
+
+ // An object can be passed to jQuery.data instead of a key/value pair; this gets
+ // shallow copied over onto the existing cache
+ if ( typeof name === "object" || typeof name === "function" ) {
+ if ( pvt ) {
+ cache[ id ] = jQuery.extend( cache[ id ], name );
+ } else {
+ cache[ id ].data = jQuery.extend( cache[ id ].data, name );
+ }
+ }
+
+ thisCache = cache[ id ];
+
+ // jQuery data() is stored in a separate object inside the object's internal data
+ // cache in order to avoid key collisions between internal data and user-defined
+ // data.
+ if ( !pvt ) {
+ if ( !thisCache.data ) {
+ thisCache.data = {};
+ }
+
+ thisCache = thisCache.data;
+ }
+
+ if ( data !== undefined ) {
+ thisCache[ jQuery.camelCase( name ) ] = data;
+ }
+
+ // Check for both converted-to-camel and non-converted data property names
+ // If a data property was specified
+ if ( typeof name === "string" ) {
+
+ // First Try to find as-is property data
+ ret = thisCache[ name ];
+
+ // Test for null|undefined property data
+ if ( ret == null ) {
+
+ // Try to find the camelCased property
+ ret = thisCache[ jQuery.camelCase( name ) ];
+ }
+ } else {
+ ret = thisCache;
+ }
+
+ return ret;
+}
+
+function internalRemoveData( elem, name, pvt ) {
+ if ( !jQuery.acceptData( elem ) ) {
+ return;
+ }
+
+ var thisCache, i,
+ isNode = elem.nodeType,
+
+ // See jQuery.data for more information
+ cache = isNode ? jQuery.cache : elem,
+ id = isNode ? elem[ jQuery.expando ] : jQuery.expando;
+
+ // If there is already no cache entry for this object, there is no
+ // purpose in continuing
+ if ( !cache[ id ] ) {
+ return;
+ }
+
+ if ( name ) {
+
+ thisCache = pvt ? cache[ id ] : cache[ id ].data;
+
+ if ( thisCache ) {
+
+ // Support array or space separated string names for data keys
+ if ( !jQuery.isArray( name ) ) {
+
+ // try the string as a key before any manipulation
+ if ( name in thisCache ) {
+ name = [ name ];
+ } else {
+
+ // split the camel cased version by spaces unless a key with the spaces exists
+ name = jQuery.camelCase( name );
+ if ( name in thisCache ) {
+ name = [ name ];
+ } else {
+ name = name.split(" ");
+ }
+ }
+ } else {
+ // If "name" is an array of keys...
+ // When data is initially created, via ("key", "val") signature,
+ // keys will be converted to camelCase.
+ // Since there is no way to tell _how_ a key was added, remove
+ // both plain key and camelCase key. #12786
+ // This will only penalize the array argument path.
+ name = name.concat( jQuery.map( name, jQuery.camelCase ) );
+ }
+
+ i = name.length;
+ while ( i-- ) {
+ delete thisCache[ name[i] ];
+ }
+
+ // If there is no data left in the cache, we want to continue
+ // and let the cache object itself get destroyed
+ if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {
+ return;
+ }
+ }
+ }
+
+ // See jQuery.data for more information
+ if ( !pvt ) {
+ delete cache[ id ].data;
+
+ // Don't destroy the parent cache unless the internal data object
+ // had been the only thing left in it
+ if ( !isEmptyDataObject( cache[ id ] ) ) {
+ return;
+ }
+ }
+
+ // Destroy the cache
+ if ( isNode ) {
+ jQuery.cleanData( [ elem ], true );
+
+ // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)
+ /* jshint eqeqeq: false */
+ } else if ( jQuery.support.deleteExpando || cache != cache.window ) {
+ /* jshint eqeqeq: true */
+ delete cache[ id ];
+
+ // When all else fails, null
+ } else {
+ cache[ id ] = null;
+ }
+}
+
+jQuery.extend({
+ cache: {},
+
+ // The following elements throw uncatchable exceptions if you
+ // attempt to add expando properties to them.
+ noData: {
+ "applet": true,
+ "embed": true,
+ // Ban all objects except for Flash (which handle expandos)
+ "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
+ },
+
+ hasData: function( elem ) {
+ elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
+ return !!elem && !isEmptyDataObject( elem );
+ },
+
+ data: function( elem, name, data ) {
+ return internalData( elem, name, data );
+ },
+
+ removeData: function( elem, name ) {
+ return internalRemoveData( elem, name );
+ },
+
+ // For internal use only.
+ _data: function( elem, name, data ) {
+ return internalData( elem, name, data, true );
+ },
+
+ _removeData: function( elem, name ) {
+ return internalRemoveData( elem, name, true );
+ },
+
+ // A method for determining if a DOM node can handle the data expando
+ acceptData: function( elem ) {
+ // Do not set data on non-element because it will not be cleared (#8335).
+ if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) {
+ return false;
+ }
+
+ var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];
+
+ // nodes accept data unless otherwise specified; rejection can be conditional
+ return !noData || noData !== true && elem.getAttribute("classid") === noData;
+ }
+});
+
+jQuery.fn.extend({
+ data: function( key, value ) {
+ var attrs, name,
+ data = null,
+ i = 0,
+ elem = this[0];
+
+ // Special expections of .data basically thwart jQuery.access,
+ // so implement the relevant behavior ourselves
+
+ // Gets all values
+ if ( key === undefined ) {
+ if ( this.length ) {
+ data = jQuery.data( elem );
+
+ if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) {
+ attrs = elem.attributes;
+ for ( ; i < attrs.length; i++ ) {
+ name = attrs[i].name;
+
+ if ( name.indexOf("data-") === 0 ) {
+ name = jQuery.camelCase( name.slice(5) );
+
+ dataAttr( elem, name, data[ name ] );
+ }
+ }
+ jQuery._data( elem, "parsedAttrs", true );
+ }
+ }
+
+ return data;
+ }
+
+ // Sets multiple values
+ if ( typeof key === "object" ) {
+ return this.each(function() {
+ jQuery.data( this, key );
+ });
+ }
+
+ return arguments.length > 1 ?
+
+ // Sets one value
+ this.each(function() {
+ jQuery.data( this, key, value );
+ }) :
+
+ // Gets one value
+ // Try to fetch any internally stored data first
+ elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null;
+ },
+
+ removeData: function( key ) {
+ return this.each(function() {
+ jQuery.removeData( this, key );
+ });
+ }
+});
+
+function dataAttr( elem, key, data ) {
+ // If nothing was found internally, try to fetch any
+ // data from the HTML5 data-* attribute
+ if ( data === undefined && elem.nodeType === 1 ) {
+
+ var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
+
+ data = elem.getAttribute( name );
+
+ if ( typeof data === "string" ) {
+ try {
+ data = data === "true" ? true :
+ data === "false" ? false :
+ data === "null" ? null :
+ // Only convert to a number if it doesn't change the string
+ +data + "" === data ? +data :
+ rbrace.test( data ) ? jQuery.parseJSON( data ) :
+ data;
+ } catch( e ) {}
+
+ // Make sure we set the data so it isn't changed later
+ jQuery.data( elem, key, data );
+
+ } else {
+ data = undefined;
+ }
+ }
+
+ return data;
+}
+
+// checks a cache object for emptiness
+function isEmptyDataObject( obj ) {
+ var name;
+ for ( name in obj ) {
+
+ // if the public data object is empty, the private is still empty
+ if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
+ continue;
+ }
+ if ( name !== "toJSON" ) {
+ return false;
+ }
+ }
+
+ return true;
+}
+jQuery.extend({
+ queue: function( elem, type, data ) {
+ var queue;
+
+ if ( elem ) {
+ type = ( type || "fx" ) + "queue";
+ queue = jQuery._data( elem, type );
+
+ // Speed up dequeue by getting out quickly if this is just a lookup
+ if ( data ) {
+ if ( !queue || jQuery.isArray(data) ) {
+ queue = jQuery._data( elem, type, jQuery.makeArray(data) );
+ } else {
+ queue.push( data );
+ }
+ }
+ return queue || [];
+ }
+ },
+
+ dequeue: function( elem, type ) {
+ type = type || "fx";
+
+ var queue = jQuery.queue( elem, type ),
+ startLength = queue.length,
+ fn = queue.shift(),
+ hooks = jQuery._queueHooks( elem, type ),
+ next = function() {
+ jQuery.dequeue( elem, type );
+ };
+
+ // If the fx queue is dequeued, always remove the progress sentinel
+ if ( fn === "inprogress" ) {
+ fn = queue.shift();
+ startLength--;
+ }
+
+ if ( fn ) {
+
+ // Add a progress sentinel to prevent the fx queue from being
+ // automatically dequeued
+ if ( type === "fx" ) {
+ queue.unshift( "inprogress" );
+ }
+
+ // clear up the last queue stop function
+ delete hooks.stop;
+ fn.call( elem, next, hooks );
+ }
+
+ if ( !startLength && hooks ) {
+ hooks.empty.fire();
+ }
+ },
+
+ // not intended for public consumption - generates a queueHooks object, or returns the current one
+ _queueHooks: function( elem, type ) {
+ var key = type + "queueHooks";
+ return jQuery._data( elem, key ) || jQuery._data( elem, key, {
+ empty: jQuery.Callbacks("once memory").add(function() {
+ jQuery._removeData( elem, type + "queue" );
+ jQuery._removeData( elem, key );
+ })
+ });
+ }
+});
+
+jQuery.fn.extend({
+ queue: function( type, data ) {
+ var setter = 2;
+
+ if ( typeof type !== "string" ) {
+ data = type;
+ type = "fx";
+ setter--;
+ }
+
+ if ( arguments.length < setter ) {
+ return jQuery.queue( this[0], type );
+ }
+
+ return data === undefined ?
+ this :
+ this.each(function() {
+ var queue = jQuery.queue( this, type, data );
+
+ // ensure a hooks for this queue
+ jQuery._queueHooks( this, type );
+
+ if ( type === "fx" && queue[0] !== "inprogress" ) {
+ jQuery.dequeue( this, type );
+ }
+ });
+ },
+ dequeue: function( type ) {
+ return this.each(function() {
+ jQuery.dequeue( this, type );
+ });
+ },
+ // Based off of the plugin by Clint Helfers, with permission.
+ // http://blindsignals.com/index.php/2009/07/jquery-delay/
+ delay: function( time, type ) {
+ time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
+ type = type || "fx";
+
+ return this.queue( type, function( next, hooks ) {
+ var timeout = setTimeout( next, time );
+ hooks.stop = function() {
+ clearTimeout( timeout );
+ };
+ });
+ },
+ clearQueue: function( type ) {
+ return this.queue( type || "fx", [] );
+ },
+ // Get a promise resolved when queues of a certain type
+ // are emptied (fx is the type by default)
+ promise: function( type, obj ) {
+ var tmp,
+ count = 1,
+ defer = jQuery.Deferred(),
+ elements = this,
+ i = this.length,
+ resolve = function() {
+ if ( !( --count ) ) {
+ defer.resolveWith( elements, [ elements ] );
+ }
+ };
+
+ if ( typeof type !== "string" ) {
+ obj = type;
+ type = undefined;
+ }
+ type = type || "fx";
+
+ while( i-- ) {
+ tmp = jQuery._data( elements[ i ], type + "queueHooks" );
+ if ( tmp && tmp.empty ) {
+ count++;
+ tmp.empty.add( resolve );
+ }
+ }
+ resolve();
+ return defer.promise( obj );
+ }
+});
+var nodeHook, boolHook,
+ rclass = /[\t\r\n\f]/g,
+ rreturn = /\r/g,
+ rfocusable = /^(?:input|select|textarea|button|object)$/i,
+ rclickable = /^(?:a|area)$/i,
+ ruseDefault = /^(?:checked|selected)$/i,
+ getSetAttribute = jQuery.support.getSetAttribute,
+ getSetInput = jQuery.support.input;
+
+jQuery.fn.extend({
+ attr: function( name, value ) {
+ return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 );
+ },
+
+ removeAttr: function( name ) {
+ return this.each(function() {
+ jQuery.removeAttr( this, name );
+ });
+ },
+
+ prop: function( name, value ) {
+ return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 );
+ },
+
+ removeProp: function( name ) {
+ name = jQuery.propFix[ name ] || name;
+ return this.each(function() {
+ // try/catch handles cases where IE balks (such as removing a property on window)
+ try {
+ this[ name ] = undefined;
+ delete this[ name ];
+ } catch( e ) {}
+ });
+ },
+
+ addClass: function( value ) {
+ var classes, elem, cur, clazz, j,
+ i = 0,
+ len = this.length,
+ proceed = typeof value === "string" && value;
+
+ if ( jQuery.isFunction( value ) ) {
+ return this.each(function( j ) {
+ jQuery( this ).addClass( value.call( this, j, this.className ) );
+ });
+ }
+
+ if ( proceed ) {
+ // The disjunction here is for better compressibility (see removeClass)
+ classes = ( value || "" ).match( core_rnotwhite ) || [];
+
+ for ( ; i < len; i++ ) {
+ elem = this[ i ];
+ cur = elem.nodeType === 1 && ( elem.className ?
+ ( " " + elem.className + " " ).replace( rclass, " " ) :
+ " "
+ );
+
+ if ( cur ) {
+ j = 0;
+ while ( (clazz = classes[j++]) ) {
+ if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
+ cur += clazz + " ";
+ }
+ }
+ elem.className = jQuery.trim( cur );
+
+ }
+ }
+ }
+
+ return this;
+ },
+
+ removeClass: function( value ) {
+ var classes, elem, cur, clazz, j,
+ i = 0,
+ len = this.length,
+ proceed = arguments.length === 0 || typeof value === "string" && value;
+
+ if ( jQuery.isFunction( value ) ) {
+ return this.each(function( j ) {
+ jQuery( this ).removeClass( value.call( this, j, this.className ) );
+ });
+ }
+ if ( proceed ) {
+ classes = ( value || "" ).match( core_rnotwhite ) || [];
+
+ for ( ; i < len; i++ ) {
+ elem = this[ i ];
+ // This expression is here for better compressibility (see addClass)
+ cur = elem.nodeType === 1 && ( elem.className ?
+ ( " " + elem.className + " " ).replace( rclass, " " ) :
+ ""
+ );
+
+ if ( cur ) {
+ j = 0;
+ while ( (clazz = classes[j++]) ) {
+ // Remove *all* instances
+ while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
+ cur = cur.replace( " " + clazz + " ", " " );
+ }
+ }
+ elem.className = value ? jQuery.trim( cur ) : "";
+ }
+ }
+ }
+
+ return this;
+ },
+
+ toggleClass: function( value, stateVal ) {
+ var type = typeof value;
+
+ if ( typeof stateVal === "boolean" && type === "string" ) {
+ return stateVal ? this.addClass( value ) : this.removeClass( value );
+ }
+
+ if ( jQuery.isFunction( value ) ) {
+ return this.each(function( i ) {
+ jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
+ });
+ }
+
+ return this.each(function() {
+ if ( type === "string" ) {
+ // toggle individual class names
+ var className,
+ i = 0,
+ self = jQuery( this ),
+ classNames = value.match( core_rnotwhite ) || [];
+
+ while ( (className = classNames[ i++ ]) ) {
+ // check each className given, space separated list
+ if ( self.hasClass( className ) ) {
+ self.removeClass( className );
+ } else {
+ self.addClass( className );
+ }
+ }
+
+ // Toggle whole class name
+ } else if ( type === core_strundefined || type === "boolean" ) {
+ if ( this.className ) {
+ // store className if set
+ jQuery._data( this, "__className__", this.className );
+ }
+
+ // If the element has a class name or if we're passed "false",
+ // then remove the whole classname (if there was one, the above saved it).
+ // Otherwise bring back whatever was previously saved (if anything),
+ // falling back to the empty string if nothing was stored.
+ this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
+ }
+ });
+ },
+
+ hasClass: function( selector ) {
+ var className = " " + selector + " ",
+ i = 0,
+ l = this.length;
+ for ( ; i < l; i++ ) {
+ if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
+ return true;
+ }
+ }
+
+ return false;
+ },
+
+ val: function( value ) {
+ var ret, hooks, isFunction,
+ elem = this[0];
+
+ if ( !arguments.length ) {
+ if ( elem ) {
+ hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
+
+ if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
+ return ret;
+ }
+
+ ret = elem.value;
+
+ return typeof ret === "string" ?
+ // handle most common string cases
+ ret.replace(rreturn, "") :
+ // handle cases where value is null/undef or number
+ ret == null ? "" : ret;
+ }
+
+ return;
+ }
+
+ isFunction = jQuery.isFunction( value );
+
+ return this.each(function( i ) {
+ var val;
+
+ if ( this.nodeType !== 1 ) {
+ return;
+ }
+
+ if ( isFunction ) {
+ val = value.call( this, i, jQuery( this ).val() );
+ } else {
+ val = value;
+ }
+
+ // Treat null/undefined as ""; convert numbers to string
+ if ( val == null ) {
+ val = "";
+ } else if ( typeof val === "number" ) {
+ val += "";
+ } else if ( jQuery.isArray( val ) ) {
+ val = jQuery.map(val, function ( value ) {
+ return value == null ? "" : value + "";
+ });
+ }
+
+ hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
+
+ // If set returns undefined, fall back to normal setting
+ if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
+ this.value = val;
+ }
+ });
+ }
+});
+
+jQuery.extend({
+ valHooks: {
+ option: {
+ get: function( elem ) {
+ // Use proper attribute retrieval(#6932, #12072)
+ var val = jQuery.find.attr( elem, "value" );
+ return val != null ?
+ val :
+ elem.text;
+ }
+ },
+ select: {
+ get: function( elem ) {
+ var value, option,
+ options = elem.options,
+ index = elem.selectedIndex,
+ one = elem.type === "select-one" || index < 0,
+ values = one ? null : [],
+ max = one ? index + 1 : options.length,
+ i = index < 0 ?
+ max :
+ one ? index : 0;
+
+ // Loop through all the selected options
+ for ( ; i < max; i++ ) {
+ option = options[ i ];
+
+ // oldIE doesn't update selected after form reset (#2551)
+ if ( ( option.selected || i === index ) &&
+ // Don't return options that are disabled or in a disabled optgroup
+ ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&
+ ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
+
+ // Get the specific value for the option
+ value = jQuery( option ).val();
+
+ // We don't need an array for one selects
+ if ( one ) {
+ return value;
+ }
+
+ // Multi-Selects return an array
+ values.push( value );
+ }
+ }
+
+ return values;
+ },
+
+ set: function( elem, value ) {
+ var optionSet, option,
+ options = elem.options,
+ values = jQuery.makeArray( value ),
+ i = options.length;
+
+ while ( i-- ) {
+ option = options[ i ];
+ if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) {
+ optionSet = true;
+ }
+ }
+
+ // force browsers to behave consistently when non-matching value is set
+ if ( !optionSet ) {
+ elem.selectedIndex = -1;
+ }
+ return values;
+ }
+ }
+ },
+
+ attr: function( elem, name, value ) {
+ var hooks, ret,
+ nType = elem.nodeType;
+
+ // don't get/set attributes on text, comment and attribute nodes
+ if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
+ return;
+ }
+
+ // Fallback to prop when attributes are not supported
+ if ( typeof elem.getAttribute === core_strundefined ) {
+ return jQuery.prop( elem, name, value );
+ }
+
+ // All attributes are lowercase
+ // Grab necessary hook if one is defined
+ if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
+ name = name.toLowerCase();
+ hooks = jQuery.attrHooks[ name ] ||
+ ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
+ }
+
+ if ( value !== undefined ) {
+
+ if ( value === null ) {
+ jQuery.removeAttr( elem, name );
+
+ } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
+ return ret;
+
+ } else {
+ elem.setAttribute( name, value + "" );
+ return value;
+ }
+
+ } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
+ return ret;
+
+ } else {
+ ret = jQuery.find.attr( elem, name );
+
+ // Non-existent attributes return null, we normalize to undefined
+ return ret == null ?
+ undefined :
+ ret;
+ }
+ },
+
+ removeAttr: function( elem, value ) {
+ var name, propName,
+ i = 0,
+ attrNames = value && value.match( core_rnotwhite );
+
+ if ( attrNames && elem.nodeType === 1 ) {
+ while ( (name = attrNames[i++]) ) {
+ propName = jQuery.propFix[ name ] || name;
+
+ // Boolean attributes get special treatment (#10870)
+ if ( jQuery.expr.match.bool.test( name ) ) {
+ // Set corresponding property to false
+ if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
+ elem[ propName ] = false;
+ // Support: IE<9
+ // Also clear defaultChecked/defaultSelected (if appropriate)
+ } else {
+ elem[ jQuery.camelCase( "default-" + name ) ] =
+ elem[ propName ] = false;
+ }
+
+ // See #9699 for explanation of this approach (setting first, then removal)
+ } else {
+ jQuery.attr( elem, name, "" );
+ }
+
+ elem.removeAttribute( getSetAttribute ? name : propName );
+ }
+ }
+ },
+
+ attrHooks: {
+ type: {
+ set: function( elem, value ) {
+ if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
+ // Setting the type on a radio button after the value resets the value in IE6-9
+ // Reset value to default in case type is set after value during creation
+ var val = elem.value;
+ elem.setAttribute( "type", value );
+ if ( val ) {
+ elem.value = val;
+ }
+ return value;
+ }
+ }
+ }
+ },
+
+ propFix: {
+ "for": "htmlFor",
+ "class": "className"
+ },
+
+ prop: function( elem, name, value ) {
+ var ret, hooks, notxml,
+ nType = elem.nodeType;
+
+ // don't get/set properties on text, comment and attribute nodes
+ if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
+ return;
+ }
+
+ notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
+
+ if ( notxml ) {
+ // Fix name and attach hooks
+ name = jQuery.propFix[ name ] || name;
+ hooks = jQuery.propHooks[ name ];
+ }
+
+ if ( value !== undefined ) {
+ return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
+ ret :
+ ( elem[ name ] = value );
+
+ } else {
+ return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
+ ret :
+ elem[ name ];
+ }
+ },
+
+ propHooks: {
+ tabIndex: {
+ get: function( elem ) {
+ // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
+ // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
+ // Use proper attribute retrieval(#12072)
+ var tabindex = jQuery.find.attr( elem, "tabindex" );
+
+ return tabindex ?
+ parseInt( tabindex, 10 ) :
+ rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
+ 0 :
+ -1;
+ }
+ }
+ }
+});
+
+// Hooks for boolean attributes
+boolHook = {
+ set: function( elem, value, name ) {
+ if ( value === false ) {
+ // Remove boolean attributes when set to false
+ jQuery.removeAttr( elem, name );
+ } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
+ // IE<8 needs the *property* name
+ elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );
+
+ // Use defaultChecked and defaultSelected for oldIE
+ } else {
+ elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true;
+ }
+
+ return name;
+ }
+};
+jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
+ var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr;
+
+ jQuery.expr.attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?
+ function( elem, name, isXML ) {
+ var fn = jQuery.expr.attrHandle[ name ],
+ ret = isXML ?
+ undefined :
+ /* jshint eqeqeq: false */
+ (jQuery.expr.attrHandle[ name ] = undefined) !=
+ getter( elem, name, isXML ) ?
+
+ name.toLowerCase() :
+ null;
+ jQuery.expr.attrHandle[ name ] = fn;
+ return ret;
+ } :
+ function( elem, name, isXML ) {
+ return isXML ?
+ undefined :
+ elem[ jQuery.camelCase( "default-" + name ) ] ?
+ name.toLowerCase() :
+ null;
+ };
+});
+
+// fix oldIE attroperties
+if ( !getSetInput || !getSetAttribute ) {
+ jQuery.attrHooks.value = {
+ set: function( elem, value, name ) {
+ if ( jQuery.nodeName( elem, "input" ) ) {
+ // Does not return so that setAttribute is also used
+ elem.defaultValue = value;
+ } else {
+ // Use nodeHook if defined (#1954); otherwise setAttribute is fine
+ return nodeHook && nodeHook.set( elem, value, name );
+ }
+ }
+ };
+}
+
+// IE6/7 do not support getting/setting some attributes with get/setAttribute
+if ( !getSetAttribute ) {
+
+ // Use this for any attribute in IE6/7
+ // This fixes almost every IE6/7 issue
+ nodeHook = {
+ set: function( elem, value, name ) {
+ // Set the existing or create a new attribute node
+ var ret = elem.getAttributeNode( name );
+ if ( !ret ) {
+ elem.setAttributeNode(
+ (ret = elem.ownerDocument.createAttribute( name ))
+ );
+ }
+
+ ret.value = value += "";
+
+ // Break association with cloned elements by also using setAttribute (#9646)
+ return name === "value" || value === elem.getAttribute( name ) ?
+ value :
+ undefined;
+ }
+ };
+ jQuery.expr.attrHandle.id = jQuery.expr.attrHandle.name = jQuery.expr.attrHandle.coords =
+ // Some attributes are constructed with empty-string values when not defined
+ function( elem, name, isXML ) {
+ var ret;
+ return isXML ?
+ undefined :
+ (ret = elem.getAttributeNode( name )) && ret.value !== "" ?
+ ret.value :
+ null;
+ };
+ jQuery.valHooks.button = {
+ get: function( elem, name ) {
+ var ret = elem.getAttributeNode( name );
+ return ret && ret.specified ?
+ ret.value :
+ undefined;
+ },
+ set: nodeHook.set
+ };
+
+ // Set contenteditable to false on removals(#10429)
+ // Setting to empty string throws an error as an invalid value
+ jQuery.attrHooks.contenteditable = {
+ set: function( elem, value, name ) {
+ nodeHook.set( elem, value === "" ? false : value, name );
+ }
+ };
+
+ // Set width and height to auto instead of 0 on empty string( Bug #8150 )
+ // This is for removals
+ jQuery.each([ "width", "height" ], function( i, name ) {
+ jQuery.attrHooks[ name ] = {
+ set: function( elem, value ) {
+ if ( value === "" ) {
+ elem.setAttribute( name, "auto" );
+ return value;
+ }
+ }
+ };
+ });
+}
+
+
+// Some attributes require a special call on IE
+// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
+if ( !jQuery.support.hrefNormalized ) {
+ // href/src property should get the full normalized URL (#10299/#12915)
+ jQuery.each([ "href", "src" ], function( i, name ) {
+ jQuery.propHooks[ name ] = {
+ get: function( elem ) {
+ return elem.getAttribute( name, 4 );
+ }
+ };
+ });
+}
+
+if ( !jQuery.support.style ) {
+ jQuery.attrHooks.style = {
+ get: function( elem ) {
+ // Return undefined in the case of empty string
+ // Note: IE uppercases css property names, but if we were to .toLowerCase()
+ // .cssText, that would destroy case senstitivity in URL's, like in "background"
+ return elem.style.cssText || undefined;
+ },
+ set: function( elem, value ) {
+ return ( elem.style.cssText = value + "" );
+ }
+ };
+}
+
+// Safari mis-reports the default selected property of an option
+// Accessing the parent's selectedIndex property fixes it
+if ( !jQuery.support.optSelected ) {
+ jQuery.propHooks.selected = {
+ get: function( elem ) {
+ var parent = elem.parentNode;
+
+ if ( parent ) {
+ parent.selectedIndex;
+
+ // Make sure that it also works with optgroups, see #5701
+ if ( parent.parentNode ) {
+ parent.parentNode.selectedIndex;
+ }
+ }
+ return null;
+ }
+ };
+}
+
+jQuery.each([
+ "tabIndex",
+ "readOnly",
+ "maxLength",
+ "cellSpacing",
+ "cellPadding",
+ "rowSpan",
+ "colSpan",
+ "useMap",
+ "frameBorder",
+ "contentEditable"
+], function() {
+ jQuery.propFix[ this.toLowerCase() ] = this;
+});
+
+// IE6/7 call enctype encoding
+if ( !jQuery.support.enctype ) {
+ jQuery.propFix.enctype = "encoding";
+}
+
+// Radios and checkboxes getter/setter
+jQuery.each([ "radio", "checkbox" ], function() {
+ jQuery.valHooks[ this ] = {
+ set: function( elem, value ) {
+ if ( jQuery.isArray( value ) ) {
+ return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
+ }
+ }
+ };
+ if ( !jQuery.support.checkOn ) {
+ jQuery.valHooks[ this ].get = function( elem ) {
+ // Support: Webkit
+ // "" is returned instead of "on" if a value isn't specified
+ return elem.getAttribute("value") === null ? "on" : elem.value;
+ };
+ }
+});
+var rformElems = /^(?:input|select|textarea)$/i,
+ rkeyEvent = /^key/,
+ rmouseEvent = /^(?:mouse|contextmenu)|click/,
+ rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
+ rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
+
+function returnTrue() {
+ return true;
+}
+
+function returnFalse() {
+ return false;
+}
+
+function safeActiveElement() {
+ try {
+ return document.activeElement;
+ } catch ( err ) { }
+}
+
+/*
+ * Helper functions for managing events -- not part of the public interface.
+ * Props to Dean Edwards' addEvent library for many of the ideas.
+ */
+jQuery.event = {
+
+ global: {},
+
+ add: function( elem, types, handler, data, selector ) {
+ var tmp, events, t, handleObjIn,
+ special, eventHandle, handleObj,
+ handlers, type, namespaces, origType,
+ elemData = jQuery._data( elem );
+
+ // Don't attach events to noData or text/comment nodes (but allow plain objects)
+ if ( !elemData ) {
+ return;
+ }
+
+ // Caller can pass in an object of custom data in lieu of the handler
+ if ( handler.handler ) {
+ handleObjIn = handler;
+ handler = handleObjIn.handler;
+ selector = handleObjIn.selector;
+ }
+
+ // Make sure that the handler has a unique ID, used to find/remove it later
+ if ( !handler.guid ) {
+ handler.guid = jQuery.guid++;
+ }
+
+ // Init the element's event structure and main handler, if this is the first
+ if ( !(events = elemData.events) ) {
+ events = elemData.events = {};
+ }
+ if ( !(eventHandle = elemData.handle) ) {
+ eventHandle = elemData.handle = function( e ) {
+ // Discard the second event of a jQuery.event.trigger() and
+ // when an event is called after a page has unloaded
+ return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ?
+ jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
+ undefined;
+ };
+ // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events
+ eventHandle.elem = elem;
+ }
+
+ // Handle multiple events separated by a space
+ types = ( types || "" ).match( core_rnotwhite ) || [""];
+ t = types.length;
+ while ( t-- ) {
+ tmp = rtypenamespace.exec( types[t] ) || [];
+ type = origType = tmp[1];
+ namespaces = ( tmp[2] || "" ).split( "." ).sort();
+
+ // There *must* be a type, no attaching namespace-only handlers
+ if ( !type ) {
+ continue;
+ }
+
+ // If event changes its type, use the special event handlers for the changed type
+ special = jQuery.event.special[ type ] || {};
+
+ // If selector defined, determine special event api type, otherwise given type
+ type = ( selector ? special.delegateType : special.bindType ) || type;
+
+ // Update special based on newly reset type
+ special = jQuery.event.special[ type ] || {};
+
+ // handleObj is passed to all event handlers
+ handleObj = jQuery.extend({
+ type: type,
+ origType: origType,
+ data: data,
+ handler: handler,
+ guid: handler.guid,
+ selector: selector,
+ needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
+ namespace: namespaces.join(".")
+ }, handleObjIn );
+
+ // Init the event handler queue if we're the first
+ if ( !(handlers = events[ type ]) ) {
+ handlers = events[ type ] = [];
+ handlers.delegateCount = 0;
+
+ // Only use addEventListener/attachEvent if the special events handler returns false
+ if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
+ // Bind the global event handler to the element
+ if ( elem.addEventListener ) {
+ elem.addEventListener( type, eventHandle, false );
+
+ } else if ( elem.attachEvent ) {
+ elem.attachEvent( "on" + type, eventHandle );
+ }
+ }
+ }
+
+ if ( special.add ) {
+ special.add.call( elem, handleObj );
+
+ if ( !handleObj.handler.guid ) {
+ handleObj.handler.guid = handler.guid;
+ }
+ }
+
+ // Add to the element's handler list, delegates in front
+ if ( selector ) {
+ handlers.splice( handlers.delegateCount++, 0, handleObj );
+ } else {
+ handlers.push( handleObj );
+ }
+
+ // Keep track of which events have ever been used, for event optimization
+ jQuery.event.global[ type ] = true;
+ }
+
+ // Nullify elem to prevent memory leaks in IE
+ elem = null;
+ },
+
+ // Detach an event or set of events from an element
+ remove: function( elem, types, handler, selector, mappedTypes ) {
+ var j, handleObj, tmp,
+ origCount, t, events,
+ special, handlers, type,
+ namespaces, origType,
+ elemData = jQuery.hasData( elem ) && jQuery._data( elem );
+
+ if ( !elemData || !(events = elemData.events) ) {
+ return;
+ }
+
+ // Once for each type.namespace in types; type may be omitted
+ types = ( types || "" ).match( core_rnotwhite ) || [""];
+ t = types.length;
+ while ( t-- ) {
+ tmp = rtypenamespace.exec( types[t] ) || [];
+ type = origType = tmp[1];
+ namespaces = ( tmp[2] || "" ).split( "." ).sort();
+
+ // Unbind all events (on this namespace, if provided) for the element
+ if ( !type ) {
+ for ( type in events ) {
+ jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
+ }
+ continue;
+ }
+
+ special = jQuery.event.special[ type ] || {};
+ type = ( selector ? special.delegateType : special.bindType ) || type;
+ handlers = events[ type ] || [];
+ tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
+
+ // Remove matching events
+ origCount = j = handlers.length;
+ while ( j-- ) {
+ handleObj = handlers[ j ];
+
+ if ( ( mappedTypes || origType === handleObj.origType ) &&
+ ( !handler || handler.guid === handleObj.guid ) &&
+ ( !tmp || tmp.test( handleObj.namespace ) ) &&
+ ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
+ handlers.splice( j, 1 );
+
+ if ( handleObj.selector ) {
+ handlers.delegateCount--;
+ }
+ if ( special.remove ) {
+ special.remove.call( elem, handleObj );
+ }
+ }
+ }
+
+ // Remove generic event handler if we removed something and no more handlers exist
+ // (avoids potential for endless recursion during removal of special event handlers)
+ if ( origCount && !handlers.length ) {
+ if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
+ jQuery.removeEvent( elem, type, elemData.handle );
+ }
+
+ delete events[ type ];
+ }
+ }
+
+ // Remove the expando if it's no longer used
+ if ( jQuery.isEmptyObject( events ) ) {
+ delete elemData.handle;
+
+ // removeData also checks for emptiness and clears the expando if empty
+ // so use it instead of delete
+ jQuery._removeData( elem, "events" );
+ }
+ },
+
+ trigger: function( event, data, elem, onlyHandlers ) {
+ var handle, ontype, cur,
+ bubbleType, special, tmp, i,
+ eventPath = [ elem || document ],
+ type = core_hasOwn.call( event, "type" ) ? event.type : event,
+ namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
+
+ cur = tmp = elem = elem || document;
+
+ // Don't do events on text and comment nodes
+ if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
+ return;
+ }
+
+ // focus/blur morphs to focusin/out; ensure we're not firing them right now
+ if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
+ return;
+ }
+
+ if ( type.indexOf(".") >= 0 ) {
+ // Namespaced trigger; create a regexp to match event type in handle()
+ namespaces = type.split(".");
+ type = namespaces.shift();
+ namespaces.sort();
+ }
+ ontype = type.indexOf(":") < 0 && "on" + type;
+
+ // Caller can pass in a jQuery.Event object, Object, or just an event type string
+ event = event[ jQuery.expando ] ?
+ event :
+ new jQuery.Event( type, typeof event === "object" && event );
+
+ // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
+ event.isTrigger = onlyHandlers ? 2 : 3;
+ event.namespace = namespaces.join(".");
+ event.namespace_re = event.namespace ?
+ new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
+ null;
+
+ // Clean up the event in case it is being reused
+ event.result = undefined;
+ if ( !event.target ) {
+ event.target = elem;
+ }
+
+ // Clone any incoming data and prepend the event, creating the handler arg list
+ data = data == null ?
+ [ event ] :
+ jQuery.makeArray( data, [ event ] );
+
+ // Allow special events to draw outside the lines
+ special = jQuery.event.special[ type ] || {};
+ if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
+ return;
+ }
+
+ // Determine event propagation path in advance, per W3C events spec (#9951)
+ // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
+ if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
+
+ bubbleType = special.delegateType || type;
+ if ( !rfocusMorph.test( bubbleType + type ) ) {
+ cur = cur.parentNode;
+ }
+ for ( ; cur; cur = cur.parentNode ) {
+ eventPath.push( cur );
+ tmp = cur;
+ }
+
+ // Only add window if we got to document (e.g., not plain obj or detached DOM)
+ if ( tmp === (elem.ownerDocument || document) ) {
+ eventPath.push( tmp.defaultView || tmp.parentWindow || window );
+ }
+ }
+
+ // Fire handlers on the event path
+ i = 0;
+ while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
+
+ event.type = i > 1 ?
+ bubbleType :
+ special.bindType || type;
+
+ // jQuery handler
+ handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" );
+ if ( handle ) {
+ handle.apply( cur, data );
+ }
+
+ // Native handler
+ handle = ontype && cur[ ontype ];
+ if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) {
+ event.preventDefault();
+ }
+ }
+ event.type = type;
+
+ // If nobody prevented the default action, do it now
+ if ( !onlyHandlers && !event.isDefaultPrevented() ) {
+
+ if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
+ jQuery.acceptData( elem ) ) {
+
+ // Call a native DOM method on the target with the same name name as the event.
+ // Can't use an .isFunction() check here because IE6/7 fails that test.
+ // Don't do default actions on window, that's where global variables be (#6170)
+ if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {
+
+ // Don't re-trigger an onFOO event when we call its FOO() method
+ tmp = elem[ ontype ];
+
+ if ( tmp ) {
+ elem[ ontype ] = null;
+ }
+
+ // Prevent re-triggering of the same event, since we already bubbled it above
+ jQuery.event.triggered = type;
+ try {
+ elem[ type ]();
+ } catch ( e ) {
+ // IE<9 dies on focus/blur to hidden element (#1486,#12518)
+ // only reproducible on winXP IE8 native, not IE9 in IE8 mode
+ }
+ jQuery.event.triggered = undefined;
+
+ if ( tmp ) {
+ elem[ ontype ] = tmp;
+ }
+ }
+ }
+ }
+
+ return event.result;
+ },
+
+ dispatch: function( event ) {
+
+ // Make a writable jQuery.Event from the native event object
+ event = jQuery.event.fix( event );
+
+ var i, ret, handleObj, matched, j,
+ handlerQueue = [],
+ args = core_slice.call( arguments ),
+ handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [],
+ special = jQuery.event.special[ event.type ] || {};
+
+ // Use the fix-ed jQuery.Event rather than the (read-only) native event
+ args[0] = event;
+ event.delegateTarget = this;
+
+ // Call the preDispatch hook for the mapped type, and let it bail if desired
+ if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
+ return;
+ }
+
+ // Determine handlers
+ handlerQueue = jQuery.event.handlers.call( this, event, handlers );
+
+ // Run delegates first; they may want to stop propagation beneath us
+ i = 0;
+ while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
+ event.currentTarget = matched.elem;
+
+ j = 0;
+ while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
+
+ // Triggered event must either 1) have no namespace, or
+ // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
+ if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
+
+ event.handleObj = handleObj;
+ event.data = handleObj.data;
+
+ ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
+ .apply( matched.elem, args );
+
+ if ( ret !== undefined ) {
+ if ( (event.result = ret) === false ) {
+ event.preventDefault();
+ event.stopPropagation();
+ }
+ }
+ }
+ }
+ }
+
+ // Call the postDispatch hook for the mapped type
+ if ( special.postDispatch ) {
+ special.postDispatch.call( this, event );
+ }
+
+ return event.result;
+ },
+
+ handlers: function( event, handlers ) {
+ var sel, handleObj, matches, i,
+ handlerQueue = [],
+ delegateCount = handlers.delegateCount,
+ cur = event.target;
+
+ // Find delegate handlers
+ // Black-hole SVG