Custom Query (2765 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 2765)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Owner Reporter Resolution Summary
#279 Peter Baumann Piero Campalani fixed Wrong example in ql-guide
Description

In Sec. 4.3.4 "Comments in Type Definitions", at p.23 the syntax of the proposed example is wrong. Should be:

struct RGBPixel
{ char red,   // red channel of color image
       green, // green channel of color image
       blue;  // blue channel of color image
};            // 3 x 8bit color pixels

instead of:

typedef struct
{ char red,   // red channel of color image
       green, // green channel of color image
       blue;  // blue channel of color image
} RGBPixel;   // 3 x 8bit color pixels

#282 Piero Campalani Piero Campalani wontfix PNG encoding does not recognize band labeling
Description

It seems that when encoding a PNG with a WCPS query with explicit definition of the single bands, the order of the bands is fixed to R, then G, then B, independently of which label is set in the query.

This means that the following queries are equivalent:

for c in (rgb) return encode({
  red:   c.red;
  green: c.green;
  blue:  c.blue}, "png")
for c in (rgb) return encode({
  green: c.red;
  red:   c.green;
  blue:  c.blue}, "png")
#297 abeccati abeccati wontfix Move the tracnav navigation menu to the left of the home page
Description

To enhance its visibility and make more prominent that it is actually a site navigation tool and not a table of contents for the home page.

Looks like it needs a change in the plugin's CSS: http://svn.ipd.kit.edu/trac/javaparty/ticket/280

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.