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 31041 2483 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 31054 6498 22
SVN  ™/wƒA ™/  G €w @…@€‚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 31054 1567 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 19259 17264 5351
SVN  Ã-ÈV#… ‡d ˆ †F‡U  ¤nŽ2¥ Œ³/« ‚jÀC G €„rgbcolor = mycolor; /* structure copy */ = cells[pixel]; /* structure copy */*color = cells[pixel]; /* structure copy */
******
  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 >> 8,
                                       pcolor->color.green >> 8,
                                       pcolor->color.blue >> 8);
  int score = rgbcolor_brightness_score(prgb);

  rgbcolor_destroy(prgb);
  return score;
}
ENDREP
DELTA 30211 5521 83
SVN  è`é"X ¸ €X ¯/¹1if (foreground->color.pixel != shadow->color.pixel) {
    XSetForeground(display, fgc, shadow->color.pixel);
    XmbDrawString(display, pcanvas->pixmap, fontset, fgc,
                  x + 1, y + 1, string, len);
  }ENDREP
DELTA 20720 10166 247
SVN  ‡Kˆ) ‡. ©6‡GUI_FUNC_PROTO(int, color_brightness_scorENDREP
DELTA 30450 0 87
SVN  †  †  ƒ5 ƒìB €} Mƒì>€8 öƒíY ¹„ä"{
      /* 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)
      };

                        FONT_CITY_NAME,
                      color_best_contrast(owner_color, textcolors,
                                          ARRAY_SIZE(textcolors)), size);
    }†  ÊjÍ+‚A€‚A Êj copied while the newly visible areas must be drawn from scratch.  This
   * speeds up drawing significantly, especially when using the scrollbars
   * 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 dENDREP
DELTA 30970 0 2227
SVN  †  †   ’ ˆ †s’5.Dec.17†  †  †    †   ŒÀ üü  ü 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 31005 0 20
SVN  ¹#¹# c ˆ ¸8k5.Dec.17ENDREP
DELTA 30970 3669 218
SVN  ®)®) _ ˆ ­Bg5.Dec.17ENDREP
DELTA 30970 4341 218
SVN  ±k±k _ ˆ ±g5.Dec.17ENDREP
DELTA 30970 2254 218
SVN  ±P±P _ ˆ °ig5.Dec.17ENDREP
DELTA 31005 4437 2198
SVN  «« _ ˆ ª(g5.Dec.17ENDREP
DELTA 31005 6664 4211
SVN  µJµJ c ˆ ´_k5.Dec.17ENDREP
DELTA 31005 10907 20
SVN  ¬"¬" _ ˆ «;g5.Dec.17ENDREP
DELTA 30970 4931 218
SVN  «/«/ _ ˆ ªHg5.Dec.17ENDREP
DELTA 24136 570 156
SVN  ‘‘?	,  ¬ |text_dark = {"r", "g", "b"
    0,     0,   0ENDREP
DELTA 31005 48 4360
SVN  µ|µ| c ˆ µk5.Dec.17ENDREP
DELTA 30970 2501 317
SVN  ¶Q¶Q _ ˆ µjg5.Dec.17ENDREP
DELTA 30673 438 20
SVN  ííJ
; Œ< » àSŒ:#ifndef ABS
#define ABS(x) (((x) >= 0) ? (x) : -(x))
#endifENDREP
id: 33a.5qi.r31094/14265
type: file
pred: 33a.5ck.r22855/3020
count: 33
text: 31094 0 719 5126 c5d0e3618dd2e9ae382f494d995adaab
props: 11081 99 111 0 d4514082fc7e52be026d3360dec4dcb0
cpath: /branches/S2_6/client/colors_common.c
copyroot: 27474 /branches/S2_6

id: 33b.5qi.r31094/14525
type: file
pred: 33b.5ck.r24136/6711
count: 18
text: 31094 747 4335 6508 d8c0b1f2bcf270cca346a73b4a230866
props: 10807 269197 110 0 2297367bb62237eae251d6a189335c2c
cpath: /branches/S2_6/client/colors_common.h
copyroot: 27474 /branches/S2_6

id: 2y6.5qi.r31094/14792
type: file
pred: 2y6.5ck.r24696/4365
count: 12
text: 31094 5109 162 13612 7a416429674e34db9948b003eeb0512c
props: 10518 13071 110 0 705660468cdcbf270377dea86b274451
cpath: /branches/S2_6/client/gui-gtk-2.0/canvas.c
copyroot: 27474 /branches/S2_6

id: 104.5qi.r31094/15064
type: file
pred: 104.5ck.r21441/270
count: 12
text: 31094 5295 558 3758 1807042683a5ef1b4a536ab56d272882
props: 10458 4167 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /branches/S2_6/client/gui-gtk-2.0/colors.c
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 24
file zu.5ck.r26633/45555
K 15
action_dialog.c
V 25
file 36n.5qv.r30801/53262
K 8
canvas.c
V 25
file 2y6.5qi.r31094/14792
K 8
canvas.h
V 23
file 2y7.0.r10096/14437
K 10
chatline.c
V 24
file zw.5qi.r30211/31874
K 10
chatline.h
V 24
file zx.5ck.r25812/10835
K 15
choice_dialog.c
V 24
file 377.5qi.r30573/1734
K 15
choice_dialog.h
V 24
file 378.5qi.r30573/2009
K 14
citizensinfo.c
V 24
file 6n1.5qi.r29073/5141
K 14
citizensinfo.h
V 26
file 6n2.5ck.r26905/108640
K 9
citydlg.c
V 23
file zy.5qi.r30369/9772
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 23
file 100.5qi.r30293/219
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 24
file 102.5qi.r28021/6159
K 8
cma_fe.h
V 25
file 103.5ck.r19385/17470
K 8
colors.c
V 25
file 104.5qi.r31094/15064
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.5qi.r30573/2282
K 9
dialogs.h
V 25
file 109.5ck.r23882/49527
K 10
diplodlg.c
V 25
file 10a.5qi.r28651/31553
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 9
editgui.c
V 23
file 4ej.5qi.r30284/260
K 9
editgui.h
V 26
file 4ek.5ck.r26905/109556
K 10
editprop.c
V 23
file 4el.5qi.r31080/526
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.5qi.r29118/40863
K 10
gamedlgs.h
V 27
file 197j.5ck.r26905/108948
K 9
gotodlg.c
V 23
file 10e.5qi.r30667/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.5qi.r31054/59073
K 10
gui_main.h
V 24
file 10l.5qi.r29596/1529
K 11
gui_stuff.c
V 25
file 10m.5qi.r30211/33242
K 11
gui_stuff.h
V 25
file 10n.5ck.r20622/22320
K 11
happiness.c
V 25
file 10o.5qi.r29690/64630
K 11
happiness.h
V 23
file 10p.0.r9577/106064
K 9
helpdlg.c
V 23
file 10q.5qi.r29685/128
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.5qi.r29690/64907
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 25
file 75w.5qi.r30211/33517
K 12
luaconsole.h
V 26
file 75x.5ck.r26905/108333
K 9
mapctrl.c
V 25
file 10v.5qi.r30222/65877
K 9
mapctrl.h
V 25
file 10w.5bk.r14157/11089
K 9
mapview.c
V 25
file 10x.5qi.r30904/11411
K 9
mapview.h
V 24
file 10y.5ck.r17351/2736
K 6
menu.c
V 23
file 10z.5qi.r31018/125
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 25
file 111.5qi.r29690/65725
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 25
file 112.5qi.r30211/34609
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 24
file 4js.5qi.r30375/2807
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 25
file 2pi.5qi.r30211/34885
K 7
pages.h
V 24
file 2pj.5ck.r24718/1982
K 8
plrdlg.c
V 24
file 115.5qi.r30423/1905
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.5qi.r30061/184239
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.5qi.r30673/7316
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.5qi.r28426/2953
K 8
sprite.h
V 23
file 2y9.0.r10141/29270
K 11
theme_dlg.c
V 25
file 47d.5qi.r30211/35432
K 8
themes.c
V 25
file 34x.5qi.r30211/35705
K 13
tileset_dlg.c
V 24
file 45i.5qi.r30673/7591
K 12
unitselect.c
V 26
file 6pa.5qi.r30061/184517
K 12
unitselect.h
V 26
file 6pb.5ck.r26905/107108
K 14
voteinfo_bar.c
V 23
file 4h8.5qi.r30887/128
K 14
voteinfo_bar.h
V 26
file 4h9.5ck.r26905/110792
K 7
wldlg.c
V 25
file 11e.5qi.r30211/35977
K 7
wldlg.h
V 25
file 11f.5ck.r16285/86707
END
ENDREP
id: zs.5qi.r31094/19401
type: dir
pred: zs.5qi.r31080/4861
count: 1867
text: 31094 15333 4055 0 ce2d3b2bd2ea996c888430fd13f6911c
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /branches/S2_6/client/gui-gtk-2.0
copyroot: 27474 /branches/S2_6

id: 2y6.5qq.r31094/19660
type: file
pred: 2y6.5qq.r31041/5336
count: 20
text: 31094 5878 367 11691 b1e016388fba3e6166b85bfd1063cac1
props: 10518 13071 110 0 705660468cdcbf270377dea86b274451
cpath: /branches/S2_6/client/gui-gtk-3.0/canvas.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

id: 104.5qq.r31094/19943
type: file
pred: 104.5qq.r31041/6753
count: 16
text: 31094 6273 1963 3065 8af89b8bbfe1e4d938a2931d8c956d42
props: 10458 4167 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /branches/S2_6/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.r26633/76036
K 15
action_dialog.c
V 25
file 36n.5qw.r30801/57897
K 8
canvas.c
V 25
file 2y6.5qq.r31094/19660
K 8
canvas.h
V 26
file 2y7.5g7.r23312/336316
K 10
chatline.c
V 24
file zw.5qq.r30211/40590
K 10
chatline.h
V 23
file zx.5g7.r25812/5717
K 15
choice_dialog.c
V 24
file 377.5qq.r31041/5617
K 15
choice_dialog.h
V 24
file 378.5qq.r31041/5904
K 14
citizensinfo.c
V 23
file 6n1.5qq.r29073/647
K 14
citizensinfo.h
V 24
file 6n2.5qq.r31041/6189
K 9
citydlg.c
V 23
file zy.5qq.r30866/3339
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 24
file 100.5qq.r30293/4824
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 24
file 102.5qq.r31041/6473
K 8
cma_fe.h
V 25
file 103.5qq.r28714/21206
K 8
colors.c
V 25
file 104.5qq.r31094/19943
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 24
file 108.5qq.r30573/8035
K 9
dialogs.h
V 24
file 109.5qq.r31041/7033
K 10
diplodlg.c
V 25
file 10a.5qq.r28651/46945
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 9
editgui.c
V 23
file 4ej.5qq.r30190/774
K 9
editgui.h
V 24
file 4ek.5qq.r31041/7314
K 10
editprop.c
V 24
file 4el.5qq.r31080/5117
K 10
editprop.h
V 25
file 3bj.5jh.r21141/57145
K 9
finddlg.c
V 24
file 10c.5qq.r31041/7594
K 9
finddlg.h
V 22
file 2d0.0.r5989/22356
K 10
gamedlgs.c
V 24
file 10d.5qq.r30617/3526
K 10
gamedlgs.h
V 26
file 197l.5g7.r26905/69711
K 9
gotodlg.c
V 24
file 10e.5qq.r30667/5567
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.5qq.r31041/7871
K 12
gtkpixcomm.c
V 25
file 10i.5g7.r21620/11139
K 12
gtkpixcomm.h
V 24
file 10j.5qq.r31041/8154
K 10
gui_main.c
V 25
file 10k.5qq.r31054/63673
K 10
gui_main.h
V 24
file 10l.5qq.r30800/1253
K 11
gui_stuff.c
V 25
file 10m.5qq.r30211/42013
K 11
gui_stuff.h
V 24
file 10n.5g7.r22000/3088
K 11
happiness.c
V 25
file 10o.5qq.r29690/73738
K 11
happiness.h
V 24
file 10p.5qq.r31041/8438
K 9
helpdlg.c
V 24
file 10q.5qq.r31041/8719
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.5qq.r29690/74024
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 24
file 76e.5qq.r31041/9003
K 12
luaconsole.h
V 25
file 76f.5g7.r26905/71334
K 9
mapctrl.c
V 24
file 10v.5qq.r31041/9288
K 9
mapctrl.h
V 23
file 10w.5g7.r21978/547
K 9
mapview.c
V 25
file 10x.5qq.r30904/16009
K 9
mapview.h
V 24
file 10y.5qq.r31041/9571
K 6
menu.c
V 24
file 10z.5qq.r31018/4712
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 25
file 111.5qq.r29690/74880
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 25
file 112.5qq.r30211/43433
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 24
file 4js.5qq.r30375/7694
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 24
file 2pi.5ru.r30800/1534
K 7
pages.h
V 24
file 2pj.5qq.r31041/9855
K 8
plrdlg.c
V 25
file 115.5qq.r31041/10134
K 8
plrdlg.h
V 25
file 116.5qq.r31041/10418
K 10
ratesdlg.h
V 22
file 2d3.0.r5989/22018
K 10
repodlgs.c
V 26
file 118.5qq.r30061/190001
K 10
repodlgs.h
V 24
file 119.5ck.r18439/2365
K 14
soundset_dlg.c
V 25
file cku.5qq.r31041/10694
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.5qq.r31041/10980
K 8
sprite.h
V 25
file 2y9.5qq.r31041/11259
K 11
theme_dlg.c
V 25
file 47d.5qq.r30211/44295
K 8
themes.c
V 25
file 34x.5qq.r30211/44581
K 13
tileset_dlg.c
V 25
file 45i.5qq.r31041/11538
K 12
unitselect.c
V 26
file 6pa.5qq.r30061/190289
K 12
unitselect.h
V 25
file 6pb.5g7.r26905/70360
K 14
voteinfo_bar.c
V 24
file 4h8.5qq.r30887/4725
K 14
voteinfo_bar.h
V 25
file 4h9.5g7.r26905/71982
K 7
wldlg.c
V 24
file 11e.5qq.r30866/3618
K 7
wldlg.h
V 25
file 11f.5qq.r31041/11824
END
ENDREP
id: zs.5qq.r31094/24161
type: dir
pred: zs.5qq.r31080/9334
count: 2024
text: 31094 20225 3923 0 a21d33dd4cffc506e15417024311cea6
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /branches/S2_6/client/gui-gtk-3.0
copyroot: 19694 /trunk/client/gui-gtk-3.0

id: 6in.5qi.r31094/24431
type: file
pred: 6in.5ck.r26905/78719
count: 4
text: 31094 8265 651 2230 535a98c870787d619cf523e83cd44a05
props: 26905 78672 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_6/client/gui-qt/colors.cpp
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 25
file 6if.5ck.r27239/18266
K 10
canvas.cpp
V 23
file 6ig.5qi.r30434/159
K 8
canvas.h
V 25
file 6ih.5ck.r26905/85299
K 12
chatline.cpp
V 23
file 6ii.5qi.r31051/166
K 10
chatline.h
V 23
file 6ij.5qi.r30986/792
K 11
citydlg.cpp
V 22
file 6ik.5qi.r31048/73
K 9
citydlg.h
V 24
file gr2.5qi.r30992/5227
K 11
cityrep.cpp
V 23
file 6il.5qi.r30722/110
K 9
cityrep.h
V 25
file 6im.5qi.r27710/10613
K 10
colors.cpp
V 25
file 6in.5qi.r31094/24431
K 8
colors.h
V 25
file 6io.5ck.r26905/93658
K 14
connectdlg.cpp
V 24
file 6ip.5qi.r30746/1816
K 12
connectdlg.h
V 25
file 6iq.5ck.r26905/81414
K 11
dialogs.cpp
V 23
file 6ir.5qi.r30989/330
K 9
dialogs.h
V 25
file 6is.5qi.r30801/62676
K 12
diplodlg.cpp
V 24
file 6it.5qi.r30282/4769
K 10
diplodlg.h
V 23
file 6iu.5qi.r29261/957
K 13
fc_client.cpp
V 23
file 6lc.5qi.r30998/156
K 11
fc_client.h
V 23
file 6ld.5qi.r30989/862
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.5qi.r30282/5571
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.5qi.r31054/68164
K 10
gui_main.h
V 24
file oxo.5qi.r30282/6108
K 11
helpdlg.cpp
V 22
file 6j2.5qi.r30983/93
K 9
helpdlg.h
V 24
file 6j3.5qi.r30431/5029
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.5qi.r30627/2299
K 9
mapctrl.h
V 25
file 6j7.5ck.r26905/94551
K 11
mapview.cpp
V 24
file 6j8.5qi.r31044/2440
K 9
mapview.h
V 24
file 6j9.5qi.r31044/2705
K 8
menu.cpp
V 24
file 6ja.5qi.r30896/2835
K 6
menu.h
V 24
file 6jb.5qi.r30896/3097
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.5qi.r30995/15788
K 12
messagewin.h
V 25
file 6jf.5qi.r30995/16061
K 13
optiondlg.cpp
V 24
file 6jg.5qi.r30992/5493
K 11
optiondlg.h
V 24
file 6jh.5qi.r30992/5764
K 9
pages.cpp
V 24
file 6ji.5qi.r30837/1621
K 7
pages.h
V 25
file 6jj.5ck.r26905/88888
K 10
plrdlg.cpp
V 22
file 6jk.5qi.r30773/63
K 8
plrdlg.h
V 23
file 6jl.5qi.r30719/734
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.5qi.r29066/25300
K 10
ratesdlg.h
V 25
file 6jr.5ck.r26905/94848
K 12
repodlgs.cpp
V 24
file 6js.5qi.r30992/6030
K 10
repodlgs.h
V 25
file 6jt.5qi.r30889/47986
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.5qi.r31094/27716
type: dir
pred: 6ie.5qi.r31054/71451
count: 404
text: 31094 24698 3005 0 4dd1c992434247f9c4116955aca4bc18
props: 28037 7697 380 0 ea9aeae72ef70d80276d9f2e0c9ac191
cpath: /branches/S2_6/client/gui-qt
copyroot: 27474 /branches/S2_6

id: 176.5qi.r31094/27972
type: file
pred: 176.5qi.r31054/73855
count: 23
text: 31094 8946 478 3831 465cec384de9d63bef5f9086915c166c
props: 9030 111894 111 0 5396249b3009eb64cd90e5da0b7a56fa
cpath: /branches/S2_6/client/gui-sdl/colors.c
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 24
file 16u.5ck.r27296/5447
K 15
action_dialog.c
V 25
file 3bn.5r0.r30801/66212
K 11
alphablit.c
V 25
file 3be.5qi.r31054/71706
K 8
canvas.c
V 25
file 39i.5qi.r31054/71976
K 8
canvas.h
V 25
file 39j.5qi.r31054/72244
K 10
chatline.c
V 25
file 16y.5qi.r31054/72511
K 10
chatline.h
V 26
file 16z.5ck.r16199/137581
K 9
citydlg.c
V 25
file 170.5qi.r31054/72778
K 9
citydlg.h
V 25
file 171.5qi.r31054/73049
K 9
cityrep.c
V 25
file 172.5qi.r31054/73318
K 9
cityrep.h
V 26
file 173.5ck.r18101/104032
K 8
cma_fe.c
V 25
file 174.5qi.r31054/73588
K 8
cma_fe.h
V 23
file 175.0.r11361/43495
K 8
colors.c
V 25
file 176.5qi.r31094/27972
K 8
colors.h
V 25
file 177.5qi.r31054/74122
K 12
connectdlg.c
V 25
file 178.5qi.r31054/74390
K 12
connectdlg.h
V 23
file 179.0.r12349/45319
K 9
dialogs.c
V 25
file 17a.5qi.r31054/74663
K 9
dialogs.h
V 25
file 17b.5qi.r31054/74935
K 10
diplodlg.c
V 25
file 17c.5qi.r31054/75202
K 10
diplodlg.h
V 22
file 17d.0.r11584/2869
K 9
finddlg.c
V 25
file 17e.5qi.r31054/75474
K 9
finddlg.h
V 20
file 2d8.0.r5991/702
K 9
gotodlg.c
V 25
file 17f.5qi.r31054/75743
K 9
gotodlg.h
V 22
file 17g.0.r6515/58208
K 10
graphics.c
V 25
file 17h.5qi.r31054/76013
K 10
graphics.h
V 25
file 17i.5qi.r31054/76285
K 11
gui_iconv.c
V 25
file 17l.5qi.r31054/76557
K 11
gui_iconv.h
V 25
file 17m.5qi.r31054/76828
K 8
gui_id.h
V 26
file 17n.5ck.r25858/141658
K 10
gui_main.c
V 25
file 17o.5qi.r31054/77098
K 10
gui_main.h
V 25
file 17p.5qi.r31054/77371
K 11
gui_mouse.c
V 25
file 3ca.5qi.r31054/77638
K 11
gui_mouse.h
V 24
file 3cb.0.r12670/112397
K 12
gui_string.c
V 25
file 17r.5qi.r31054/77910
K 12
gui_string.h
V 25
file 17s.5qi.r31054/78182
K 14
gui_tilespec.c
V 25
file 191.5qi.r31054/78456
K 14
gui_tilespec.h
V 25
file 192.5qi.r31054/78730
K 9
helpdlg.c
V 25
file 17z.5qi.r31054/79004
K 9
helpdlg.h
V 23
file 180.0.r11361/47416
K 10
inteldlg.c
V 25
file 183.5qi.r31054/79274
K 10
inteldlg.h
V 22
file 2d9.0.r11409/2687
K 12
luaconsole.c
V 26
file 768.5ck.r26905/135274
K 12
luaconsole.h
V 26
file 769.5ck.r26905/135574
K 9
mapctrl.c
V 25
file 184.5qi.r31054/79546
K 9
mapctrl.h
V 25
file 185.5qi.r31054/79813
K 9
mapview.c
V 25
file 186.5qi.r31054/80082
K 9
mapview.h
V 25
file 187.5qi.r31054/80353
K 6
menu.c
V 25
file 188.5qi.r31054/80622
K 6
menu.h
V 25
file 189.5bk.r13856/57405
K 12
messagedlg.c
V 26
file 18a.5ck.r19259/474489
K 12
messagedlg.h
V 22
file 2da.0.r5989/48394
K 12
messagewin.c
V 25
file 18b.5qi.r31054/80888
K 12
messagewin.h
V 25
file 18c.5ck.r18082/39362
K 5
mmx.h
V 23
file 2e1.0.r6286/134429
K 11
optiondlg.c
V 25
file 18d.5qi.r31054/81158
K 11
optiondlg.h
V 24
file 18e.5qi.r28842/9064
K 7
pages.c
V 24
file 2qg.5qi.r29712/1785
K 7
pages.h
V 22
file 2qh.0.r8639/16416
K 8
plrdlg.c
V 25
file 18f.5qi.r31054/81426
K 8
plrdlg.h
V 22
file 18g.0.r6387/81301
K 10
ratesdlg.h
V 22
file 2db.0.r5989/47726
K 10
repodlgs.c
V 24
file 18i.5qi.r30546/2603
K 10
repodlgs.h
V 25
file 18j.5qi.r31054/81696
K 14
spaceshipdlg.c
V 25
file 18m.5qi.r29669/71722
K 14
spaceshipdlg.h
V 23
file 18n.0.r5500/263363
K 8
sprite.c
V 25
file 39k.5qi.r31054/81968
K 8
sprite.h
V 24
file 39l.5ck.r19390/3772
K 18
themebackgrounds.c
V 26
file 3ff.5ck.r19259/465848
K 18
themebackgrounds.h
V 25
file 3fg.5qi.r31054/82239
K 13
themecolors.c
V 25
file 392.5ck.r20963/49888
K 13
themecolors.h
V 25
file 393.5ck.r20963/50401
K 8
themes.c
V 25
file 38p.5qi.r30211/55369
K 11
themespec.c
V 24
file 390.5qi.r29984/1234
K 11
themespec.h
V 24
file 391.5qi.r29984/1503
K 11
unistring.c
V 25
file 18o.5qi.r31054/82517
K 11
unistring.h
V 25
file 18p.5qi.r31054/82788
K 14
voteinfo_bar.c
V 26
file 4ha.5ck.r26905/134055
K 14
voteinfo_bar.h
V 26
file 4hb.5ck.r26905/134357
K 8
widget.c
V 25
file 3fu.5qi.r31054/83058
K 8
widget.h
V 25
file 3fv.5qi.r29669/72267
K 15
widget_button.c
V 25
file 3fh.5qi.r31054/83327
K 15
widget_button.h
V 24
file 3g7.0.r12670/113556
K 17
widget_checkbox.c
V 25
file 3fi.5qi.r31054/83604
K 17
widget_checkbox.h
V 24
file 3g8.0.r12670/106620
K 14
widget_combo.c
V 25
file 4k3.5qi.r31054/83881
K 14
widget_combo.h
V 26
file 4k4.5ck.r26905/134968
K 13
widget_core.c
V 25
file 3fj.5qi.r31054/84154
K 13
widget_edit.c
V 25
file 3fk.5qi.r31054/84425
K 13
widget_edit.h
V 24
file 3g9.0.r12670/115595
K 13
widget_icon.c
V 25
file 3fl.5qi.r31054/84698
K 13
widget_icon.h
V 24
file 3ga.0.r12670/112107
K 14
widget_label.c
V 25
file 3fm.5qi.r31054/84973
K 14
widget_label.h
V 24
file 3gb.0.r12670/110079
K 10
widget_p.h
V 25
file 3fn.5qi.r29669/73639
K 18
widget_scrollbar.c
V 25
file 3fo.5sv.r31054/85249
K 18
widget_scrollbar.h
V 24
file 3gc.0.r12670/116811
K 15
widget_window.c
V 25
file 3fp.5qi.r31054/85553
K 15
widget_window.h
V 23
file 3gd.0.r12699/32533
K 7
wldlg.c
V 25
file 18q.5qi.r31054/85828
K 7
wldlg.h
V 25
file 18r.5qi.r29669/74758
END
ENDREP
id: 16t.5qi.r31094/33020
type: dir
pred: 16t.5qi.r31054/90875
count: 927
text: 31094 28240 4767 0 cf0c435515ef367984ae54a5210734a1
props: 11108 12869 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /branches/S2_6/client/gui-sdl
copyroot: 27474 /branches/S2_6

id: 176.5r1.r31094/33277
type: file
pred: 176.5r1.r31054/93357
count: 26
text: 31094 9451 473 3813 95e0146442f19b789554c4277228efb8
props: 9030 111894 111 0 5396249b3009eb64cd90e5da0b7a56fa
cpath: /branches/S2_6/client/gui-sdl2/colors.c
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 11
Makefile.am
V 24
file 16u.5r1.r30087/5995
K 15
action_dialog.c
V 25
file 3bn.5r2.r30801/71555
K 8
canvas.c
V 25
file 39i.5r1.r31054/91132
K 8
canvas.h
V 25
file 39j.5r1.r31054/91408
K 10
chatline.c
V 25
file 16y.5r1.r31054/91683
K 10
chatline.h
V 25
file 16z.5r1.r31054/91966
K 9
citydlg.c
V 25
file 170.5r1.r31054/92245
K 9
citydlg.h
V 25
file 171.5r1.r31054/92526
K 9
cityrep.c
V 25
file 172.5r1.r31054/92805
K 9
cityrep.h
V 26
file 173.5ck.r18101/104032
K 8
cma_fe.c
V 25
file 174.5r1.r31054/93083
K 8
cma_fe.h
V 25
file 175.5l8.r27385/13568
K 8
colors.c
V 25
file 176.5r1.r31094/33277
K 8
colors.h
V 25
file 177.5r1.r31054/93633
K 12
connectdlg.c
V 25
file 178.5r1.r31054/93910
K 12
connectdlg.h
V 25
file 179.5l8.r27385/19249
K 9
dialogs.c
V 25
file 17a.5r1.r31054/94190
K 9
dialogs.h
V 25
file 17b.5r1.r31054/94470
K 10
diplodlg.c
V 25
file 17c.5r1.r31054/94747
K 10
diplodlg.h
V 25
file 17d.5l8.r27385/19789
K 9
finddlg.c
V 25
file 17e.5r1.r31054/95028
K 9
finddlg.h
V 20
file 2d8.0.r5991/702
K 9
gotodlg.c
V 25
file 17f.5r1.r31054/95307
K 9
gotodlg.h
V 25
file 17g.5l8.r27385/17910
K 10
graphics.c
V 25
file 17h.5r1.r31054/95589
K 10
graphics.h
V 25
file 17i.5r1.r31054/95869
K 11
gui_iconv.c
V 25
file 17l.5r1.r31054/96146
K 11
gui_iconv.h
V 25
file 17m.5r1.r31054/96426
K 8
gui_id.h
V 25
file 17n.5l8.r27385/12759
K 10
gui_main.c
V 25
file 17o.5r1.r31054/96705
K 10
gui_main.h
V 25
file 17p.5r1.r31054/96986
K 11
gui_mouse.c
V 25
file 3ca.5r1.r31054/97262
K 11
gui_mouse.h
V 24
file 3cb.0.r12670/112397
K 12
gui_string.c
V 25
file 17r.5r1.r31054/97542
K 12
gui_string.h
V 25
file 17s.5r1.r31054/97822
K 14
gui_tilespec.c
V 25
file 191.5r1.r31054/98101
K 14
gui_tilespec.h
V 25
file 192.5r1.r31054/98383
K 9
helpdlg.c
V 25
file 17z.5r1.r31054/98665
K 9
helpdlg.h
V 25
file 180.5l8.r27385/14106
K 10
inteldlg.c
V 25
file 183.5r1.r31054/98947
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.5r1.r31054/99228
K 9
mapctrl.h
V 25
file 185.5r1.r31054/99503
K 9
mapview.c
V 25
file 186.5r1.r31054/99781
K 9
mapview.h
V 26
file 187.5r1.r31054/100057
K 6
menu.c
V 26
file 188.5r1.r31054/100333
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 26
file 18b.5r1.r31054/100610
K 12
messagewin.h
V 25
file 18c.5ck.r18082/39362
K 11
optiondlg.c
V 26
file 18d.5r1.r31054/100892
K 11
optiondlg.h
V 24
file 18e.5r1.r28842/2545
K 7
pages.c
V 25
file 2qg.5r1.r29997/10144
K 7
pages.h
V 22
file 2qh.0.r8639/16416
K 8
plrdlg.c
V 26
file 18f.5r1.r31054/101173
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.5r1.r30546/7917
K 10
repodlgs.h
V 26
file 18j.5r1.r31054/101452
K 14
spaceshipdlg.c
V 25
file 18m.5r1.r29669/85702
K 14
spaceshipdlg.h
V 25
file 18n.5l8.r27385/13298
K 8
sprite.c
V 26
file 39k.5r1.r31054/101732
K 8
sprite.h
V 25
file 39l.5l8.r27385/11141
K 18
themebackgrounds.c
V 24
file 3ff.5r1.r29462/2289
K 18
themebackgrounds.h
V 26
file 3fg.5r1.r31054/102009
K 13
themecolors.c
V 24
file 392.5r1.r29462/2572
K 13
themecolors.h
V 25
file 393.5l8.r27385/12215
K 8
themes.c
V 25
file 38p.5r1.r30211/62082
K 11
themespec.c
V 24
file 390.5r1.r29984/7361
K 11
themespec.h
V 24
file 391.5r1.r29984/7639
K 11
unistring.c
V 26
file 18o.5r1.r31054/102295
K 11
unistring.h
V 26
file 18p.5r1.r31054/102575
K 12
utf8string.c
V 27
file 1l88.5r1.r31054/102855
K 12
utf8string.h
V 27
file 1l8a.5r1.r31054/103136
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 26
file 3fu.5r1.r31054/103417
K 8
widget.h
V 25
file 3fv.5r1.r29669/86261
K 15
widget_button.c
V 26
file 3fh.5r1.r31054/103696
K 15
widget_button.h
V 24
file 3g7.5r1.r29698/7568
K 17
widget_checkbox.c
V 26
file 3fi.5r1.r31054/103981
K 17
widget_checkbox.h
V 25
file 3g8.5r1.r29581/14582
K 14
widget_combo.c
V 26
file 4k3.5r1.r31054/104268
K 14
widget_combo.h
V 26
file 4k4.5r1.r27998/225070
K 13
widget_core.c
V 26
file 3fj.5r1.r31054/104551
K 13
widget_edit.c
V 26
file 3fk.5r1.r31054/104833
K 13
widget_edit.h
V 26
file 3g9.5r1.r27998/227074
K 13
widget_icon.c
V 26
file 3fl.5r1.r31054/105115
K 13
widget_icon.h
V 25
file 3ga.5l8.r27385/19517
K 14
widget_label.c
V 26
file 3fm.5r1.r31054/105398
K 14
widget_label.h
V 26
file 3gb.5r1.r27998/220820
K 10
widget_p.h
V 25
file 3fn.5r1.r29669/87677
K 18
widget_scrollbar.c
V 26
file 3fo.5r4.r31054/105680
K 18
widget_scrollbar.h
V 25
file 3gc.5l8.r27385/14638
K 15
widget_window.c
V 26
file 3fp.5r1.r31054/105986
K 15
widget_window.h
V 26
file 3gd.5r1.r27998/219687
K 7
wldlg.c
V 26
file 18q.5r1.r31054/106272
K 7
wldlg.h
V 25
file 18r.5r1.r29669/88826
END
ENDREP
id: 16t.5r1.r31094/38400
type: dir
pred: 16t.5r1.r31054/111395
count: 1018
text: 31094 33554 4833 0 dee8066843ec7d9f2cce8ca1bda9f80a
props: 11108 12869 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /branches/S2_6/client/gui-sdl2
copyroot: 23136 /trunk/client/gui-sdl2

id: mr.5qi.r31094/38668
type: file
pred: mr.5ck.r20753/28236
count: 7
text: 31094 9951 598 2239 79abbc0dde65a800a148b7d336ee20ad
props: 10458 11042 110 0 dce24d5ac3f5e86568d59a55fa196991
cpath: /branches/S2_6/client/gui-stub/colors.c
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 24
file mj.5ck.r25193/37544
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.5qi.r31094/38668
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 22
file n2.5qi.r29388/865
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.5qi.r29066/16723
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.5qi.r31094/41656
type: dir
pred: mh.5qi.r29388/3851
count: 234
text: 31094 38934 2709 0 f2b51ce06a799f2454c02adf64595cfe
props: 11108 13796 68 0 fbaef5f6348d6ae4b0cc177104ca4ad2
cpath: /branches/S2_6/client/gui-stub
copyroot: 27474 /branches/S2_6

id: a2.5qi.r31094/41911
type: file
pred: a2.5ck.r19259/443412
count: 17
text: 31094 10577 701 9302 8d3b06752d0da26b222db1f64dee67af
props: 10532 8477 111 0 8e6f231ffe21dad0a34f68090b1c0b69
cpath: /branches/S2_6/client/gui-xaw/colors.c
copyroot: 27474 /branches/S2_6

id: al.5qi.r31094/42178
type: file
pred: al.5qi.r30211/68235
count: 233
text: 31094 11308 244 29858 d3c202b58666e35fee2777e3e0a753a4
props: 11084 5307 112 0 a976793c1b86634c19e93e3af962ba38
cpath: /branches/S2_6/client/gui-xaw/mapview.c
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 23
file bq.5ck.r26408/3872
K 15
action_dialog.c
V 25
file 37p.5rm.r30801/76918
K 4
ad2c
V 22
file 9q.0.r1186/243967
K 8
canvas.c
V 25
file 9r.5ck.r19259/439408
K 8
canvas.h
V 20
file 9s.0.r4034/9073
K 9
canvasp.h
V 20
file 9t.0.r4034/8365
K 10
chatline.c
V 24
file 9u.5ck.r24999/26869
K 10
chatline.h
V 21
file 9v.0.r2187/10435
K 9
citydlg.c
V 24
file 9w.5qi.r30211/67431
K 9
citydlg.h
V 20
file 9x.0.r2187/8309
K 9
cityrep.c
V 24
file 9y.5qi.r30211/67700
K 9
cityrep.h
V 24
file g1.5ck.r18101/97080
K 8
cma_fe.c
V 24
file 2ei.5qi.r29713/3804
K 8
cma_fe.h
V 21
file 2ej.0.r6908/4433
K 8
colors.c
V 24
file a2.5qi.r31094/41911
K 8
colors.h
V 21
file a3.0.r10532/9312
K 12
connectdlg.c
V 24
file a4.5ck.r27275/24992
K 12
connectdlg.h
V 21
file a5.0.r2187/12228
K 9
dialogs.c
V 25
file a6.5qi.r30061/212998
K 9
dialogs.h
V 24
file a7.5ck.r20375/28717
K 10
diplodlg.c
V 25
file a8.5ck.r25334/120790
K 10
diplodlg.h
V 20
file a9.0.r2187/7955
K 9
finddlg.c
V 23
file aa.5qi.r29713/4335
K 9
finddlg.h
V 22
file 2dk.0.r5989/31562
K 9
gotodlg.c
V 23
file ab.5qi.r29713/4601
K 9
gotodlg.h
V 21
file ac.0.r1888/21069
K 10
graphics.c
V 24
file ad.5qi.r30211/67967
K 10
graphics.h
V 21
file ae.0.r10789/6338
K 10
gui_main.c
V 25
file bm.5qi.r31054/111664
K 10
gui_main.h
V 22
file bn.0.r11408/10219
K 11
gui_stuff.c
V 25
file bo.5ck.r19259/440420
K 11
gui_stuff.h
V 21
file bp.0.r4964/56392
K 9
helpdlg.c
V 25
file af.5qi.r28819/108226
K 9
helpdlg.h
V 21
file g2.0.r1888/23188
K 10
inputdlg.c
V 25
file ag.5ck.r19259/445437
K 10
inputdlg.h
V 20
file ah.0.r7586/2315
K 10
inteldlg.c
V 24
file ai.5ck.r26176/32570
K 10
inteldlg.h
V 23
file 2dl.0.r10108/22972
K 12
luaconsole.c
V 26
file 76a.5ck.r26905/118154
K 12
luaconsole.h
V 26
file 76b.5ck.r26905/118454
K 9
mapctrl.c
V 25
file aj.5ck.r19291/223377
K 9
mapctrl.h
V 21
file ak.0.r10532/9667
K 9
mapview.c
V 24
file al.5qi.r31094/42178
K 9
mapview.h
V 24
file am.5bk.r13912/46304
K 6
menu.c
V 24
file an.5qi.r30375/26668
K 6
menu.h
V 24
file ao.5qi.r30094/27538
K 12
messagedlg.c
V 25
file ap.5ck.r19259/446444
K 12
messagedlg.h
V 22
file 2dm.0.r5989/31896
K 12
messagewin.c
V 25
file aq.5ck.r19259/440924
K 12
messagewin.h
V 24
file g3.5ck.r18082/32178
K 11
optiondlg.c
V 25
file ar.5ck.r19259/438399
K 11
optiondlg.h
V 24
file as.5ck.r16998/79026
K 7
pages.c
V 25
file 2qm.5ck.r27275/24488
K 7
pages.h
V 22
file 2qn.0.r10536/7909
K 9
pixcomm.c
V 25
file at.5ck.r19259/441680
K 9
pixcomm.h
V 20
file au.0.r4034/9777
K 10
pixcommp.h
V 25
file av.5ck.r19259/443665
K 8
plrdlg.c
V 24
file aw.5ck.r23284/23132
K 8
plrdlg.h
V 20
file g4.0.r5489/3140
K 10
ratesdlg.c
V 24
file ax.5qi.r29066/10729
K 10
ratesdlg.h
V 22
file 2dn.0.r5989/31227
K 10
repodlgs.c
V 25
file ay.5qi.r30061/213267
K 10
repodlgs.h
V 24
file az.5ck.r18076/36844
K 11
resources.c
V 25
file b0.5ck.r19259/439161
K 11
resources.h
V 21
file b1.0.r3145/14204
K 14
spaceshipdlg.c
V 24
file b2.5ck.r23118/30282
K 14
spaceshipdlg.h
V 21
file b3.0.r2187/11152
K 8
themes.c
V 26
file 350.5ck.r19259/439910
K 14
voteinfo_bar.c
V 26
file 4hg.5ck.r26905/118755
K 14
voteinfo_bar.h
V 26
file 4hh.5ck.r26905/119062
K 7
wldlg.c
V 23
file o5.5qi.r29713/5134
K 7
wldlg.h
V 24
file o6.5ck.r16285/91411
K 13
xaw_actions.c
V 23
file nt.5sz.r29713/5399
K 13
xaw_actions.h
V 23
file nu.5sy.r29713/5689
END
ENDREP
id: 9o.5qi.r31094/45767
type: dir
pred: 9o.5qi.r31054/115253
count: 1157
text: 31094 42447 3307 0 21411c786432ae4b82864dac0e1612cf
props: 11108 12237 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /branches/S2_6/client/gui-xaw
copyroot: 27474 /branches/S2_6

id: in.5qi.r31094/46024
type: file
pred: in.5ck.r20720/22443
count: 11
text: 31094 11579 60 1037 1741325c971cd29e5d0169a3ebb2d690
props: 10458 8834 111 0 3d57169d64a739976bce7d2e578e29eb
cpath: /branches/S2_6/client/include/colors_g.h
copyroot: 27474 /branches/S2_6

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.5qi.r31094/46024
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.5qi.r29938/31949
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.5qi.r29066/14582
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.5qi.r31094/47905
type: dir
pred: b8.5qi.r29938/33828
count: 300
text: 31094 46291 1601 0 2e36ad177eeb3bb84f94b9d195e84172
props: 4431 36493 46 0 e473fc4bd409d833d90929dfcb3a14b8
cpath: /branches/S2_6/client/include
copyroot: 27474 /branches/S2_6

id: z2.5qi.r31094/48159
type: file
pred: z2.5qi.r30450/115
count: 346
text: 31094 11668 821 128683 6250796567251740251e8af7b00b2a70
props: 11084 12552 112 0 73ff9df0f3aabd6f615c7264c2fe22c7
cpath: /branches/S2_6/client/mapview_common.c
copyroot: 27474 /branches/S2_6

id: hl.5qi.r31094/48427
type: file
pred: hl.5qi.r30970/16071
count: 626
text: 31094 12513 61 220678 bd8d65a4ca5d4a6d93ded205acf68b16
props: 11096 3792 112 0 71c6b453a620995957914f193a952f13
cpath: /branches/S2_6/client/tilespec.c
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 23
file 5f.5qi.r30216/2645
K 6
agents
V 23
dir zf.5qi.r29744/10642
K 11
attribute.c
V 24
file xh.5ck.r25151/59391
K 11
attribute.h
V 24
file xi.5ck.r18863/23649
K 7
audio.c
V 24
file 139.5qi.r30673/6533
K 7
audio.h
V 24
file 13a.5qi.r30673/6790
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.5qi.r31054/58811
K 11
audio_sdl.h
V 25
file 13g.5ck.r18863/23885
K 17
chatline_common.c
V 25
file 14q.5qi.r30211/29757
K 17
chatline_common.h
V 24
file 14r.5ck.r24892/5917
K 16
citydlg_common.c
V 24
file z4.5qi.r30211/30026
K 16
citydlg_common.h
V 24
file z5.5qi.r29744/11160
K 13
cityrepdata.c
V 24
file mb.5qi.r30211/30292
K 13
cityrepdata.h
V 24
file mc.5ck.r18863/19121
K 13
client_main.c
V 22
file 2f.5rc.r31079/442
K 13
client_main.h
V 23
file hz.5sl.r29334/5749
K 8
climap.c
V 24
file 197.5ck.r20232/3008
K 8
climap.h
V 25
file 198.5qi.r30222/65356
K 9
climisc.c
V 22
file d5.5qi.r30947/121
K 9
climisc.h
V 23
file i0.5qi.r30696/6617
K 8
clinet.c
V 23
file hc.5qi.r30615/2244
K 8
clinet.h
V 24
file i1.5ck.r18863/24866
K 15
colors_common.c
V 25
file 33a.5qi.r31094/14265
K 15
colors_common.h
V 25
file 33b.5qi.r31094/14525
K 19
connectdlg_common.c
V 24
file 2fw.5qi.r30360/9019
K 19
connectdlg_common.h
V 25
file 2fx.5ck.r19154/53802
K 9
control.c
V 23
file gz.5qi.r31024/4945
K 9
control.h
V 24
file i2.5qi.r30801/53002
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 24
file 3bg.5qi.r30514/4804
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 24
file vu.5qi.r30211/31615
K 6
goto.h
V 24
file vv.5qi.r27872/19931
K 11
gui-gtk-2.0
V 23
dir zs.5qi.r31094/19401
K 11
gui-gtk-3.0
V 23
dir zs.5qq.r31094/24161
K 6
gui-qt
V 24
dir 6ie.5qi.r31094/27716
K 7
gui-sdl
V 24
dir 16t.5qi.r31094/33020
K 8
gui-sdl2
V 24
dir 16t.5r1.r31094/38400
K 8
gui-stub
V 23
dir mh.5qi.r31094/41656
K 7
gui-xaw
V 23
dir 9o.5qi.r31094/45767
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.5qi.r30514/14159
K 10
helpdata.h
V 22
file i3.5qi.r30005/963
K 7
include
V 23
dir b8.5qi.r31094/47905
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.5qi.r29744/13350
K 16
mapctrl_common.c
V 22
file 15m.5qi.r30623/71
K 16
mapctrl_common.h
V 24
file 15n.5ck.r27397/5459
K 16
mapview_common.c
V 24
file z2.5qi.r31094/48159
K 16
mapview_common.h
V 23
file z3.5qi.r30297/1392
K 19
messagewin_common.c
V 25
file 14s.5qi.r30211/72878
K 19
messagewin_common.h
V 25
file 14t.5ck.r18863/21579
K 7
music.c
V 25
file zmc.5qi.r30211/73150
K 7
music.h
V 25
file zme.5ck.r27127/11513
K 9
options.c
V 24
file dc.5qi.r30904/20494
K 9
options.h
V 23
file i4.5qi.r30859/4993
K 17
overview_common.c
V 25
file 2yk.5qi.r30222/85277
K 17
overview_common.h
V 24
file 2yl.5qi.r29834/4937
K 10
packhand.c
V 21
file n.5qi.r30976/695
K 10
packhand.h
V 24
file i5.5ck.r18863/20596
K 15
plrdlg_common.c
V 24
file 14u.5qi.r28834/2098
K 15
plrdlg_common.h
V 25
file 14v.5ck.r18863/21328
K 17
repodlgs_common.c
V 26
file 11i.5qi.r30061/217644
K 17
repodlgs_common.h
V 25
file 11j.5ck.r19589/11861
K 9
reqtree.c
V 25
file 2ym.5qi.r30211/74457
K 9
reqtree.h
V 24
file 2yn.5ck.r24150/6004
K 9
servers.c
V 25
file 33x.5qi.r30615/13147
K 9
servers.h
V 25
file 33y.5ck.r20478/36372
K 6
text.c
V 26
file 2g3.5qi.r30061/217915
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.5qi.r31094/48427
K 10
tilespec.h
V 24
file i6.5qi.r30970/16331
K 19
unitselect_common.c
V 26
file 76v.5qi.r30061/218439
K 19
unitselect_common.h
V 26
file 76w.5ck.r26905/117548
K 14
update_queue.c
V 25
file 4jw.5qi.r29066/44235
K 14
update_queue.h
V 26
file 4jx.5ck.r26905/141966
K 10
voteinfo.c
V 25
file 4fe.5qi.r30211/74980
K 10
voteinfo.h
V 26
file 4ff.5ck.r26905/142263
K 6
zoom.c
V 25
file 212g.5qi.r30914/1681
K 6
zoom.h
V 25
file 212i.5qi.r30914/1880
END
ENDREP
id: d.5qi.r31094/53049
type: dir
pred: d.5qi.r31080/13958
count: 6913
text: 31094 48689 4347 0 2f8f323e102c1741886c3045b35e13f7
props: 28037 12634 400 0 bbe1d6769a94f3af2a54f7dc91fc9c71
cpath: /branches/S2_6/client
copyroot: 27474 /branches/S2_6

id: 6i6.5qi.r31094/53296
type: file
pred: 6i6.5ck.r26905/218776
count: 9
text: 31094 12600 791 6989 69c335e37d330f455a296d454b23f231
props: 26905 218729 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_6/common/rgbcolor.c
copyroot: 27474 /branches/S2_6

id: 6i7.5qi.r31094/53559
type: file
pred: 6i7.5ck.r26905/219068
count: 5
text: 31094 13418 76 3751 48f91920b1b2acbc94ec76be02fcb18e
props: 26905 219021 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_6/common/rgbcolor.h
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 24
file 5h.5qi.r30222/90685
K 14
achievements.c
V 25
file qhc.5qi.r30222/90944
K 14
achievements.h
V 26
file qhe.5ck.r26905/215849
K 9
actions.c
V 22
file r7a.5qi.r30512/92
K 9
actions.h
V 23
file r7c.5qi.r29792/962
K 4
ai.c
V 25
file 4go.5qi.r30875/15917
K 4
ai.h
V 25
file 4gp.5qi.r30875/16171
K 6
aicore
V 23
dir 18t.5qi.r31013/3063
K 6
base.c
V 26
file 3jw.5qi.r30061/225212
K 6
base.h
V 25
file 3jx.5qi.r29646/20289
K 9
borders.c
V 25
file 4f0.5qi.r28854/19065
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 24
file q.5qi.r30061/225467
K 6
city.h
V 23
file 3q.5qi.r29373/6009
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.5qi.r30698/57733
K 8
combat.h
V 24
file wq.5ck.r24573/25814
K 12
connection.c
V 24
file un.5qi.r30615/18011
K 12
connection.h
V 24
file uo.5qi.r30394/34772
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.5qi.r31057/60
K 8
dataio.h
V 24
file 15s.5ck.r26834/4081
K 11
diptreaty.c
V 23
file 3r.5qi.r29571/7104
K 11
diptreaty.h
V 23
file 3s.5qi.r27518/9734
K 10
disaster.c
V 25
file b2m.5qi.r30000/39648
K 10
disaster.h
V 26
file b2o.5ck.r26905/216145
K 9
effects.c
V 26
file 2eo.5qi.r30061/225985
K 9
effects.h
V 24
file 2ep.5qi.r29180/3668
K 8
events.c
V 24
file 33h.5qi.r28399/2883
K 8
events.h
V 23
file 3t.5qi.r28399/3138
K 8
extras.c
V 24
file o9u.5qi.r30918/6420
K 8
extras.h
V 24
file o9w.5qi.r30918/6680
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 23
file 4up.5qi.r29369/494
K 14
fc_interface.h
V 25
file 4uq.5qi.r28204/10610
K 10
fc_types.h
V 24
file 2ll.5qi.r31013/3314
K 15
featured_text.c
V 26
file 4h3.5ck.r26905/212899
K 15
featured_text.h
V 25
file 4h4.5qi.r30000/40165
K 6
game.c
V 24
file 3u.5qi.r30927/18302
K 6
game.h
V 24
file 3v.5qi.r30394/35293
K 19
generate_packets.py
V 24
file 2f4.5qi.r30652/1060
K 12
government.c
V 24
file he.5qi.r30000/40431
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.5qi.r30000/40695
K 13
improvement.h
V 23
file vc.5ck.r26605/3666
K 5
map.c
V 22
file r.5qi.r31066/1451
K 5
map.h
V 23
file 41.5qi.r31066/1701
K 11
map_types.h
V 25
file 2175.5qi.r31066/1957
K 8
mapimg.c
V 22
file 6n9.5qi.r30290/74
K 8
mapimg.h
V 26
file 6na.5ck.r26905/215559
K 15
metaknowledge.c
V 25
file siq.5qi.r31011/15663
K 15
metaknowledge.h
V 25
file sis.5qi.r31011/15931
K 10
movement.c
V 25
file 2xv.5qi.r30787/16228
K 10
movement.h
V 25
file 2xw.5qi.r30514/19551
K 13
multipliers.c
V 26
file 197b.5qi.r30000/40959
K 13
multipliers.h
V 26
file 197d.5qi.r29118/55021
K 18
name_translation.h
V 25
file 4k1.5qi.r30000/41223
K 8
nation.c
V 21
file il.5qi.r30333/79
K 8
nation.h
V 22
file im.5ck.r27000/284
K 9
packets.c
V 23
file 43.5qi.r31079/5313
K 11
packets.def
V 24
file 2f5.5qi.r31024/9802
K 9
packets.h
V 23
file 44.5qi.r31079/5570
K 8
player.c
V 24
file 45.5qi.r30875/16943
K 8
player.h
V 24
file 46.5qi.r30875/17203
K 14
requirements.c
V 26
file 2wq.5qi.r30061/227558
K 14
requirements.h
V 24
file 2wr.5qi.r29445/8145
K 10
research.c
V 25
file 4ro.5qi.r30000/41751
K 10
research.h
V 23
file 4rp.5qi.r27751/838
K 10
rgbcolor.c
V 25
file 6i6.5qi.r31094/53296
K 10
rgbcolor.h
V 25
file 6i7.5qi.r31094/53559
K 6
road.c
V 26
file 6pq.5qi.r30061/227827
K 6
road.h
V 24
file 6pr.5qi.r29808/7032
K 10
scriptcore
V 23
dir 75a.5qi.r30962/3461
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.5qi.r30000/42012
K 12
specialist.h
V 24
file 33g.5qi.r29571/9422
K 7
style.c
V 25
file zzb.5qi.r30000/42275
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.5qi.r30000/42534
K 6
tech.h
V 21
file u.5qi.r29318/376
K 9
terrain.c
V 25
file 2fp.5qi.r30222/94237
K 9
terrain.h
V 23
file qs.5qi.r30727/3693
K 6
tile.c
V 25
file 2ys.5qi.r30514/19811
K 6
tile.h
V 25
file 2yt.5qi.r30514/20067
K 13
traderoutes.c
V 25
file bf8.5qi.r27552/33422
K 13
traderoutes.h
V 25
file bfa.5qi.r27552/33689
K 8
traits.h
V 24
file 7k3.5qi.r30331/8160
K 6
unit.c
V 23
file v.5qi.r30685/10622
K 6
unit.h
V 24
file 48.5qi.r30685/10876
K 10
unitlist.c
V 25
file 39m.5qi.r27612/25885
K 10
unitlist.h
V 25
file 39n.5qi.r27612/26147
K 10
unittype.c
V 24
file v9.5qi.r30698/57992
K 10
unittype.h
V 24
file va.5qi.r30698/58256
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.5qi.r27639/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.5qi.r28927/25134
K 10
worklist.c
V 22
file o8.5qi.r28027/169
K 10
worklist.h
V 24
file o9.5ck.r18858/98299
END
ENDREP
id: p.5qi.r31094/59152
type: dir
pred: p.5qi.r31079/11159
count: 4344
text: 31094 53821 5318 0 a2c45704621c810f203d694950bd29d9
props: 23743 0 112 0 b2bc91bf125d83375389d51f25ff2c2f
cpath: /branches/S2_6/common
copyroot: 27474 /branches/S2_6

id: 1ef5.5sc.r31094/59395
type: file
pred: 1ef5.5sc.r31005/10955
count: 21
text: 31094 13521 27 7331 3f955580f5cc6f6baf0376025566674b
cpath: /branches/S2_6/data/alio.tilespec
copyroot: 28881 /branches/S2_6/data/alio.tilespec

id: 34t.5qi.r31094/59621
type: file
pred: 34t.5qi.r30970/21421
count: 60
text: 31094 13572 27 5929 0bb37baccc62a85dfe7065f68a57a5ea
props: 11097 119 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /branches/S2_6/data/amplio.tilespec
copyroot: 27474 /branches/S2_6

id: 4oe.5qi.r31094/59884
type: file
pred: 4oe.5qi.r30970/21684
count: 47
text: 31094 13627 27 6379 c9795975f817f49da203d33e3c67b21d
props: 18248 9164 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_6/data/amplio2.tilespec
copyroot: 27474 /branches/S2_6

id: 78i.5qi.r31094/60148
type: file
pred: 78i.5qi.r30970/21948
count: 34
text: 31094 13682 27 6352 8ad3b7346b3dcf09be40a65740e692b2
cpath: /branches/S2_6/data/cimpletoon.tilespec
copyroot: 27474 /branches/S2_6

id: 3e7.5qi.r31094/60359
type: file
pred: 3e7.5qi.r31005/11177
count: 49
text: 31094 13737 27 5519 13ce5ea13a478fb602520a07420ac600
props: 12670 85446 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_6/data/hex2t.tilespec
copyroot: 27474 /branches/S2_6

id: 1dxl.5qi.r31094/60622
type: file
pred: 1dxl.5qi.r31005/11441
count: 17
text: 31094 13793 27 6858 da82dae5ed246ff043f15d7c157e8e2d
cpath: /branches/S2_6/data/hexemplio.tilespec
copyroot: 27474 /branches/S2_6

id: 2pz.5qi.r31094/60834
type: file
pred: 2pz.5qi.r31005/11654
count: 69
text: 31094 13849 27 5666 29408a9b2f08fda566c811164f9aba0b
props: 11096 1134 111 0 5515c59917848b493fbf45ffb42836b3
cpath: /branches/S2_6/data/isophex.tilespec
copyroot: 27474 /branches/S2_6

id: 148.5qi.r31094/61099
type: file
pred: 148.5qi.r30970/22899
count: 90
text: 31094 13904 27 5551 fde978f9d8c79f1bce3982c14a81d2f2
props: 11096 1844 111 0 e9cbe3af5d5934f88ab895fd46902062
cpath: /branches/S2_6/data/isotrident.tilespec
copyroot: 27474 /branches/S2_6

id: 33k.5qi.r31094/61367
type: file
pred: 33k.5ck.r24136/1399
count: 22
text: 31094 13959 64 2239 2a6399d3d9cf04db1bb1d8bdd3dec886
props: 10807 263705 110 0 dce24d5ac3f5e86568d59a55fa196991
cpath: /branches/S2_6/data/misc/colors.tilespec
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 23
file jn.5ck.r24466/5402
K 20
buildings-large.spec
V 25
file 3cm.5s3.r28620/43064
K 13
buildings.png
V 25
file 193.5qi.r28479/48741
K 14
buildings.spec
V 25
file 194.5qi.r28620/45859
K 10
chiefs.png
V 21
file 162.0.r11827/308
K 11
chiefs.spec
V 24
file nx.5qi.r28620/44574
K 11
citybar.png
V 25
file 2yq.5bk.r15200/25394
K 12
citybar.spec
V 25
file 2yr.5qi.r28620/42063
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.5qi.r31094/61367
K 11
cursors.png
V 23
file 2xt.0.r12012/91675
K 12
cursors.spec
V 25
file 2xu.5qi.r28620/44310
K 10
editor.png
V 25
file 4dv.5qi.r28040/11427
K 11
editor.spec
V 25
file 4em.5qi.r28620/41268
K 10
events.png
V 25
file zkc.5ck.r25236/12571
K 11
events.spec
V 25
file zke.5qi.r28620/44834
K 16
flags-large.spec
V 25
file 6gq.5qi.r28620/43836
K 10
flags.spec
V 25
file 2fr.5qi.r28620/41795
K 15
governments.png
V 24
file qvv.5qi.r28112/6298
K 16
governments.spec
V 25
file qvx.5qi.r28620/42591
K 10
icons.spec
V 25
file 2xz.5qi.r28620/45596
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.5qi.r28620/45040
K 9
radar.png
V 23
file 164.0.r5332/143721
K 18
shields-large.spec
V 25
file 6gr.5qi.r28620/43620
K 12
shields.spec
V 24
file nz.5qi.r28620/41528
K 9
small.png
V 25
file 166.5ck.r25247/14728
K 10
small.spec
V 24
file jr.5qi.r28620/42802
K 9
space.png
V 24
file 167.5ck.r16139/6512
K 10
space.spec
V 24
file jt.5qi.r28620/44051
K 15
specialists.png
V 24
file xlo.5ck.r24508/4525
K 16
specialists.spec
V 25
file xlq.5qi.r28620/46126
K 9
techs.png
V 24
file 3iv.0.r12822/249608
K 10
techs.spec
V 25
file 3iw.5qi.r28620/42328
K 10
treaty.png
V 22
file 168.0.r12461/8566
K 11
treaty.spec
V 24
file jv.5qi.r28620/43360
K 18
wonders-large.spec
V 25
file 3cn.5rf.r28620/45304
END
ENDREP
id: jl.5qi.r31094/63580
type: dir
pred: jl.5qi.r28620/48277
count: 558
text: 31094 61637 1930 0 6ba95378b55b2f395a8098747649b555
props: 4431 11601 46 0 e473fc4bd409d833d90929dfcb3a14b8
cpath: /branches/S2_6/data/misc
copyroot: 27474 /branches/S2_6

id: 1ef5.5qi.r31094/63829
type: file
pred: 1ef5.5qi.r31005/11919
count: 17
text: 31094 14050 27 6908 1b7eafc1fa170eecf7be7eb932865e70
cpath: /branches/S2_6/data/toonhex.tilespec
copyroot: 27474 /branches/S2_6

id: k4.5qi.r31094/64039
type: file
pred: k4.5qi.r30970/23377
count: 91
text: 31094 14104 27 6993 d70e5daf681a20edde6d1107332c170e
props: 11096 782 111 0 77af0ec85c332e0d4fd7e7ef86a518fd
cpath: /branches/S2_6/data/trident.tilespec
copyroot: 27474 /branches/S2_6

PLAIN
K 10
Freeciv.in
V 24
file 2ph.5qi.r27619/1012
K 11
Makefile.am
V 22
file 5l.5qi.r30732/106
K 5
alien
V 23
dir fav.5qi.r31087/2229
K 10
alien.serv
V 23
file fbk.5ck.r22305/900
K 4
alio
V 23
dir 1sqx.5qi.r29770/773
K 13
alio.tilespec
V 26
file 1ef5.5sc.r31094/59395
K 6
amplio
V 24
dir 340.5qi.r28620/67767
K 15
amplio.tilespec
V 25
file 34t.5qi.r31094/59621
K 7
amplio2
V 24
dir 4na.5qi.r30197/42160
K 16
amplio2.tilespec
V 25
file 4oe.5qi.r31094/59884
K 9
buildings
V 22
dir 3co.0.r12672/18420
K 10
cimpletoon
V 24
dir 78f.5qi.r28620/36910
K 19
cimpletoon.tilespec
V 25
file 78i.5qi.r31094/60148
K 4
civ1
V 22
dir 8l.5qi.r31026/4187
K 9
civ1.serv
V 23
file 8s.5ck.r20880/5228
K 4
civ2
V 22
dir ge.5qi.r31026/5312
K 9
civ2.serv
V 23
file gj.5ck.r20880/5465
K 8
civ2civ3
V 23
dir fum.5qi.r31081/2212
K 13
civ2civ3.serv
V 23
file fv0.5ck.r24155/112
K 7
classic
V 23
dir csx.5qi.r31081/3362
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.5qi.r31087/2904
K 12
default.serv
V 25
file 2xa.5ck.r21163/12081
K 12
experimental
V 23
dir 4k5.5qi.r31081/4502
K 17
experimental.serv
V 24
file 4ki.5ck.r20880/5702
K 5
flags
V 25
dir 2gl.5qi.r27802/156348
K 5
fonts
V 24
dir 2lv.5bk.r13978/23004
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.5qi.r28479/54976
K 14
gtk2_menus.xml
V 25
file 4hw.5tj.r30306/14442
K 14
gtk3_menus.xml
V 25
file 4hw.5tk.r30306/14665
K 12
helpdata.txt
V 21
file y.5qi.r31085/152
K 5
hex2t
V 24
dir 3dv.5qi.r29602/50728
K 14
hex2t.tilespec
V 25
file 3e7.5qi.r31094/60359
K 9
hexemplio
V 25
dir 1dwq.5qi.r29002/35046
K 18
hexemplio.tilespec
V 26
file 1dxl.5qi.r31094/60622
K 5
icons
V 24
dir 4cb.5ck.r20125/42857
K 7
isophex
V 23
dir 2pl.5qi.r29601/1031
K 16
isophex.tilespec
V 25
file 2pz.5qi.r31094/60834
K 10
isotrident
V 24
dir 13p.5qi.r29602/52706
K 19
isotrident.tilespec
V 25
file 148.5qi.r31094/61099
K 4
misc
V 23
dir jl.5qi.r31094/63580
K 11
multiplayer
V 22
dir 89.5qo.r31087/4094
K 16
multiplayer.serv
V 24
file 2xa.5et.r17702/1849
K 6
nation
V 23
dir ot.5qi.r30904/56829
K 8
override
V 23
dir 14ks.5ck.r25526/900
K 7
sandbox
V 23
dir fum.5tq.r31081/6818
K 12
sandbox.serv
V 25
file fv0.5tr.r30533/11982
K 9
scenarios
V 23
dir io.5rr.r31002/24139
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 22
file 32y.5qi.r28575/47
K 4
stub
V 25
dir 1556.5qi.r31026/12217
K 9
stub.serv
V 26
file 155p.5ck.r25199/65944
K 6
themes
V 23
dir 2m6.5qi.r28037/4373
K 16
toonhex.tilespec
V 26
file 1ef5.5qi.r31094/63829
K 7
trident
V 23
dir eb.5qi.r29975/84403
K 16
trident.tilespec
V 24
file k4.5qi.r31094/64039
K 7
wonders
V 23
dir 3qc.5qi.r28519/2278
END
ENDREP
id: w.5qi.r31094/67317
type: dir
pred: w.5qi.r31087/7371
count: 3509
text: 31094 64301 3003 0 6c4e12926c6b755a2e8b28fcb13ee518
props: 11355 32945 104 0 b8b28eed1bd4d902aad8c746f9403748
cpath: /branches/S2_6/data
copyroot: 27474 /branches/S2_6

id: 1d.5qi.r31094/67561
type: file
pred: 1d.5qi.r30673/46755
count: 194
text: 31094 14159 80 14026 42e3130eab0ffa1e2bb4aec83c64cafa
props: 10717 817 112 0 a00d30a519ad77ac91be0933c5118bd6
cpath: /branches/S2_6/utility/shared.h
copyroot: 27474 /branches/S2_6

PLAIN
K 11
Makefile.am
V 25
file 2gg.5ck.r26188/18425
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.5qi.r28013/32595
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.5qi.r30877/137
K 8
fcintl.h
V 24
file fw.5qi.r29620/12681
K 10
fcthread.c
V 24
file 6hv.5ck.r27333/1127
K 10
fcthread.h
V 25
file 6hw.5qi.r30360/36425
K 20
generate_specenum.py
V 23
file 4ia.5ck.r27150/401
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.5qi.r30000/53290
K 9
genlist.h
V 24
file 52.5qi.r30000/53547
K 11
inputfile.c
V 23
file h9.5qi.r29862/2080
K 11
inputfile.h
V 24
file ha.5ck.r18858/84203
K 5
ioz.c
V 24
file uh.5qi.r30360/36684
K 5
ioz.h
V 24
file ui.5qi.r29108/10744
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.5qi.r30920/68
K 5
log.h
V 24
file 54.5qi.r30375/35630
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.5qi.r30615/30129
K 9
netintf.h
V 24
file t7.5qi.r30615/30387
K 6
rand.c
V 25
file m5.5ck.r19259/363664
K 6
rand.h
V 24
file m6.5ck.r20315/22687
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.5si.r30174/22053
K 14
registry_ini.h
V 23
file di.5su.r29663/6291
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.5qi.r29862/2615
K 14
section_file.h
V 25
file axo.5ck.r26905/42907
K 8
shared.c
V 24
file 55.5qi.r30673/46499
K 8
shared.h
V 24
file 1d.5qi.r31094/67561
K 10
spechash.h
V 25
file 57x.5ck.r26905/46987
K 10
speclist.h
V 24
file gb.5qi.r30000/53801
K 8
specpq.h
V 26
file 1brp.5ck.r26905/42320
K 9
specvec.h
V 24
file z9.5qi.r29571/15743
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.5qi.r30615/30646
K 9
support.h
V 24
file ma.5qi.r29185/62235
K 8
timing.c
V 24
file el.5ck.r24200/17365
K 8
timing.h
V 24
file em.5qi.r28013/32859
END
ENDREP
id: 1c.5qi.r31094/70654
type: dir
pred: 1c.5qi.r30920/3147
count: 931
text: 31094 67820 2821 0 2787b199a0c50232638ec406ccbcdf70
props: 17175 331 84 0 5447a85ba28edec0d4a8f6120070e2b2
cpath: /branches/S2_6/utility
copyroot: 27474 /branches/S2_6

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.5qi.r29455/952
K 9
ChangeLog
V 26
file 6l.5ck.r27473/7455495
K 7
INSTALL
V 21
file 6.5qi.r29706/131
K 11
Makefile.am
V 23
file 59.5qi.r30174/7026
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.5qi.r31024/4707
K 10
autogen.sh
V 23
file 12o.5qi.r30655/418
K 9
bootstrap
V 23
dir 2p5.5qi.r29679/3655
K 6
client
V 22
dir d.5qi.r31094/53049
K 6
common
V 22
dir p.5qi.r31094/59152
K 12
configure.ac
V 23
file 149.5qi.r30950/345
K 4
data
V 22
dir w.5qi.r31094/67317
K 12
dependencies
V 24
dir 2yu.5qi.r30960/63033
K 3
doc
V 23
dir k7.5qi.r30970/28818
K 10
fc_version
V 25
file 2lo.5qj.r31024/15646
K 11
gen_headers
V 25
dir 1hsw.5qi.r30615/24964
K 2
m4
V 23
dir 12p.5qi.r31062/2530
K 7
scripts
V 23
dir 2yo.5qi.r28717/5437
K 6
server
V 22
dir z.5qi.r31087/13662
K 5
tests
V 22
dir 2g9.5ck.r27023/734
K 5
tools
V 23
dir 4pj.5qp.r31039/1209
K 12
translations
V 25
dir t0a.5qi.r31068/114056
K 7
utility
V 23
dir 1c.5qi.r31094/70654
K 3
vms
V 25
dir u9.5ck.r21528/1396085
K 5
win32
V 23
dir 2eu.5qi.r30585/1785
END
ENDREP
id: 3.5qi.r31094/72074
type: dir
pred: 3.5qi.r31087/15079
count: 20125
text: 31094 70899 1162 0 49eca871a11ab9258e8272d0e6b80641
props: 28037 14463 292 0 9e1d5de0253c723466868990c52c129f
cpath: /branches/S2_6
copyroot: 27474 /branches/S2_6

PLAIN
K 5
S1_14
V 21
dir 3.21.r18109/18803
K 4
S2_0
V 21
dir 3.10x.r21862/4178
K 4
S2_1
V 22
dir 3.59e.r20026/11014
K 4
S2_2
V 21
dir 3.5cy.r21861/5036
K 4
S2_3
V 21
dir 3.5f2.r29458/5135
K 4
S2_4
V 22
dir 3.5ii.r30401/87429
K 4
S2_5
V 22
dir 3.5kv.r31082/19548
K 4
S2_6
V 22
dir 3.5qi.r31094/72074
K 11
freeciv-web
V 22
dir 3.5bl.r13594/14918
END
ENDREP
id: 1.0.r31094/72670
type: dir
pred: 1.0.r31087/15674
count: 10401
text: 31094 72315 342 0 f9c2c2ccf9010a8038f5db55b68e746c
cpath: /branches
copyroot: 0 /

PLAIN
K 8
branches
V 20
dir 1.0.r31094/72670
K 4
tags
V 19
dir 2.0.r29519/6475
K 5
trunk
V 22
dir 3.5ck.r31093/12422
K 7
website
V 20
dir 3ge.0.r30613/922
END
ENDREP
id: 0.0.r31094/72992
type: dir
pred: 0.0.r31093/12813
count: 31094
text: 31094 72826 153 0 e81ad78005ffd417a051ee126cf6ab05
cpath: /
copyroot: 0 /

33a.5qi.t31093-1 modify true false /branches/S2_6/client/colors_common.c

33b.5qi.t31093-1 modify true false /branches/S2_6/client/colors_common.h

2y6.5qi.t31093-1 modify true false /branches/S2_6/client/gui-gtk-2.0/canvas.c

104.5qi.t31093-1 modify true false /branches/S2_6/client/gui-gtk-2.0/colors.c

2y6.5qq.t31093-1 modify true false /branches/S2_6/client/gui-gtk-3.0/canvas.c

104.5qq.t31093-1 modify true false /branches/S2_6/client/gui-gtk-3.0/colors.c

6in.5qi.t31093-1 modify true false /branches/S2_6/client/gui-qt/colors.cpp

176.5qi.t31093-1 modify true false /branches/S2_6/client/gui-sdl/colors.c

176.5r1.t31093-1 modify true false /branches/S2_6/client/gui-sdl2/colors.c

mr.5qi.t31093-1 modify true false /branches/S2_6/client/gui-stub/colors.c

a2.5qi.t31093-1 modify true false /branches/S2_6/client/gui-xaw/colors.c

al.5qi.t31093-1 modify true false /branches/S2_6/client/gui-xaw/mapview.c

in.5qi.t31093-1 modify true false /branches/S2_6/client/include/colors_g.h

z2.5qi.t31093-1 modify true false /branches/S2_6/client/mapview_common.c

hl.5qi.t31093-1 modify true false /branches/S2_6/client/tilespec.c

6i6.5qi.t31093-1 modify true false /branches/S2_6/common/rgbcolor.c

6i7.5qi.t31093-1 modify true false /branches/S2_6/common/rgbcolor.h

1ef5.5sc.t31093-1 modify true false /branches/S2_6/data/alio.tilespec

34t.5qi.t31093-1 modify true false /branches/S2_6/data/amplio.tilespec

4oe.5qi.t31093-1 modify true false /branches/S2_6/data/amplio2.tilespec

78i.5qi.t31093-1 modify true false /branches/S2_6/data/cimpletoon.tilespec

3e7.5qi.t31093-1 modify true false /branches/S2_6/data/hex2t.tilespec

1dxl.5qi.t31093-1 modify true false /branches/S2_6/data/hexemplio.tilespec

2pz.5qi.t31093-1 modify true false /branches/S2_6/data/isophex.tilespec

148.5qi.t31093-1 modify true false /branches/S2_6/data/isotrident.tilespec

33k.5qi.t31093-1 modify true false /branches/S2_6/data/misc/colors.tilespec

1ef5.5qi.t31093-1 modify true false /branches/S2_6/data/toonhex.tilespec

k4.5qi.t31093-1 modify true false /branches/S2_6/data/trident.tilespec

1d.5qi.t31093-1 modify true false /branches/S2_6/utility/shared.h


72992 73140
