Changeset f68967c
- Timestamp:
- Feb 10, 2017 4:30:47 PM (4 years ago)
- Branches:
- master
- Children:
- 82095d9
- Parents:
- 9898a4a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/net/i2p/router/web/SummaryBarRenderer.java
r9898a4a rf68967c 183 183 "<table id=\"sb_internals\"><tr><td>\n" + 184 184 185 "<a href=\"/tunnels\" target=\"_top\" title=\"") 186 .append(_t("View existing tunnels and tunnel build status")) 187 .append("\">") 188 .append(nbsp(_t("Tunnels"))) 189 .append("</a>\n" + 190 191 "<a href=\"/peers\" target=\"_top\" title=\"") 192 .append(_t("Show all current peer connections")) 193 .append("\">") 194 .append(nbsp(_t("Peers"))) 195 .append("</a>\n" + 196 197 "<a href=\"/profiles\" target=\"_top\" title=\"") 198 .append(_t("Show recent peer performance profiles")) 199 .append("\">") 200 .append(nbsp(_t("Profiles"))) 201 .append("</a>\n" + 202 203 "<a href=\"/netdb\" target=\"_top\" title=\"") 204 .append(_t("Show list of all known I2P routers")) 205 .append("\">") 206 .append(nbsp(_t("NetDB"))) 207 .append("</a>\n" + 208 209 "<a href=\"/logs\" target=\"_top\" title=\"") 210 .append(_t("Health Report")) 211 .append("\">") 212 .append(nbsp(_t("Logs"))) 185 "<a href=\"/dns\" target=\"_top\" title=\"") 186 .append(_t("Manage your I2P hosts file here (I2P domain name resolution)")) 187 .append("\">") 188 .append(nbsp(_t("Addressbook"))) 213 189 .append("</a>\n"); 214 215 // "<a href=\"/jobs.jsp\" target=\"_top\" title=\"")216 // .append(_t("Show the router's workload, and how it's performing"))217 // .append("\">")218 // .append(_t("Jobs"))219 // .append("</a>\n" +220 190 221 191 if (!StatSummarizer.isDisabled()) { … … 227 197 } 228 198 229 buf.append("<a href=\"/ dns\" target=\"_top\" title=\"")230 .append(_t(" Manage your I2P hosts file here (I2P domain name resolution)"))231 .append("\">") 232 .append(nbsp(_t(" Addressbook")))199 buf.append("<a href=\"/i2ptunnelmgr\" target=\"_top\" title=\"") 200 .append(_t("Local Tunnels")) 201 .append("\">") 202 .append(nbsp(_t("Hidden Services Manager"))) 233 203 .append("</a>\n" + 234 204 235 "<a href=\"/i2ptunnelmgr\" target=\"_top\" title=\"") 236 .append(_t("Local Tunnels")) 237 .append("\">") 238 .append(nbsp(_t("Hidden Services Manager"))) 205 // "<a href=\"/jobs.jsp\" target=\"_top\" title=\"") 206 // .append(_t("Show the router's workload, and how it's performing")) 207 // .append("\">") 208 // .append(_t("Jobs")) 209 // .append("</a>\n" + 210 211 "<a href=\"/logs\" target=\"_top\" title=\"") 212 .append(_t("Health Report")) 213 .append("\">") 214 .append(nbsp(_t("Logs"))) 215 .append("</a>\n" + 216 217 "<a href=\"/netdb\" target=\"_top\" title=\"") 218 .append(_t("Show list of all known I2P routers")) 219 .append("\">") 220 .append(nbsp(_t("NetDB"))) 221 .append("</a>\n" + 222 223 "<a href=\"/peers\" target=\"_top\" title=\"") 224 .append(_t("Show all current peer connections")) 225 .append("\">") 226 .append(nbsp(_t("Peers"))) 227 .append("</a>\n" + 228 229 "<a href=\"/profiles\" target=\"_top\" title=\"") 230 .append(_t("Show recent peer performance profiles")) 231 .append("\">") 232 .append(nbsp(_t("Profiles"))) 233 .append("</a>\n" + 234 235 "<a href=\"/tunnels\" target=\"_top\" title=\"") 236 .append(_t("View existing tunnels and tunnel build status")) 237 .append("\">") 238 .append(nbsp(_t("Tunnels"))) 239 239 .append("</a>\n"); 240 240
Note: See TracChangeset
for help on using the changeset viewer.