Re: WARN: project from a retired committee but PMC not changed to Attic in http://svn.apache.org/repos/asf/oltu/site/doap_org.apache.oltu.parent.rdf

2018-04-15 Thread sebb
The auth file has been updated and I have changed the Oltu DOAP

On 14 April 2018 at 08:44, Jan Iversen  wrote:
> I like to get an email from infra about needed changes, when the Infra ticket 
> to give us permission is still open:
>
> https://issues.apache.org/jira/browse/INFRA-16309 
> 
>
> Gmcdonald wrote in a comment, that he will do it.
>
> rgds
> Jan I.
>
>
>> On 14 Apr 2018, at 04:00, Projects  wrote:
>>
>


Re: New website proposal

2018-04-15 Thread Jan Iversen


Sent from my iPad

> On 15 Apr 2018, at 11:37, sebb  wrote:
> 
>> On 15 April 2018 at 10:03,   wrote:
>> Hi
>> 
>> Please have a look at
>> http://attic.apache.org/test.html 
>> 
>> This is a “new” homepage. The only real new thing is that I got rid of “ant” 
>> and sidebar/project pages are generated in Javascript. This makes 
>> maintenance for me a lot easier.
> 
> It looks fine.
> However if Javascript is disabled, the sidebar is missing, but there
> is no indication that this might be so.
> 
>> As a side effect, we got a json list (in scripts/attic.js) of all projects, 
>> that might be useful for other purposes.
>> 
>> Please feel free to correct/amend especially the project list.
> 
>> If nobody objects I will put it in production later and cleanup the site.
> 
> I would rather see the JSON file used to generate a static site.
I agree on that, but with the limitations, the only solution would be a build 
job, that somehow triggers on svn commit. I have no experience with that but 
patches are welcome.

rgds
jan i

> 
>> rgds
>> Jan I


Re: New website proposal

2018-04-15 Thread sebb
On 15 April 2018 at 10:03,   wrote:
> Hi
>
> Please have a look at
> http://attic.apache.org/test.html 
>
> This is a “new” homepage. The only real new thing is that I got rid of “ant” 
> and sidebar/project pages are generated in Javascript. This makes maintenance 
> for me a lot easier.

It looks fine.
However if Javascript is disabled, the sidebar is missing, but there
is no indication that this might be so.

> As a side effect, we got a json list (in scripts/attic.js) of all projects, 
> that might be useful for other purposes.
>
> Please feel free to correct/amend especially the project list.

> If nobody objects I will put it in production later and cleanup the site.

I would rather see the JSON file used to generate a static site.

> rgds
> Jan I


svn commit: r1829196 - in /attic/site/docs: projects.html scripts/attic.js

2018-04-15 Thread jani
Author: jani
Date: Sun Apr 15 08:53:08 2018
New Revision: 1829196

URL: http://svn.apache.org/viewvc?rev=1829196=rev
Log:
add link to repo in project template


Modified:
attic/site/docs/projects.html
attic/site/docs/scripts/attic.js

Modified: attic/site/docs/projects.html
URL: 
http://svn.apache.org/viewvc/attic/site/docs/projects.html?rev=1829196=1829195=1829196=diff
==
--- attic/site/docs/projects.html (original)
+++ attic/site/docs/projects.html Sun Apr 15 08:53:08 2018
@@ -52,6 +52,7 @@
 Issue Tracker
 Wiki
 Board Reports
+Source code
   
   As with any project in the Attic - if you should choose to fork 
ACE outside of Apache, 
  please let us know.

Modified: attic/site/docs/scripts/attic.js
URL: 
http://svn.apache.org/viewvc/attic/site/docs/scripts/attic.js?rev=1829196=1829195=1829196=diff
==
--- attic/site/docs/scripts/attic.js (original)
+++ attic/site/docs/scripts/attic.js Sun Apr 15 08:53:08 2018
@@ -648,11 +648,16 @@ function addSidebar()
document.getElementById("projList").innerHTML = projText;
 }
 
+function addHref(ref, title)
+{
+  return "" + title + "";
+}
+
 function addProject()
 {
var jsonProj = jsonObj[parseInt(window.location.search.substr(1))];
var title= "Apache " + jsonProj["name"];
-   var website  = "" + title + "";
+   var website  = addHref(jsonProj["website"],title);
 
document.title = title + " - Apache Attic";
document.getElementById("header").innerHTML = "" + title + "";
@@ -666,20 +671,20 @@ function addProject()
for (var key in jsonProj["maillists"])
{
  if (mails.length > 0) { mails += " | "; }
- mails += "" + key + 
"";
+ mails += addHref(jsonProj["maillists"][key],key);
}
document.getElementById("mails").innerHTML = mails;
 
if (jsonProj["issues"] != "")
{
   document.getElementById("issue").innerHTML =
- "Issues";
+ addHref(jsonProj["issues"],"Issues");
}
 
if (jsonProj["wiki"] != "")
{
   document.getElementById("wiki").innerHTML =
- "Wiki";
+ addHref(jsonProj["wiki"],"Wiki");
}
 
var board = jsonProj["name"]
@@ -690,8 +695,10 @@ function addProject()
if (board != "")
{
   document.getElementById("board").innerHTML =
- "https://whimsy.apache.org/board/minutes/; +
- board +".html\">Minutes";
+ addHref("https://whimsy.apache.org/board/minutes/; +
+ board +".html","Minutes");
}
+
+   document.getElementById("source").innerHTML = addHref(jsonProj["source 
code"], "Repo");
 }
 




svn commit: r1829194 - in /attic/site/docs: projects.html scripts/attic.js

2018-04-15 Thread jani
Author: jani
Date: Sun Apr 15 08:37:17 2018
New Revision: 1829194

URL: http://svn.apache.org/viewvc?rev=1829194=rev
Log:
project.html working.


Modified:
attic/site/docs/projects.html
attic/site/docs/scripts/attic.js

Modified: attic/site/docs/projects.html
URL: 
http://svn.apache.org/viewvc/attic/site/docs/projects.html?rev=1829194=1829193=1829194=diff
==
--- attic/site/docs/projects.html (original)
+++ attic/site/docs/projects.html Sun Apr 15 08:37:17 2018
@@ -30,14 +30,14 @@
   
   
   
-  TBD
+  
  
  
   
 
 
   
-TBD
+
   
 
 
@@ -46,57 +46,29 @@
 
   
   
-  
-Read-only Resource
-Link(s)
-  
-  
-Website
-TBD
-  
-  
-Mailing List Archives
-  
-http://mail-archives.apache.org/mod_mbox/ace-dev/;>dev
-| http://mail-archives.apache.org/mod_mbox/ace-commits/;>commits
-| http://mail-archives.apache.org/mod_mbox/ace-users/;>users
-| http://mail-archives.apache.org/mod_mbox/ace-dev/;>dev
-  
-
-
-  Issue Tracker
-  https://issues.apache.org/jira/browse/ace/;>JIRA
-
-
-  Wiki
-  https://cwiki.apache.org/confluence/display/ace/;>cwiki.apache.org: 
ace
-
-
-  Board Reports
-  https://whimsy.apache.org/board/minutes/ace.html;>Minutes
-
-
-  Downloads
-  http://archive.apache.org/dist/ace/;>archive.apache.org/dist/ace/ 
-  | http://archive.apache.org/dist/ace/KEYS;>KEYS
-  
-
-  
-
-As with any project in the Attic - if you should choose to fork ACE outside 
of Apache, 
- please let us know so we can link to your project. 
-
- 
-
-
-  
-Copyright  2009-2016 The Apache Software Foundation, Licensed 
under the http://www.apache.org/licenses/LICENSE-2.0;>Apache License, 
Version 2.0.
-Apache and the Apache feather logo are trademarks of The Apache 
Software Foundation.
+Read-only ResourceLink(s)
+Website
+Mailing List Archives
+Issue Tracker
+Wiki
+Board Reports
+  
+  As with any project in the Attic - if you should choose to fork 
ACE outside of Apache, 
+ please let us know.
+
   
-  
-
-addSidebar();
-addProject();
-
+  
+  
+
+Copyright  2009-2016 The Apache Software Foundation, Licensed 
under the 
+   http://www.apache.org/licenses/LICENSE-2.0;>Apache 
License, Version 2.0.
+   Apache and the Apache feather logo are trademarks of
+   The Apache Software Foundation.
+  
+   
+   
+ addSidebar();
+ addProject();
+   
 
 

Modified: attic/site/docs/scripts/attic.js
URL: 
http://svn.apache.org/viewvc/attic/site/docs/scripts/attic.js?rev=1829194=1829193=1829194=diff
==
--- attic/site/docs/scripts/attic.js (original)
+++ attic/site/docs/scripts/attic.js Sun Apr 15 08:37:17 2018
@@ -44,6 +44,7 @@ var jsonObj = JSON.parse(`
"source code": "http://svn.apache.org/repos/asf/axis/axis2/c/sandesha;,
"issues":  "https://issues.apache.org/jira/projects/SANDESHA2C;,
"wiki":"",
+   "board":   "",
"maillists":   {},
"description": "Sandesha2/C was a C implementation of the 
WS-ReliableMessaging specification. Sandesha2/C was built on top of Apache 
Axis2/C Web services engine, as a module. Therefore by using Sandesha2/C you 
could add reliable messaging capability to Web services hosted using Axis2/C. 
Sandesha2/C could also be used with Axis2/C client to interact with an already 
hosted Web services in a reliable manner."
 },
@@ -54,6 +55,7 @@ var jsonObj = JSON.parse(`
"source code": "http://svn.apache.org/repos/asf/axis/axis2/c/savan;,
"issues":  "https://issues.apache.org/jira/browse/AXIS2C;,
"wiki":"",
+   "board":   "",
"maillists":   {},
"description": "Savan/C was a C implementation of WS-Eventing 
specification. Savan/C was built on top of Axis2/C. Therefore by using Savan/C 
you could add WS-Eventing capability to Web services hosted using Axis2/C. 
Savan/C was designed as a general publisher/subscriber tool. The arcitecture 
was designed to abstract the general publisher/subscriber features so that 
people could support more than one publisher/subscriber mechanisms within the 
same infrastructure."
 },
@@ -64,6 +66,7 @@ var jsonObj = JSON.parse(`
"source code": "",
"issues":  "https://issues.apache.org/jira/projects/SAVAN;,
"wiki":"",
+   "board":   "",
"maillists":   {},
"description": "Savan/Java was a Java implementation of WS-Eventing 
specification. Savan/Java was built on top of Axis2/Java. Therefore by using 
Savan/Java you could add WS-Eventing