Differences From Artifact [9951c27344]:
- File src/import.c — part of check-in [3fbf8caa87] at 2011-09-14 00:32:30 on branch msw-docco — Begin streamline the online documentation to: * always include a short overview of the options supported by a given command, alphabetically sorted * reference similar/related commands with a final See also: section * Use ?x? for optional arguments * collapse supported options into ?OPTIONS? This is commit #1/n. (user: martin.weber size: 24465) [more...]
To Artifact [d3fdb20e16]:
- File src/import.c — part of check-in [a496d8e88d] at 2012-03-29 14:54:45 on branch mgagnon_fix — Add vim modline everywhere (user: mgagnon size: 24507)
| ︙ | ︙ | |||
795 796 797 798 799 800 801 |
if( !incrFlag ){
fossil_print("project-id: %s\n", db_get("project-code", 0));
fossil_print("server-id: %s\n", db_get("server-code", 0));
zPassword = db_text(0, "SELECT pw FROM user WHERE login=%Q", g.zLogin);
fossil_print("admin-user: %s (password is \"%s\")\n", g.zLogin, zPassword);
}
}
| > > > > > | 795 796 797 798 799 800 801 802 803 804 805 806 |
if( !incrFlag ){
fossil_print("project-id: %s\n", db_get("project-code", 0));
fossil_print("server-id: %s\n", db_get("server-code", 0));
zPassword = db_text(0, "SELECT pw FROM user WHERE login=%Q", g.zLogin);
fossil_print("admin-user: %s (password is \"%s\")\n", g.zLogin, zPassword);
}
}
/*
* vim:ts=2:sts=2:et:sw=2:ft=c
*/
|