├── DB.php ├── Images ├── arrow_left.png ├── arrow_right.png ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── img4.jpg ├── img4.png ├── img5.jpg └── img6.jpg ├── README.md ├── admin.php ├── akhi.sql ├── bootstrap-3.3.5-dist ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── exam.php ├── head.php ├── header_in.php ├── index.php ├── jquery-ui-1.11.1.custom ├── external │ └── jquery │ │ └── jquery.js ├── images │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png ├── index.html ├── jquery-1.11.3.min.js ├── jquery-ui.css ├── jquery-ui.js ├── jquery-ui.min.css ├── jquery-ui.min.js ├── jquery-ui.structure.css ├── jquery-ui.structure.min.css ├── jquery-ui.theme.css └── jquery-ui.theme.min.css ├── logout.php ├── main.js ├── main.php ├── questions.php ├── src ├── Google_Client.php ├── auth │ ├── Google_AssertionCredentials.php │ ├── Google_Auth.php │ ├── Google_AuthNone.php │ ├── Google_LoginTicket.php │ ├── Google_OAuth2.php │ ├── Google_P12Signer.php │ ├── Google_PemVerifier.php │ ├── Google_Signer.php │ └── Google_Verifier.php ├── cache │ ├── Google_ApcCache.php │ ├── Google_Cache.php │ ├── Google_FileCache.php │ └── Google_MemcacheCache.php ├── config.php ├── contrib │ ├── Google_AdexchangebuyerService.php │ ├── Google_AdsenseService.php │ ├── Google_AdsensehostService.php │ ├── Google_AnalyticsService.php │ ├── Google_BigqueryService.php │ ├── Google_BloggerService.php │ ├── Google_BooksService.php │ ├── Google_CalendarService.php │ ├── Google_ComputeService.php │ ├── Google_CustomsearchService.php │ ├── Google_DriveService.php │ ├── Google_FreebaseService.php │ ├── Google_FusiontablesService.php │ ├── Google_GanService.php │ ├── Google_LatitudeService.php │ ├── Google_LicensingService.php │ ├── Google_ModeratorService.php │ ├── Google_Oauth2Service.php │ ├── Google_OrkutService.php │ ├── Google_PagespeedonlineService.php │ ├── Google_PlusMomentsService.php │ ├── Google_PlusService.php │ ├── Google_PredictionService.php │ ├── Google_ShoppingService.php │ ├── Google_SiteVerificationService.php │ ├── Google_StorageService.php │ ├── Google_TaskqueueService.php │ ├── Google_TasksService.php │ ├── Google_TranslateService.php │ ├── Google_UrlshortenerService.php │ ├── Google_WebfontsService.php │ └── Google_YoutubeService.php ├── external │ └── URITemplateParser.php ├── io │ ├── Google_CacheParser.php │ ├── Google_CurlIO.php │ ├── Google_HttpRequest.php │ ├── Google_IO.php │ ├── Google_REST.php │ └── cacerts.pem └── service │ ├── Google_BatchRequest.php │ ├── Google_MediaFileUpload.php │ ├── Google_Model.php │ ├── Google_Service.php │ ├── Google_ServiceResource.php │ └── Google_Utils.php └── style.css /DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/DB.php -------------------------------------------------------------------------------- /Images/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/arrow_left.png -------------------------------------------------------------------------------- /Images/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/arrow_right.png -------------------------------------------------------------------------------- /Images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/img1.jpg -------------------------------------------------------------------------------- /Images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/img2.jpg -------------------------------------------------------------------------------- /Images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/img3.jpg -------------------------------------------------------------------------------- /Images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/img4.jpg -------------------------------------------------------------------------------- /Images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/img4.png -------------------------------------------------------------------------------- /Images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/img5.jpg -------------------------------------------------------------------------------- /Images/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/Images/img6.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/README.md -------------------------------------------------------------------------------- /admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/admin.php -------------------------------------------------------------------------------- /akhi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/akhi.sql -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /bootstrap-3.3.5-dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/bootstrap-3.3.5-dist/js/npm.js -------------------------------------------------------------------------------- /exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/exam.php -------------------------------------------------------------------------------- /head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/head.php -------------------------------------------------------------------------------- /header_in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/header_in.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/index.php -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/external/jquery/jquery.js -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/index.html -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.css -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.js -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.min.css -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.min.js -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.structure.css -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.theme.css -------------------------------------------------------------------------------- /jquery-ui-1.11.1.custom/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/jquery-ui-1.11.1.custom/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/logout.php -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/main.js -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/main.php -------------------------------------------------------------------------------- /questions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/questions.php -------------------------------------------------------------------------------- /src/Google_Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/Google_Client.php -------------------------------------------------------------------------------- /src/auth/Google_AssertionCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_AssertionCredentials.php -------------------------------------------------------------------------------- /src/auth/Google_Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_Auth.php -------------------------------------------------------------------------------- /src/auth/Google_AuthNone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_AuthNone.php -------------------------------------------------------------------------------- /src/auth/Google_LoginTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_LoginTicket.php -------------------------------------------------------------------------------- /src/auth/Google_OAuth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_OAuth2.php -------------------------------------------------------------------------------- /src/auth/Google_P12Signer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_P12Signer.php -------------------------------------------------------------------------------- /src/auth/Google_PemVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_PemVerifier.php -------------------------------------------------------------------------------- /src/auth/Google_Signer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_Signer.php -------------------------------------------------------------------------------- /src/auth/Google_Verifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/auth/Google_Verifier.php -------------------------------------------------------------------------------- /src/cache/Google_ApcCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/cache/Google_ApcCache.php -------------------------------------------------------------------------------- /src/cache/Google_Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/cache/Google_Cache.php -------------------------------------------------------------------------------- /src/cache/Google_FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/cache/Google_FileCache.php -------------------------------------------------------------------------------- /src/cache/Google_MemcacheCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/cache/Google_MemcacheCache.php -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/config.php -------------------------------------------------------------------------------- /src/contrib/Google_AdexchangebuyerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_AdexchangebuyerService.php -------------------------------------------------------------------------------- /src/contrib/Google_AdsenseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_AdsenseService.php -------------------------------------------------------------------------------- /src/contrib/Google_AdsensehostService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_AdsensehostService.php -------------------------------------------------------------------------------- /src/contrib/Google_AnalyticsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_AnalyticsService.php -------------------------------------------------------------------------------- /src/contrib/Google_BigqueryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_BigqueryService.php -------------------------------------------------------------------------------- /src/contrib/Google_BloggerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_BloggerService.php -------------------------------------------------------------------------------- /src/contrib/Google_BooksService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_BooksService.php -------------------------------------------------------------------------------- /src/contrib/Google_CalendarService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_CalendarService.php -------------------------------------------------------------------------------- /src/contrib/Google_ComputeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_ComputeService.php -------------------------------------------------------------------------------- /src/contrib/Google_CustomsearchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_CustomsearchService.php -------------------------------------------------------------------------------- /src/contrib/Google_DriveService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_DriveService.php -------------------------------------------------------------------------------- /src/contrib/Google_FreebaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_FreebaseService.php -------------------------------------------------------------------------------- /src/contrib/Google_FusiontablesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_FusiontablesService.php -------------------------------------------------------------------------------- /src/contrib/Google_GanService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_GanService.php -------------------------------------------------------------------------------- /src/contrib/Google_LatitudeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_LatitudeService.php -------------------------------------------------------------------------------- /src/contrib/Google_LicensingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_LicensingService.php -------------------------------------------------------------------------------- /src/contrib/Google_ModeratorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_ModeratorService.php -------------------------------------------------------------------------------- /src/contrib/Google_Oauth2Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_Oauth2Service.php -------------------------------------------------------------------------------- /src/contrib/Google_OrkutService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_OrkutService.php -------------------------------------------------------------------------------- /src/contrib/Google_PagespeedonlineService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_PagespeedonlineService.php -------------------------------------------------------------------------------- /src/contrib/Google_PlusMomentsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_PlusMomentsService.php -------------------------------------------------------------------------------- /src/contrib/Google_PlusService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_PlusService.php -------------------------------------------------------------------------------- /src/contrib/Google_PredictionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_PredictionService.php -------------------------------------------------------------------------------- /src/contrib/Google_ShoppingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_ShoppingService.php -------------------------------------------------------------------------------- /src/contrib/Google_SiteVerificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_SiteVerificationService.php -------------------------------------------------------------------------------- /src/contrib/Google_StorageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_StorageService.php -------------------------------------------------------------------------------- /src/contrib/Google_TaskqueueService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_TaskqueueService.php -------------------------------------------------------------------------------- /src/contrib/Google_TasksService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_TasksService.php -------------------------------------------------------------------------------- /src/contrib/Google_TranslateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_TranslateService.php -------------------------------------------------------------------------------- /src/contrib/Google_UrlshortenerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_UrlshortenerService.php -------------------------------------------------------------------------------- /src/contrib/Google_WebfontsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_WebfontsService.php -------------------------------------------------------------------------------- /src/contrib/Google_YoutubeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/contrib/Google_YoutubeService.php -------------------------------------------------------------------------------- /src/external/URITemplateParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/external/URITemplateParser.php -------------------------------------------------------------------------------- /src/io/Google_CacheParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/io/Google_CacheParser.php -------------------------------------------------------------------------------- /src/io/Google_CurlIO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/io/Google_CurlIO.php -------------------------------------------------------------------------------- /src/io/Google_HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/io/Google_HttpRequest.php -------------------------------------------------------------------------------- /src/io/Google_IO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/io/Google_IO.php -------------------------------------------------------------------------------- /src/io/Google_REST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/io/Google_REST.php -------------------------------------------------------------------------------- /src/io/cacerts.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/io/cacerts.pem -------------------------------------------------------------------------------- /src/service/Google_BatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/service/Google_BatchRequest.php -------------------------------------------------------------------------------- /src/service/Google_MediaFileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/service/Google_MediaFileUpload.php -------------------------------------------------------------------------------- /src/service/Google_Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/service/Google_Model.php -------------------------------------------------------------------------------- /src/service/Google_Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/service/Google_Service.php -------------------------------------------------------------------------------- /src/service/Google_ServiceResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/service/Google_ServiceResource.php -------------------------------------------------------------------------------- /src/service/Google_Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/src/service/Google_Utils.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaychidura/University-Addmisson-System/HEAD/style.css --------------------------------------------------------------------------------