Tue, 11 Jun 2024 21:45:39 +0200
fix path textfield
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
1 | /* |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
3 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
4 | * Copyright 2024 Olaf Wintermann. All rights reserved. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
5 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
6 | * Redistribution and use in source and binary forms, with or without |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
7 | * modification, are permitted provided that the following conditions are met: |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
8 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
9 | * 1. Redistributions of source code must retain the above copyright |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
10 | * notice, this list of conditions and the following disclaimer. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
11 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
12 | * 2. Redistributions in binary form must reproduce the above copyright |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
13 | * notice, this list of conditions and the following disclaimer in the |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
14 | * documentation and/or other materials provided with the distribution. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
15 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
26 | * POSSIBILITY OF SUCH DAMAGE. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
27 | */ |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
28 | |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
29 | #include "window.h" |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
30 | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
31 | #include "davcontroller.h" |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
32 | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
33 | #include <ui/stock.h> |
18
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
34 | #include <ui/dnd.h> |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
35 | |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
36 | #include <libidav/utils.h> |
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
37 | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
38 | static UiIcon* folder_icon; |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
39 | static UiIcon* file_icon; |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
40 | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
41 | static UiPathElm* dav_get_pathelm(const char *full_path, size_t len, size_t *ret_nelm, void* data); |
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
42 | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
43 | void window_init(void) { |
37 | 44 | folder_icon = ui_foldericon(16); |
45 | file_icon = ui_fileicon(16); | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
46 | } |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
47 | |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
48 | UiObject* window_create(void) { |
37 | 49 | UiObject* obj = ui_window("iDAV", NULL); |
50 | ui_window_size(obj, 900, 700); | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
51 | |
37 | 52 | MainWindow* wdata = ui_malloc(obj->ctx, sizeof (MainWindow)); |
53 | memset(wdata, 0, sizeof (MainWindow)); | |
54 | obj->window = wdata; | |
7
905ac52c910f
port more dav config code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
55 | |
37 | 56 | wdata->progress = ui_int_new(obj->ctx, "progress"); |
57 | ||
58 | // navigation bar | |
7
905ac52c910f
port more dav config code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
59 | |
37 | 60 | ui_hbox(obj, .fill = UI_OFF, .margin = 8) { |
61 | ui_button(obj, .icon = UI_ICON_GO_BACK, .onclick = action_go_back); | |
62 | ui_button(obj, .icon = UI_ICON_GO_FORWARD, .onclick = action_go_forward); | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
63 | |
37 | 64 | ui_path_textfield(obj, .fill = UI_ON, .getpathelm = dav_get_pathelm, .onactivate = action_path_selected, .varname = "path"); |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
65 | |
37 | 66 | ui_progressspinner(obj, .value = wdata->progress); |
67 | } | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
68 | |
37 | 69 | // main content |
70 | UiModel* model = ui_model(obj->ctx, UI_ICON_TEXT, "Name", UI_STRING, "Type", UI_STRING_FREE, "Last Modified", UI_STRING_FREE, "Size", -1); | |
71 | model->getvalue = (ui_getvaluefunc) window_resource_table_getvalue; | |
72 | ui_table(obj, .fill = UI_ON, .model = model, .onactivate = action_list_activate, .ondrop = action_dnd_drop, .varname = "reslist"); | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
73 | |
37 | 74 | // status bar |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
75 | |
37 | 76 | ui_hbox(obj, .fill = UI_OFF) { |
77 | ui_label(obj, .label = ""); | |
78 | } | |
79 | ||
80 | return obj; | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
81 | } |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
82 | |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
83 | void* window_resource_table_getvalue(DavResource *res, int col) { |
37 | 84 | switch (col) { |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
85 | case 0: { // icon |
37 | 86 | return res->iscollection ? folder_icon : file_icon; |
87 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
88 | case 1: { // resource name |
37 | 89 | return res->name; |
90 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
91 | case 2: { // type |
37 | 92 | return res->iscollection ? "Collection" : (res->contenttype ? res->contenttype : "Resource"); |
93 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
94 | case 3: { // last modified |
37 | 95 | return util_date_str(res->lastmodified); |
96 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
97 | case 4: { // size |
37 | 98 | return util_size_str(res->iscollection, res->contentlength); |
99 | } | |
100 | } | |
101 | return NULL; | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
102 | } |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
103 | |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
104 | void window_progress(MainWindow *win, int on) { |
37 | 105 | ui_set(win->progress, on); |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
106 | } |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
107 | |
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
108 | static UiPathElm* dav_get_pathelm(const char *full_path, size_t len, size_t *ret_nelm, void* data) { |
37 | 109 | cxstring fpath = cx_strn(full_path, len); |
110 | int protocol = 0; | |
111 | if (cx_strcaseprefix(fpath, CX_STR("http://"))) { | |
112 | protocol = 7; | |
113 | } else if (cx_strcaseprefix(fpath, CX_STR("https://"))) { | |
114 | protocol = 8; | |
115 | } | |
116 | ||
117 | size_t start = 0; | |
118 | size_t end = 0; | |
119 | for (size_t i = protocol; i < len; i++) { | |
120 | if (full_path[i] == '/') { | |
121 | end = i; | |
122 | break; | |
123 | } | |
124 | } | |
125 | ||
126 | int skip = 0; | |
127 | if (end == 0) { | |
128 | // no '/' found or first char is '/' | |
129 | end = len > 0 && full_path[0] == '/' ? 1 : len; | |
130 | } else if (end + 1 <= len) { | |
131 | skip++; // skip first '/' | |
132 | } | |
133 | ||
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
134 | |
37 | 135 | cxmutstr base = cx_strdup(cx_strn(full_path, end)); |
136 | cxmutstr base_path = cx_strdup(cx_strcast(base)); | |
137 | cxstring path = cx_strsubs(fpath, end + skip); | |
138 | ||
139 | cxstring *pathelms; | |
140 | size_t nelm = 0; | |
141 | ||
142 | if (path.length > 0) { | |
143 | nelm = cx_strsplit_a(cxDefaultAllocator, path, CX_STR("/"), 4096, &pathelms); | |
144 | if (nelm == 0) { | |
145 | *ret_nelm = 0; | |
146 | return NULL; | |
147 | } | |
148 | } | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
149 | |
37 | 150 | UiPathElm* elms = (UiPathElm*) calloc(nelm + 1, sizeof (UiPathElm)); |
151 | size_t n = nelm + 1; | |
152 | elms[0].name = base.ptr; | |
153 | elms[0].name_len = base.length; | |
154 | elms[0].path = base_path.ptr; | |
155 | elms[0].path_len = base_path.length; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
156 | |
37 | 157 | int j = 1; |
158 | for (int i = 0; i < nelm; i++) { | |
159 | cxstring c = pathelms[i]; | |
160 | if (c.length == 0) { | |
161 | if (i == 0) { | |
162 | c.length = 1; | |
163 | } else { | |
164 | n--; | |
165 | continue; | |
34
98e041f2f9a2
fix dav path separator function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
33
diff
changeset
|
166 | } |
98e041f2f9a2
fix dav path separator function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
33
diff
changeset
|
167 | } |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
168 | |
37 | 169 | cxmutstr m = cx_strdup(c); |
170 | elms[j].name = m.ptr; | |
171 | elms[j].name_len = m.length; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
172 | |
37 | 173 | size_t elm_path_len = c.ptr + c.length - full_path; |
174 | cxmutstr elm_path = cx_strdup(cx_strn(full_path, elm_path_len)); | |
175 | elms[j].path = elm_path.ptr; | |
176 | elms[j].path_len = elm_path.length; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
177 | |
37 | 178 | j++; |
179 | } | |
180 | *ret_nelm = n; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
181 | |
37 | 182 | return elms; |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
183 | } |
11
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
184 | |
15
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
185 | void action_go_back(UiEvent *event, void *data) { |
37 | 186 | DavBrowser *browser = event->document; |
187 | davbrowser_navigation_back(event->obj, browser); | |
15
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
188 | } |
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
189 | |
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
190 | void action_go_forward(UiEvent *event, void *data) { |
37 | 191 | DavBrowser *browser = event->document; |
192 | davbrowser_navigation_forward(event->obj, browser); | |
15
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
193 | } |
11
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
194 | |
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
195 | void action_path_selected(UiEvent *event, void *data) { |
37 | 196 | DavBrowser *browser = event->document; |
197 | char *path = event->eventdata; | |
198 | if (path && strlen(path) > 0) { | |
199 | davbrowser_query_url(event->obj, browser, path); | |
200 | } | |
11
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
201 | } |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
202 | |
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
203 | void action_list_activate(UiEvent *event, void *data) { |
37 | 204 | UiListSelection *selection = event->eventdata; |
205 | DavBrowser *browser = event->document; | |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
206 | |
37 | 207 | if (selection->count == 1) { |
208 | DavResource *res = ui_list_get(browser->resources, selection->rows[0]); | |
209 | if (res) { | |
210 | if (res->iscollection) { | |
211 | davbrowser_query_path(event->obj, browser, res->path); | |
212 | } else { | |
213 | // TODO | |
214 | } | |
215 | } | |
216 | } | |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
217 | } |
18
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
218 | |
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
219 | void action_dnd_drop(UiEvent *event, void *data) { |
37 | 220 | UiListDnd *listdnd = event->eventdata; |
221 | UiDnD *dnd = listdnd->dnd; | |
222 | UiFileList files = ui_selection_geturis(dnd); | |
223 | ||
224 | davbrowser_upload_files(event->obj, event->document, files); | |
18
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
225 | } |