DELTA 22855 531 2463
SVN  ¡E¨…2 ¡E  G €_ H” €„R
******
  Find the colour from 'candidates' with the best perceptual contrast from
  'subject'.
****/
struct color *color_best_contrast(struct color *subject,
                                  struct color **candidates, int ncandidates)
{
  int sbright = color_brightness_score(subject), bestdiff = 0;
  int i;
  struct color *best = NULL;

  fc_assert_ret_val(candidates != NULL, NULL);
  fc_assert_ret_val(ncandidates > 0, NULL);

  for (i = 0; i < ncandidates; i++) {
    int cbright = color_brightness_score(candidates[i]);
    int diff = ABS(sbright - cbright);

    if (best == NULL || diff > bestdiff) {
      best = candidates[i];
      bestdiff = diff;
    }
  }

  return best;
}
ENDREP
DELTA 24136 754 615
SVN  °@²l¡I Š{ €‹ L”|€•! …ªi€% U¯kTEXT_DARK           /* black */
#define SPECENUM_VALUE2NAME   "mapview_citytext_dark"
#define SPECENUM_VALUE3   COLOR_MAPVIEW_CITYGROWTH_BLOCKED      /* red */
#define SPECENUM_VALUE3NAME   "mapview_cityblocked"
#define SPECENUM_VALUE4   COLOR_MAPVIEW_GOTO                    /* cyan */
#define SPECENUM_VALUE4NAME   "mapview_goto"
#define SPECENUM_VALUE5   COLOR_MAPVIEW_SELECTION               /* yellow */
#define SPECENUM_VALUE5NAME   "mapview_selection"
#define SPECENUM_VALUE6   COLOR_MAPVIEW_TRADE_ROUTE_LINE
#define SPECENUM_VALUE6NAME   "mapview_trade_route_line"
#define SPECENUM_VALUE7   COLOR_MAPVIEW_TRADE_ROUTES_ALL_BUILT  /* green */
#define SPECENUM_VALUE7NAME   "mapview_trade_routes_all_built"
#define SPECENUM_VALUE8   COLOR_MAPVIEW_TRADE_ROUTES_SOME_BUILT /* yellow */
#define SPECENUM_VALUE8NAME   "mapview_trade_routes_some_built"
#define SPECENUM_VALUE9   COLOR_MAPVIEW_TRADE_ROUTES_NO_BUILT   /* red */
#define SPECENUM_VALUE9NAME   "mapview_trade_routes_no_built"
#define SPECENUM_VALUE10  COLOR_MAPVIEW_CITY_LINK               /* green */
#define SPECENUM_VALUE10NAME  "mapview_city_link"
#define SPECENUM_VALUE11  COLOR_MAPVIEW_TILE_LINK               /* red */
#define SPECENUM_VALUE11NAME  "mapview_tile_link"
#define SPECENUM_VALUE12  COLOR_MAPVIEW_UNIT_LINK               /* cyan */
#define SPECENUM_VALUE12NAME  "mapview_unit_link"
/* Spaceship colors */
#define SPECENUM_VALUE133NAME  "spaceship_background"
/* Overview colors */
#define SPECENUM_VALUE14  COLOR_OVERVIEW_UNKNOWN      /* Black */
#define SPECENUM_VALUE14NAME  "overview_unknown"
#define SPECENUM_VALUE15  COLOR_OVERVIEW_MY_CITY      /* white */
#define SPECENUM_VALUE15NAME  "overview_mycity"
#define SPECENUM_VALUE16  COLOR_OVERVIEW_ALLIED_CITY
#define SPECENUM_VALUE16NAME  "overview_alliedcity"
#define SPECENUM_VALUE17  COLOR_OVERVIEW_ENEMY_CITY   /* cyan */
#define SPECENUM_VALUE17NAME  "overview_enemycity"
#define SPECENUM_VALUE18  COLOR_OVERVIEW_MY_UNIT      /* yellow */
#define SPECENUM_VALUE18NAME  "overview_myunit"
#define SPECENUM_VALUE19  COLOR_OVERVIEW_ALLIED_UNIT
#define SPECENUM_VALUE19NAME  "overview_alliedunit"
#define SPECENUM_VALUE20  COLOR_OVERVIEW_ENEMY_UNIT   /* red */
#define SPECENUM_VALUE20NAME  "overview_enemyunit"
#define SPECENUM_VALUE21  COLOR_OVERVIEW_OCEAN        /* ocean/blue */
#define SPECENUM_VALUE21NAME  "overview_ocean"
#define SPECENUM_VALUE22  COLOR_OVERVIEW_LAND         /* ground/green */
#define SPECENUM_VALUE22NAME  "overview_ground"
#define SPECENUM_VALUE23  COLOR_OVERVIEW_VIEWRECT     /* white */
#define SPECENUM_VALUE23NAME  "overview_viewrect"
/* Reqtree colors */
#define SPECENUM_VALUE24  COLOR_REQTREE_RESEARCHING         /* cyan */
#define SPECENUM_VALUE24NAME  "reqtree_researching"
#define SPECENUM_VALUE25  COLOR_REQTREE_KNOWN               /* green */
#define SPECENUM_VALUE25NAME  "reqtree_known"
#define SPECENUM_VALUE26  COLOR_REQTREE_GOAL_PREREQS_KNOWN
#define SPECENUM_VALUE26NAME  "reqtree_goal_prereqs_known"
#define SPECENUM_VALUE27  COLOR_REQTREE_GOAL_UNKNOWN
#define SPECENUM_VALUE27NAME  "reqtree_goal_unknown"
#define SPECENUM_VALUE28  COLOR_REQTREE_PREREQS_KNOWN       /* yellow */
#define SPECENUM_VALUE28NAME  "reqtree_prereqs_known"
#define SPECENUM_VALUE29  COLOR_REQTREE_UNKNOWN             /* red */
#define SPECENUM_VALUE29NAME  "reqtree_unknown"
#define SPECENUM_VALUE30  COLOR_REQTREE_UNREACHABLE
#define SPECENUM_VALUE30NAME  "reqtree_unreachable"
#define SPECENUM_VALUE31  COLOR_REQTREE_NOT_GETTABLE
#define SPECENUM_VALUE31NAME  "reqtree_not_gettable"
#define SPECENUM_VALUE32  COLOR_REQTREE_GOAL_NOT_GETTABLE
#define SPECENUM_VALUE32NAME  "reqtree_goal_not_gettable"
#define SPECENUM_VALUE33  COLOR_REQTREE_BACKGROUND          /* black */
#define SPECENUM_VALUE33NAME  "reqtree_background"
#define SPECENUM_VALUE34  COLOR_REQTREE_TEXT                /* black */
#define SPECENUM_VALUE34NAME  "reqtree_text"
#define SPECENUM_VALUE35  COLOR_REQTREE_EDGE                /* gray */
#define SPECENUM_VALUE35NAME  "reqtree_edge"
/* Player dialog */
#define SPECENUM_VALUE36  COLOR_PLAYER_COLOR_BACKGROUND     /* black */
#define SPECENUM_VALUE36/* Utilities for color values */
struct color *color_best_contrast(struct color *subject,
                                  struct color **candidates, int ncandidateENDREP
DELTA 24696 0 44
SVN  é<ê,
 ç €
 ‚ç
  /* Suppress drop shadow for black text */
  if (fonts[font].shadowed
      && !gdk_color_equal(&pcolor->color, &toplevel->style->black)ENDREP
DELTA 21441 0 107
SVN  ˜:.„ †D ˆ L†5€„ …“,rgbcolorReturn a number indicating the perceptual brightness of this color
  relative to others (larger is brighter).
****************************************************************************/
int color_brightness_score(struct color *pcolor)
{
  struct rgbcolor *prgb = rgbcolor_new(pcolor->color.red >> 8,
                                       pcolor->color.green >> 8,
                                       pcolor->color.blue >> 8);
  int score = rgbcolor_brightness_score(prgb);

  rgbcolor_destroy(prgb);
  return scoreENDREP
DELTA 31040 6240 120
SVN  ÙsÛ+‚W ÖQ €‚W ‚×p/* Suppress drop shadow for black text */
    const GdkRGBA black = { 0.0, 0.0, 0.0, 1.0 };

    if (!gdk_rgba_equal(&pcolor->color, &black)) {
      gdk_cairo_set_source_rgba(cr, &black);
      cairo_move_to(cr, canvas_x * pcanvas->zoom + 1,
                    canvas_y * pcanvas->zoom + 1);
      pango_cairo_show_layout (cr, layout);
    }ENDREP
DELTA 4313 68792 1691
SVN  ™N—y'Žx …8 €‚b  ’5€ƒ
 E–~Œ v—X€ƒ# G €E G €„
#ifdef HAVE_CONFIG_H
#include <fc_config.h>
#endif

#include <stdio.h>

#include <gtk/gtk.h>

/* utility */
#include "log.h"
#include "mem.h"

/* common */
#include "rgbcolor.h"

/* client/gui-gtk-3.0 */
#include "gui_main.h"

#include "colors.h"

/*************************************************************
  Get display color type of default visual  GdkVisualType type;

  visual = gdk_screen_get_system_visual(gdk_screen_get_default());
  type = gdk_visual_get_visual_type(visual);

  if (type == GDK_VISUAL_STATIC_GRAY) { 
    /* StaticGray, use black and white */
    log_verbose("found B/W display.");
    return BW_DISPLAY;
  }

  if(type < GDK_VISUAL_STATIC_COLOR) {
    /* No color visual available at default depth */
    log_verbose(log_verbose(***************
  Allocate a color (well, sort of)
  and return a pointer to it.
****************************************************************************/
struct color *color_alloc(int r, int g, int b)
{
  struct color *color = fc_malloc(sizeof(*color));

  color->color.red = (double)r/255;
  color->color.green = (double)g/255;
  color->color.blue = (double)b/255;
  color->color.alpha = 1.0;

  return color;
}

******
  Free a previously allocated color.  See color_alloc.
****************************************************************************/
void color_free(struct color *color)
{
  free(color);
}

******
  Return a number indicating the perceptual brightness of this color
  relative to others (larger is brighter).
****************************************************************************/
int color_brightness_score(struct color *pcolor)
{
  struct rgbcolor *prgb = rgbcolor_new(pcolor->color.red * 255,
                                       pcolor->color.green * 255,
                                       pcolor->color.blue * 255);
  int score = rgbcolor_brightness_score(prgb);

  rgbcolor_destroy(prgb);
  return score;
}
ENDREP
DELTA 19259 342369 372
SVN  ‹{‘6„t ‹{  G €„s
******
  Return a number indicating the perceptual brightness of this color
  relative to others (larger is brighter).
****************************************************************************/
int color_brightness_score(struct color *pcolor)
{
  /* QColor has color space conversions, but nothing giving a perceptually
   * even color space */
  struct rgbcolor *prgb = rgbcolor_new(pcolor->qcolor.red(),
                                       pcolor->qcolor.green(),
                                       pcolor->qcolor.blue());
  int score = rgbcolor_brightness_score(prgb);

  rgbcolor_destroy(prgb);
  return score;
}
ENDREP
DELTA 31053 46667 41
SVN  ™eƒ< ™  LŠ €s @…@€‚I**
  Return a number indicating the perceptual brightness of this color
  relative to others (larger is brighter).
************/
int color_brightness_score(struct color *pcolor)
{
  struct rgbcolor *prgb = rgbcolor_new(pcolor->color->r,
                                       pcolor->color->g,
                                       pcolor->color->b);
  int score = rgbcolor_brightness_score(prgb);

  rgbcolor_destroy(prgb);
  return score;
}
ENDREP
DELTA 20753 8209 163
SVN  Œ7‘?„9 † œ †/† G €„common */
#include "rgbcolor
******
  Return a number indicating the perceptual brightness of this color
  relative to others (larger is brighter).
****************************************************************************/
int color_brightness_score(struct color *pcolor)
{
  /* PORTME */
  /* Can use GUI-specific colorspace functions here. This is a fallback
   * using platform-independent code */
  struct rgbcolor *prgb = rgbcolor_new(pcolor->r, pcolor->g, pcolor->b);
  int score = rgbcolor_brightness_score(prgb);

  rgbcolor_destroy(prgb);
  return score;
}
ENDREP
DELTA 20720 10166 247
SVN  ‡Kˆ) ‡. ©6‡GUI_FUNC_PROTO(int, color_brightness_scorENDREP
DELTA 30449 0 87
SVN  †  †  „ ƒì3 €„ öƒíJ ¹,„ä{
      /* Try to pick a color for city size text that contrasts with
       * player color */
      struct color *textcolors[2] = {
        get_color(tileset, COLOR_MAPVIEW_CITYTEXT),
        get_color(tileset, COLOR_MAPVIEW_CITYTEXT_DARK)
      };

      canvas_put_text(pcanvas, size_rect.x / map_zoom, size_rect.y / map_zoom,
                      FONT_CITY_NAME,
                      color_best_contrast(owner_color, textcolors,
                                          ARRAY_SIZE(textcolors)), size);
    }†  É[Ì‚A€‚A É[ rs
   * or mapview sliding.
   *
   * When the mapview is larger than the map, however, some tiles may become
   * visible twice.  In this case one instance of the tile will be drawn
   * while all others are drawn black.  When this happens the cached drawing
   * system breaks since it assumes the mapview canvas is an ENDREP
DELTA 30974 39934 92
SVN  †  †   ’ † †s’Dec-17†  †  †    †   ŒÀ ÷P÷P  ÷P ENDREP
DELTA 21333 428 638
SVN  ¯A¶M…z ¯A  O €o CŽ €…

 Return a number indicating the perceptual brightness of this color
  relative to others (larger is brighter).
*********/
int rgbcolor_brightness_score(struct rgbcolor *prgbcolor)
{
  /* This simple scoring system taken from W3C "Techniques For Accessibility
   * Evaluation And Repair Tools", http://www.w3.org/TR/AERT#color-contrast
   *
   * "Color brightness is determined by the following formula:
   * ((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
   * Note: This algorithm is taken from a formula for converting RGB values to
   * YIQ [NTSC] values [specifically the Y component]. This brightness value
   * gives a perceived brightness for a color." */
  return (prgbcolor->r*299 + prgbcolor->g*587 + prgbcolor->b*114) / 1000;
}
ENDREP
DELTA 21333 1090 99
SVN  œk'	8 œ ¸ Pœint rgbcolor_brightness_score(struct rgbcolor *prgbcolorENDREP
DELTA 31083 49 20
SVN  ¹ ¹  e † ¸kDec-17ENDREP
DELTA 31083 418 20
SVN  ®® a † ­ gDec-17ENDREP
DELTA 31083 0 20
SVN  ±I±I a † °bgDec-17ENDREP
DELTA 31083 185 20
SVN  ±.±. a † °GgDec-17ENDREP
DELTA 31083 281 20
SVN  ªmªm a † ªgDec-17ENDREP
DELTA 31083 326 20
SVN  µ'µ' e † ´<kDec-17ENDREP
DELTA 31083 372 20
SVN  ¬ ¬  a † «gDec-17ENDREP
DELTA 31083 93 20
SVN  «« a † ª&gDec-17ENDREP
DELTA 24136 570 156
SVN  ‘‘?	,  ¬ |text_dark = {"r", "g", "b"
    0,     0,   0ENDREP
DELTA 31083 140 20
SVN  µYµY e † ´nkDec-17ENDREP
DELTA 31083 233 20
SVN  ¶/¶/ a † µHgDec-17ENDREP
DELTA 30672 61 20
SVN  ííT
; Œ< » à]Œ:#ifndef ABS
#define ABS(x) (((x) >= 0) ? (x) : -(x))
#endifENDREP
id: 33a.5ck.r31090/12786
type: file
pred: 33a.5ck.r22855/3020
count: 33
text: 31090 0 719 5126 c5d0e3618dd2e9ae382f494d995adaab
props: 11081 99 111 0 d4514082fc7e52be026d3360dec4dcb0
cpath: /trunk/client/colors_common.c
copyroot: 15280 /trunk

id: 33b.5ck.r31090/13030
type: file
pred: 33b.5ck.r24136/6711
count: 18
text: 31090 747 4335 6508 d8c0b1f2bcf270cca346a73b4a230866
props: 10807 269197 110 0 2297367bb62237eae251d6a189335c2c
cpath: /trunk/client/colors_common.h
copyroot: 15280 /trunk

id: 2y6.5ck.r31090/13281
type: file
pred: 2y6.5ck.r24696/4365
count: 12
text: 31090 5109 162 13612 7a416429674e34db9948b003eeb0512c
props: 10518 13071 110 0 705660468cdcbf270377dea86b274451
cpath: /trunk/client/gui-gtk-2.0/canvas.c
copyroot: 15280 /trunk

id: 104.5ck.r31090/13537
type: file
pred: 104.5ck.r21441/270
count: 12
text: 31090 5295 558 3758 1807042683a5ef1b4a536ab56d272882
props: 10458 4167 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /trunk/client/gui-gtk-2.0/colors.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file zu.5ck.r27705/91048
K 15
action_dialog.c
V 24
file 36n.5oy.r30862/3302
K 8
canvas.c
V 25
file 2y6.5ck.r31090/13281
K 8
canvas.h
V 23
file 2y7.0.r10096/14437
K 10
chatline.c
V 24
file zw.5ck.r30210/35580
K 10
chatline.h
V 24
file zx.5ck.r25812/10835
K 15
choice_dialog.c
V 24
file 377.5ck.r30569/5236
K 15
choice_dialog.h
V 24
file 378.5ck.r30569/5495
K 14
citizensinfo.c
V 23
file 6n1.5ck.r29072/647
K 14
citizensinfo.h
V 26
file 6n2.5ck.r26905/108640
K 9
citydlg.c
V 24
file zy.5ck.r30568/41911
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 23
file 100.5ck.r30292/217
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 25
file 102.5ck.r28020/10636
K 8
cma_fe.h
V 25
file 103.5ck.r19385/17470
K 8
colors.c
V 25
file 104.5ck.r31090/13537
K 8
colors.h
V 24
file 105.5ck.r16180/3087
K 12
connectdlg.c
V 25
file 106.5ck.r27275/19376
K 12
connectdlg.h
V 25
file 107.5ck.r19154/49180
K 9
dialogs.c
V 24
file 108.5ck.r30569/5752
K 9
dialogs.h
V 25
file 109.5ck.r23882/49527
K 10
diplodlg.c
V 25
file 10a.5ck.r30328/53465
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 9
editgui.c
V 25
file 4ej.5ck.r30974/54567
K 9
editgui.h
V 26
file 4ek.5ck.r26905/109556
K 10
editprop.c
V 24
file 4el.5ck.r31077/2210
K 10
editprop.h
V 25
file 3bj.5cl.r21141/52087
K 9
finddlg.c
V 25
file 10c.5ck.r20622/23806
K 9
finddlg.h
V 22
file 2d0.0.r5989/22356
K 10
gamedlgs.c
V 25
file 10d.5ck.r29117/12226
K 10
gamedlgs.h
V 27
file 197j.5ck.r26905/108948
K 9
gotodlg.c
V 23
file 10e.5ck.r30666/971
K 9
gotodlg.h
V 25
file 10f.5ck.r19505/20989
K 10
graphics.c
V 25
file 10g.5ck.r27004/16510
K 10
graphics.h
V 23
file 10h.5ck.r22525/906
K 12
gtkpixcomm.c
V 25
file 10i.5ck.r19683/48923
K 12
gtkpixcomm.h
V 24
file 10j.5ck.r19779/2644
K 10
gui_main.c
V 25
file 10k.5ck.r31053/47120
K 10
gui_main.h
V 24
file 10l.5ck.r30413/4074
K 11
gui_stuff.c
V 25
file 10m.5ck.r30210/36867
K 11
gui_stuff.h
V 25
file 10n.5ck.r20622/22320
K 11
happiness.c
V 25
file 10o.5ck.r29689/64520
K 11
happiness.h
V 23
file 10p.0.r9577/106064
K 9
helpdlg.c
V 25
file 10q.5ck.r30974/55078
K 9
helpdlg.h
V 23
file 10r.0.r4313/267882
K 10
inputdlg.c
V 25
file 10s.5ck.r19683/46961
K 10
inputdlg.h
V 24
file 10t.5ck.r19651/6762
K 10
inteldlg.c
V 25
file 10u.5ck.r29689/64781
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 25
file 75w.5ck.r30210/37126
K 12
luaconsole.h
V 26
file 75x.5ck.r26905/108333
K 9
mapctrl.c
V 25
file 10v.5ck.r30221/38678
K 9
mapctrl.h
V 25
file 10w.5bk.r14157/11089
K 9
mapview.c
V 25
file 10x.5ck.r30899/11391
K 9
mapview.h
V 24
file 10y.5ck.r17351/2736
K 6
menu.c
V 22
file 10z.5ck.r31017/63
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 25
file 111.5ck.r29689/65554
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 25
file 112.5ck.r30210/38157
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 24
file 4js.5ck.r30374/8466
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 25
file 2pi.5ck.r31064/80366
K 7
pages.h
V 24
file 2pj.5ck.r24718/1982
K 8
plrdlg.c
V 24
file 115.5ck.r30422/1761
K 8
plrdlg.h
V 22
file 116.0.r10803/7069
K 10
ratesdlg.h
V 22
file 2d3.0.r5989/22018
K 4
rc2c
V 23
file 117.0.r4313/274431
K 10
repodlgs.c
V 26
file 118.5ck.r30060/113823
K 10
repodlgs.h
V 24
file 119.5ck.r18439/2365
K 11
resources.c
V 26
file 11a.5ck.r19259/423360
K 11
resources.h
V 23
file 11b.5ck.r22128/110
K 14
soundset_dlg.c
V 24
file kcq.5ck.r30672/3497
K 14
spaceshipdlg.c
V 25
file 11c.5ck.r23118/25649
K 14
spaceshipdlg.h
V 23
file 11d.0.r9577/110090
K 8
sprite.c
V 24
file 2y8.5ck.r28425/7425
K 8
sprite.h
V 23
file 2y9.0.r10141/29270
K 11
theme_dlg.c
V 25
file 47d.5ck.r30210/38933
K 8
themes.c
V 25
file 34x.5ck.r30210/39191
K 13
tileset_dlg.c
V 24
file 45i.5ck.r30672/3757
K 12
unitselect.c
V 26
file 6pa.5ck.r30060/114082
K 12
unitselect.h
V 26
file 6pb.5ck.r26905/107108
K 14
voteinfo_bar.c
V 23
file 4h8.5ck.r30886/128
K 14
voteinfo_bar.h
V 26
file 4h9.5ck.r26905/110792
K 7
wldlg.c
V 25
file 11e.5ck.r30210/39448
K 7
wldlg.h
V 25
file 11f.5ck.r16285/86707
END
ENDREP
id: zs.5ck.r31090/17862
type: dir
pred: zs.5ck.r31077/6533
count: 1890
text: 31090 13790 4059 0 568d6d9decf0124c9f40a97e50707db1
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /trunk/client/gui-gtk-2.0
copyroot: 15280 /trunk

id: 2y6.5g7.r31090/18105
type: file
pred: 2y6.5g7.r31040/7060
count: 20
text: 31090 5878 367 11691 b1e016388fba3e6166b85bfd1063cac1
props: 10518 13071 110 0 705660468cdcbf270377dea86b274451
cpath: /trunk/client/gui-gtk-3.0/canvas.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

id: 104.5g7.r31090/18380
type: file
pred: 104.5g7.r31040/8438
count: 16
text: 31090 6273 1963 3065 8af89b8bbfe1e4d938a2931d8c956d42
props: 10458 4167 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /trunk/client/gui-gtk-3.0/colors.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 11
Makefile.am
V 24
file zu.5g7.r27705/85553
K 15
action_dialog.c
V 23
file 36n.5oz.r31074/143
K 8
canvas.c
V 25
file 2y6.5g7.r31090/18105
K 8
canvas.h
V 26
file 2y7.5g7.r23312/336316
K 10
chatline.c
V 23
file zw.5g7.r30413/8645
K 10
chatline.h
V 23
file zx.5g7.r25812/5717
K 15
choice_dialog.c
V 24
file 377.5g7.r31040/7333
K 15
choice_dialog.h
V 24
file 378.5g7.r31040/7614
K 14
citizensinfo.c
V 24
file 6n1.5g7.r29072/5229
K 14
citizensinfo.h
V 24
file 6n2.5g7.r31040/7889
K 9
citydlg.c
V 23
file zy.5g7.r30865/3331
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 24
file 100.5g7.r30292/4788
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 24
file 102.5g7.r31040/8166
K 8
cma_fe.h
V 25
file 103.5g7.r28713/21190
K 8
colors.c
V 25
file 104.5g7.r31090/18380
K 8
colors.h
V 25
file 105.5g7.r21920/14399
K 12
connectdlg.c
V 25
file 106.5g7.r27275/44221
K 12
connectdlg.h
V 25
file 107.5ck.r19154/49180
K 9
dialogs.c
V 25
file 108.5g7.r30569/11455
K 9
dialogs.h
V 24
file 109.5g7.r31040/8710
K 10
diplodlg.c
V 25
file 10a.5g7.r30328/58301
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 9
editgui.c
V 25
file 4ej.5g7.r30974/59648
K 9
editgui.h
V 24
file 4ek.5g7.r31040/8982
K 10
editprop.c
V 24
file 4el.5g7.r31077/6774
K 10
editprop.h
V 25
file 3bj.5jh.r21141/57145
K 9
finddlg.c
V 24
file 10c.5g7.r31040/9254
K 9
finddlg.h
V 22
file 2d0.0.r5989/22356
K 10
gamedlgs.c
V 24
file 10d.5g7.r30616/3526
K 10
gamedlgs.h
V 26
file 197l.5g7.r26905/69711
K 9
gotodlg.c
V 24
file 10e.5g7.r30666/5534
K 9
gotodlg.h
V 25
file 10f.5ck.r19505/20989
K 10
graphics.c
V 25
file 10g.5g7.r27004/30386
K 10
graphics.h
V 24
file 10h.5g7.r31040/9525
K 12
gtkpixcomm.c
V 25
file 10i.5g7.r21620/11139
K 12
gtkpixcomm.h
V 24
file 10j.5g7.r31040/9800
K 10
gui_main.c
V 25
file 10k.5g7.r31053/51690
K 10
gui_main.h
V 24
file 10l.5g7.r30799/1234
K 11
gui_stuff.c
V 25
file 10m.5g7.r30413/10021
K 11
gui_stuff.h
V 25
file 10n.5g7.r30413/10299
K 11
happiness.c
V 25
file 10o.5g7.r29689/73398
K 11
happiness.h
V 25
file 10p.5g7.r31040/10075
K 9
helpdlg.c
V 25
file 10q.5g7.r31040/10349
K 9
helpdlg.h
V 23
file 10r.0.r4313/267882
K 10
inputdlg.c
V 25
file 10s.5g7.r20464/72142
K 10
inputdlg.h
V 24
file 10t.5ck.r19651/6762
K 10
inteldlg.c
V 25
file 10u.5g7.r29689/73676
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 25
file 76e.5g7.r31040/10626
K 12
luaconsole.h
V 25
file 76f.5g7.r26905/71334
K 9
mapctrl.c
V 25
file 10v.5g7.r31040/10906
K 9
mapctrl.h
V 23
file 10w.5g7.r21978/547
K 9
mapview.c
V 25
file 10x.5g7.r30899/15957
K 9
mapview.h
V 25
file 10y.5g7.r31040/11182
K 6
menu.c
V 23
file 10z.5g7.r31074/435
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 25
file 111.5g7.r29689/74504
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 25
file 112.5g7.r30413/11680
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 25
file 4js.5g7.r30374/13313
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 25
file 2pi.5g8.r31064/84938
K 7
pages.h
V 25
file 2pj.5g7.r31040/11459
K 8
plrdlg.c
V 25
file 115.5g7.r31040/11731
K 8
plrdlg.h
V 25
file 116.5g7.r31040/12006
K 10
ratesdlg.h
V 22
file 2d3.0.r5989/22018
K 10
repodlgs.c
V 26
file 118.5g7.r30060/119506
K 10
repodlgs.h
V 24
file 119.5ck.r18439/2365
K 14
soundset_dlg.c
V 25
file cku.5g7.r31040/12273
K 14
spaceshipdlg.c
V 25
file 11c.5g7.r23118/40208
K 14
spaceshipdlg.h
V 23
file 11d.0.r9577/110090
K 8
sprite.c
V 25
file 2y8.5g7.r31040/12549
K 8
sprite.h
V 25
file 2y9.5g7.r31040/12823
K 11
theme_dlg.c
V 25
file 47d.5g7.r30413/12243
K 8
themes.c
V 23
file 34x.5g7.r30581/975
K 13
tileset_dlg.c
V 25
file 45i.5g7.r31040/13094
K 12
unitselect.c
V 26
file 6pa.5g7.r30060/119785
K 12
unitselect.h
V 25
file 6pb.5g7.r26905/70360
K 14
voteinfo_bar.c
V 24
file 4h8.5g7.r30886/4692
K 14
voteinfo_bar.h
V 25
file 4h9.5g7.r26905/71982
K 7
wldlg.c
V 24
file 11e.5g7.r30865/3603
K 7
wldlg.h
V 25
file 11f.5g7.r31040/13371
END
ENDREP
id: zs.5g7.r31090/22597
type: dir
pred: zs.5g7.r31077/10992
count: 2053
text: 31090 18654 3930 0 8e7769c0d75acdbbfe17119eede34bd0
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /trunk/client/gui-gtk-3.0
copyroot: 19694 /trunk/client/gui-gtk-3.0

id: 6in.5ck.r31090/22860
type: file
pred: 6in.5ck.r26905/78719
count: 4
text: 31090 8265 651 2230 535a98c870787d619cf523e83cd44a05
props: 26905 78672 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/colors.cpp
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 6if.5ck.r27705/75879
K 10
canvas.cpp
V 23
file 6ig.5ck.r30435/159
K 8
canvas.h
V 25
file 6ih.5ck.r26905/85299
K 12
chatline.cpp
V 23
file 6ii.5ck.r31052/165
K 10
chatline.h
V 23
file 6ij.5ck.r30987/775
K 11
citydlg.cpp
V 22
file 6ik.5ck.r31049/73
K 9
citydlg.h
V 24
file gr2.5ck.r30993/5211
K 11
cityrep.cpp
V 23
file 6il.5ck.r30721/110
K 9
cityrep.h
V 25
file 6im.5ck.r27711/10865
K 10
colors.cpp
V 25
file 6in.5ck.r31090/22860
K 8
colors.h
V 25
file 6io.5ck.r26905/93658
K 14
connectdlg.cpp
V 24
file 6ip.5ck.r30747/1785
K 12
connectdlg.h
V 25
file 6iq.5ck.r26905/81414
K 11
dialogs.cpp
V 23
file 6ir.5ck.r30990/329
K 9
dialogs.h
V 25
file 6is.5ck.r30683/19254
K 12
diplodlg.cpp
V 25
file 6it.5ck.r30328/63066
K 10
diplodlg.h
V 23
file 6iu.5ck.r29260/943
K 13
fc_client.cpp
V 23
file 6lc.5ck.r30999/155
K 11
fc_client.h
V 23
file 6ld.5ck.r30990/829
K 11
finddlg.cpp
V 25
file 6iv.5ck.r26905/79622
K 9
finddlg.h
V 25
file 6iw.5ck.r26905/95148
K 11
gotodlg.cpp
V 24
file 6ix.5ck.r30281/5457
K 9
gotodlg.h
V 25
file 6iy.5ck.r26905/82913
K 12
graphics.cpp
V 24
file 6iz.5ck.r27004/7519
K 10
graphics.h
V 25
file 6j0.5ck.r26905/93360
K 12
gui_main.cpp
V 25
file 6j1.5ck.r31053/56174
K 10
gui_main.h
V 24
file oxo.5ck.r30281/5961
K 11
helpdlg.cpp
V 22
file 6j2.5ck.r30984/93
K 9
helpdlg.h
V 24
file 6j3.5ck.r30432/5018
K 12
inteldlg.cpp
V 25
file 6j4.5ck.r26905/88586
K 10
inteldlg.h
V 25
file 6j5.5ck.r26905/94253
K 14
luaconsole.cpp
V 25
file 76c.5ck.r26905/82614
K 12
luaconsole.h
V 25
file 76d.5ck.r26905/89778
K 11
mapctrl.cpp
V 24
file 6j6.5ck.r30628/2299
K 9
mapctrl.h
V 25
file 6j7.5ck.r26905/94551
K 11
mapview.cpp
V 24
file 6j8.5ck.r31045/2440
K 9
mapview.h
V 24
file 6j9.5ck.r31045/2689
K 8
menu.cpp
V 23
file 6ja.5ck.r30892/674
K 6
menu.h
V 23
file 6jb.5ck.r30892/918
K 14
messagedlg.cpp
V 25
file 6jc.5ck.r26905/84405
K 12
messagedlg.h
V 25
file 6jd.5ck.r26905/81118
K 14
messagewin.cpp
V 25
file 6je.5ck.r30996/15788
K 12
messagewin.h
V 25
file 6jf.5ck.r30996/16043
K 13
optiondlg.cpp
V 24
file 6jg.5ck.r30993/5461
K 11
optiondlg.h
V 24
file 6jh.5ck.r30993/5716
K 9
pages.cpp
V 25
file 6ji.5ck.r31064/89431
K 7
pages.h
V 25
file 6jj.5ck.r26905/88888
K 10
plrdlg.cpp
V 22
file 6jk.5ck.r30774/63
K 8
plrdlg.h
V 23
file 6jl.5ck.r30718/718
K 15
qtg_cxxside.cpp
V 26
file 6jo.5ck.r27417/169904
K 13
qtg_cxxside.h
V 26
file 6jp.5ck.r27417/170416
K 12
ratesdlg.cpp
V 25
file 6jq.5ck.r29054/23766
K 10
ratesdlg.h
V 25
file 6jr.5ck.r26905/94848
K 12
repodlgs.cpp
V 24
file 6js.5ck.r30993/5966
K 10
repodlgs.h
V 25
file 6jt.5ck.r30891/47922
K 16
spaceshipdlg.cpp
V 25
file 6ju.5ck.r27443/14318
K 14
spaceshipdlg.h
V 25
file 6jv.5ck.r27443/15080
K 10
sprite.cpp
V 25
file 6jw.5ck.r26905/79322
K 8
sprite.h
V 25
file 6jx.5ck.r26905/84707
K 10
themes.cpp
V 25
file 6jy.5ck.r26905/91574
K 16
voteinfo_bar.cpp
V 25
file 6jz.5ck.r26905/95445
K 14
voteinfo_bar.h
V 24
file 6k0.5ck.r27391/9245
K 9
wldlg.cpp
V 25
file 6k1.5ck.r26905/84106
K 7
wldlg.h
V 25
file 6k2.5ck.r26905/80524
END
ENDREP
id: 6ie.5ck.r31090/26129
type: dir
pred: 6ie.5ck.r31064/92702
count: 427
text: 31090 23111 3005 0 a7b7de7dcb1b1395a427c47df71bb9ce
props: 28036 6173 380 0 ea9aeae72ef70d80276d9f2e0c9ac191
cpath: /trunk/client/gui-qt
copyroot: 15280 /trunk

id: 176.5l8.r31090/26369
type: file
pred: 176.5l8.r31053/61847
count: 26
text: 31090 8946 473 3813 95e0146442f19b789554c4277228efb8
props: 9030 111894 111 0 5396249b3009eb64cd90e5da0b7a56fa
cpath: /trunk/client/gui-sdl2/colors.c
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 11
Makefile.am
V 24
file 16u.5l8.r30086/6636
K 15
action_dialog.c
V 25
file 3bn.5ox.r30862/15915
K 8
canvas.c
V 25
file 39i.5l8.r31053/59685
K 8
canvas.h
V 25
file 39j.5l8.r31053/59952
K 10
chatline.c
V 25
file 16y.5l8.r31053/60218
K 10
chatline.h
V 25
file 16z.5l8.r31053/60493
K 9
citydlg.c
V 25
file 170.5l8.r31053/60764
K 9
citydlg.h
V 25
file 171.5l8.r31053/61036
K 9
cityrep.c
V 25
file 172.5l8.r31053/61307
K 9
cityrep.h
V 26
file 173.5ck.r18101/104032
K 8
cma_fe.c
V 25
file 174.5l8.r31053/61578
K 8
cma_fe.h
V 25
file 175.5l8.r27385/13568
K 8
colors.c
V 25
file 176.5l8.r31090/26369
K 8
colors.h
V 25
file 177.5l8.r31053/62116
K 12
connectdlg.c
V 25
file 178.5l8.r31053/62384
K 12
connectdlg.h
V 25
file 179.5l8.r27385/19249
K 9
dialogs.c
V 25
file 17a.5l8.r31053/62656
K 9
dialogs.h
V 25
file 17b.5l8.r31053/62928
K 10
diplodlg.c
V 25
file 17c.5l8.r31053/63197
K 10
diplodlg.h
V 25
file 17d.5l8.r27385/19789
K 9
finddlg.c
V 25
file 17e.5l8.r31053/63470
K 9
finddlg.h
V 20
file 2d8.0.r5991/702
K 9
gotodlg.c
V 25
file 17f.5l8.r31053/63742
K 9
gotodlg.h
V 25
file 17g.5l8.r27385/17910
K 10
graphics.c
V 25
file 17h.5l8.r31053/64017
K 10
graphics.h
V 25
file 17i.5l8.r31053/64289
K 11
gui_iconv.c
V 25
file 17l.5l8.r31053/64554
K 11
gui_iconv.h
V 25
file 17m.5l8.r31053/64825
K 8
gui_id.h
V 25
file 17n.5l8.r27385/12759
K 10
gui_main.c
V 25
file 17o.5l8.r31053/65096
K 10
gui_main.h
V 25
file 17p.5l8.r31053/65370
K 11
gui_mouse.c
V 25
file 3ca.5l8.r31053/65638
K 11
gui_mouse.h
V 24
file 3cb.0.r12670/112397
K 12
gui_string.c
V 25
file 17r.5l8.r31053/65910
K 12
gui_string.h
V 25
file 17s.5l8.r31053/66182
K 14
gui_tilespec.c
V 25
file 191.5l8.r31053/66453
K 14
gui_tilespec.h
V 25
file 192.5l8.r31053/66727
K 9
helpdlg.c
V 25
file 17z.5l8.r31053/67002
K 9
helpdlg.h
V 25
file 180.5l8.r27385/14106
K 10
inteldlg.c
V 25
file 183.5l8.r31053/67277
K 10
inteldlg.h
V 25
file 2d9.5l8.r27385/10613
K 12
luaconsole.c
V 26
file 768.5l8.r26905/126647
K 12
luaconsole.h
V 26
file 769.5l8.r26905/126964
K 9
mapctrl.c
V 25
file 184.5l8.r31053/67551
K 9
mapctrl.h
V 25
file 185.5l8.r31053/67818
K 9
mapview.c
V 25
file 186.5l8.r31053/68088
K 9
mapview.h
V 25
file 187.5l8.r31053/68358
K 6
menu.c
V 25
file 188.5l8.r31053/68627
K 6
menu.h
V 25
file 189.5l8.r27385/18174
K 12
messagedlg.c
V 26
file 18a.5ck.r19259/474489
K 12
messagedlg.h
V 25
file 2da.5l8.r27385/18982
K 12
messagewin.c
V 25
file 18b.5l8.r31053/68895
K 12
messagewin.h
V 25
file 18c.5ck.r18082/39362
K 11
optiondlg.c
V 25
file 18d.5l8.r31053/69168
K 11
optiondlg.h
V 24
file 18e.5l8.r28841/9123
K 7
pages.c
V 25
file 2qg.5l8.r29996/13240
K 7
pages.h
V 22
file 2qh.0.r8639/16416
K 8
plrdlg.c
V 25
file 18f.5l8.r31053/69439
K 8
plrdlg.h
V 22
file 18g.0.r6387/81301
K 10
ratesdlg.h
V 25
file 2db.5l8.r27385/10877
K 10
repodlgs.c
V 24
file 18i.5l8.r30545/1227
K 10
repodlgs.h
V 25
file 18j.5l8.r31053/69709
K 14
spaceshipdlg.c
V 26
file 18m.5l8.r29668/138008
K 14
spaceshipdlg.h
V 25
file 18n.5l8.r27385/13298
K 8
sprite.c
V 25
file 39k.5l8.r31053/69980
K 8
sprite.h
V 25
file 39l.5l8.r27385/11141
K 18
themebackgrounds.c
V 24
file 3ff.5l8.r29461/2276
K 18
themebackgrounds.h
V 25
file 3fg.5l8.r31053/70246
K 13
themecolors.c
V 24
file 392.5l8.r29461/2551
K 13
themecolors.h
V 25
file 393.5l8.r27385/12215
K 8
themes.c
V 25
file 38p.5l8.r30210/58836
K 11
themespec.c
V 24
file 390.5l8.r29983/7311
K 11
themespec.h
V 24
file 391.5l8.r29983/7581
K 11
unistring.c
V 25
file 18o.5l8.r31053/70524
K 11
unistring.h
V 25
file 18p.5l8.r31053/70795
K 12
utf8string.c
V 26
file 1l7w.5l8.r31053/71066
K 12
utf8string.h
V 26
file 1l7y.5l8.r31053/71338
K 14
voteinfo_bar.c
V 26
file 4ha.5l8.r26905/127282
K 14
voteinfo_bar.h
V 26
file 4hb.5l8.r26905/127601
K 8
widget.c
V 25
file 3fu.5l8.r31053/71610
K 8
widget.h
V 26
file 3fv.5l8.r29668/138556
K 15
widget_button.c
V 25
file 3fh.5l8.r31053/71880
K 15
widget_button.h
V 24
file 3g7.5l8.r29697/7622
K 17
widget_checkbox.c
V 25
file 3fi.5l8.r31053/72155
K 17
widget_checkbox.h
V 25
file 3g8.5l8.r29580/14508
K 14
widget_combo.c
V 25
file 4k3.5l8.r31053/72434
K 14
widget_combo.h
V 26
file 4k4.5l8.r27997/208928
K 13
widget_core.c
V 25
file 3fj.5l8.r31053/72708
K 13
widget_edit.c
V 25
file 3fk.5l8.r31053/72982
K 13
widget_edit.h
V 26
file 3g9.5l8.r27997/210605
K 13
widget_icon.c
V 25
file 3fl.5l8.r31053/73255
K 13
widget_icon.h
V 25
file 3ga.5l8.r27385/19517
K 14
widget_label.c
V 25
file 3fm.5l8.r31053/73530
K 14
widget_label.h
V 26
file 3gb.5l8.r27997/204527
K 10
widget_p.h
V 26
file 3fn.5l8.r29668/139941
K 18
widget_scrollbar.c
V 25
file 3fo.5lj.r31053/73803
K 18
widget_scrollbar.h
V 25
file 3gc.5l8.r27385/14638
K 15
widget_window.c
V 25
file 3fp.5l8.r31053/74102
K 15
widget_window.h
V 26
file 3gd.5l8.r27997/203147
K 7
wldlg.c
V 25
file 18q.5l8.r31053/74379
K 7
wldlg.h
V 26
file 18r.5l8.r29668/141067
END
ENDREP
id: 16t.5l8.r31090/31465
type: dir
pred: 16t.5l8.r31053/79472
count: 1041
text: 31090 26638 4814 0 5611b18f2bf10474c27745ede502f719
props: 11108 12869 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /trunk/client/gui-sdl2
copyroot: 23136 /trunk/client/gui-sdl2

id: mr.5ck.r31090/31724
type: file
pred: mr.5ck.r20753/28236
count: 7
text: 31090 9447 598 2239 79abbc0dde65a800a148b7d336ee20ad
props: 10458 11042 110 0 dce24d5ac3f5e86568d59a55fa196991
cpath: /trunk/client/gui-stub/colors.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file mj.5ck.r27705/67360
K 8
canvas.c
V 25
file 2y0.5ck.r24696/15371
K 8
canvas.h
V 23
file 2y1.0.r10095/12720
K 10
chatline.c
V 24
file ml.5ck.r24999/43324
K 10
chatline.h
V 21
file mm.0.r5491/41569
K 9
citydlg.c
V 24
file mn.5ck.r20753/27536
K 9
citydlg.h
V 21
file mo.0.r5491/35843
K 9
cityrep.c
V 24
file mp.5ck.r20753/33432
K 9
cityrep.h
V 21
file mq.0.r5491/46587
K 8
colors.c
V 24
file mr.5ck.r31090/31724
K 8
colors.h
V 22
file ms.0.r10458/11524
K 12
connectdlg.c
V 24
file mt.5ck.r27275/15651
K 12
connectdlg.h
V 21
file mu.0.r5491/46943
K 9
dialogs.c
V 25
file mv.5ck.r27417/174221
K 9
dialogs.h
V 20
file mw.0.r8956/1107
K 10
diplodlg.c
V 24
file mx.5ck.r20753/27036
K 10
diplodlg.h
V 21
file my.0.r5491/35128
K 9
finddlg.c
V 24
file mz.5ck.r20753/29495
K 9
finddlg.h
V 22
file 2dc.0.r5989/44093
K 9
gotodlg.c
V 24
file n0.5ck.r20753/27287
K 9
gotodlg.h
V 21
file n1.0.r5491/35486
K 10
graphics.c
V 23
file n2.5ck.r27870/6487
K 10
graphics.h
V 21
file n3.0.r5491/36199
K 10
gui_main.c
V 24
file n4.5ck.r27286/20494
K 10
gui_main.h
V 21
file n5.0.r5491/41925
K 10
gui_stub.h
V 26
file a3a.5ck.r26905/102940
K 9
helpdlg.c
V 24
file n6.5ck.r20753/30507
K 9
helpdlg.h
V 21
file n7.0.r5491/39423
K 10
inteldlg.c
V 24
file n8.5ck.r20753/28739
K 10
inteldlg.h
V 22
file 2dd.0.r5989/43421
K 12
luaconsole.c
V 26
file 76g.5ck.r26905/101724
K 12
luaconsole.h
V 26
file 76h.5ck.r26905/102027
K 9
mapctrl.c
V 24
file n9.5ck.r20753/28487
K 9
mapctrl.h
V 21
file na.0.r5491/37272
K 9
mapview.c
V 24
file nb.5ck.r26564/27564
K 9
mapview.h
V 21
file nc.0.r5491/38349
K 6
menu.c
V 24
file nd.5ck.r20753/32472
K 6
menu.h
V 21
file ne.0.r5491/43723
K 12
messagedlg.c
V 24
file nf.5ck.r20753/32977
K 12
messagedlg.h
V 22
file 2de.0.r5989/44428
K 12
messagewin.c
V 24
file ng.5ck.r20753/32022
K 12
messagewin.h
V 21
file nh.0.r5491/43363
K 11
optiondlg.c
V 26
file 4jt.5ck.r26905/101122
K 11
optiondlg.h
V 26
file 4ju.5ck.r26905/101421
K 7
pages.c
V 25
file 2qi.5ck.r27275/15908
K 7
pages.h
V 22
file 2qj.0.r8639/28697
K 8
plrdlg.c
V 24
file ni.5ck.r20753/30757
K 8
plrdlg.h
V 21
file nj.0.r5491/41213
K 10
ratesdlg.c
V 24
file nk.5ck.r29054/20550
K 10
ratesdlg.h
V 22
file 2df.0.r5989/43757
K 10
repodlgs.c
V 24
file nl.5ck.r20844/42577
K 10
repodlgs.h
V 21
file nm.0.r5491/40138
K 14
spaceshipdlg.c
V 24
file nn.5ck.r20753/32720
K 14
spaceshipdlg.h
V 21
file no.0.r5491/44796
K 8
sprite.c
V 25
file 2y2.5ck.r20753/29243
K 8
sprite.h
V 23
file 2y3.0.r10095/12384
K 8
themes.c
V 25
file 34y.5ck.r20753/31009
K 14
voteinfo_bar.c
V 26
file 4hc.5ck.r26905/102329
K 14
voteinfo_bar.h
V 26
file 4hd.5ck.r26905/102634
K 7
wldlg.c
V 25
file qj.5ck.r19259/501512
K 7
wldlg.h
V 21
file qk.0.r5491/45158
END
ENDREP
id: mh.5ck.r31090/34697
type: dir
pred: mh.5ck.r29054/23524
count: 235
text: 31090 31974 2710 0 5bb0c7a1025a9a3677615740c3c49bbe
props: 11108 13796 68 0 fbaef5f6348d6ae4b0cc177104ca4ad2
cpath: /trunk/client/gui-stub
copyroot: 15280 /trunk

id: in.5ck.r31090/34937
type: file
pred: in.5ck.r20720/22443
count: 11
text: 31090 10073 60 1037 1741325c971cd29e5d0169a3ebb2d690
props: 10458 8834 111 0 3d57169d64a739976bce7d2e578e29eb
cpath: /trunk/client/include/colors_g.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file dt.5ck.r26633/54459
K 10
canvas_g.h
V 25
file 2y4.5ck.r24696/12797
K 12
chatline_g.h
V 24
file en.5ck.r24999/30690
K 11
citydlg_g.h
V 24
file eo.5ck.r20720/21741
K 11
cityrep_g.h
V 24
file g5.5ck.r20720/20296
K 10
colors_g.h
V 24
file in.5ck.r31090/34937
K 14
connectdlg_g.h
V 24
file eq.5ck.r27275/28816
K 11
dialogs_g.h
V 25
file er.5ck.r27417/185870
K 12
diplodlg_g.h
V 24
file es.5ck.r20720/21245
K 11
editgui_g.h
V 25
file 3bj.5cm.r20720/18106
K 11
finddlg_g.h
V 25
file 2do.5ck.r20720/23704
K 11
gotodlg_g.h
V 24
file et.5ck.r20720/21494
K 12
graphics_g.h
V 24
file eu.5ck.r26984/35955
K 12
gui_main_g.h
V 24
file ev.5ck.r27275/29070
K 23
gui_proto_constructor.h
V 26
file 9sq.5ck.r26905/123547
K 11
helpdlg_g.h
V 24
file g6.5ck.r29937/25902
K 12
inteldlg_g.h
V 25
file 2dp.5ck.r20720/22691
K 14
luaconsole_g.h
V 26
file 75y.5ck.r26905/123242
K 11
mapctrl_g.h
V 24
file ew.5ck.r20720/22946
K 11
mapview_g.h
V 24
file ex.5ck.r20720/23954
K 8
menu_g.h
V 24
file ey.5ck.r20720/18900
K 14
messagedlg_g.h
V 25
file 2dq.5ck.r20720/19844
K 14
messagewin_g.h
V 24
file g7.5ck.r20720/18646
K 13
optiondlg_g.h
V 26
file 4jv.5ck.r26905/122938
K 9
pages_g.h
V 25
file 2pk.5ck.r26633/54709
K 10
plrdlg_g.h
V 24
file g8.5ck.r20720/17105
K 12
ratesdlg_g.h
V 25
file 2dr.5ck.r29054/41380
K 12
repodlgs_g.h
V 24
file ez.5ck.r20844/29677
K 16
spaceshipdlg_g.h
V 24
file f0.5ck.r20720/19346
K 10
sprite_g.h
V 25
file 2y5.5ck.r20720/23450
K 10
themes_g.h
V 25
file 351.5ck.r20720/17352
K 16
voteinfo_bar_g.h
V 26
file 4hi.5ck.r26905/123860
K 9
wldlg_g.h
V 24
file o7.5ck.r20720/19599
END
ENDREP
id: b8.5ck.r31090/36802
type: dir
pred: b8.5ck.r29937/27764
count: 300
text: 31090 35188 1601 0 82e80972bcce06c277d8cc28cfc1f3db
props: 4431 36493 46 0 e473fc4bd409d833d90929dfcb3a14b8
cpath: /trunk/client/include
copyroot: 15280 /trunk

id: z2.5ck.r31090/37040
type: file
pred: z2.5ck.r30449/115
count: 349
text: 31090 10162 890 128540 2929299d3aebd441d428d82621612837
props: 11084 12552 112 0 73ff9df0f3aabd6f615c7264c2fe22c7
cpath: /trunk/client/mapview_common.c
copyroot: 15280 /trunk

id: hl.5ck.r31090/37292
type: file
pred: hl.5ck.r30974/68438
count: 633
text: 31090 11076 59 220112 e2ac842884d5ca4aa49ea4f3a3433531
props: 11096 3792 112 0 71c6b453a620995957914f193a952f13
cpath: /trunk/client/tilespec.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 23
file 5f.5ck.r30215/6255
K 6
agents
V 23
dir zf.5ck.r29743/51739
K 11
attribute.c
V 24
file xh.5ck.r28218/30713
K 11
attribute.h
V 24
file xi.5ck.r18863/23649
K 7
audio.c
V 24
file 139.5ck.r30672/2762
K 7
audio.h
V 24
file 13a.5ck.r30672/3003
K 12
audio_none.c
V 25
file 13d.5ck.r24916/15731
K 12
audio_none.h
V 25
file 13e.5ck.r18863/20841
K 11
audio_sdl.c
V 25
file 13f.5ck.r31053/46875
K 11
audio_sdl.h
V 25
file 13g.5ck.r18863/23885
K 17
chatline_common.c
V 25
file 14q.5ck.r30210/33588
K 17
chatline_common.h
V 24
file 14r.5ck.r24892/5917
K 16
citydlg_common.c
V 22
file z4.5ck.r30945/744
K 16
citydlg_common.h
V 24
file z5.5ck.r29743/52224
K 13
cityrepdata.c
V 24
file mb.5ck.r30210/34092
K 13
cityrepdata.h
V 24
file mc.5ck.r18863/19121
K 13
client_main.c
V 22
file 2f.5cp.r31072/459
K 13
client_main.h
V 23
file hz.5cq.r29333/6077
K 8
climap.c
V 24
file 197.5ck.r20232/3008
K 8
climap.h
V 25
file 198.5ck.r30221/38191
K 9
climisc.c
V 22
file d5.5ck.r30946/120
K 9
climisc.h
V 22
file i0.5ck.r30695/915
K 8
clinet.c
V 24
file hc.5ck.r30614/19320
K 8
clinet.h
V 24
file i1.5ck.r18863/24866
K 15
colors_common.c
V 25
file 33a.5ck.r31090/12786
K 15
colors_common.h
V 25
file 33b.5ck.r31090/13030
K 19
connectdlg_common.c
V 24
file 2fw.5ck.r30359/2327
K 19
connectdlg_common.h
V 25
file 2fx.5ck.r19154/53802
K 9
control.c
V 23
file gz.5ck.r31023/4827
K 9
control.h
V 23
file i2.5ck.r30683/9652
K 7
dummy.c
V 26
file 4f9.5ck.r26905/141682
K 12
dummycxx.cpp
V 26
file 6kr.5ck.r26905/106211
K 8
editor.c
V 25
file 3bg.5ck.r30974/54323
K 8
editor.h
V 24
file 3bh.5ck.r26198/2592
K 17
global_worklist.c
V 26
file 4i6.5ck.r26905/117850
K 17
global_worklist.h
V 26
file 4i7.5ck.r26905/126022
K 6
goto.c
V 23
file vu.5ck.r30625/1177
K 6
goto.h
V 24
file vv.5ck.r27871/19506
K 11
gui-gtk-2.0
V 23
dir zs.5ck.r31090/17862
K 11
gui-gtk-3.0
V 23
dir zs.5g7.r31090/22597
K 6
gui-qt
V 24
dir 6ie.5ck.r31090/26129
K 8
gui-sdl2
V 24
dir 16t.5l8.r31090/31465
K 8
gui-stub
V 23
dir mh.5ck.r31090/34697
K 14
gui_cbsetter.c
V 26
file a3c.5ck.r27417/165161
K 14
gui_cbsetter.h
V 25
file a3d.5ck.r26905/69091
K 15
gui_interface.c
V 26
file 6jm.5ir.r27417/187983
K 15
gui_interface.h
V 26
file 6jn.5is.r27417/193557
K 10
helpdata.c
V 24
file h1.5ck.r30568/61705
K 10
helpdata.h
V 22
file i3.5ck.r30004/950
K 7
include
V 23
dir b8.5ck.r31090/36802
K 19
luaconsole_common.c
V 26
file 75z.5ck.r26905/100821
K 19
luaconsole_common.h
V 26
file 760.5ck.r26905/106500
K 9
luascript
V 24
dir 761.5ck.r29743/54308
K 16
mapctrl_common.c
V 22
file 15m.5ck.r30622/70
K 16
mapctrl_common.h
V 24
file 15n.5ck.r27397/5459
K 16
mapview_common.c
V 24
file z2.5ck.r31090/37040
K 16
mapview_common.h
V 23
file z3.5ck.r30296/1376
K 19
messagewin_common.c
V 25
file 14s.5ck.r30328/72999
K 19
messagewin_common.h
V 25
file 14t.5ck.r18863/21579
K 7
music.c
V 25
file zmc.5ck.r30210/64954
K 7
music.h
V 25
file zme.5ck.r27127/11513
K 9
options.c
V 24
file dc.5ck.r31007/18379
K 9
options.h
V 24
file i4.5ck.r31007/18621
K 17
overview_common.c
V 25
file 2yk.5ck.r30221/52672
K 17
overview_common.h
V 24
file 2yl.5ck.r29833/4964
K 10
packhand.c
V 21
file n.5ck.r31022/486
K 10
packhand.h
V 24
file i5.5ck.r18863/20596
K 15
plrdlg_common.c
V 25
file 14u.5ck.r30328/73502
K 15
plrdlg_common.h
V 25
file 14v.5ck.r18863/21328
K 17
repodlgs_common.c
V 25
file 11i.5ck.r30568/61953
K 17
repodlgs_common.h
V 25
file 11j.5ck.r19589/11861
K 9
reqtree.c
V 25
file 2ym.5ck.r30210/66179
K 9
reqtree.h
V 24
file 2yn.5ck.r24150/6004
K 9
servers.c
V 25
file 33x.5ck.r30614/24902
K 9
servers.h
V 25
file 33y.5ck.r20478/36372
K 6
text.c
V 25
file 2g3.5ck.r30568/62207
K 6
text.h
V 25
file 2g4.5ck.r24459/13284
K 15
themes_common.c
V 22
file 352.5ck.r26465/95
K 15
themes_common.h
V 25
file 353.5ck.r18863/22710
K 10
tilespec.c
V 24
file hl.5ck.r31090/37292
K 10
tilespec.h
V 24
file i6.5ck.r30974/68684
K 19
unitselect_common.c
V 26
file 76v.5ck.r30060/143258
K 19
unitselect_common.h
V 26
file 76w.5ck.r26905/117548
K 14
update_queue.c
V 25
file 4jw.5ck.r29054/20297
K 14
update_queue.h
V 26
file 4jx.5ck.r26905/141966
K 10
voteinfo.c
V 25
file 4fe.5ck.r30210/66670
K 10
voteinfo.h
V 26
file 4ff.5ck.r26905/142263
K 6
zoom.c
V 25
file 2120.5ck.r30913/1673
K 6
zoom.h
V 25
file 2122.5ck.r30913/1856
END
ENDREP
id: d.5ck.r31090/41812
type: dir
pred: d.5ck.r31077/15522
count: 7011
text: 31090 37538 4261 0 e7f4a73f55436e2df9bf8c257ecf8ea4
props: 28036 11094 400 0 bbe1d6769a94f3af2a54f7dc91fc9c71
cpath: /trunk/client
copyroot: 15280 /trunk

id: 6i6.5ck.r31090/42043
type: file
pred: 6i6.5ck.r26905/218776
count: 9
text: 31090 11163 791 6989 69c335e37d330f455a296d454b23f231
props: 26905 218729 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/rgbcolor.c
copyroot: 15280 /trunk

id: 6i7.5ck.r31090/42290
type: file
pred: 6i7.5ck.r26905/219068
count: 5
text: 31090 11981 76 3751 48f91920b1b2acbc94ec76be02fcb18e
props: 26905 219021 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/rgbcolor.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 22
file 5h.5ck.r30300/929
K 14
achievements.c
V 25
file qhc.5ck.r30221/58179
K 14
achievements.h
V 26
file qhe.5ck.r26905/215849
K 9
actions.c
V 24
file r7a.5ck.r31010/2489
K 9
actions.h
V 22
file r7c.5ck.r30793/84
K 4
ai.c
V 25
file 4go.5ck.r30874/16121
K 4
ai.h
V 25
file 4gp.5ck.r30874/16359
K 6
aicore
V 23
dir 18t.5ck.r31012/3054
K 6
base.c
V 25
file 3jw.5ck.r30974/73432
K 6
base.h
V 25
file 3jx.5ck.r29645/47370
K 9
borders.c
V 25
file 4f0.5ck.r28853/15054
K 9
borders.h
V 26
file 4f1.5ck.r26905/213493
K 10
calendar.c
V 27
file 147p.5ck.r26905/214086
K 10
calendar.h
V 27
file 147r.5ck.r26905/215265
K 8
capstr.c
V 22
file dv.5ck.r24976/289
K 8
capstr.h
V 24
file dw.5ck.r18858/97074
K 10
citizens.c
V 26
file 6mx.5ck.r26905/203234
K 10
citizens.h
V 26
file 6my.5ck.r26905/204108
K 6
city.c
V 20
file q.5ck.r30298/76
K 6
city.h
V 24
file 3q.5ck.r29911/15031
K 13
clientutils.c
V 26
file zj9.5ck.r26905/212022
K 13
clientutils.h
V 26
file zjb.5ck.r26905/213199
K 8
combat.c
V 24
file wp.5ck.r30697/29260
K 8
combat.h
V 24
file wq.5ck.r24573/25814
K 12
connection.c
V 24
file un.5ck.r30614/29653
K 12
connection.h
V 24
file uo.5ck.r30393/30602
K 9
culture.c
V 27
file 104t.5ck.r26905/202652
K 9
culture.h
V 27
file 104v.5ck.r26905/203523
K 8
dataio.c
V 22
file 15r.5ck.r31056/61
K 8
dataio.h
V 24
file 15s.5ck.r29703/2619
K 13
dataio_json.c
V 24
file 1m61.5ck.r30802/714
K 13
dataio_json.h
V 24
file 1m63.5ck.r30802/903
K 11
diptreaty.c
V 24
file 3r.5ck.r30328/78509
K 11
diptreaty.h
V 24
file 3s.5ck.r27517/13575
K 10
disaster.c
V 25
file b2m.5ck.r29999/68570
K 10
disaster.h
V 25
file b2o.5ck.r28753/25083
K 9
effects.c
V 26
file 2eo.5ck.r30060/150599
K 9
effects.h
V 25
file 2ep.5ck.r29829/13137
K 8
events.c
V 25
file 33h.5ck.r29729/40414
K 8
events.h
V 24
file 3t.5ck.r29729/40657
K 8
extras.c
V 25
file o9u.5ck.r30974/73676
K 8
extras.h
V 25
file o9w.5ck.r30974/73921
K 12
fc_cmdhelp.c
V 26
file 76j.5ck.r26905/216438
K 12
fc_cmdhelp.h
V 26
file 76k.5ck.r26905/216731
K 14
fc_interface.c
V 25
file 4up.5ck.r30095/11458
K 14
fc_interface.h
V 25
file 4uq.5ck.r28203/18355
K 10
fc_types.h
V 24
file 2ll.5ck.r31012/3289
K 15
featured_text.c
V 26
file 4h3.5ck.r26905/212899
K 15
featured_text.h
V 25
file 4h4.5ck.r29999/69059
K 6
game.c
V 24
file 3u.5ck.r30974/74414
K 6
game.h
V 24
file 3v.5ck.r30393/31282
K 19
generate_packets.py
V 23
file 2f4.5ck.r30651/587
K 12
government.c
V 24
file he.5ck.r29999/69311
K 12
government.h
V 24
file hf.5ck.r25151/83855
K 6
idex.c
V 24
file qo.5ck.r25151/84101
K 6
idex.h
V 24
file qp.5ck.r18858/92434
K 13
improvement.c
V 24
file vb.5ck.r29999/69559
K 13
improvement.h
V 24
file vc.5ck.r29857/14472
K 5
map.c
V 22
file r.5ck.r31065/1465
K 5
map.h
V 23
file 41.5ck.r31065/1699
K 11
map_types.h
V 25
file 216z.5ck.r31065/1939
K 8
mapimg.c
V 25
file 6n9.5ck.r30328/78753
K 8
mapimg.h
V 26
file 6na.5ck.r26905/215559
K 15
metaknowledge.c
V 24
file siq.5ck.r31009/1590
K 15
metaknowledge.h
V 24
file sis.5ck.r31009/1837
K 10
movement.c
V 25
file 2xv.5ck.r30786/16196
K 10
movement.h
V 25
file 2xw.5ck.r30513/23106
K 13
multipliers.c
V 26
file 197b.5ck.r29999/69806
K 13
multipliers.h
V 26
file 197d.5ck.r29117/26290
K 18
name_translation.h
V 25
file 4k1.5ck.r29999/70056
K 8
nation.c
V 21
file il.5ck.r30332/79
K 8
nation.h
V 22
file im.5ck.r27000/284
K 9
packets.c
V 23
file 43.5ck.r31072/5220
K 11
packets.def
V 24
file 2f5.5ck.r31023/9566
K 9
packets.h
V 23
file 44.5ck.r31072/5461
K 14
packets_json.c
V 24
file 1m64.5ck.r29162/453
K 14
packets_json.h
V 26
file 1m65.5ck.r28846/11954
K 8
player.c
V 24
file 45.5ck.r30874/17084
K 8
player.h
V 24
file 46.5ck.r31064/97444
K 14
requirements.c
V 25
file 2wq.5ck.r30974/74905
K 14
requirements.h
V 25
file 2wr.5ck.r29444/27920
K 10
research.c
V 25
file 4ro.5ck.r30328/79741
K 10
research.h
V 24
file 4rp.5ck.r27750/1056
K 10
rgbcolor.c
V 25
file 6i6.5ck.r31090/42043
K 10
rgbcolor.h
V 25
file 6i7.5ck.r31090/42290
K 6
road.c
V 25
file 6pq.5ck.r30974/75158
K 6
road.h
V 24
file 6pr.5ck.r29807/6974
K 10
scriptcore
V 23
dir 75a.5ck.r30961/3511
K 11
spaceship.c
V 23
file 98.5ck.r26349/9773
K 11
spaceship.h
V 24
file 99.5ck.r26349/10015
K 12
specialist.c
V 25
file 33f.5ck.r29999/70798
K 12
specialist.h
V 25
file 33g.5ck.r29570/10667
K 7
style.c
V 25
file zzb.5ck.r29999/71046
K 7
style.h
V 26
file zzd.5ck.r26905/204988
K 6
team.c
V 23
file 33i.5ck.r25891/212
K 6
team.h
V 23
file 33j.5ck.r26183/314
K 6
tech.c
V 23
file t.5ck.r29999/71290
K 6
tech.h
V 21
file u.5ck.r29316/360
K 9
terrain.c
V 25
file 2fp.5ck.r30974/75400
K 9
terrain.h
V 24
file qs.5ck.r30974/75649
K 6
tile.c
V 25
file 2ys.5ck.r30974/75895
K 6
tile.h
V 25
file 2yt.5ck.r30974/76137
K 13
traderoutes.c
V 25
file bf8.5ck.r29999/71774
K 13
traderoutes.h
V 25
file bfa.5ck.r29010/73887
K 8
traits.h
V 25
file 7k3.5ck.r30330/11323
K 6
unit.c
V 22
file v.5ck.r31010/2732
K 6
unit.h
V 23
file 48.5ck.r31010/2966
K 10
unitlist.c
V 25
file 39m.5ck.r28596/94022
K 10
unitlist.h
V 26
file 39n.5ck.r27611/110113
K 10
unittype.c
V 24
file v9.5ck.r30697/29505
K 10
unittype.h
V 24
file va.5ck.r30697/29748
K 9
version.c
V 23
file oe.5ck.r26171/7093
K 9
version.h
V 23
file e7.5ck.r26171/7331
K 9
victory.c
V 26
file qex.5ck.r26905/217020
K 9
victory.h
V 26
file qez.5ck.r26905/217896
K 8
vision.c
V 22
file 4dm.5ck.r27638/98
K 8
vision.h
V 24
file 4dn.5ck.r24742/9986
K 12
workertask.c
V 26
file llw.5ck.r26905/206753
K 12
workertask.h
V 25
file lly.5ck.r28926/17170
K 10
worklist.c
V 22
file o8.5ck.r28026/169
K 10
worklist.h
V 24
file o9.5ck.r18858/98299
END
ENDREP
id: p.5ck.r31090/48073
type: dir
pred: p.5ck.r31072/11240
count: 4502
text: 31090 42536 5524 0 077db2821ee8d8681713e707ad15680d
props: 23743 0 112 0 b2bc91bf125d83375389d51f25ff2c2f
cpath: /trunk/common
copyroot: 15280 /trunk

id: 1ef5.5sb.r31090/48300
type: file
pred: 1ef5.5sb.r31083/466
count: 24
text: 31090 12084 25 7296 a47330a07ff78c6a5a31a69a48db7e9e
cpath: /trunk/data/alio.tilespec
copyroot: 28880 /trunk/data/alio.tilespec

id: 34t.5ck.r31090/48508
type: file
pred: 34t.5ck.r31083/669
count: 63
text: 31090 12134 25 5895 2850fe6b6425c6047de61df11e60e642
props: 11097 119 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /trunk/data/amplio.tilespec
copyroot: 15280 /trunk

id: 4oe.5ck.r31090/48753
type: file
pred: 4oe.5ck.r31083/912
count: 50
text: 31090 12185 25 6345 ee5d396b419b2d448a58fb9d90cdda9b
props: 18248 9164 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/data/amplio2.tilespec
copyroot: 15280 /trunk

id: 78i.5ck.r31090/48999
type: file
pred: 78i.5ck.r31083/1154
count: 37
text: 31090 12234 25 6318 6bdaab9092ed9ecd604d09e92f14ef23
cpath: /trunk/data/cimpletoon.tilespec
copyroot: 15280 /trunk

id: 3e7.5ck.r31090/49193
type: file
pred: 3e7.5ck.r31083/1346
count: 52
text: 31090 12285 25 5485 cf86310cc0d8b8ef481043d58c5ad678
props: 12670 85446 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/data/hex2t.tilespec
copyroot: 15280 /trunk

id: 1dxl.5ck.r31090/49439
type: file
pred: 1dxl.5ck.r31083/1588
count: 20
text: 31090 12336 25 6823 8a7c50fc46865e1113f088a9636540f4
cpath: /trunk/data/hexemplio.tilespec
copyroot: 15280 /trunk

id: 2pz.5ck.r31090/49634
type: file
pred: 2pz.5ck.r31083/1779
count: 72
text: 31090 12387 25 5632 0b54e2146d2e6bd511712c863c816f7f
props: 11096 1134 111 0 5515c59917848b493fbf45ffb42836b3
cpath: /trunk/data/isophex.tilespec
copyroot: 15280 /trunk

id: 148.5ck.r31090/49882
type: file
pred: 148.5ck.r31083/2023
count: 93
text: 31090 12438 25 5517 d1e1090b1a5c2eaff10acffe298e6be9
props: 11096 1844 111 0 e9cbe3af5d5934f88ab895fd46902062
cpath: /trunk/data/isotrident.tilespec
copyroot: 15280 /trunk

id: 33k.5ck.r31090/50133
type: file
pred: 33k.5ck.r24136/1399
count: 22
text: 31090 12488 64 2239 2a6399d3d9cf04db1bb1d8bdd3dec886
props: 10807 263705 110 0 dce24d5ac3f5e86568d59a55fa196991
cpath: /trunk/data/misc/colors.tilespec
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 23
file jn.5ck.r29399/8735
K 20
buildings-large.spec
V 25
file 3cm.5eu.r28619/57821
K 13
buildings.png
V 25
file 193.5ck.r28478/48735
K 14
buildings.spec
V 25
file 194.5ck.r28619/55499
K 10
chiefs.png
V 21
file 162.0.r11827/308
K 11
chiefs.spec
V 24
file nx.5ck.r28619/56697
K 11
citybar.png
V 25
file 2yq.5bk.r15200/25394
K 12
citybar.spec
V 25
file 2yr.5ck.r28619/56451
K 12
cityicon.png
V 24
file 343.5ev.r17914/5052
K 11
civicon.png
V 22
file 2xy.0.r12686/6385
K 15
colors.tilespec
V 25
file 33k.5ck.r31090/50133
K 11
cursors.png
V 23
file 2xt.0.r12012/91675
K 12
cursors.spec
V 25
file 2xu.5ck.r28619/54478
K 10
editor.png
V 25
file 4dv.5ck.r28039/11427
K 11
editor.spec
V 25
file 4em.5ck.r28619/53992
K 10
events.png
V 25
file zkc.5ck.r25236/12571
K 11
events.spec
V 22
file zke.5ck.r29755/50
K 16
flags-large.spec
V 25
file 6gq.5ck.r28619/53792
K 10
flags.spec
V 25
file 2fr.5ck.r28619/56197
K 15
governments.png
V 24
file qvv.5ck.r28111/6088
K 16
governments.spec
V 25
file qvx.5ck.r28619/57626
K 10
icons.spec
V 25
file 2xz.5ck.r28619/55252
K 9
intro.png
V 24
file 163.0.r12705/355261
K 10
mpicon.png
V 24
file 74f.5ck.r20211/5285
K 12
overlays.png
V 22
file 2xr.0.r9929/55482
K 13
overlays.spec
V 25
file 2xs.5ck.r28619/56941
K 18
shields-large.spec
V 25
file 6gr.5ck.r28619/53590
K 12
shields.spec
V 24
file nz.5ck.r28619/55944
K 9
small.png
V 25
file 166.5ck.r25247/14728
K 10
small.spec
V 24
file jr.5ck.r28619/58107
K 9
space.png
V 24
file 167.5ck.r16139/6512
K 10
space.spec
V 24
file jt.5ck.r28619/54235
K 15
specialists.png
V 24
file xlo.5ck.r24508/4525
K 16
specialists.spec
V 25
file xlq.5ck.r28619/55750
K 9
techs.png
V 24
file 3iv.0.r12822/249608
K 10
techs.spec
V 25
file 3iw.5ck.r28619/57379
K 10
treaty.png
V 22
file 168.0.r12461/8566
K 11
treaty.spec
V 24
file jv.5ck.r28619/54725
K 18
wonders-large.spec
V 25
file 3cn.5ew.r28619/54968
END
ENDREP
id: jl.5ck.r31090/52284
type: dir
pred: jl.5ck.r29755/2131
count: 566
text: 31090 50387 1884 0 08802eac7966df06058b6b9e305fe088
props: 4431 11601 46 0 e473fc4bd409d833d90929dfcb3a14b8
cpath: /trunk/data/misc
copyroot: 15280 /trunk

id: 1ef5.5ck.r31090/52516
type: file
pred: 1ef5.5ck.r31083/2271
count: 20
text: 31090 12579 25 6873 fc9b5569efb59e931f37ec0bce47158f
cpath: /trunk/data/toonhex.tilespec
copyroot: 15280 /trunk

id: k4.5ck.r31090/52709
type: file
pred: k4.5ck.r31083/2461
count: 94
text: 31090 12630 25 6959 3580c4404f8cb0ffd3ec2ab7476194ca
props: 11096 782 111 0 77af0ec85c332e0d4fd7e7ef86a518fd
cpath: /trunk/data/trident.tilespec
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 22
file 5l.5ck.r30731/105
K 5
alien
V 23
dir fav.5ck.r31086/2265
K 10
alien.serv
V 23
file fbk.5ck.r22305/900
K 4
alio
V 23
dir 1sqa.5ck.r29765/806
K 13
alio.tilespec
V 26
file 1ef5.5sb.r31090/48300
K 6
amplio
V 24
dir 340.5ck.r28619/66081
K 15
amplio.tilespec
V 25
file 34t.5ck.r31090/48508
K 7
amplio2
V 24
dir 4na.5ck.r30196/42128
K 16
amplio2.tilespec
V 25
file 4oe.5ck.r31090/48753
K 9
buildings
V 22
dir 3co.0.r12672/18420
K 10
cimpletoon
V 24
dir 78f.5ck.r28619/45659
K 19
cimpletoon.tilespec
V 25
file 78i.5ck.r31090/48999
K 4
civ1
V 22
dir 8l.5ck.r31025/4211
K 9
civ1.serv
V 23
file 8s.5ck.r20880/5228
K 4
civ2
V 22
dir ge.5ck.r31025/5306
K 9
civ2.serv
V 23
file gj.5ck.r20880/5465
K 8
civ2civ3
V 23
dir fum.5ck.r31076/2206
K 13
civ2civ3.serv
V 23
file fv0.5ck.r24155/112
K 7
classic
V 23
dir csx.5ck.r31076/3336
K 12
classic.serv
V 23
file n1h.5ck.r22608/212
K 12
database.lua
V 24
file 6l2.5ck.r25798/5719
K 7
default
V 22
dir 89.5ck.r31086/2908
K 12
default.serv
V 24
file 2xa.5ck.r27479/5878
K 12
experimental
V 23
dir 4k5.5ck.r31076/4449
K 17
experimental.serv
V 24
file 4ki.5ck.r20880/5702
K 5
flags
V 25
dir 2gl.5ck.r27801/156326
K 19
freeciv-client.icns
V 24
file 3fa.0.r12705/354534
K 18
freeciv-client.png
V 24
file 33s.0.r12705/351588
K 19
freeciv-server.icns
V 24
file 3fc.0.r12705/355017
K 18
freeciv-server.png
V 25
file 3fd.5bk.r13732/27487
K 14
freeciv.rc-2.0
V 25
file 11h.5ck.r16281/11565
K 8
graphics
V 24
dir 2x2.5ck.r28478/54898
K 14
gtk2_menus.xml
V 25
file 4hw.5th.r30305/14276
K 14
gtk3_menus.xml
V 24
file 4hw.5ti.r31089/1036
K 15
gtk3x_menus.xml
V 21
file 4hw.5u1.r31088/0
K 12
helpdata.txt
V 21
file y.5ck.r31084/151
K 5
hex2t
V 24
dir 3dv.5ck.r29599/50697
K 14
hex2t.tilespec
V 25
file 3e7.5ck.r31090/49193
K 9
hexemplio
V 25
dir 1dwq.5ck.r29001/35564
K 18
hexemplio.tilespec
V 26
file 1dxl.5ck.r31090/49439
K 5
icons
V 24
dir 4cb.5ck.r20125/42857
K 7
isophex
V 23
dir 2pl.5ck.r29598/1015
K 16
isophex.tilespec
V 25
file 2pz.5ck.r31090/49634
K 10
isotrident
V 24
dir 13p.5ck.r29599/52627
K 19
isotrident.tilespec
V 25
file 148.5ck.r31090/49882
K 4
misc
V 23
dir jl.5ck.r31090/52284
K 11
multiplayer
V 22
dir 89.5es.r31086/4079
K 16
multiplayer.serv
V 24
file 2xa.5et.r17702/1849
K 6
nation
V 23
dir ot.5ck.r30899/56659
K 8
override
V 23
dir 14ks.5ck.r25526/900
K 7
sandbox
V 23
dir fum.5to.r31076/6722
K 12
sandbox.serv
V 24
file fv0.5tp.r30532/4431
K 9
scenarios
V 23
dir io.5g6.r31001/24399
K 8
stdmusic
V 23
dir 146c.5ck.r25526/607
K 18
stdmusic.musicspec
V 27
file 10u1.5ck.r25054/880190
K 9
stdsounds
V 23
dir 32g.5ck.r26512/8768
K 19
stdsounds.soundspec
V 25
file 32y.5ck.r29729/48945
K 4
stub
V 25
dir 1556.5ck.r31025/12067
K 9
stub.serv
V 26
file 155p.5ck.r25199/65944
K 6
themes
V 23
dir 2m6.5ck.r30188/9059
K 16
toonhex.tilespec
V 26
file 1ef5.5ck.r31090/52516
K 7
trident
V 23
dir eb.5ck.r29974/84383
K 16
trident.tilespec
V 24
file k4.5ck.r31090/52709
K 7
wonders
V 23
dir 3qc.5ck.r28518/2262
END
ENDREP
id: w.5ck.r31090/55932
type: dir
pred: w.5ck.r31089/4209
count: 3588
text: 31090 52954 2965 0 161a9632b8de19f60fbad802aed11ecf
props: 11355 32945 104 0 b8b28eed1bd4d902aad8c746f9403748
cpath: /trunk/data
copyroot: 15280 /trunk

id: 1d.5ck.r31090/56160
type: file
pred: 1d.5ck.r30672/37792
count: 197
text: 31090 12681 80 14036 b1ae7187f697e84bc48d2897fdd272d5
props: 10717 817 112 0 a00d30a519ad77ac91be0933c5118bd6
cpath: /trunk/utility/shared.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 2gg.5ck.r27705/54797
K 9
astring.c
V 23
file h5.5ck.r22395/1264
K 9
astring.h
V 23
file h6.5ck.r20479/1668
K 11
bitvector.c
V 25
file 4un.5ck.r26905/46406
K 11
bitvector.h
V 25
file 4uo.5ck.r30739/24984
K 12
capability.c
V 24
file 7p.5ck.r24916/10883
K 12
capability.h
V 24
file 7q.5ck.r18858/85852
K 12
distribute.c
V 26
file 2lp.5ck.r19259/362511
K 12
distribute.h
V 25
file 2lq.5ck.r18858/87951
K 9
fc_utf8.c
V 23
file 4ku.5ck.r26944/198
K 9
fc_utf8.h
V 25
file 4kv.5ck.r26905/46695
K 13
fcbacktrace.c
V 22
file 731.5ck.r26959/58
K 13
fcbacktrace.h
V 25
file 732.5ck.r26905/45245
K 9
fciconv.c
V 25
file 2g7.5ck.r26800/15337
K 9
fciconv.h
V 25
file 2g8.5ck.r18858/89144
K 8
fcintl.c
V 22
file k3.5ck.r30876/139
K 8
fcintl.h
V 24
file fw.5ck.r29619/12832
K 10
fcthread.c
V 25
file 6hv.5ck.r27705/54306
K 10
fcthread.h
V 25
file 6hw.5ck.r30359/24553
K 20
generate_specenum.py
V 22
file 4ia.5ck.r30101/51
K 9
genhash.c
V 23
file 57v.5ck.r27456/668
K 9
genhash.h
V 25
file 57w.5ck.r26905/43784
K 9
genlist.c
V 24
file 51.5ck.r29999/82617
K 9
genlist.h
V 24
file 52.5ck.r29999/82856
K 11
inputfile.c
V 23
file h9.5ck.r29861/2082
K 11
inputfile.h
V 24
file ha.5ck.r18858/84203
K 5
ioz.c
V 24
file uh.5ck.r30359/24796
K 5
ioz.h
V 24
file ui.5ck.r29107/16532
K 10
iterator.c
V 25
file 4h5.5ck.r26905/44951
K 10
iterator.h
V 25
file 4f3.5ck.r26905/45830
K 5
log.c
V 21
file 53.5ck.r30919/70
K 5
log.h
V 24
file 54.5ck.r30374/31912
K 5
md5.c
V 22
file 33q.5ck.r25082/54
K 5
md5.h
V 25
file 33r.5ck.r19849/16287
K 5
mem.c
V 25
file d9.5ck.r19259/362758
K 5
mem.h
V 24
file da.5ck.r20315/22211
K 9
netfile.c
V 25
file 6m8.5ck.r26905/41142
K 9
netfile.h
V 25
file 6m9.5ck.r26905/41734
K 9
netintf.c
V 24
file t6.5ck.r30614/42221
K 9
netintf.h
V 24
file t7.5ck.r30614/42464
K 6
rand.c
V 22
file m5.5ck.r29825/150
K 6
rand.h
V 22
file m6.5ck.r29825/385
K 10
registry.c
V 25
file agw.5ck.r26905/40563
K 10
registry.h
V 25
file 7po.5ck.r26905/40851
K 14
registry_ini.c
V 24
file dh.5io.r30173/20464
K 14
registry_ini.h
V 23
file di.5ip.r29662/6395
K 14
registry_xml.c
V 26
file 16x3.5ck.r26905/44658
K 14
registry_xml.h
V 26
file 16x5.5ck.r26905/45535
K 14
section_file.c
V 24
file bw9.5ck.r29861/2594
K 14
section_file.h
V 25
file axo.5ck.r27649/11563
K 8
shared.c
V 24
file 55.5ck.r30672/37550
K 8
shared.h
V 24
file 1d.5ck.r31090/56160
K 10
spechash.h
V 25
file 57x.5ck.r26905/46987
K 10
speclist.h
V 24
file gb.5ck.r29999/83094
K 8
specpq.h
V 26
file 1brp.5ck.r26905/42320
K 9
specvec.h
V 24
file z9.5ck.r29570/17384
K 15
string_vector.c
V 25
file 4hy.5ck.r26905/41433
K 15
string_vector.h
V 25
file 4hz.5ck.r26905/42022
K 9
support.c
V 24
file m9.5ck.r30614/42708
K 9
support.h
V 23
file ma.5ck.r29901/7344
K 8
timing.c
V 24
file el.5ck.r24200/17365
K 8
timing.h
V 24
file em.5ck.r28012/43360
END
ENDREP
id: 1c.5ck.r31090/59231
type: dir
pred: 1c.5ck.r30919/3129
count: 949
text: 31090 56403 2815 0 c368c3b18a1fb891e2dafaf77df1dbf3
props: 17175 331 84 0 5447a85ba28edec0d4a8f6120070e2b2
cpath: /trunk/utility
copyroot: 15280 /trunk

PLAIN
K 9
ABOUT-NLS
V 24
file fu.5ck.r27270/69307
K 7
AUTHORS
V 24
file 5u.5ck.r22143/14016
K 7
COPYING
V 22
file 1h.5ck.r29454/952
K 9
ChangeLog
V 26
file 6l.5ck.r27473/7455495
K 7
INSTALL
V 21
file 6.5ck.r30188/957
K 11
Makefile.am
V 23
file 59.5ck.r30425/6590
K 4
NEWS
V 24
file 6m.5ck.r25634/30702
K 6
README
V 20
file 7.0.r4421/96382
K 2
ai
V 21
dir 8.5ck.r31023/4605
K 10
autogen.sh
V 23
file 12o.5ck.r30654/414
K 9
bootstrap
V 23
dir 2p5.5ck.r30188/3443
K 6
client
V 22
dir d.5ck.r31090/41812
K 6
common
V 22
dir p.5ck.r31090/48073
K 12
configure.ac
V 23
file 149.5ck.r30949/343
K 4
data
V 22
dir w.5ck.r31090/55932
K 12
dependencies
V 24
dir 2yu.5ck.r30959/62392
K 3
doc
V 23
dir k7.5ck.r30969/25575
K 10
fc_version
V 26
file 2lo.5en.r31064/103455
K 11
gen_headers
V 25
dir 1hsw.5ck.r30614/36927
K 2
m4
V 23
dir 12p.5ck.r31061/2474
K 7
scripts
V 23
dir 2yo.5ck.r28716/5421
K 6
server
V 22
dir z.5ck.r31086/13726
K 5
tests
V 23
dir 2g9.5ck.r27783/1363
K 5
tools
V 23
dir 4pj.5js.r31015/2560
K 12
translations
V 26
dir t0a.5ck.r31069/1649911
K 7
utility
V 23
dir 1c.5ck.r31090/59231
K 5
win32
V 23
dir 2eu.5ck.r30584/1753
END
ENDREP
id: 3.5ck.r31090/60599
type: dir
pred: 3.5ck.r31089/5572
count: 20519
text: 31090 59460 1126 0 4764309284a00b932eb6a28416ce0d78
props: 28036 14655 292 0 9e1d5de0253c723466868990c52c129f
cpath: /trunk
copyroot: 15280 /trunk

PLAIN
K 8
branches
V 20
dir 1.0.r31087/15674
K 4
tags
V 19
dir 2.0.r29519/6475
K 5
trunk
V 22
dir 3.5ck.r31090/60599
K 7
website
V 20
dir 3ge.0.r30613/922
END
ENDREP
id: 0.0.r31090/60989
type: dir
pred: 0.0.r31089/5959
count: 31090
text: 31090 60823 153 0 bcd211ce7b6b7bb2ec7a522e0a8cc564
cpath: /
copyroot: 0 /

33a.5ck.t31089-1 modify true false /trunk/client/colors_common.c

33b.5ck.t31089-1 modify true false /trunk/client/colors_common.h

2y6.5ck.t31089-1 modify true false /trunk/client/gui-gtk-2.0/canvas.c

104.5ck.t31089-1 modify true false /trunk/client/gui-gtk-2.0/colors.c

2y6.5g7.t31089-1 modify true false /trunk/client/gui-gtk-3.0/canvas.c

104.5g7.t31089-1 modify true false /trunk/client/gui-gtk-3.0/colors.c

6in.5ck.t31089-1 modify true false /trunk/client/gui-qt/colors.cpp

176.5l8.t31089-1 modify true false /trunk/client/gui-sdl2/colors.c

mr.5ck.t31089-1 modify true false /trunk/client/gui-stub/colors.c

in.5ck.t31089-1 modify true false /trunk/client/include/colors_g.h

z2.5ck.t31089-1 modify true false /trunk/client/mapview_common.c

hl.5ck.t31089-1 modify true false /trunk/client/tilespec.c

6i6.5ck.t31089-1 modify true false /trunk/common/rgbcolor.c

6i7.5ck.t31089-1 modify true false /trunk/common/rgbcolor.h

1ef5.5sb.t31089-1 modify true false /trunk/data/alio.tilespec

34t.5ck.t31089-1 modify true false /trunk/data/amplio.tilespec

4oe.5ck.t31089-1 modify true false /trunk/data/amplio2.tilespec

78i.5ck.t31089-1 modify true false /trunk/data/cimpletoon.tilespec

3e7.5ck.t31089-1 modify true false /trunk/data/hex2t.tilespec

1dxl.5ck.t31089-1 modify true false /trunk/data/hexemplio.tilespec

2pz.5ck.t31089-1 modify true false /trunk/data/isophex.tilespec

148.5ck.t31089-1 modify true false /trunk/data/isotrident.tilespec

33k.5ck.t31089-1 modify true false /trunk/data/misc/colors.tilespec

1ef5.5ck.t31089-1 modify true false /trunk/data/toonhex.tilespec

k4.5ck.t31089-1 modify true false /trunk/data/trident.tilespec

1d.5ck.t31089-1 modify true false /trunk/utility/shared.h


60989 61136
