Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


3. Modify the markdown as needed using a text editor.
4. New releases go in folder _posts along with other news.
5. Releases must use the prescribed file naming format and have a header variable catagories=release along with some other variables describing the version.
6. The file download.md, using its scripts, should automatically populate the coresponding html based on your new post file and its variables, but it may need tweaking.

7. Install Jekyll.  This may not be straight forward if you don't have a ruby environment.  You may have to add Linux distro packages, then ruby gems, then more packages as dependencies present themselves.

8. Run this command in the content/ folder to auto-compile and web serve on port 4000:

    cd content/
    bundle exec jekyll serve

9. Now just iteratively  use your editor and web browser to edit and test changes.
10. When you are done making changes:
11. Move the content/target folder out of the way, you will commit this separately.

    mv content/target/ ../

12. Commit changes, add a remote to your own public git repo, and push to it with --set-upstream.
13. Create a pull request to the repo apache/incubator-rya-site branch master.
14. Now for the deployable HTML that you moved above:
15. In the same git folder,

    git checkout --force origin/asf-site
    git checkout -b another_new_branch_name_here
    rm -r content/*
Note: --force might remove any stray files left over.
Note: replace another_new_branch_name_here with a new branch hinting at your changes.
Note: the recursive remove of all the content is necessary to discover files deleted as well as changed.

16. Now copy the folder formally named target/ into the project, renaming it to content/.

    mv ../target/ ./content
17. Use git status to observe changes.  The css and other template files are probably not changed.  If they are flagged as modified, investigate CRLF or other trival differences.  See .gitattributes.  Try git diff  *css.  The file permissions might be different: chmod -R 755 *
18. When done, commit to your repo in a new branch as above.
19. Create a pull request as above, except to be merged into branch asf-site.
20. Beg and bribe peers and mentors to review changes.  Consider hosting the site temporarily for review, see below.
21. Make changes and commit them as above.  No need to create new pull requests as they follow the latest commit in the branch.

...