This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "contact": { | |
| "first_name": "Jane", | |
| "last_name": "Doe", | |
| "middle_name": "Margret", | |
| "prefix": "Mrs", | |
| "suffix": "Jr", | |
| "nickname": "Alice", | |
| "first_name_phonetic": "Jain", | |
| "last_name_phonetic": "Doh", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax on | |
| set t_Co=256 | |
| colors twilight256 | |
| let mapleader="`" | |
| sy on | |
| set nocompatible " choose no compatibility with legacy vi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyMath | |
| def add(n1, n2) | |
| n1 + n2 | |
| end | |
| def subtract(n1, n2) | |
| n1 - n2 | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Sub view for similar jobs | |
| * | |
| * @package JobDomain_Module | |
| * @copyright This page is copyright (C) 2000-2009 by Sittercity, Inc. | |
| * All rights reserved. | |
| * All Sittercity source code is CONFIDENTIAL and | |
| * not for distribution or unauthorized use. | |
| * For license information contact Sittercity, Inc. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SitterCity | |
| 10.1.0.41 mutt mutt.sittercity.com chat.sittercity.com hudson.sittercity.com conference.chat.sittercity.com | |
| 10.1.0.30 daycare trac.sittercity.com | |
| 172.16.70.12 local.sittercity.com local-admin.sittercity.com local-jazz.sittercity.com local-babysitters.sittercity.com local-nanny.sittercity.com local-petsitters.sittercity.com local-seniorcare.sittercity.com local-housekeepers.sittercity.com local-tutors.sittercity.com local-static.sittercity.com local-feeds.sittercity.com local-sitemaps.sittercity.com local-api.sittercity.com | |
| 172.16.70.12 local-demo.sittercity.com local-unittest.sittercity.com | |
| 10.8.0.82 aloka-qa.sittercity.com | |
| 10.0.11.102 mdb1.ch1.sittercity.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/sitters/application/classes/controller/account/background/check.php b/sitters/application/classes/controller/account/background/check.php | |
| index 22ae522..47364d1 100644 | |
| --- a/sitters/application/classes/controller/account/background/check.php | |
| +++ b/sitters/application/classes/controller/account/background/check.php | |
| @@ -114,7 +114,14 @@ class Controller_Account_Background_Check extends Controller_Account_Website | |
| Session::instance()->set('ct', arr::get($_GET, 'ct')); | |
| Session::instance()->set('redirect_route', 'caretypes module'); | |
| } | |
| - | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| +---------+ +---------------+ | |
| | Kohana | | | | |
| | Request |---- ZMQ:5555 --->| Kswift Daemon |----- HTTP (external) ---> Server | |
| | Client |<--- ZMQ:5556 ----| | | |
| +---------+ +---------------+ +------------------+ | |
| ^| | | | |
| \`---- FCGI ------->| PHP FPM / Kohana | | |
| `---- FCGI --------| | | |
| +------------------+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/sitters/application/classes/controller/profile/add/caretype.php b/sitters/application/classes/controller/profile/add/caretype.php | |
| index e9fe43c..59d7e10 100644 | |
| --- a/sitters/application/classes/controller/profile/add/caretype.php | |
| +++ b/sitters/application/classes/controller/profile/add/caretype.php | |
| @@ -82,6 +82,13 @@ abstract class Controller_Profile_Add_Caretype | |
| ) | |
| { | |
| self::clear_flow(); | |
| + | |
| + if ($job_id = Arr::get($this->request->query(), 'from_job_id')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $corporate_user_group = $user->corporate_user_group(); | |
| // Check for Deptment of Defence | |
| if ($corporate_user_group) | |
| { | |
| $dept_of_defence = ($corporate_user_group->user_group_id === Model_Corporate_User_Group::DOD); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @param mixed $data | |
| * @return string | |
| * @since Method available since Release 3.2.1 | |
| */ | |
| protected function dataToString($data) | |
| { | |
| $result = array(); |