[jira] [Updated] (MARMOTTA-499) CSS not working

2014-05-20 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/MARMOTTA-499?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sergio Fernández updated MARMOTTA-499:
--

Environment: Mac OS X

 CSS not working
 ---

 Key: MARMOTTA-499
 URL: https://issues.apache.org/jira/browse/MARMOTTA-499
 Project: Marmotta
  Issue Type: Bug
  Components: Admin Interface
Affects Versions: 3.2.0
 Environment: Mac OS X
Reporter: Alvaro Graves
Priority: Trivial
  Labels: easyfix

 No CSS seems to work in the interface. I downloaded marmotta 3.2.0 and it is 
 running on a Mac OS X Mavericks machine.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


Re: [GSoC] community bonding period

2014-05-20 Thread Qihong Lin
Dear Sergio,

I've already set up the development environment. I'm ready to begin
coding in that fork.

The test suite and the test cases were removed from the code
repository on 5th May. Could you please tell me why? Any problems with
the tests? Can I reuse the removed test cases in my fork to ensure the
expected behaviors of my code?

Best regards,
Qihong Lin


On Mon, May 19, 2014 at 9:01 PM, Sergio Fernández wik...@apache.org wrote:
 Hi,

 according to the official timeline:

 http://www.google-melange.com/gsoc/events/google/gsoc2014

 today students begin coding for their Google Summer of Code projects;
 Google begins issuing initial student payments provided tax forms are on
 file and students are in good standing with their communities.

 I've saw some activity at the MARMOTTA-444 fork at github:

 https://github.com/confidencesun/marmotta/commits/MARMOTTA-444

 Please Qihong Lin, let me know if you have any question to actually start to
 work. I think we can privately talk for some internal details of your
 project (you can find me at skype as sergio.fernandez.lopez), but you should
 periodically report your progress here, probably according the project plan
 submitted with your proposal:

 http://www.google-melange.com/gsoc/proposal/review/org/google/gsoc2014/confidence_sun/5629499534213120

 Good luck!

 Cheers,


 --
 Sergio Fernández
 Senior Researcher
 Knowledge and Media Technologies
 Salzburg Research Forschungsgesellschaft mbH
 Jakob-Haringer-Straße 5/3 | 5020 Salzburg, Austria
 T: +43 662 2288 318 | M: +43 660 2747 925
 sergio.fernan...@salzburgresearch.at
 http://www.salzburgresearch.at


[GitHub] marmotta pull request: Add an LDPath function to retrieve a back-e...

2014-05-20 Thread cbeer
GitHub user cbeer opened a pull request:

https://github.com/apache/marmotta/pull/6

Add an LDPath function to retrieve a back-end defined response header

With the `fn:header` function, LDPath implementations can retrieve 
headers from the backend (which may be HTTP headers for some backends, but 
may be other metadata about the resource for others).

e.g. 

```
content_type = fn:header(Content-Type) :: xsd:string ;
```

Could result in:

```
content_type = {application/rdf+xml}
```

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/cbeer/marmotta ldcache-headers

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/marmotta/pull/6.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #6


commit 6ea7bc8cd1f7e7a90040459e92039ade15dcce74
Author: Chris Beer cab...@stanford.edu
Date:   2014-05-20T19:28:15Z

Add an LDPath function (fn:header) to retrieve a backend-defined
response header for a resource

The AbstractHttpProvider provides an example implementation that stores
all the HTTP headers. Other backends have empty header implementation.




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Created] (MARMOTTA-505) Add a LDPath function to access response headers, which may contain useful information

2014-05-20 Thread Chris Beer (JIRA)
Chris Beer created MARMOTTA-505:
---

 Summary: Add a LDPath function to access response headers, which 
may contain useful information
 Key: MARMOTTA-505
 URL: https://issues.apache.org/jira/browse/MARMOTTA-505
 Project: Marmotta
  Issue Type: New Feature
  Components: LDCache, LDClient, LDPath
Reporter: Chris Beer


Some linked data resources that I'm requesting have important information in 
their HTTP headers. I would like to access those headers from an LDPath program.

To do so, I expanded the LDCache and LDClient APIs to support exposing headers 
to a newly created LDPath function. 

{code}
content_type = fn:header(Content-Type) :: xsd:string ;
/* content_type = {application/rdf+xml} */
{code}

https://github.com/apache/marmotta/pull/6



--
This message was sent by Atlassian JIRA
(v6.2#6252)