{"id":15952367,"url":"https://github.com/try0/wicket-component-document","last_synced_at":"2025-08-18T04:09:21.160Z","repository":{"id":144153876,"uuid":"396863032","full_name":"try0/wicket-component-document","owner":"try0","description":"Assists in browsing documents related to components.","archived":false,"fork":false,"pushed_at":"2021-08-29T13:47:11.000Z","size":73,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-10T21:46:44.462Z","etag":null,"topics":["apache-wicket","devtools","java","javascript","js","wicket"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/try0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-16T15:50:27.000Z","updated_at":"2024-12-30T01:19:26.000Z","dependencies_parsed_at":"2024-07-09T15:32:23.676Z","dependency_job_id":null,"html_url":"https://github.com/try0/wicket-component-document","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/try0/wicket-component-document","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/try0%2Fwicket-component-document","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/try0%2Fwicket-component-document/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/try0%2Fwicket-component-document/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/try0%2Fwicket-component-document/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/try0","download_url":"https://codeload.github.com/try0/wicket-component-document/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/try0%2Fwicket-component-document/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270940943,"owners_count":24671742,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache-wicket","devtools","java","javascript","js","wicket"],"created_at":"2024-10-07T13:08:22.494Z","updated_at":"2025-08-18T04:09:21.126Z","avatar_url":"https://github.com/try0.png","language":"Java","readme":"# wicket-component-document\n\nAssists in browsing documents related to components.  \nLinks to source code, javadoc, wiki, and more...\n\n\n## console\n```java\nif (getConfigurationType() == RuntimeConfigurationType.DEVELOPMENT) {\n\n    ComponentDocumentOption defaultOption = new ComponentDocumentOption();\n\n    ComponentDocumentSetting.createInitializer(this)\n            .setDefaultOption(defaultOption)\n            // wicket-component-document-samples GitHub\n            .addBaseUrl(\"jp.try0.wicket\",\n                    \"https://github.com/try0/wicket-component-document/tree/main/wicket-component-document-samples/src/main/java/\")\n            // wicket GitHub\n            .addBaseUrl(\"org.apache.wicket\",\n                    \"https://github.com/apache/wicket/tree/wicket-8.x/wicket-core/src/main/java/\")\n            .initialize();\n}\n```\n\n![wicket-component-document_console](https://user-images.githubusercontent.com/17096601/129600941-fe81c4db-3ca2-4b5d-b044-7a1d12ff41d8.gif)\n\n\n\n\n## multiple documents, tooltip\n\n```java\nif (getConfigurationType() == RuntimeConfigurationType.DEVELOPMENT) {\n\n    ComponentDocumentOption defaultOption = new ComponentDocumentOption();\n    defaultOption.setEnabledTooltip(true);\n\n    ComponentDocumentSetting.createInitializer(this)\n            .setDefaultOption(defaultOption)\n            // wicket-component-document-samples GitHub\n            .addBaseUrl(\"jp.try0.wicket\",\n                    \"https://github.com/try0/wicket-component-document/tree/main/wicket-component-document-samples/src/main/java/\")\n            // wicket GitHub\n            .addBaseUrl(\"org.apache.wicket\",\n                    \"https://github.com/apache/wicket/tree/wicket-8.x/wicket-core/src/main/java/\")\n            // wicket javadoc.io\n            .addBaseUrl(\"org.apache.wicket\",\n                    \"https://javadoc.io/doc/org.apache.wicket/wicket-core/8.13.0/\")\n            .setUrlAppender(new DocumentUrlAppender() {\n                @Override\n                protected String getComponentDocumentUrl(String baseUrl, Component component) {\n\n                    String url = super.getComponentDocumentUrl(baseUrl, component);\n                    if (baseUrl.startsWith(\"https://javadoc.io\")) {\n                        url = url.replaceAll(\"java$\", \"html\");\n                    }\n\n                    return url;\n                }\n            })\n            .initialize();\n}\n```\n\n![wicket-component-document_tooltip](https://user-images.githubusercontent.com/17096601/129847128-b185d333-68b6-4ccb-9fab-14ff00096d2b.gif)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftry0%2Fwicket-component-document","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftry0%2Fwicket-component-document","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftry0%2Fwicket-component-document/lists"}