change string appsvc to appcontrol
authorJiansong Jin <jiansong.jin@samsung.com>
Tue, 4 Sep 2012 10:14:12 +0000 (19:14 +0900)
committerJiansong Jin <jiansong.jin@samsung.com>
Tue, 4 Sep 2012 10:14:12 +0000 (19:14 +0900)
Change-Id: I98bcfc16a8b681f3c1cd8a06fca45ba6b726a171

include/gallery.h
org.tizen.gallery.xml
packaging/org.tizen.gallery.spec
src/data/gl-data.c
src/features/gl-albums.c
src/gallery.c
src/util/gl-ext-ug-load.c
src/util/gl-lang.c
src/widget/gl-controlbar.c

index 24c59f6d1d9d1bf1877bc37625c4f74d668b90dc..81bed446a013a0f684ed9fa96a0b7e5c8e0d15d4 100755 (executable)
@@ -309,7 +309,7 @@ typedef struct
        int ug_type;
        void *ug_login_data;
        int sort_type;   /* Types: wminfo_media_sort_type; pass it to imageviewer */
-       ui_gadget_h gallery_ug_called_by_me;    /* The gallery-ug called by Gallery for appsvc */
+       ui_gadget_h gallery_ug_called_by_me;    /* The gallery-ug called by Gallery for appcontrol */
 } gl_ug_info;
 
 typedef struct
index 8dbb27e49f7e2c11a28e3c7cf699950d2f68011f..6592e29b4696c1684ae32767f14d1a5054f04264 100755 (executable)
                 <label xml:lang="fr-fr">Galerie</label>
                 <label xml:lang="ko-kr">갤러리</label>
                 <application-service>
-                        <operation name="http://tizen.org/appsvc/operation/view"/>
+                        <operation name="http://tizen.org/appcontrol/operation/view"/>
                 </application-service>
                 <application-service>
-                        <operation name="http://tizen.org/appsvc/operation/wallpaper"/>
+                        <operation name="http://tizen.org/appcontrol/operation/wallpaper"/>
                 </application-service>
                 <application-service>
-                        <operation name="http://tizen.org/appsvc/operation/pick"/>
+                        <operation name="http://tizen.org/appcontrol/operation/pick"/>
                 </application-service>
                 <application-service>
-                        <operation name="http://tizen.org/appsvc/operation/pick"/>
+                        <operation name="http://tizen.org/appcontrol/operation/pick"/>
                         <mime name="image/*"/>
                         <mime name="video/*"/>
                 </application-service>
index 0680c617afa7ce44c7a9cfef7bb9bd127eca3115..d884cdca0d4bf6b7cd61ebf2e2dd903d1f074a1c 100755 (executable)
@@ -4,7 +4,7 @@
 
 Name:       org.tizen.gallery
 Summary:    org.tizen.gallery UX
-Version:    1.1.32
+Version:    1.1.33
 Release:    1
 Group:      Applications
 License:    Flora Software License
index 680a55b8c75636b9b4b1b3afff1f1f583de57f15..2a507099a7e6d3c2a95ca30eabd7056cc0642a54 100755 (executable)
@@ -592,7 +592,7 @@ int _gl_data_get_item_list(void *data, gl_cluster *album, int start_pos,
        filter.count = end_pos - start_pos + 1;\r
        filter.with_meta = true;\r
 \r
-       /* get file-type from service when launched by appsvc */\r
+       /* get file-type from service when launched by appcontrol */\r
        if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM) {\r
                if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE) {\r
                        g_strlcpy(filter.cond, GL_CONDITION_IMAGE,\r
index 99a018a703d0113190a5d87021b10419a5033bcd..a2ea83ee724dab9115a6a2b01dffb192371ef584 100755 (executable)
@@ -556,7 +556,7 @@ int gl_albums_sel_album(gl_cluster *album_item)
                /* check root case */
                al_na = GL_ALBUM_PHOME_ROOT_NAME;
        } else if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM) {
-               /* launch by appsvc */
+               /* launch by appcontrol */
                if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE)
                        al_na = GL_ALBUM_IMAGES_NAME;
                else if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_VIDEO)
index 91015fe1b400bab4a8d773a28cd16b967007f1fc..88fa44e46cdfe02acb54abd00303e3a87e9e9e7c 100755 (executable)
@@ -57,7 +57,7 @@
 
 #define GL_MIME_SEP ":"
 #define GL_MIME_TYPE_GALLERY "gallery.uri"
-#define GL_SERVICE_OPERATION_WALLPAPER "http://tizen.org/appsvc/operation/wallpaper"
+#define GL_SERVICE_OPERATION_WALLPAPER "http://tizen.org/appcontrol/operation/wallpaper"
 
 struct text_part {
        char *part;
@@ -122,7 +122,7 @@ static Eina_Bool __gallery_key_down_cb(void *data, int type, void *event)
                gl_dbgW("Bakc(End) key");
        } else if (!strcmp(key_event->keyname, KEY_SELECT)) {
                gl_dbgW("Home key");
-               /* For select appsvc, destory ug when HOME key is pressed */
+               /* For select appcontrol, destory ug when HOME key is pressed */
                gl_ext_destroy_gallery_ug(ad);
        } else if (!strcmp(key_event->keyname, KEY_POWER)) {
                gl_dbgW("Power key");
@@ -468,7 +468,7 @@ static int _gallery_close_app(void *data)
        /* DB update callback unregister. */
        gl_dereg_db_update_noti();
 
-       /* Free memory allocated for appsvc */
+       /* Free memory allocated for appcontrol */
        _gallery_init_app_svc(ad);
 
        ug_destroy_all();
@@ -612,7 +612,7 @@ static int __gallery_reset_app(void *data, const char *cluster_id,
        return -1;
 }
 
-/* init appsvc launch related global variables */
+/* init appcontrol launch related global variables */
 static int _gallery_init_app_svc(void *data)
 {
        GL_CHECK_VAL(data, -1);
index b9a261f4b7919cf573c5054933c55fc2263b250c..cb2b1ae5dd451f9ea868a8e32cf187e2a8f9364e 100755 (executable)
@@ -833,7 +833,7 @@ gl_ext_destroy_gallery_ug(void *data)
        gl_dbg("");
        gl_appdata *ad = (gl_appdata *)data;
 
-       /* For select appsvc, destory ug when HOME key is pressed */
+       /* For select appcontrol, destory ug when HOME key is pressed */
        if (ad->albuminfo.aul_launch_type != GL_AUL_T_NONE &&
            ad->albuminfo.aul_launch_type != GL_AUL_T_VIEW_ALBUM &&
            ad->uginfo.gallery_ug_called_by_me) {
index c8588adbeafb80aa957980a63d2f4a29145e01e8..3a84d88906ea24f87fecd73da5f3c00352e80671 100755 (executable)
@@ -89,7 +89,7 @@ static int __gl_lang_update_thumb(void *data)
                                /* check root case */\r
                                al_na = GL_ALBUM_PHOME_ROOT_NAME;\r
                        } else if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM) {\r
-                               /* launch by appsvc */\r
+                               /* launch by appcontrol */\r
                                if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE)\r
                                        al_na = GL_ALBUM_IMAGES_NAME;\r
                                else if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_VIDEO)\r
index 25318fb2df3070ca9f2516472fec502a82a80e68..9804f8a3b6a623a85627ab88ad308f90b816da2a 100755 (executable)
@@ -360,13 +360,13 @@ Evas_Object *_gl_ctrl_create_segment(void *data, Evas_Object *parent)
        Evas_Object *segment = NULL;
 
        /**
-       * Stop creating segment bar when launched by appsvc with
+       * Stop creating segment bar when launched by appcontrol with
        * specified file-type ( image or video ) only.
        */
        if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM &&
            (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE ||
             ad->albuminfo.aul_file_type == GL_AUL_FILE_T_VIDEO)) {
-               gl_dbgW("Segment bar not created when launched by appsvc!");
+               gl_dbgW("Segment bar not created when launched by appcontrol!");
                return NULL;
        }