Check-in [bb189a15fd]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add a link to the /intermap page for Interwiki Map keywords on the setup menu.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bb189a15fd30d762bd789ab976580a01de07c46d2bef8caee3ed66136fb1f224
User & Date: drh 2023-01-27 20:42:55.585
Context
2023-01-31
10:07
Small correction in the usage text for 'fossil git'. check-in: 1aa3188e8d user: danield tags: trunk
2023-01-27
20:42
Add a link to the /intermap page for Interwiki Map keywords on the setup menu. check-in: bb189a15fd user: drh tags: trunk
15:40
Update the built-in SQLite to the latest 3.41.0 alpha, for testing of SQLite. check-in: 0f30113b3b user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/interwiki.c.
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
    blob_appendf(out,"</table></blockquote>\n");
  }else{
    blob_appendf(out,"<i>None</i></blockquote>\n");
  }
}

/*
** WEBPAGE: /intermap
**
** View and modify the interwiki tag map or "intermap".
** This page is visible to administrators only.
*/
void interwiki_page(void){
  Stmt q;
  int n = 0;







|







292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
    blob_appendf(out,"</table></blockquote>\n");
  }else{
    blob_appendf(out,"<i>None</i></blockquote>\n");
  }
}

/*
** WEBPAGE: intermap
**
** View and modify the interwiki tag map or "intermap".
** This page is visible to administrators only.
*/
void interwiki_page(void){
  Stmt q;
  int n = 0;
Changes to src/setup.c.
124
125
126
127
128
129
130


131
132
133
134
135
136
137
    setup_menu_entry("Login-Group", "setup_login_group",
      "Manage single sign-on between this repository and others"
      " on the same server");
    setup_menu_entry("Tickets", "tktsetup",
      "Configure the trouble-ticketing system for this repository");
    setup_menu_entry("Wiki", "setup_wiki",
      "Configure the wiki for this repository");


    setup_menu_entry("Chat", "setup_chat",
      "Configure the chatroom");
  }
  setup_menu_entry("Search","srchsetup",
    "Configure the built-in search engine");
  setup_menu_entry("URL Aliases", "waliassetup",
    "Configure URL aliases");







>
>







124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
    setup_menu_entry("Login-Group", "setup_login_group",
      "Manage single sign-on between this repository and others"
      " on the same server");
    setup_menu_entry("Tickets", "tktsetup",
      "Configure the trouble-ticketing system for this repository");
    setup_menu_entry("Wiki", "setup_wiki",
      "Configure the wiki for this repository");
    setup_menu_entry("Interwiki Map", "intermap",
      "Mapping keywords for interwiki links");
    setup_menu_entry("Chat", "setup_chat",
      "Configure the chatroom");
  }
  setup_menu_entry("Search","srchsetup",
    "Configure the built-in search engine");
  setup_menu_entry("URL Aliases", "waliassetup",
    "Configure URL aliases");