Rev 11168: More work getting the build working again. in file:///home/jelmer/bzr.samba/4.0-regwrite/

Jelmer Vernooij jelmer at samba.org
Mon Feb 12 21:00:27 GMT 2007


At file:///home/jelmer/bzr.samba/4.0-regwrite/

------------------------------------------------------------
revno: 11168
revision-id: jelmer at samba.org-20070212210015-vfey1bupuo237gtc
parent: jelmer at samba.org-20070210150533-khwd9jnhx7sqsbo6
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: 4.0-regwrite
timestamp: Mon 2007-02-12 22:00:15 +0100
message:
  More work getting the build working again.
modified:
  source/gtk/tools/gregedit.c    svn-v2:1432 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2fgtk%2ftools%2fgregedit.c
  source/lib/registry/interface.c svn-v2:20 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2flib%2fregistry%2fcommon%2freg_interface.c
  source/lib/registry/ldb.c      svn-v2:4132 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2flib%2fregistry%2freg_backend_ldb.c
  source/lib/registry/tests/generic.c svn-v2:10594 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2ftorture%2flocal%2fregistry.c
  source/lib/registry/tools/regdiff.c svn-v2:20 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2flib%2fregistry%2ftools%2fregdiff.c
  source/lib/registry/tools/regpatch.c svn-v2:20 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2flib%2fregistry%2ftools%2fregpatch.c
  source/lib/registry/tools/regshell.c svn-v2:20 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2flib%2fregistry%2ftools%2fregshell.c
  source/lib/registry/tools/regtree.c svn-v2:20 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-source%2flib%2fregistry%2ftools%2fregtree.c
  source/smbd/server.c           svn-v2:2 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-trunk-source%2fsmbd%2fserver.c
  webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/translation/C.po svn-v2:21167 at 0c0555d6-39d7-0310-84fc-f1cc0bd64818-branches%2fSAMBA_4_0-a8ad5ec15dcec8c0154f2751ad51c177a048cdb0-C.po
=== modified file 'source/gtk/tools/gregedit.c'
--- a/source/gtk/tools/gregedit.c	2006-09-16 16:59:37 +0000
+++ b/source/gtk/tools/gregedit.c	2007-02-12 21:00:15 +0000
@@ -972,8 +972,6 @@
 
 	mem_ctx = talloc_init("gregedit");
 
-	registry_init();
-
 	gtk_init(&argc, &argv);
 	mainwin = create_mainwindow();
 	gtk_widget_show_all(mainwin);

=== modified file 'source/lib/registry/interface.c'
--- a/source/lib/registry/interface.c	2007-02-08 17:18:35 +0000
+++ b/source/lib/registry/interface.c	2007-02-12 21:00:15 +0000
@@ -101,16 +101,12 @@
 							  struct cli_credentials *credentials, 
 							  struct registry_key **root)
 {
-	struct registry_hive *rethive;
-	struct registry_key *retkey = NULL;
-	struct reg_init_function_entry *entry;
-	WERROR werr;
 	int fd, num;
 	char peek[20];
 
 	/* Check for directory */
 	if (directory_exist(location)) {
-		return reg_open_directory(location, root);
+		return reg_open_directory(parent_ctx, location, root);
 	}
 
 	fd = open(location, O_RDWR);
@@ -125,13 +121,13 @@
 
 	if (!strncmp(peek, "CREG", 4)) {
 		close(fd);
-		return reg_open_creg_file(location, root);
+		return reg_open_creg_file(parent_ctx, location, root);
 	} else if (!strncmp(peek, "REGF", 4)) {
 		close(fd);
-		return reg_open_regf_file(location, root);
+		return reg_open_regf_file(parent_ctx, location, root);
 	} else if (!strncmp(peek, "TDB file", 8)) {
 		close(fd);
-		return reg_open_ldb_file(location, session_info, credentials, root);
+		return reg_open_ldb_file(parent_ctx, location, session_info, credentials, root);
 	}
 
 	return WERR_BADFILE;

=== modified file 'source/lib/registry/ldb.c'
--- a/source/lib/registry/ldb.c	2007-02-10 15:02:22 +0000
+++ b/source/lib/registry/ldb.c	2007-02-12 21:00:15 +0000
@@ -261,7 +261,7 @@
 	return WERR_OK;
 }
 
-WERROR reg_open_ldb_file(const char *location, 
+WERROR reg_open_ldb_file(TALLOC_CTX *parent_ctx, const char *location, 
 								struct auth_session_info *session_info,
 								struct cli_credentials *credentials,
 								struct registry_key **k)
@@ -272,7 +272,7 @@
 	if (!location) 
 		return WERR_INVALID_PARAM;
 
-	wrap = ldb_wrap_connect(hive, location, session_info, credentials, 0, NULL);
+	wrap = ldb_wrap_connect(parent_ctx, location, session_info, credentials, 0, NULL);
 
 	if(!wrap) {
 		DEBUG(1, (__FILE__": unable to connect\n"));
@@ -282,7 +282,7 @@
 	ldb_set_debug_stderr(wrap);
 	hive->backend_data = wrap;
 
-	*k = talloc_zero(hive, struct registry_key);
+	*k = talloc_zero(parent_ctx, struct registry_key);
 	talloc_set_destructor (*k, reg_close_ldb_key);
 	talloc_set_destructor (hive, ldb_free_hive);
 	(*k)->name = talloc_strdup(*k, "");

=== modified file 'source/lib/registry/tests/generic.c'
--- a/source/lib/registry/tests/generic.c	2007-02-08 15:59:04 +0000
+++ b/source/lib/registry/tests/generic.c	2007-02-12 21:00:15 +0000
@@ -151,8 +151,6 @@
 													   "REGISTRY");
 	int i;
 
-	registry_init();
-
 	torture_suite_add_simple_test(suite, "str_regtype", test_str_regtype);
 	torture_suite_add_simple_test(suite, "reg_val_data_string dword", test_reg_val_data_string_dword);
 	torture_suite_add_simple_test(suite, "reg_val_data_string sz", test_reg_val_data_string_sz);

=== modified file 'source/lib/registry/tools/regdiff.c'
--- a/source/lib/registry/tools/regdiff.c	2007-01-14 04:35:01 +0000
+++ b/source/lib/registry/tools/regdiff.c	2007-02-12 21:00:15 +0000
@@ -49,8 +49,6 @@
 	void *callback_data;
 	struct reg_diff_callbacks *callbacks;
 
-	registry_init();
-
 	pc = poptGetContext(argv[0], argc, argv, long_options,0);
 
 	while((opt = poptGetNextOpt(pc)) != -1) {

=== modified file 'source/lib/registry/tools/regpatch.c'
--- a/source/lib/registry/tools/regpatch.c	2007-01-14 04:27:12 +0000
+++ b/source/lib/registry/tools/regpatch.c	2007-02-12 21:00:15 +0000
@@ -46,8 +46,6 @@
 	while((opt = poptGetNextOpt(pc)) != -1) {
 	}
 
-	registry_init();
-
 	if (remote) {
 		error = reg_open_remote (&h, NULL, cmdline_credentials, remote, NULL);
 	} else {

=== modified file 'source/lib/registry/tools/regshell.c'
--- a/source/lib/registry/tools/regshell.c	2006-09-16 16:59:37 +0000
+++ b/source/lib/registry/tools/regshell.c	2007-02-12 21:00:15 +0000
@@ -427,8 +427,6 @@
 	while((opt = poptGetNextOpt(pc)) != -1) {
 	}
 
-	registry_init();
-
 	if (remote) {
 		error = reg_open_remote (&h, NULL, cmdline_credentials, remote, NULL); 
 	} else if (backend) {

=== modified file 'source/lib/registry/tools/regtree.c'
--- a/source/lib/registry/tools/regtree.c	2006-09-16 16:59:37 +0000
+++ b/source/lib/registry/tools/regtree.c	2007-02-12 21:00:15 +0000
@@ -104,8 +104,6 @@
 	while((opt = poptGetNextOpt(pc)) != -1) {
 	}
 
-	registry_init();
-
 	if (remote) {
 		error = reg_open_remote(&h, NULL, cmdline_credentials, remote, NULL);
 

=== modified file 'source/smbd/server.c'
--- a/source/smbd/server.c	2007-01-19 04:09:32 +0000
+++ b/source/smbd/server.c	2007-02-12 21:00:15 +0000
@@ -263,9 +263,6 @@
 
 	gensec_init(); /* FIXME: */
 
-	registry_init(); /* FIXME: maybe run this in the initialization function 
-						of the winreg RPC server instead? */
-
 	ntptr_init();	/* FIXME: maybe run this in the initialization function 
 						of the spoolss RPC server instead? */
 

=== modified file 'webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/translation/C.po'
--- a/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/translation/C.po	2007-02-06 04:35:30 +0000
+++ b/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/translation/C.po	2007-02-12 21:00:15 +0000
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: qooxdoo framework\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-05 23:17-0500\n"
+"POT-Creation-Date: 2007-02-10 16:11+0100\n"
 "PO-Revision-Date: 2006-12-19 15:52+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -14,296 +14,296 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. TRANSLATION: short representation of key names
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:61
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:61
 msgid "key_short_Backspace"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:62
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:62
 msgid "key_short_Tab"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:63
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:63
 msgid "key_short_Space"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:64
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:64
 msgid "key_short_Enter"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:65
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:65
 msgid "key_short_Shift"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:66
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:66
 msgid "key_short_Control"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:67
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:67
 msgid "key_short_Alt"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:68
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:68
 msgid "key_short_CapsLock"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:69
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:69
 msgid "key_short_Meta"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:70
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:70
 msgid "key_short_Escape"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:71
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:71
 msgid "key_short_Left"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:72
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:72
 msgid "key_short_Up"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:73
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:73
 msgid "key_short_Right"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:74
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:74
 msgid "key_short_Down"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:75
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:75
 msgid "key_short_PageUp"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:76
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:76
 msgid "key_short_PageDown"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:77
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:77
 msgid "key_short_End"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:78
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:78
 msgid "key_short_Home"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:79
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:79
 msgid "key_short_Insert"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:80
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:80
 msgid "key_short_Delete"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:81
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:81
 msgid "key_short_NumLock"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:82
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:82
 msgid "key_short_PrintScreen"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:83
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:83
 msgid "key_short_Scroll"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:84
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:84
 msgid "key_short_Pause"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:85
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:85
 msgid "key_short_Win"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:86
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:86
 msgid "key_short_Apps"
 msgstr ""
 
 #. TRANSLATION: full/long representation of key names
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:89
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:89
 msgid "key_full_Backspace"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:90
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:90
 msgid "key_full_Tab"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:91
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:91
 msgid "key_full_Space"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:92
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:92
 msgid "key_full_Enter"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:93
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:93
 msgid "key_full_Shift"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:94
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:94
 msgid "key_full_Control"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:95
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:95
 msgid "key_full_Alt"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:96
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:96
 msgid "key_full_CapsLock"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:97
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:97
 msgid "key_full_Meta"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:98
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:98
 msgid "key_full_Escape"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:99
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:99
 msgid "key_full_Left"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:100
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:100
 msgid "key_full_Up"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:101
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:101
 msgid "key_full_Right"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:102
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:102
 msgid "key_full_Down"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:103
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:103
 msgid "key_full_PageUp"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:104
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:104
 msgid "key_full_PageDown"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:105
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:105
 msgid "key_full_End"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:106
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:106
 msgid "key_full_Home"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:107
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:107
 msgid "key_full_Insert"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:108
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:108
 msgid "key_full_Delete"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:109
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:109
 msgid "key_full_NumLock"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:110
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:110
 msgid "key_full_PrintScreen"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:111
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:111
 msgid "key_full_Scroll"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:112
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:112
 msgid "key_full_Pause"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:113
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:113
 msgid "key_full_Win"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/locale/Key.js:114
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/locale/Key.js:114
 msgid "key_full_Apps"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorPopup.js:81
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorPopup.js:81
 msgid "Automatic"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorPopup.js:135
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:292
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorPopup.js:135
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:292
 msgid "Preview (Old/New)"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorPopup.js:161
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorPopup.js:161
 msgid "Open ColorSelector"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorPopup.js:175
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorPopup.js:175
 msgid "Color Selector"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:143
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:143
 msgid "Cancel"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:144
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:144
 msgid "OK"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:236
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:236
 msgid "Presets"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:280
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:280
 msgid "Details"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:325
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:325
 msgid "Hex"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:348
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:348
 msgid "RGB"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/ColorSelector.js:376
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/ColorSelector.js:376
 msgid "HSB"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/DateChooser.js:52
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/DateChooser.js:52
 msgid "Last year"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/DateChooser.js:53
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/DateChooser.js:53
 msgid "Last month"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/DateChooser.js:54
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/DateChooser.js:54
 msgid "Next month"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/DateChooser.js:55
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/DateChooser.js:55
 msgid "Next year"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/component/DateChooserButton.js:91
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/component/DateChooserButton.js:91
 msgid "Choose a date"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:67
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:67
 msgid "Description"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:67
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:67
 msgid "ID"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:620
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:620
 msgid "Case sensitive"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:657
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:657
 msgid "Search next occurrence"
 msgstr ""
 
-#: ../../../frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:694
+#: ../qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/ui/form/ComboBoxEx.js:694
 msgid "Search items in list"
 msgstr ""



More information about the samba-cvs mailing list