Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add documentation about internal data structures (specifically, the CONFIG table entries used and what they mean) on the login-group setup page. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5bb4cee5ec5a67f56abf890329a50330 |
| User & Date: | drh 2024-08-23 10:41:25.941 |
Context
|
2024-08-23
| ||
| 13:00 | Move the fossil_strdup() implementation from import.c over to util.c where it belongs. Add a new fossil_strdup_nn() that mimics the behavior of mprintf("%s",...), only faster. check-in: 0c9dff644e user: drh tags: trunk | |
| 10:41 | Add documentation about internal data structures (specifically, the CONFIG table entries used and what they mean) on the login-group setup page. check-in: 5bb4cee5ec user: drh tags: trunk | |
| 09:50 | Improvements to the /setup_login_group configuration page. check-in: 4420efdf32 user: drh tags: trunk | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
871 872 873 874 875 876 877 878 879 880 881 882 883 884 |
while( db_step(&q)==SQLITE_ROW ){
@ <tr><td>%h(db_column_text(&q,0))</td>
@ <td>%h(db_column_text(&q,1))</td>
@ <td>%h(db_column_text(&q,2))</td></tr>
}
db_finalize(&q);
@ </tbody></table>
style_table_sorter();
style_finish_page();
}
/*
** WEBPAGE: setup_timeline
**
| > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 |
while( db_step(&q)==SQLITE_ROW ){
@ <tr><td>%h(db_column_text(&q,0))</td>
@ <td>%h(db_column_text(&q,1))</td>
@ <td>%h(db_column_text(&q,2))</td></tr>
}
db_finalize(&q);
@ </tbody></table>
@ <h2>Interpretation</h2>
@ <ul>
@ <li><p><b>login-group-code</b> →
@ A random code assigned to each login-group. The login-group-code is
@ a unique identifier for the login-group.
@
@ <li><p><b>login-group-name</b> →
@ The human-readable name of the login-group.
@
@ <li><p><b>project-code</b> →
@ A random code assigned to each project. The project-code is
@ a unique identifier for the project. Multiple repositories can share
@ the same project-code. When two or more repositories have the same
@ project code, that mean those repositories are clones of each other.
@ Repositories are only able to sync if they share the same project-code.
@
@ <li><p><b>project-description</b> →
@ A description of project in this repository. This is a verbose form
@ of project-name. This description can be edited in the second entry
@ box on the <a href="./setup_config">Setup/Configuration page</a>.
@
@ <li><p><b>project-name</b> →
@ The human-readable name for the project. The project-name can be
@ modified in the first entry on the
@ <a href="./setup_config">Setup/Configuration page</a>.
@
@ <li><p><b>peer-repo-<i>CODE</i></b> →
@ <i>CODE</i> is 16-character prefix of the project-code for another
@ repository that is part of the same login-group. The value is the
@ filename for the peer repository.
@
@ <li><p><b>peer-name-<i>CODE</i></b> →
@ <i>CODE</i> is 16-character prefix of the project-code for another
@ repository that is part of the same login-group. The value is
@ project-name value for the other repository.
@ </ul>
style_table_sorter();
style_finish_page();
}
/*
** WEBPAGE: setup_timeline
**
|
| ︙ | ︙ |