Re: Your project's website

2020-09-04 Thread David Blevins
> On Sep 4, 2020, at 7:09 PM, David Blevins  wrote:
> 
> Amazing work, David -- sorry for not saying so sooner!
> 
> Since we now have our git repo with all the current html and the required 
> yaml file, I'll file a ticket with infra to have us cutover from 
> CMS/subversion to the git publishing.

Ticket filed for those who want to track/participate:

 - https://issues.apache.org/jira/browse/INFRA-20820


-David



smime.p7s
Description: S/MIME cryptographic signature


Re: Your project's website

2020-09-04 Thread David Blevins
Amazing work, David -- sorry for not saying so sooner!

Since we now have our git repo with all the current html and the required yaml 
file, I'll file a ticket with infra to have us cutover from CMS/subversion to 
the git publishing.

All other topics such as Antora, etc. still on the table and probably even 
easier to pursue once we get out from behind the CMS.


-David


> On Aug 29, 2020, at 9:02 AM, David Jencks  wrote:
> 
> The content history is now in tomee-site-pub.  I added an .asf.yaml file:
> 
> ```
> notifications:
>  commits: site-...@tomee.apache.org
>  issues: site-...@tomee.apache.org
>  pullrequests: site-...@tomee.apache.org
>  jira_options: link label link label
> 
> # this staging config will publish any commits to 
> https://tomee-beta.staged.apache.org
> #staging:
> #  profile: beta
> #  whoami: master
> ```
> 
> that directs mail to site-...@tomee.apache.org.
> 
> Mail notifications are turned back on.
> 
> For reference, here’s how far I’ve got with publishing the Aries site:
> 
> ```
> #!/bin/bash
> 
> npm run clean-install
> 
> rm -rf build
> mkdir -p build/site
> # clone the aries-site-pub repo
> (
> cd build/site
> git clone --depth 1 g...@github.com:apache/aries-site-pub.git .
> git rm -r .
> )
> 
> npm run build-noclean
> 
> (
> cd build/site
> git add .
> git commit -m "site build"
> git push origin master
> )
> ```
> 
> This is for an Antora-only site; the site build is actually `npm run 
> build-noclean`.  So far I only know how to run this locally, buildbot and 
> jenkins remain mysteries to me.  I don’t see why this couldn’t be run on 
> GitHub using GitHub actions, but it might be against infra policy.
> 
> David Jencks
> 
>> On Aug 27, 2020, at 9:51 PM, David Jencks  wrote:
>> 
>> Maybe my memory’s just a bit slow.
>> 
>> svn log https://svn.apache.org/repos/infra/websites/production/tomee/content 
>>  shows 
>> that I’ve found the last commit.
>> 
>> David Jencks
>> 
>>> On Aug 27, 2020, at 9:47 PM, David Jencks >> > wrote:
>>> 
>>> I’m afraid I no longer understand how svn works or how to see what’s in it. 
>>>  I can’t find the published site on viewvc.
>>> 
>>> The last imported-to-git revision I got was 
>>> 
>>> commit d971bdc415a5aacedad7a73bfc59a72abe0ddc09 (HEAD -> master, svn/trunk)
>>> Author: Daniel Gruno mailto:humbed...@apache.org>>
>>> Date:   Mon Aug 10 17:53:26 2020 +
>>> 
>>>Publishing svnmucc operation to tomee site by humbedooh
>>> 
>>>git-svn-id: 
>>> https://svn.apache.org/repos/infra/websites/production/tomee/content@1064188
>>>  
>>> 
>>>  90ea9780-b833-de11-8433-001ec94261de
>>> 
>>> 
>>> however there appeared to be a git gc error after that.  I can’t figure out 
>>> how to confirm that this is indeed the last site commit, although running 
>>> the svn2git command again doesn’t find anything more.
>>> 
>>> What I can find in https://svn.apache.org/viewvc/tomee/site/trunk/?view=log 
>>>  is
>>> 
>>> Revision 1880750 
>>>  - Directory 
>>> Listing  
>>> Modified Mon Aug 10 17:17:31 2020 UTC (2 weeks, 3 days ago) by dblevins
>>> force cms to update
>>> so the time frame seems approximately right.
>>> 
>>> Can anyone confirm I’ve got the whole history?
>>> 
>>> Thanks
>>> David Jencks
>>> 
 On Aug 27, 2020, at 7:44 PM, David Jencks >>> > wrote:
 
 tomee-site-pub created
 site-...@tomee.apache.org  requested
 INFRA-20781  (disable 
 commit emails) opened
 svn2git still in process.
 
 If things go really quickly I might be able to push tomorrow.
 
 David Jencks
 
> On Aug 27, 2020, at 4:42 PM, David Blevins  > wrote:
> 
>> On Aug 27, 2020, at 1:58 PM, David Jencks > > wrote:
>> 
>> I’ve been “warming up” with the Aries website and did this recently for 
>> them.  I think I can do this easily.  What do we want the TomEE repo to 
>> be named? I’d suggest tomee-site-pub.
> 
> I was struggling to think of a good name.  `tomee-site-pub` is great!
> 
>> On Aug 27, 2020, at 2:11 PM, David Jencks > > wrote:
>> 
>> I started…. should be done in a few hours.  Next step is to create the 
>> apache git repo using self-serve and ask infra to turn off commit emails 
>> for the push (which may take a day or so).
>> 
>> Where should commit emails for this repo go?  For aries I created a 
>> site-...@aries.apache.org  list since 

Re: Your project's website

2020-08-29 Thread David Jencks
The content history is now in tomee-site-pub.  I added an .asf.yaml file:

```
notifications:
  commits: site-...@tomee.apache.org
  issues: site-...@tomee.apache.org
  pullrequests: site-...@tomee.apache.org
  jira_options: link label link label

# this staging config will publish any commits to 
https://tomee-beta.staged.apache.org
#staging:
#  profile: beta
#  whoami: master
```

that directs mail to site-...@tomee.apache.org.

Mail notifications are turned back on.

For reference, here’s how far I’ve got with publishing the Aries site:

```
#!/bin/bash

npm run clean-install

rm -rf build
mkdir -p build/site
# clone the aries-site-pub repo
(
cd build/site
git clone --depth 1 g...@github.com:apache/aries-site-pub.git .
git rm -r .
)

npm run build-noclean

(
cd build/site
git add .
git commit -m "site build"
git push origin master
)
```

This is for an Antora-only site; the site build is actually `npm run 
build-noclean`.  So far I only know how to run this locally, buildbot and 
jenkins remain mysteries to me.  I don’t see why this couldn’t be run on GitHub 
using GitHub actions, but it might be against infra policy.

David Jencks

> On Aug 27, 2020, at 9:51 PM, David Jencks  wrote:
> 
> Maybe my memory’s just a bit slow.
> 
> svn log https://svn.apache.org/repos/infra/websites/production/tomee/content 
>  shows 
> that I’ve found the last commit.
> 
> David Jencks
> 
>> On Aug 27, 2020, at 9:47 PM, David Jencks > > wrote:
>> 
>> I’m afraid I no longer understand how svn works or how to see what’s in it.  
>> I can’t find the published site on viewvc.
>> 
>> The last imported-to-git revision I got was 
>> 
>> commit d971bdc415a5aacedad7a73bfc59a72abe0ddc09 (HEAD -> master, svn/trunk)
>> Author: Daniel Gruno mailto:humbed...@apache.org>>
>> Date:   Mon Aug 10 17:53:26 2020 +
>> 
>> Publishing svnmucc operation to tomee site by humbedooh
>> 
>> git-svn-id: 
>> https://svn.apache.org/repos/infra/websites/production/tomee/content@1064188 
>> 
>>  90ea9780-b833-de11-8433-001ec94261de
>> 
>> 
>> however there appeared to be a git gc error after that.  I can’t figure out 
>> how to confirm that this is indeed the last site commit, although running 
>> the svn2git command again doesn’t find anything more.
>> 
>> What I can find in https://svn.apache.org/viewvc/tomee/site/trunk/?view=log 
>>  is
>> 
>> Revision 1880750 
>>  - Directory 
>> Listing  
>> Modified Mon Aug 10 17:17:31 2020 UTC (2 weeks, 3 days ago) by dblevins
>> force cms to update
>> so the time frame seems approximately right.
>> 
>> Can anyone confirm I’ve got the whole history?
>> 
>> Thanks
>> David Jencks
>> 
>>> On Aug 27, 2020, at 7:44 PM, David Jencks >> > wrote:
>>> 
>>> tomee-site-pub created
>>> site-...@tomee.apache.org  requested
>>> INFRA-20781  (disable 
>>> commit emails) opened
>>> svn2git still in process.
>>> 
>>> If things go really quickly I might be able to push tomorrow.
>>> 
>>> David Jencks
>>> 
 On Aug 27, 2020, at 4:42 PM, David Blevins >>> > wrote:
 
> On Aug 27, 2020, at 1:58 PM, David Jencks  > wrote:
> 
> I’ve been “warming up” with the Aries website and did this recently for 
> them.  I think I can do this easily.  What do we want the TomEE repo to 
> be named? I’d suggest tomee-site-pub.
 
 I was struggling to think of a good name.  `tomee-site-pub` is great!
 
> On Aug 27, 2020, at 2:11 PM, David Jencks  > wrote:
> 
> I started…. should be done in a few hours.  Next step is to create the 
> apache git repo using self-serve and ask infra to turn off commit emails 
> for the push (which may take a day or so).
> 
> Where should commit emails for this repo go?  For aries I created a 
> site-...@aries.apache.org  list since I 
> don’t think anyone is interested in looking at the html changes directly. 
>  Should I ask for such a list for TomEE?  Sending the emails there is 
> configured with the .asf.yaml file in the root of the repo.
 
 I think site-pub@ is another very good suggestion.
 
 Thank you so much for taking this one up, David!
 
 I'm pretty excited to ditch the CMS!  The last publish I did took hours of 
 checking/poking and prodding just to get the updates to go live as the 
 commit size was so large and there are 2 repos to go through.  It'll be 
 wonderful to be done 

Re: Your project's website

2020-08-27 Thread David Jencks
Maybe my memory’s just a bit slow.

svn log https://svn.apache.org/repos/infra/websites/production/tomee/content 
shows that I’ve found the last commit.

David Jencks

> On Aug 27, 2020, at 9:47 PM, David Jencks  wrote:
> 
> I’m afraid I no longer understand how svn works or how to see what’s in it.  
> I can’t find the published site on viewvc.
> 
> The last imported-to-git revision I got was 
> 
> commit d971bdc415a5aacedad7a73bfc59a72abe0ddc09 (HEAD -> master, svn/trunk)
> Author: Daniel Gruno mailto:humbed...@apache.org>>
> Date:   Mon Aug 10 17:53:26 2020 +
> 
> Publishing svnmucc operation to tomee site by humbedooh
> 
> git-svn-id: 
> https://svn.apache.org/repos/infra/websites/production/tomee/content@1064188 
> 
>  90ea9780-b833-de11-8433-001ec94261de
> 
> 
> however there appeared to be a git gc error after that.  I can’t figure out 
> how to confirm that this is indeed the last site commit, although running the 
> svn2git command again doesn’t find anything more.
> 
> What I can find in https://svn.apache.org/viewvc/tomee/site/trunk/?view=log 
>  is
> 
> Revision 1880750 
>  - Directory 
> Listing  
> Modified Mon Aug 10 17:17:31 2020 UTC (2 weeks, 3 days ago) by dblevins
> force cms to update
> so the time frame seems approximately right.
> 
> Can anyone confirm I’ve got the whole history?
> 
> Thanks
> David Jencks
> 
>> On Aug 27, 2020, at 7:44 PM, David Jencks > > wrote:
>> 
>> tomee-site-pub created
>> site-...@tomee.apache.org  requested
>> INFRA-20781  (disable 
>> commit emails) opened
>> svn2git still in process.
>> 
>> If things go really quickly I might be able to push tomorrow.
>> 
>> David Jencks
>> 
>>> On Aug 27, 2020, at 4:42 PM, David Blevins >> > wrote:
>>> 
 On Aug 27, 2020, at 1:58 PM, David Jencks >>> > wrote:
 
 I’ve been “warming up” with the Aries website and did this recently for 
 them.  I think I can do this easily.  What do we want the TomEE repo to be 
 named? I’d suggest tomee-site-pub.
>>> 
>>> I was struggling to think of a good name.  `tomee-site-pub` is great!
>>> 
 On Aug 27, 2020, at 2:11 PM, David Jencks >>> > wrote:
 
 I started…. should be done in a few hours.  Next step is to create the 
 apache git repo using self-serve and ask infra to turn off commit emails 
 for the push (which may take a day or so).
 
 Where should commit emails for this repo go?  For aries I created a 
 site-...@aries.apache.org  list since I 
 don’t think anyone is interested in looking at the html changes directly.  
 Should I ask for such a list for TomEE?  Sending the emails there is 
 configured with the .asf.yaml file in the root of the repo.
>>> 
>>> I think site-pub@ is another very good suggestion.
>>> 
>>> Thank you so much for taking this one up, David!
>>> 
>>> I'm pretty excited to ditch the CMS!  The last publish I did took hours of 
>>> checking/poking and prodding just to get the updates to go live as the 
>>> commit size was so large and there are 2 repos to go through.  It'll be 
>>> wonderful to be done with that.
>>> 
>>> 
>>> -David
>>> 
>> 
> 



Re: Your project's website

2020-08-27 Thread David Jencks
I’m afraid I no longer understand how svn works or how to see what’s in it.  I 
can’t find the published site on viewvc.

The last imported-to-git revision I got was 

commit d971bdc415a5aacedad7a73bfc59a72abe0ddc09 (HEAD -> master, svn/trunk)
Author: Daniel Gruno 
Date:   Mon Aug 10 17:53:26 2020 +

Publishing svnmucc operation to tomee site by humbedooh

git-svn-id: 
https://svn.apache.org/repos/infra/websites/production/tomee/content@1064188 
90ea9780-b833-de11-8433-001ec94261de


however there appeared to be a git gc error after that.  I can’t figure out how 
to confirm that this is indeed the last site commit, although running the 
svn2git command again doesn’t find anything more.

What I can find in https://svn.apache.org/viewvc/tomee/site/trunk/?view=log is

Revision 1880750  
- Directory Listing 
 
Modified Mon Aug 10 17:17:31 2020 UTC (2 weeks, 3 days ago) by dblevins
force cms to update
so the time frame seems approximately right.

Can anyone confirm I’ve got the whole history?

Thanks
David Jencks

> On Aug 27, 2020, at 7:44 PM, David Jencks  wrote:
> 
> tomee-site-pub created
> site-...@tomee.apache.org  requested
> INFRA-20781  (disable 
> commit emails) opened
> svn2git still in process.
> 
> If things go really quickly I might be able to push tomorrow.
> 
> David Jencks
> 
>> On Aug 27, 2020, at 4:42 PM, David Blevins > > wrote:
>> 
>>> On Aug 27, 2020, at 1:58 PM, David Jencks >> > wrote:
>>> 
>>> I’ve been “warming up” with the Aries website and did this recently for 
>>> them.  I think I can do this easily.  What do we want the TomEE repo to be 
>>> named? I’d suggest tomee-site-pub.
>> 
>> I was struggling to think of a good name.  `tomee-site-pub` is great!
>> 
>>> On Aug 27, 2020, at 2:11 PM, David Jencks >> > wrote:
>>> 
>>> I started…. should be done in a few hours.  Next step is to create the 
>>> apache git repo using self-serve and ask infra to turn off commit emails 
>>> for the push (which may take a day or so).
>>> 
>>> Where should commit emails for this repo go?  For aries I created a 
>>> site-...@aries.apache.org  list since I 
>>> don’t think anyone is interested in looking at the html changes directly.  
>>> Should I ask for such a list for TomEE?  Sending the emails there is 
>>> configured with the .asf.yaml file in the root of the repo.
>> 
>> I think site-pub@ is another very good suggestion.
>> 
>> Thank you so much for taking this one up, David!
>> 
>> I'm pretty excited to ditch the CMS!  The last publish I did took hours of 
>> checking/poking and prodding just to get the updates to go live as the 
>> commit size was so large and there are 2 repos to go through.  It'll be 
>> wonderful to be done with that.
>> 
>> 
>> -David
>> 
> 



Re: Your project's website

2020-08-27 Thread David Jencks
tomee-site-pub created
site-...@tomee.apache.org requested
INFRA-20781  (disable commit 
emails) opened
svn2git still in process.

If things go really quickly I might be able to push tomorrow.

David Jencks

> On Aug 27, 2020, at 4:42 PM, David Blevins  wrote:
> 
>> On Aug 27, 2020, at 1:58 PM, David Jencks  wrote:
>> 
>> I’ve been “warming up” with the Aries website and did this recently for 
>> them.  I think I can do this easily.  What do we want the TomEE repo to be 
>> named? I’d suggest tomee-site-pub.
> 
> I was struggling to think of a good name.  `tomee-site-pub` is great!
> 
>> On Aug 27, 2020, at 2:11 PM, David Jencks  wrote:
>> 
>> I started…. should be done in a few hours.  Next step is to create the 
>> apache git repo using self-serve and ask infra to turn off commit emails for 
>> the push (which may take a day or so).
>> 
>> Where should commit emails for this repo go?  For aries I created a 
>> site-...@aries.apache.org list since I don’t think anyone is interested in 
>> looking at the html changes directly.  Should I ask for such a list for 
>> TomEE?  Sending the emails there is configured with the .asf.yaml file in 
>> the root of the repo.
> 
> I think site-pub@ is another very good suggestion.
> 
> Thank you so much for taking this one up, David!
> 
> I'm pretty excited to ditch the CMS!  The last publish I did took hours of 
> checking/poking and prodding just to get the updates to go live as the commit 
> size was so large and there are 2 repos to go through.  It'll be wonderful to 
> be done with that.
> 
> 
> -David
> 



Re: Your project's website

2020-08-27 Thread David Blevins
> On Aug 27, 2020, at 1:58 PM, David Jencks  wrote:
> 
> I’ve been “warming up” with the Aries website and did this recently for them. 
>  I think I can do this easily.  What do we want the TomEE repo to be named? 
> I’d suggest tomee-site-pub.

I was struggling to think of a good name.  `tomee-site-pub` is great!

> On Aug 27, 2020, at 2:11 PM, David Jencks  wrote:
> 
> I started…. should be done in a few hours.  Next step is to create the apache 
> git repo using self-serve and ask infra to turn off commit emails for the 
> push (which may take a day or so).
> 
> Where should commit emails for this repo go?  For aries I created a 
> site-...@aries.apache.org list since I don’t think anyone is interested in 
> looking at the html changes directly.  Should I ask for such a list for 
> TomEE?  Sending the emails there is configured with the .asf.yaml file in the 
> root of the repo.

I think site-pub@ is another very good suggestion.

Thank you so much for taking this one up, David!

I'm pretty excited to ditch the CMS!  The last publish I did took hours of 
checking/poking and prodding just to get the updates to go live as the commit 
size was so large and there are 2 repos to go through.  It'll be wonderful to 
be done with that.


-David



Re: Your project's website

2020-08-27 Thread David Jencks
I started…. should be done in a few hours.  Next step is to create the apache 
git repo using self-serve and ask infra to turn off commit emails for the push 
(which may take a day or so).

Where should commit emails for this repo go?  For aries I created a 
site-...@aries.apache.org list since I don’t think anyone is interested in 
looking at the html changes directly.  Should I ask for such a list for TomEE?  
Sending the emails there is configured with the .asf.yaml file in the root of 
the repo.

David Jencks

> On Aug 27, 2020, at 1:58 PM, David Jencks  wrote:
> 
> I’ve been “warming up” with the Aries website and did this recently for them. 
>  I think I can do this easily.  What do we want the TomEE repo to be named? 
> I’d suggest tomee-site-pub.
> 
> David Jencks
> 
>> On Aug 26, 2020, at 5:41 PM, David Blevins  wrote:
>> 
>> The first step we need to migrate away from the CMS is a git repo to hold 
>> the finished HTML.  With the help of some fine folks on users@infra.a.o here 
>> is the SVN repo that hold our site currently:
>> 
>> - https://svn.apache.org/repos/infra/websites/production/tomee/content/
>> 
>> Cesar, you were the last person to do an SVN to GIT migration.  Do you 
>> recall the steps or have any documents that helped you?
>> 
>> 
>> -- 
>> David Blevins
>> http://twitter.com/dblevins
>> http://www.tomitribe.com
>> 
>>> On Aug 7, 2020, at 6:16 AM, Andrew Wetmore  wrote:
>>> 
>>> Hi:
>>> 
>>> I am part of the Infrastructure team, and am writing to ask whether your
>>> project is still using the Apache CMS for your project website. As you
>>> know, the CMS is reaching end-of-life, and we need projects to move their
>>> websites onto a different option within the next few weeks.
>>> 
>>> There are several alternatives available, including those listed on this
>>> page [1] on managing project websites. Infra is assembling a Wiki page [2]
>>> on migrating a website from the CMS, and is looking forward to helping
>>> projects with this transition.
>>> 
>>> Please let me know whether your site is still on the Apache CMS and, if so,
>>> who will be the project point-of-contact with Infra for the migration.
>>> 
>>> Thank you!
>>> 
>>> 
>>> 
>>> 
>>> [1] https://infra.apache.org/project-site.html
>>> 
>>> [2]
>>> https://cwiki.apache.org/confluence/display/INFRA/Migrate+your+project+website+from+the+Apache+CMS
>>> 
>>> 
>>> -- 
>>> Andrew Wetmore
>>> Technical Writer-Editor
>>> Infra
>>> *Apache Software Foundation*
>>> andr...@apache.org
>>> 
>>> 
>>> Virus-free.
>>> www.avast.com
>>> 
>>> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>> 
> 



Re: Your project's website

2020-08-27 Thread David Jencks
I’ve been “warming up” with the Aries website and did this recently for them.  
I think I can do this easily.  What do we want the TomEE repo to be named? I’d 
suggest tomee-site-pub.

David Jencks

> On Aug 26, 2020, at 5:41 PM, David Blevins  wrote:
> 
> The first step we need to migrate away from the CMS is a git repo to hold the 
> finished HTML.  With the help of some fine folks on users@infra.a.o here is 
> the SVN repo that hold our site currently:
> 
> - https://svn.apache.org/repos/infra/websites/production/tomee/content/
> 
> Cesar, you were the last person to do an SVN to GIT migration.  Do you recall 
> the steps or have any documents that helped you?
> 
> 
> -- 
> David Blevins
> http://twitter.com/dblevins
> http://www.tomitribe.com
> 
>> On Aug 7, 2020, at 6:16 AM, Andrew Wetmore  wrote:
>> 
>> Hi:
>> 
>> I am part of the Infrastructure team, and am writing to ask whether your
>> project is still using the Apache CMS for your project website. As you
>> know, the CMS is reaching end-of-life, and we need projects to move their
>> websites onto a different option within the next few weeks.
>> 
>> There are several alternatives available, including those listed on this
>> page [1] on managing project websites. Infra is assembling a Wiki page [2]
>> on migrating a website from the CMS, and is looking forward to helping
>> projects with this transition.
>> 
>> Please let me know whether your site is still on the Apache CMS and, if so,
>> who will be the project point-of-contact with Infra for the migration.
>> 
>> Thank you!
>> 
>> 
>> 
>> 
>> [1] https://infra.apache.org/project-site.html
>> 
>> [2]
>> https://cwiki.apache.org/confluence/display/INFRA/Migrate+your+project+website+from+the+Apache+CMS
>> 
>> 
>> -- 
>> Andrew Wetmore
>> Technical Writer-Editor
>> Infra
>> *Apache Software Foundation*
>> andr...@apache.org
>> 
>> 
>> Virus-free.
>> www.avast.com
>> 
>> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> 



Re: Your project's website

2020-08-27 Thread Zowalla, Richard
We did such migrations in our university a few years ago.
I digged into our documentation, which provided a link to 
https://blokspeed.net/blog/2010/09/converting-from-subversion-to-git

The required authors list can be found here 
https://infra.apache.org/svn-to-git-migration.html

Hope this helps :)


Am Mittwoch, den 26.08.2020, 17:41 -0700 schrieb David Blevins:
> The first step we need to migrate away from the CMS is a git repo to
> hold the finished HTML.  With the help of some fine folks on 
> users@infra.a.o here is the SVN repo that hold our site currently:
> 
>  - 
> https://svn.apache.org/repos/infra/websites/production/tomee/content/
> 
> Cesar, you were the last person to do an SVN to GIT migration.  Do
> you recall the steps or have any documents that helped you?
> 
> 


smime.p7s
Description: S/MIME cryptographic signature


Re: Your project's website

2020-08-26 Thread David Blevins
The first step we need to migrate away from the CMS is a git repo to hold the 
finished HTML.  With the help of some fine folks on users@infra.a.o here is the 
SVN repo that hold our site currently:

 - https://svn.apache.org/repos/infra/websites/production/tomee/content/

Cesar, you were the last person to do an SVN to GIT migration.  Do you recall 
the steps or have any documents that helped you?


-- 
David Blevins
http://twitter.com/dblevins
http://www.tomitribe.com

> On Aug 7, 2020, at 6:16 AM, Andrew Wetmore  wrote:
> 
> Hi:
> 
> I am part of the Infrastructure team, and am writing to ask whether your
> project is still using the Apache CMS for your project website. As you
> know, the CMS is reaching end-of-life, and we need projects to move their
> websites onto a different option within the next few weeks.
> 
> There are several alternatives available, including those listed on this
> page [1] on managing project websites. Infra is assembling a Wiki page [2]
> on migrating a website from the CMS, and is looking forward to helping
> projects with this transition.
> 
> Please let me know whether your site is still on the Apache CMS and, if so,
> who will be the project point-of-contact with Infra for the migration.
> 
> Thank you!
> 
> 
> 
> 
> [1] https://infra.apache.org/project-site.html
> 
> [2]
> https://cwiki.apache.org/confluence/display/INFRA/Migrate+your+project+website+from+the+Apache+CMS
> 
> 
> -- 
> Andrew Wetmore
> Technical Writer-Editor
> Infra
> *Apache Software Foundation*
> andr...@apache.org
> 
> 
> Virus-free.
> www.avast.com
> 
> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>



smime.p7s
Description: S/MIME cryptographic signature


Re: Your project's website

2020-08-07 Thread Jonathan Gallimore
If you're willing to do that, that's fantastic - thank you. I think the
retirement of the CMS gives us a good opportunity to move this forward.

Thanks David.

Jon

On Fri, Aug 7, 2020 at 7:38 PM David Jencks 
wrote:

> At this point I’m willing to do the following with the Antora site effort:
>
> - put the examples back into the Antora site
> - find some way of including or referencing javadoc.
> - figuring out how to relate to the  pypubsub system so the site is
> published through git.
> - be the point of contact with infra.
>
> What I’m not willing to do is try to have a two-builder site when AFAICT
> one part is distinctly inferior and less capable and no one will tell me
> anything about why it’s better or required or nice or 
> I’m also not willing to wait indefinitely for feedback.  If I proceed with
> this it will have to be commit-then-review, as my previous requests for
> review have generally been met with silence.
>
> David Jencks
>
> > On Aug 7, 2020, at 6:16 AM, Andrew Wetmore  wrote:
> >
> > Hi:
> >
> > I am part of the Infrastructure team, and am writing to ask whether your
> > project is still using the Apache CMS for your project website. As you
> > know, the CMS is reaching end-of-life, and we need projects to move their
> > websites onto a different option within the next few weeks.
> >
> > There are several alternatives available, including those listed on this
> > page [1] on managing project websites. Infra is assembling a Wiki page
> [2]
> > on migrating a website from the CMS, and is looking forward to helping
> > projects with this transition.
> >
> > Please let me know whether your site is still on the Apache CMS and, if
> so,
> > who will be the project point-of-contact with Infra for the migration.
> >
> > Thank you!
> >
> >
> >
> >
> > [1] https://infra.apache.org/project-site.html
> >
> > [2]
> >
> https://cwiki.apache.org/confluence/display/INFRA/Migrate+your+project+website+from+the+Apache+CMS
> >
> >
> > --
> > Andrew Wetmore
> > Technical Writer-Editor
> > Infra
> > *Apache Software Foundation*
> > andr...@apache.org
> >
> > <
> https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail
> >
> > Virus-free.
> > www.avast.com
> > <
> https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail
> >
> > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
>


Re: Your project's website

2020-08-07 Thread David Jencks
At this point I’m willing to do the following with the Antora site effort:

- put the examples back into the Antora site
- find some way of including or referencing javadoc.
- figuring out how to relate to the  pypubsub system so the site is published 
through git.
- be the point of contact with infra.

What I’m not willing to do is try to have a two-builder site when AFAICT one 
part is distinctly inferior and less capable and no one will tell me anything 
about why it’s better or required or nice or 
I’m also not willing to wait indefinitely for feedback.  If I proceed with this 
it will have to be commit-then-review, as my previous requests for review have 
generally been met with silence.

David Jencks

> On Aug 7, 2020, at 6:16 AM, Andrew Wetmore  wrote:
> 
> Hi:
> 
> I am part of the Infrastructure team, and am writing to ask whether your
> project is still using the Apache CMS for your project website. As you
> know, the CMS is reaching end-of-life, and we need projects to move their
> websites onto a different option within the next few weeks.
> 
> There are several alternatives available, including those listed on this
> page [1] on managing project websites. Infra is assembling a Wiki page [2]
> on migrating a website from the CMS, and is looking forward to helping
> projects with this transition.
> 
> Please let me know whether your site is still on the Apache CMS and, if so,
> who will be the project point-of-contact with Infra for the migration.
> 
> Thank you!
> 
> 
> 
> 
> [1] https://infra.apache.org/project-site.html
> 
> [2]
> https://cwiki.apache.org/confluence/display/INFRA/Migrate+your+project+website+from+the+Apache+CMS
> 
> 
> -- 
> Andrew Wetmore
> Technical Writer-Editor
> Infra
> *Apache Software Foundation*
> andr...@apache.org
> 
> 
> Virus-free.
> www.avast.com
> 
> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>



Your project's website

2020-08-07 Thread Andrew Wetmore
Hi:

I am part of the Infrastructure team, and am writing to ask whether your
project is still using the Apache CMS for your project website. As you
know, the CMS is reaching end-of-life, and we need projects to move their
websites onto a different option within the next few weeks.

There are several alternatives available, including those listed on this
page [1] on managing project websites. Infra is assembling a Wiki page [2]
on migrating a website from the CMS, and is looking forward to helping
projects with this transition.

Please let me know whether your site is still on the Apache CMS and, if so,
who will be the project point-of-contact with Infra for the migration.

Thank you!




[1] https://infra.apache.org/project-site.html

[2]
https://cwiki.apache.org/confluence/display/INFRA/Migrate+your+project+website+from+the+Apache+CMS


-- 
Andrew Wetmore
Technical Writer-Editor
Infra
*Apache Software Foundation*
andr...@apache.org


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>