123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef WCCCONSTANTS_H
- #define WCCCONSTANTS_H
- namespace WccNameSpace {
- namespace Constants {
- // wccbuildmanager.cpp
- const char * const TEXT_NO_PROJECT = "-";
- const char * const RESOURCE_FILE = ".qrc";
- const char * const DEBIAN_DIR = "debian/";
- const char * const SERVER_URL = "https://build.forum.nokia.com";
- const char * const SSO_LOGIN_URL = "https://sso.forum.nokia.com/login?";
- // wcczipper.cpp
- const char * const DEFAULT_ZIPNAME = "zipfile.zip";
- const char * const ZIP_EXTENSION = ".zip";
- const char * const ZIPPING_ERROR = "Zipping failed: ";
- const char * const ERROR_EMPTY_FILELIST = "Nothing to do. The filelist is empty";
- // wccsigninrequest.cpp
- const char * const JS_MESSAGE_SEPARATOR = ":::";
- // wccnetworkaccessmanager.cpp
- const char * const BUILD_LOCATION = "build.forum.nokia.com";
- // timeouts
- // Source upload must complete within this time. 30 secs
- const int UPLOAD_TIMEOUT_MSEC = 30000;
- // 60 min (server should handle the timeout)
- const int BUILD_TIMEOUT_MSEC = 3600000;
- }
- }
- #endif // WCCCONSTANTS_H
|