Images

View: New views
4 Messages — Rating Filter:   Alert me  

Images

by Nguni Phakela :: Rate this Message:

| View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.

Hi,

 

I have just used pebble to create a blogging facility for our site here at wits, https://elearn.wits.ac.za/blog

It is not yet live, but we are about to go live, except for a few things. The first one being, how can I integrate

Pictures for the contributors of the blog, such that when they do post a blog, a picture appears next to their

Post?

 

Kind Regards,

Nguni

 

 




------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user

Re: Images

by James Roper-6 :: Rate this Message:

| View Threaded | Show Only this Message

Hi Nguni,

Putting pictures of the contributors would require writing a content decorator plugin for blog posts.  My suggestion would be to use gravatar for the actual pictures (that way you don't need any sort of interface for mapping users to pictures, though you could possibly just do it by convention, ie its expected that a user who's name is jsmith should have a picture called jsmith.jpg in the images directory).

Some brief instructions for writing plugins can be found here:

https://open.jira.com/wiki/display/PEBBLE/Plugin+Development

If using maven to write the plugin, you can add a repository pointing to http://jazzy.id.au/maven, and declare your dependency like so:

<dependency>
  <groupId>org.sourceforge.pebble</groupId>
  <artifactId>pebble</artifactId>
  <version>2.6.2</version>
  <type>jar</type>
</dependency>

Cheers,

James

On 13 April 2012 10:12, Nguni Phakela <nguni52@...> wrote:

Hi,

 

I have just used pebble to create a blogging facility for our site here at wits, https://elearn.wits.ac.za/blog

It is not yet live, but we are about to go live, except for a few things. The first one being, how can I integrate

Pictures for the contributors of the blog, such that when they do post a blog, a picture appears next to their

Post?

 

Kind Regards,

Nguni

 

 


------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user





------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user

Re: Images

by Nguni Phakela :: Rate this Message:

| View Threaded | Show Only this Message

Hi James,

Thank you for your reply. I will use the suggestions you have made.

Kind Regards,
Nguni

PS: I went to your blog and just had to "steal" that picture about open source software and twitpic it. :-D

On Fri, Apr 13, 2012 at 10:40 AM, James Roper <james@...> wrote:
Hi Nguni,

Putting pictures of the contributors would require writing a content decorator plugin for blog posts.  My suggestion would be to use gravatar for the actual pictures (that way you don't need any sort of interface for mapping users to pictures, though you could possibly just do it by convention, ie its expected that a user who's name is jsmith should have a picture called jsmith.jpg in the images directory).

Some brief instructions for writing plugins can be found here:

https://open.jira.com/wiki/display/PEBBLE/Plugin+Development

If using maven to write the plugin, you can add a repository pointing to http://jazzy.id.au/maven, and declare your dependency like so:

<dependency>
  <groupId>org.sourceforge.pebble</groupId>
  <artifactId>pebble</artifactId>
  <version>2.6.2</version>
  <type>jar</type>
</dependency>

Cheers,

James

On 13 April 2012 10:12, Nguni Phakela <nguni52@...> wrote:

Hi,

 

I have just used pebble to create a blogging facility for our site here at wits, https://elearn.wits.ac.za/blog

It is not yet live, but we are about to go live, except for a few things. The first one being, how can I integrate

Pictures for the contributors of the blog, such that when they do post a blog, a picture appears next to their

Post?

 

Kind Regards,

Nguni

 

 


------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user



------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user




--
Nguni Phakela




------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user

Re: Images

by James Roper-6 :: Rate this Message:

| View Threaded | Show Only this Message

No worries.  If you have any problems, don't hesitate to ask.  And all of the images in that picture were stolen anyway :)

On 13 April 2012 10:58, Nguni Phakela <nguni52@...> wrote:
Hi James,

Thank you for your reply. I will use the suggestions you have made.

Kind Regards,
Nguni

PS: I went to your blog and just had to "steal" that picture about open source software and twitpic it. :-D

On Fri, Apr 13, 2012 at 10:40 AM, James Roper <james@...> wrote:
Hi Nguni,

Putting pictures of the contributors would require writing a content decorator plugin for blog posts.  My suggestion would be to use gravatar for the actual pictures (that way you don't need any sort of interface for mapping users to pictures, though you could possibly just do it by convention, ie its expected that a user who's name is jsmith should have a picture called jsmith.jpg in the images directory).

Some brief instructions for writing plugins can be found here:

https://open.jira.com/wiki/display/PEBBLE/Plugin+Development

If using maven to write the plugin, you can add a repository pointing to http://jazzy.id.au/maven, and declare your dependency like so:

<dependency>
  <groupId>org.sourceforge.pebble</groupId>
  <artifactId>pebble</artifactId>
  <version>2.6.2</version>
  <type>jar</type>
</dependency>

Cheers,

James

On 13 April 2012 10:12, Nguni Phakela <nguni52@...> wrote:

Hi,

 

I have just used pebble to create a blogging facility for our site here at wits, https://elearn.wits.ac.za/blog

It is not yet live, but we are about to go live, except for a few things. The first one being, how can I integrate

Pictures for the contributors of the blog, such that when they do post a blog, a picture appears next to their

Post?

 

Kind Regards,

Nguni

 

 


------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user



------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user




--
Nguni Phakela


------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user





------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Pebble-user mailing list
Pebble-user@...
https://lists.sourceforge.net/lists/listinfo/pebble-user