hffariel edited a comment on issue #3408:
URL: 
https://github.com/apache/incubator-doris/issues/3408#issuecomment-620393344


   @morningman
   
   > Do you mean a new branch in 
https://github.com/apache/incubator-doris-website?
   
   No, separated directories are all in branch `afs-site`, for multi-version 
management.
   
   And the asf-site branch will be like:
   
   ```bash
   .
   ├─ master/
   │  ├─ en/
   │  │  ├─ subfolder
   │  │  │  ├─ one.md
   │  │  └─ three.md
   │  └─ zh-CN/
   │      ├─ subfolder
   │      │  ├─ one.md
   │      └─ three.md
   ├─ branch-0.11/
   │  ├─ en/
   │  │  ├─ subfolder
   │  │  │  ├─ one.md
   │  │  └─ three.md
   │  └─ zh-CN/
   │      ├─ subfolder
   │      │  ├─ one.md
   │      └─ three.md
   ├─ index.html // user entry, and auto redirected to master folder
   └─ versions.json // all versions that can be seleted on the website are 
defined here
   ```
   
   And the `versions.json` is for `version options` configuring:
   
   ```json
   {
     "en": [
       {
         "text": "Versions", // dropdown label
         "items": [
           {
             "text": "master", // dropdown-item label
             "link": "/../master/en/installing/compilation.html", // entry page 
for this version
             "target": "_blank"
           },
           {
             "text": "incubating-test",
             "link": "/../branch-0.11/en/installing/compilation.html",
             "target": "_blank"
           }
         ]
       }
     ],
     "zh-CN": [
       {
         "text": "版本",
         "items": [
           {
             "text": "master",
             "link": "/../master/zh-CN/installing/compilation.html",
             "target": "_blank"
           },
           {
             "text": "incubating-test",
             "link": "/../incubating-test/zh-CN/installing/compilation.html",
             "target": "_blank"
           }
         ]
       }
     ]
   }
   ```
   
   > Have you done most of the migration?
   
   Yeah, i've done most part of the migration, but there still exists some 
markdown lint problems which are not that important at this stage. And of 
course these lint problems would be fixed in the next few days.
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to