2014-08-30 08:36:36 +02:00
|
|
|
//
|
|
|
|
|
// Prefix header
|
|
|
|
|
//
|
|
|
|
|
// The contents of this file are implicitly included at the beginning of every source file.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#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
|
2014-09-02 20:00:02 +02:00
|
|
|
|
|
|
|
|
#if(URL_LOCAL==1)
|
2014-09-05 07:27:19 +02:00
|
|
|
#define SCHEDULE_URL @"http://127.0.0.1:8080/sff2014/schedule.json?local"
|
|
|
|
|
#define VENUES_URL @"http://127.0.0.1:8080/sff2014/venues.json?local"
|
2014-09-06 13:42:39 +02:00
|
|
|
#define FILMS_URL @"http://127.0.0.1:8080/sff2014/films.json?local"
|
2014-09-07 07:18:07 +02:00
|
|
|
#define ABOUT_URL @"http://127.0.0.1:8080/sff2014/about.json?local"
|
2014-09-02 20:00:02 +02:00
|
|
|
#else
|
2014-09-28 13:07:38 -04:00
|
|
|
#define SCHEDULE_URL @"http://127.0.0.1:8080/sff2014/schedule.json?remote"
|
|
|
|
|
#define VENUES_URL @"http://127.0.0.1:8080/sff2014/venues.json?remote"
|
|
|
|
|
#define FILMS_URL @"http://127.0.0.1:8080/sff2014/films.json?remote"
|
|
|
|
|
#define ABOUT_URL @"http://127.0.0.1:8080/sff2014/about.json?remote"
|
2014-09-02 20:00:02 +02:00
|
|
|
#endif
|