Skip to content

Commit

Permalink
First Commit of RajRepo
Browse files Browse the repository at this point in the history
  • Loading branch information
raj committed Nov 27, 2013
1 parent d0e8f5e commit c253e8c
Show file tree
Hide file tree
Showing 13,569 changed files with 1,874,900 additions and 1 deletion.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file modified .DS_Store
Binary file not shown.
16 changes: 16 additions & 0 deletions .svn/pristine/02/02955cd63b323df5300683b0bff8e5092c20923e.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// ViewController.h
// KivaJSONDemo
//
// Created by Paryani, Rajpal on 6/13/13.
// Copyright (c) 2013 Paryani, Rajpal. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController {

__weak IBOutlet UILabel *humanReadable;

__weak IBOutlet UILabel *jsonSummary;
}
40 changes: 40 additions & 0 deletions .svn/pristine/15/159420d79da6a99231155e41f2e906e04952ebca.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.rajpal.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIMainStoryboardFile</key>
<string>MainStoryboard</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "1"
version = "1.0">
</Bucket>
32 changes: 32 additions & 0 deletions .svn/pristine/22/22c998f4cdcfaf694f33feda4a1777692542ac6e.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//
// KivaJSONDemoTests.m
// KivaJSONDemoTests
//
// Created by Paryani, Rajpal on 6/13/13.
// Copyright (c) 2013 Paryani, Rajpal. All rights reserved.
//

#import "KivaJSONDemoTests.h"

@implementation KivaJSONDemoTests

- (void)setUp
{
[super setUp];

// Set-up code here.
}

- (void)tearDown
{
// Tear-down code here.

[super tearDown];
}

- (void)testExample
{
STFail(@"Unit tests are not implemented yet in KivaJSONDemoTests");
}

@end
Binary file not shown.
128 changes: 128 additions & 0 deletions .svn/pristine/28/285293d900ea3cb448a33ebe3e6fc617ef78a45f.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
#!/bin/sh
#
# An example hook script to blocks unannotated tags from entering.
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
#
# To enable this hook, rename this file to "update".
#
# Config
# ------
# hooks.allowunannotated
# This boolean sets whether unannotated tags will be allowed into the
# repository. By default they won't be.
# hooks.allowdeletetag
# This boolean sets whether deleting tags will be allowed in the
# repository. By default they won't be.
# hooks.allowmodifytag
# This boolean sets whether a tag may be modified after creation. By default
# it won't be.
# hooks.allowdeletebranch
# This boolean sets whether deleting branches will be allowed in the
# repository. By default they won't be.
# hooks.denycreatebranch
# This boolean sets whether remotely creating branches will be denied
# in the repository. By default this is allowed.
#

# --- Command line
refname="$1"
oldrev="$2"
newrev="$3"

# --- Safety check
if [ -z "$GIT_DIR" ]; then
echo "Don't run this script from the command line." >&2
echo " (if you want, you could supply GIT_DIR then run" >&2
echo " $0 <ref> <oldrev> <newrev>)" >&2
exit 1
fi

if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
echo "Usage: $0 <ref> <oldrev> <newrev>" >&2
exit 1
fi

# --- Config
allowunannotated=$(git config --bool hooks.allowunannotated)
allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
denycreatebranch=$(git config --bool hooks.denycreatebranch)
allowdeletetag=$(git config --bool hooks.allowdeletetag)
allowmodifytag=$(git config --bool hooks.allowmodifytag)

# check for no description
projectdesc=$(sed -e '1q' "$GIT_DIR/description")
case "$projectdesc" in
"Unnamed repository"* | "")
echo "*** Project description file hasn't been set" >&2
exit 1
;;
esac

# --- Check types
# if $newrev is 0000...0000, it's a commit to delete a ref.
zero="0000000000000000000000000000000000000000"
if [ "$newrev" = "$zero" ]; then
newrev_type=delete
else
newrev_type=$(git cat-file -t $newrev)
fi

case "$refname","$newrev_type" in
refs/tags/*,commit)
# un-annotated tag
short_refname=${refname##refs/tags/}
if [ "$allowunannotated" != "true" ]; then
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
exit 1
fi
;;
refs/tags/*,delete)
# delete tag
if [ "$allowdeletetag" != "true" ]; then
echo "*** Deleting a tag is not allowed in this repository" >&2
exit 1
fi
;;
refs/tags/*,tag)
# annotated tag
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
then
echo "*** Tag '$refname' already exists." >&2
echo "*** Modifying a tag is not allowed in this repository." >&2
exit 1
fi
;;
refs/heads/*,commit)
# branch
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
echo "*** Creating a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/heads/*,delete)
# delete branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/remotes/*,commit)
# tracking branch
;;
refs/remotes/*,delete)
# delete tracking branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
exit 1
fi
;;
*)
# Anything else (is there anything else?)
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
exit 1
;;
esac

# --- Finished
exit 0
36 changes: 36 additions & 0 deletions .svn/pristine/2b/2b6275eda365cad50d167fe3a387c9bc9fedd54f.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/sh
#
# An example hook script to prepare the commit log message.
# Called by "git commit" with the name of the file that has the
# commit message, followed by the description of the commit
# message's source. The hook's purpose is to edit the commit
# message file. If the hook fails with a non-zero status,
# the commit is aborted.
#
# To enable this hook, rename this file to "prepare-commit-msg".

# This hook includes three examples. The first comments out the
# "Conflicts:" part of a merge commit.
#
# The second includes the output of "git diff --name-status -r"
# into the message, just before the "git status" output. It is
# commented because it doesn't cope with --amend or with squashed
# commits.
#
# The third example adds a Signed-off-by line to the message, that can
# still be edited. This is rarely a good idea.

case "$2,$3" in
merge,)
/usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;

# ,|template,)
# /usr/bin/perl -i.bak -pe '
# print "\n" . `git diff --cached --name-status -r`
# if /^#/ && $first++ == 0' "$1" ;;

*) ;;
esac

# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
Binary file not shown.
14 changes: 14 additions & 0 deletions .svn/pristine/32/326a7779f2477f1a1d5a2d37e84ba9665db0dc7d.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// Prefix header for all source files of the 'KivaJSONDemo' target in the 'KivaJSONDemo' project
//

#import <Availability.h>

#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif

#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
13 changes: 13 additions & 0 deletions .svn/pristine/35/35e04699417cabeb619981e62142a97e2bdae85b.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// KivaJSONDemoTests.h
// KivaJSONDemoTests
//
// Created by Paryani, Rajpal on 6/13/13.
// Copyright (c) 2013 Paryani, Rajpal. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>

@interface KivaJSONDemoTests : SenTestCase

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
xuTMS�0 �3���{?� �$0����Ё�, G�Q�cglZ~��NC�94�"=�I�J�N�dv|�#������B��N�cJ@q� �������%�1�1��Tizyqe�W(GܮD+�Ő���a��5�0�����kv�+�WN�]��Ɇ�ɜ�y�>��Zڇ���lr��w�A�a�L����g�ef�RN�_ܬ:y()�.����`�B+g���+���pU9-�NW.�OV�%�`�A���[���^|� JPvF��M�\�j�("��k�C�o�0�����H�:-���N�h�n�9_d9�^���Zrk`-���*��AZ"�A��C�o�;��=E��?�N����ڎ_^{�A־A�W��b�+�i��8?_���O�G8���C^`W�c�6x�3��L½�R�ذ��o`�Tj��aӱ�O��&2�#�?� 69
��t� �)����ǀ�xG�̾���VJ��"��d�ǽ�:��ڴ�x7As������)�/�+�-� υ�nL(a��Y8�U��e��1�|aR��9��y��F#?�V7U{��/<J�%��_�9'�[�̯���l��^!!?ʓO�Y����>�5�5�(��k9����'�g{� �U�e�f�t����Z��c��sf�P5.���mjtcʘ9\��0�ڿ\qЏ��:�nð�x�I��8`���5��?��
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
UserInterface.xcuserstate
Binary file not shown.
Binary file not shown.
14 changes: 14 additions & 0 deletions .svn/pristine/42/42fa41564917b44183a50c4d94bb03e1768ddad8.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".

. git-sh-setup
test -x "$GIT_DIR/hooks/pre-commit" &&
exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
:
Binary file not shown.
15 changes: 15 additions & 0 deletions .svn/pristine/47/478f1025c7d9233e50835cbf5881310e9692ae6a.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// AppDelegate.h
// KivaJSONDemo
//
// Created by Paryani, Rajpal on 6/13/13.
// Copyright (c) 2013 Paryani, Rajpal. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1c73e19142d67ecdf998b55909c0648cbf851387
17 changes: 17 additions & 0 deletions .svn/pristine/4b/4b12489de5cc859c3285064c92ac87e0ac65832f.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import sys
from xml.dom import minidom

mergedlist2 = []
f = file('services_retrieved.json', 'w')


xmldoc = minidom.parse('parse-file.xml')
servicelist = xmldoc.getElementsByTagName('module')
versionlist = xmldoc.getElementsByTagName('revision')

mergedlist2 = ['"' + str(a.attributes['name'].value) + '":"' + str(b.attributes['name'].value) + '"' for a, b in zip(servicelist, versionlist)]
jsonstr = '{' + '\n' + ',\n'.join(mergedlist2) + ',\n' + '}'

print >> f, jsonstr

f.close()
Binary file not shown.
Binary file not shown.
36 changes: 36 additions & 0 deletions .svn/pristine/56/56b00068d3089ba616295dfad5e7af2e24c63945.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
MonkeyTalk:1.0.50
SpeechService:1.1.21238
AudioEndPointing:1.0.81353
AudioSpeexEncoder:1.2.3.93911
ScoutFoundation:1.4.21365
UserService:6.0.21351
MapMatching:2.1.20923
NavEngine:4.3.20792
MapEngine:2.2.21482
MapDisplayGraphics:2.3.20516
TnUrl:1.1.97262
SQLite:3.3071400.92908
Png:1.5.2.97863
Jpeg:8.3.73081
Curl:7.24.0.96384
CJSON:1.0.93078
EntityService:2.5.21222
MicroSearchService:1.9.20953
MapService:2.5.21363
MicroMapDisplayService:1.9.17755
MicroRoutingService:1.9.20954
CRegExLib:1.9.20887
MicroCommon:1.9.18724
NavProtocol:1.0.20942
TMDB:1.9.20326
TinyXML:1.2.144638
Foundation:1.1.98548
ThreadPool:1.0.95762
Boost:1.51.0.98578
Protobuf:2.4.1.96257
Zlib:1.2.93118
PlatformHacks:1.0.93082
Stemmer:1.2.144638
SBJson:3.2.95975
BrowserSDK:2.2.98929
AdService:2.4.18908
Loading

0 comments on commit c253e8c

Please sign in to comment.