[GitHub] [age-website] shinhanbyeol merged pull request #64: edit projectDetai.js

2022-08-24 Thread GitBox


shinhanbyeol merged PR #64:
URL: https://github.com/apache/age-website/pull/64


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] pdpotter commented on a diff in pull request #62: Create build-documentation-staging.yml

2022-08-24 Thread GitBox


pdpotter commented on code in PR #62:
URL: https://github.com/apache/age-website/pull/62#discussion_r953528932


##
.github/workflows/build-documentation-staging.yml:
##
@@ -0,0 +1,46 @@
+name: Build documentation
+
+on: push
+
+jobs:
+  deploy:
+runs-on: ubuntu-18.04
+steps:
+  - uses: actions/checkout@v2
+with:
+  fetch-depth: 0
+
+  - name: Setup Python
+uses: actions/setup-python@v2
+with:
+  python-version: '3.8'
+
+  - name: Upgrade pip
+run: |
+  # install pip=>20.1 to use "pip cache dir"
+  python3 -m pip install --upgrade pip
+  - name: Get pip cache dir
+id: pip-cache
+run: echo "::set-output name=dir::$(pip cache dir)"
+
+  - name: Cache dependencies
+uses: actions/cache@v2
+with:
+  path: ${{ steps.pip-cache.outputs.dir }}
+  key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
+  restore-keys: |
+${{ runner.os }}-pip-
+  - name: Install dependencies
+run: python3 -m pip install -r ./requirements.txt
+
+  - run: sphinx-multiversion docs build/html
+
+  - run: cp ./index.html ./build/html
+
+  - name: Deploy
+uses: peaceiris/actions-gh-pages@v3
+with:
+  github_token: ${{ secrets.GITHUB_TOKEN }}
+  publish_branch: asf-staging
+  publish_dir: ./build/html
+  destination_dir: docs

Review Comment:
   ```suggestion
 destination_dir: age-manual
   ```
   If I'm not mistaken, the documentation will be in the `age-manual` folder on 
the new website. Thinking of this: I hope this doesn't break any links from 
external sites and issues.



-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] pdpotter commented on issue #52: [Discussion] Please give us your opinion on the reform of the age website

2022-08-24 Thread GitBox


pdpotter commented on issue #52:
URL: https://github.com/apache/age-website/issues/52#issuecomment-1225434750

   I just realized the documentation will be in another location on the new 
site (`age-manual` instead of `docs`). Do we want to change the location, 
potentially breaking links from external sites and issues?


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] pdpotter commented on issue #52: [Discussion] Please give us your opinion on the reform of the age website

2022-08-24 Thread GitBox


pdpotter commented on issue #52:
URL: https://github.com/apache/age-website/issues/52#issuecomment-1225441810

   Will the new website be build manually each time, or will a GitHub workflow 
be added to automate this process?
   
   I'm going to have to make some changes to the documentation build config, as 
`new-web` and `documentation-staging` are incorrectly seen as documentation 
release branches. 


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] JoshInnis commented on a diff in pull request #62: Create build-documentation-staging.yml

2022-08-24 Thread GitBox


JoshInnis commented on code in PR #62:
URL: https://github.com/apache/age-website/pull/62#discussion_r953947538


##
.github/workflows/build-documentation-staging.yml:
##
@@ -0,0 +1,46 @@
+name: Build documentation
+
+on: push
+
+jobs:
+  deploy:
+runs-on: ubuntu-18.04
+steps:
+  - uses: actions/checkout@v2
+with:
+  fetch-depth: 0
+
+  - name: Setup Python
+uses: actions/setup-python@v2
+with:
+  python-version: '3.8'
+
+  - name: Upgrade pip
+run: |
+  # install pip=>20.1 to use "pip cache dir"
+  python3 -m pip install --upgrade pip
+  - name: Get pip cache dir
+id: pip-cache
+run: echo "::set-output name=dir::$(pip cache dir)"
+
+  - name: Cache dependencies
+uses: actions/cache@v2
+with:
+  path: ${{ steps.pip-cache.outputs.dir }}
+  key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
+  restore-keys: |
+${{ runner.os }}-pip-
+  - name: Install dependencies
+run: python3 -m pip install -r ./requirements.txt
+
+  - run: sphinx-multiversion docs build/html
+
+  - run: cp ./index.html ./build/html
+
+  - name: Deploy
+uses: peaceiris/actions-gh-pages@v3
+with:
+  github_token: ${{ secrets.GITHUB_TOKEN }}
+  publish_branch: asf-staging
+  publish_dir: ./build/html
+  destination_dir: docs

Review Comment:
   I made it docs so it wouldn't overwrite the documentation that was there, 
for now. But we can change that.



-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] JoshInnis commented on pull request #63: Change manual url

2022-08-24 Thread GitBox


JoshInnis commented on PR #63:
URL: https://github.com/apache/age-website/pull/63#issuecomment-1225881233

   This PR is related to the other PR open. 
https://github.com/apache/age-website/pull/62 The url was changed to not 
overwrite the other folder for the automated build script that PR creates, but 
it can be changed to age-manual. These changes go to separate branches, so they 
had to be separate PRs. Even though they are part of the same discussion


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age] JoshInnis closed issue #253: test 2

2022-08-24 Thread GitBox


JoshInnis closed issue #253: test 2
URL: https://github.com/apache/age/issues/253


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



AGE Unable to install properly

2022-08-24 Thread ~~~
Hello Sir:
When we installed Linux using source code, we were unable to install, and the 
error message could not find pg_class_d.h, pg_namespace_d.h file.


We do not know how to solve this problem, can you help me to complete the 
installation

Re: AGE Unable to install properly

2022-08-24 Thread Josh Innis
Hello,

Which version of Postgres are you using?


On Wed, Aug 24, 2022 at 8:54 AM ~~~ <1026398...@qq.com.invalid> wrote:

> Hello Sir:
> When we installed Linux using source code, we were unable to install, and
> the error message could not find pg_class_d.h, pg_namespace_d.h file.
>
>
> We do not know how to solve this problem, can you help me to complete the
> installation


[GitHub] [age] jrgemignani closed issue #254: Graph Representation

2022-08-24 Thread GitBox


jrgemignani closed issue #254: Graph Representation
URL: https://github.com/apache/age/issues/254


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] keikang0905 opened a new pull request, #65: change url address

2022-08-24 Thread GitBox


keikang0905 opened a new pull request, #65:
URL: https://github.com/apache/age-website/pull/65

   1. change url address to apply SSL
   2. change youtubu video 
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] shinhanbyeol merged pull request #65: change url address

2022-08-24 Thread GitBox


shinhanbyeol merged PR #65:
URL: https://github.com/apache/age-website/pull/65


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] keikang0905 opened a new pull request, #66: editing texts

2022-08-24 Thread GitBox


keikang0905 opened a new pull request, #66:
URL: https://github.com/apache/age-website/pull/66

   editing texts in the project, reddit area 


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [age-website] keikang0905 merged pull request #66: editing texts

2022-08-24 Thread GitBox


keikang0905 merged PR #66:
URL: https://github.com/apache/age-website/pull/66


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org