311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
-
+
-
+
-
-
+
|
/*
** Create the TH1 interpreter and load the "common" code.
*/
void ticket_init(void){
const char *zConfig;
Th_FossilInit(0, 0);
Th_FossilInit(0, 0, 0); /* Make sure TH1 is ready. */
zConfig = ticket_common_code();
Th_Eval(g.interp, 0, zConfig, -1);
}
/*
** Create the TH1 interpreter and load the "change" code.
*/
int ticket_change(const char *zUuid){
const char *zConfig;
Th_FossilInit(0, 0);
Th_FossilInit(0, 1, 1); /* Make sure TH1 is ready. */
Th_CreateCommand(g.interp, "http", httpCmd, 0, 0);
Th_SetVar(g.interp, "tkt", -1, zUuid, strlen(zUuid));
Th_SetVar(g.interp, "uuid", -1, zUuid, strlen(zUuid));
zConfig = ticket_change_code();
return Th_Eval(g.interp, 0, zConfig, -1);
}
/*
** Recreate the TICKET and TICKETCHNG tables.
*/
|