Skip to content

doc2401/help.eclipse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Help - Eclipse Platform Eclipse 文档静态版

帮助文档 Eclipse documentation help.html 机翻 help.html

Tip of the Day tips.html 每日提示 机翻 tips.html

文档列表

script

更新日志CHANGELOG.md

## 同步文件
rsync -avz  --safe-links   --recursive mirrors.nju.edu.cn::eclipse/releases/2024-12/ 2024-12

##下载目录
Invoke-WebRequest -Uri "https://help.eclipse.org/2024-12/advanced/tocfragment" -OutFile "toc/2024-12.tocfragment.xml"

## 解压文件
java ExtractHelpLib "toc/2022-09.tocfragment.xml"  "../help.eclipse.mirrors/2022-09/202209141001/plugins"

Copy-Item -Path "toc/2022-09.tocfragment.xml" -Destination "target/toc/2022-09/tocfragment.xml"

cd target/toc/2022-09/ 

git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:doc2401/help.eclipse.2022-09.git
git push -u origin main
cd ../../../


# 代码中有中文注释 需要 指定 UTF-8编码(centos)
javac  -encoding UTF-8  ExtractHelpLib.java

## 查看目录
rsync download.eclipse.org::eclipseMirror/releases/

## 获取最佳镜像地址 Direct link to file (download starts immediately from best mirror)
curl -I "https://www.eclipse.org/downloads/download.php?file=/&r=1" |grep ocation
Location: http://ftp.osuosl.org/pub/eclipse/
## 查看镜像目录 不带pub前缀
rsync ftp.osuosl.org::eclipse/releases/


# 查看目录 找到发行版最新目录
rsync download.eclipse.org::eclipseMirror/releases/2018-09/201809191002/plugins/*.jar 
# 同步目录 发行版插件目录 到 201809191002-plugins ,不用提前创建 rsync will `created directory` 
rsync  -avz  --safe-links   --recursive    download.eclipse.org::eclipseMirror/releases/2018-09/201809191002/plugins/*.jar ./201809191002-plugins


#下载
wget https://help.eclipse.org/2018-09/advanced/tocfragment -O  2018-09.tocfragment.xml 
# java 代码 解压文件
java ExtractHelpLib 2018-09.tocfragment.xml  ./201809191002-plugins
# 拷贝文件
cp 2018-09.tocfragment.xml   target/2018-09/tocfragment.xml

## 发布github
cd target/2018-09/
git init
git add .## 添加所有文件
git commit -m "first commit"
git remote add origin https://github.com/xy2401/help.eclipse.2018-09.git
#git push -u origin master
## 推送 gh-pages分支 就不用手动设置GitHub Pages
# push to the remote gh-pages branch with force
git push --force origin master:gh-pages



## 同步目录tip
rsync  -avz  --safe-links   --recursive    mirrors.tuna.tsinghua.edu.cn::eclipse/eclipse/tips/ ../help.eclipse.tips


## org.eclipse.jst.ws.cxf.doc.user_1.0.300.v201802222200.jar 有一些另外都 jar 不在 xml 里面 。额外解压

reference

本地启动帮助中心 Standalone help

Standalone help

Tree-nav based on details/summary

https://www.w3.org/TR/2017/NOTE-wai-aria-practices-1.1-20171214/examples/treeview/treeview-2/treeview-2b.html

About

eclipse 帮助文档 静态网页版本

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • HTML 83.2%
  • Java 16.8%