Edgewall Software
Modify

Opened 18 years ago

Closed 17 years ago

#2313 closed enhancement (duplicate)

creating (screenshot) galleries

Reported by: mark@… Owned by: Jonas Borgström
Priority: normal Milestone:
Component: wiki system Version: 0.9
Severity: normal Keywords: image, gallery, wiki, mediawiki, nested, cache
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description

Trac is very handy for managing development projects. Yet it lacks some utility to create screenshot galleries.

The new "Image"-macro cannot be used to create such galleries, as nested macros are not supported. Thus you cannot write something like that to achieve an gallery-entry:

[http://somewhere/img/fullsize.jpg [[Image(thumbnail.jpg)]]]
[ArticleAboutThisImg]

Using HTML you are to directly link articles in the Wiki, which is very unelegant.

Therefore Trac misses something analog to Mediawiki's "gallery"-tag: http://en.wikipedia.org/wiki/Wikipedia:Picture_tutorial#New_MediaWiki_.3Cgallery.3E_tag

Syntax might be as follows:

[[ImageWithLink( <image>, <sizeofthumbnail>, <ArticleAboutThisImg)]]

Which then could be put in an ordinary table.

Attachments (0)

Change History (9)

comment:1 by mark@…, 18 years ago

Type: defectenhancement

comment:2 by Matthew Good, 18 years ago

Resolution: worksforme
Status: newclosed

The [[Image]] macro already supports a size argument and it links to the page with the full image just like Wikipedia.

For example:

[[Image(TracDev/ComponentArchitecture:comparch.png, 200)]]

Package diagram

comment:3 by Emmanuel Blot, 18 years ago

Depending on the usage, this may not be optimum: The full image is sent by the server and resized by the browser, which brings several drawbacks:

  • image quality is quite poor (nearest neightbour resizing)
  • time to send a large image over the Internet
  • server load

However, a server-side on-the-fly resizing is probably out of the scope of the image macro.

comment:4 by mark@…, 18 years ago

Well, but it neither does link to corresponding article nor does it create the table for all the images, gallery alike.

comment:5 by Gunnar Wagenknecht <gunnar@…>, 18 years ago

Cc: gunnar@… added

comment:6 by Christian Boos, 18 years ago

Keywords: cache added
Resolution: worksforme
Status: closedreopened

See also the related Gallery extension thread in the Mailing list.

The general idea being that the image shown in a gallery should be different (a thumbnail of) the image being linked to, and that Trac could assist in creating the thumbnails.

This seems related to the graph wiki processor idea that was discussed some time ago, and more precisely to the idea that there could be a cache for temporary files generated by wiki processors (see the Simple diagrams in Wiki thread)

comment:7 by anonymous, 18 years ago

I've recently discovered the Python Image Library (PIL) and a snipplet for creating thumbnails. See http://www.daniweb.com/code/showsnippet.php?codeid=209.

If a caching folder was created (as wished in the GraphViz "simple diagrams in Wiki" thread) we can save the thumbnails there and have

[[ImageWithLink( [<image>, <sizeofthumbnail>, <ArticleAboutThisImg>, ...])]]

replaced with

<ul>
<li><a href="?Img?"><img src="?Thumbnail?" size="?SeeAbove?"></a><li>
...
</ul>

… for every entry. That way the gallery could be created.

comment:8 by anonymous, 18 years ago

Cc: gunnar@… removed

comment:9 by Christian Boos, 17 years ago

Resolution: duplicate
Status: reopenedclosed

There's a TracHacks:GalleryPlugin, though it's not exactly covering the same need described here.

I rather think that #3567 covers the same ground.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Jonas Borgström.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Jonas Borgström to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.