DELTA 22856 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 24137 795 615
SVN  °@±j% ¯p €% U¯k/* Utilities for color values */
struct color *color_best_contrast(struct color *subject,
                                  struct color **candidates, int ncandidateENDREP
DELTA 19259 33847 24
SVN  í}îm
 ëD €
 ‚ë^
  /* 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 22000 828 71
SVN  ÛjÝ‚# Ù €‚# cÚ/* 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 + 1, canvas_y + 1);
      pango_cairo_show_layout (cr, layout);
    }ENDREP
DELTA 21920 12045 279
SVN  ’N—E„! †D ˆ Œ†5 G €„rgbcolor
******
  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 31055 6058 22
SVN  ™%mƒ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 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 20799 0 55
SVN  âdã0 ²- €s B´ « ¯#³Aif (foreground->color.pixel != shadow->color.pixel) {
    XSetForeground(display, font_gc, shadow->color.pixel);
              x + 1, y + 1, string, len);
  }ENDREP
DELTA 20720 10166 247
SVN  ‡Kˆ) ‡. ©6‡GUI_FUNC_PROTO(int, color_brightness_scorENDREP
DELTA 30370 203 153
SVN  †  †  „% ƒÜ@ €„% î1ƒÝA Ð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),
        /* HACK: this is likely to be black or a dark color */
        get_color(tileset, COLOR_MAPVIEW_UNKNOWN)
      };

      canvas_put_text(pcanvas, size_rect.x, size_rect.y,
                      FONT_CITY_NAME,
                      color_best_contrast(owner_color, textcolors,
                                          ARRAY_SIZE(textcolors)), size);
    }†  ¢:¥4‚[€‚[ W‘@ ¢8co_highlight_table) {
    tile_hash_destroy(mapdeco_highlight_table);
    mapdeco_highlight_table = NULL;
  }
  if (mapdeco_crosshair_table) {
    tile_hash_destroy(mapdeco_crosshair_table);
    mapdeco_crosshair_table = NULL;
  }
  if (mapdeco_gotoline_table) {
    gotoline_hash_destroy(mapdeco_gotoline_table);
    mapdeco_gotoline_table = NULLENDREP
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 8038 14160 4028
SVN  Á&îw"ËD …e €ƒP ]‘p‡  “€i r•€ ƒ%–M€E f™{ vŸ€„\ G €„\ &®&® ¯I€ ~±€a D±~€b ‚J³ ¯ G €‰	 …Z¹6€h "¿€”S G €‚e G €ƒ G €‚n G €‚g G €‚i G €‚i G €‚o G €‚m G €‚~Á	fdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#include <stdlib.h>		/* size_t */
#include <string.h>		/* memset */
#include <time.h>		/* time_t */

/* utility */
#include "log.h"
#include "support.h" /* bool, fc__attribute */

#ifdef HAVE_CONFIG_H
#ifndef FC_CONFIG_H  /* this should be defined in fc_config.h */
#error Files including fcintl.h should also include fc_config.h directly
#endif
#endif

/* Changing these will break network compatability! */PATH   enum fc_tristate { TRI_NO, TRI_YES, TRI_MAYBE };
#define BOOL_TO_TRISTATE(tri) ((tri) ? TRI_YES : TRI_NO)current,upper) \
    ((current)<(lower)?(lower):(current)>(upper)?(upper):(current))

#ifndef ABS
#define ABS(x) (((x) >= 0) ? (x) : -(x))
#endifBOOL_VAL(p) != BOOL_VAL(q))
#define EQ(p, q) (BOOL_VAL(p) == BOOL_VAL#define FC_MEMBER(type, member) (((type *) NULL)->member)
#define FC_MEMBER_OFFSETOF(type, member) ((size_t) &FC_MEMBER(type, member))
#define FC_MEMBER_SIZEOF(type, member) sizeof(FC_MEMBER(type, member))
#define FC_MEMBER_ARRAY_SIZE(type, member) \
  ARRAY_SIZE(FC_MEMBER(type, member))

#define FC_INT_TO_PTR(i) ((void *) (intptr_t) (i))
#define FC_PTR_TO_INT(p) ((int) (intptr_t) (p))
#define FC_UINT_TO_PTR(u) ((void *) (intptr_t) (u))
#define FC_PTR_TO_UINT(p) ((unsigned int) (intptr_t) (p))
#define FC_SIZE_TO_PTR(s) ((void *) (intptr_t) (s))
#define FC_PTR_TO_SIZE(p) ((size_t) (intptr_t) (p))

******
  Used to initialize an array 'a' of size 'size' with value 'val' in each
  element. Note that the value is evaluated for each element.
****************************************************************************/
#define INITIALIZE_ARRAY(array, size, value)				    \
  {									    \
    int _ini_index;							    \
    									    \
    for (_ini_index = 0; _ini_index < (size); _ini_index++) {		    \
      (array)[_ini_index] = (value);					    \
    }									    \
  }

char *create_centered_string(const char *s);

char *get_option_malloc(const char *option_name,
			char **argv, int *i, void free_tokens(char **tokens, size_t ntokensascii_name(const char *name);
bool is_base64url(const char *s);
bool is_safe_filename(const char *name);
void randomize_base64url_string(char *s, size_t n);
int compare_strings_strvec(const char *const *first,
                           const char *constspaces(char *s);
void remove_trailing_spaces(char *s);
void remove_leading_trailing_spaces(char *s
bool str_to_int(const char *str, int *pint);

****
...
**************************************************************************/
struct fileinfo {
  char *name;           /* descriptive file name string */
  char *fullname;       /* full absolute filename */
  time_t mtime;         /* last modification time  */
};

#define SPECLIST_TAG fileinfo
#define SPECLIST_TYPE struct fileinfo
#include "speclist.h"
#define fileinfo_list_iterate(list, pnode) \
  TYPED_LIST_ITERATE(struct fileinfo, list, pnode)
#define fileinfo_list_iterate_end LIST_ITERATE_END

char *user_home_dir(void);
void free_user_home_dir(void);
char *user_username(char *buf, size_t bufsz);

const struct strvec *get_data_dirs(void);
const struct strvec *get_save_dirs(void);
const struct strvec *get_scenario_dirs(void);

void free_data_dir_names(void);

struct strvec *fileinfolist(const struct strvec *dirs, const char *suffix);
struct fileinfo_list *fileinfolist_infix(const struct strvec *dirs,
                                         const char *infix, bool nodups);
const char *fileinfoname(const struct strvec *dirs, const char *filename);
void free_fileinfo_data(void);

char *get_langname(void);
void init_nls(void);
void free/* function type to calculate effective string length: */
typedef size_t (m_strlen_fn_t)(const char *str                               m_strlen_fn_t len_fn,
			       const char *prefix,
			       int *ind_result);
enum m_pre_result match_prefix_full(m_pre_accessor_fn_t accessor_fn,
                                    size_t n_names,
                                    size_t max_len_name,
                                    m_pre_strncmp_fn_t cmp_fn,
                                    m_strlen_fn_t len_fn,
                                    const char *prefix,
                                    int *ind_result,
                                    int *matches,
                                    int max_matches,
                                    int *pnum_matches);

char *get_multicast_group(bool ipv6_prefered);
void free_multicast_group(void);
void interpret_tilde(char* buf, size_t buf_size, const char* filename);
char *interpret_tilde_alloc(const char* filename);
char *skip_to_basename(char *filepath);

bool make_dir(const char *pathname);
bool path_is_absolute(const char *filename);

char scanin(const char **buf, char *delimiters, char *dest, int size);

void array_shuffle(int *array, int n);

void format_time_duration(time_t t, char *buf, int maxlen);

bool wildcard_fit_string(const char *pattern, const char *test);

/* Custom format strings. */
struct cf_sequence;

int fc_snprintcf(char *buf, size_t buf_len, const char *format, ...)
     fc__attribute((nonnull (1, 3)));   /* Not a printf format. */
int fc_vsnprintcf(char *buf, size_t buf_len, const char *format,
                  const struct cf_sequence *sequences, size_t sequences_num)
     fc__attribute((nonnull (1, 3, 4)));

/* Tools for fc_snprintcf(). */
static inline struct cf_sequence cf_bool_seq(char letter, bool value);
static inline struct cf_sequence cf_trans_bool_seq(char letter, bool value);
static inline struct cf_sequence cf_char_seq(char letter, char value);
static inline struct cf_sequence cf_int_seq(char letter, int value);
static inline struct cf_sequence cf_hexa_seq(char letter, int value);
static inline struct cf_sequence cf_float_seq(char letter, float value);
static inline struct cf_sequence cf_ptr_seq(char letter, const void *value);
static inline struct cf_sequence cf_str_seq(char letter, const char *value);
static inline struct cf_sequence cf_end(void);

enum cf_type {
  CF_BOOLEAN,
  CF_TRANS_BOOLEAN,
  CF_CHARACTER,
  CF_INTEGER,
  CF_HEXA,
  CF_FLOAT,
  CF_POINTER,
  CF_STRING,

  CF_LAST = -1
};

struct cf_sequence {
  enum cf_type type;
  char letter;
  union {
    bool bool_value;
    char char_value;
    int int_value;
    float float_value;
    const void *ptr_value;
    const char *str_value;
  };
};

******
  Build an argument for fc_snprintcf() of boolean type.
****************************************************************************/
static inline struct cf_sequence cf_bool_seq(char letter, bool value)
{
  struct cf_sequence sequence;

  sequence.type = CF_BOOLEAN;
  sequence.letter = letter;
  sequence.bool_value = value;

  return sequence;
}

******
  Build an argument for fc_snprintcf() of boolean type (result will be
  translated).
****************************************************************************/
static inline struct cf_sequence cf_trans_bool_seq(char letter, bool value)
{
  struct cf_sequence sequence;

  sequence.type = CF_TRANS_BOOLEAN;
  sequence.letter = letter;
  sequence.bool_value = value;

  return sequence;
}

******
  Build an argument for fc_snprintcf() of character type (%c).
****************************************************************************/
static inline struct cf_sequence cf_char_seq(char letter, char value)
{
  struct cf_sequence sequence;

  sequence.type = CF_CHARACTER;
  sequence.letter = letter;
  sequence.char_value = value;

  return sequence;
}

******
  Build an argument for fc_snprintcf() of integer type (%d).
****************************************************************************/
static inline struct cf_sequence cf_int_seq(char letter, int value)
{
  struct cf_sequence sequence;

  sequence.type = CF_INTEGER;
  sequence.letter = letter;
  sequence.int_value = value;

  return sequence;
}

******
  Build an argument for fc_snprintcf() of hexadecimal type (%x).
****************************************************************************/
static inline struct cf_sequence cf_hexa_seq(char letter, int value)
{
  struct cf_sequence sequence;

  sequence.type = CF_HEXA;
  sequence.letter = letter;
  sequence.int_value = value;

  return sequence;
}

******
  Build an argument for fc_snprintcf() of float type (%f).
****************************************************************************/
static inline struct cf_sequence cf_float_seq(char letter, float value)
{
  struct cf_sequence sequence;

  sequence.type = CF_FLOAT;
  sequence.letter = letter;
  sequence.float_value = value;

  return sequence;
}

******
  Build an argument for fc_snprintcf() of pointer type (%p).
****************************************************************************/
static inline struct cf_sequence cf_ptr_seq(char letter, const void *value)
{
  struct cf_sequence sequence;

  sequence.type = CF_POINTER;
  sequence.letter = letter;
  sequence.ptr_value = value;

  return sequence;
}

******
  Build an argument for fc_snprintcf() of string type (%s).
****************************************************************************/
static inline struct cf_sequence cf_str_seq(char letter, const char *value)
{
  struct cf_sequence sequence;

  sequence.type = CF_STRING;
  sequence.letter = letter;
  sequence.str_value = value;

  return sequence;
}

******
  Must finish the list of the arguments of fc_snprintcf().
****************************************************************************/
static inline struct cf_sequence cf_end(void)
{
  struct cf_sequence sequence;

  sequence.type = CF_LAST;

  return sequence;
}

bool formats_match(const char *format1, const char *format2);

#ifdef __cplusplus
}
#endif /* __cplusplus */ENDREP
id: 33a.5kv.r31098/17301
type: file
pred: 33a.5kv.r22856/3020
count: 33
text: 31098 0 719 5126 c5d0e3618dd2e9ae382f494d995adaab
props: 11081 99 111 0 d4514082fc7e52be026d3360dec4dcb0
cpath: /branches/S2_5/client/colors_common.c
copyroot: 22812 /branches/S2_5

id: 33b.5kv.r31098/17561
type: file
pred: 33b.5kv.r24137/11622
count: 18
text: 31098 747 188 6378 d71cf29171564edd07701e4da9a925a8
props: 10807 269197 110 0 2297367bb62237eae251d6a189335c2c
cpath: /branches/S2_5/client/colors_common.h
copyroot: 22812 /branches/S2_5

id: 2y6.5kv.r31098/17828
type: file
pred: 2y6.5ck.r19259/423619
count: 10
text: 31098 962 162 14189 0ae0d413b3a94f32cd46b8bdf74a6c71
props: 10518 13071 110 0 705660468cdcbf270377dea86b274451
cpath: /branches/S2_5/client/gui-gtk-2.0/canvas.c
copyroot: 22812 /branches/S2_5

id: 104.5kv.r31098/18101
type: file
pred: 104.5ck.r21441/270
count: 12
text: 31098 1152 558 3758 1807042683a5ef1b4a536ab56d272882
props: 10458 4167 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /branches/S2_5/client/gui-gtk-2.0/colors.c
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 24
file zu.5kv.r25194/10613
K 8
canvas.c
V 25
file 2y6.5kv.r31098/17828
K 8
canvas.h
V 23
file 2y7.0.r10096/14437
K 16
caravan_dialog.c
V 23
file 376.5kv.r26309/304
K 10
chatline.c
V 22
file zw.5kv.r30194/433
K 10
chatline.h
V 24
file zx.5kv.r25819/24874
K 15
choice_dialog.c
V 24
file 377.5ck.r20037/8804
K 15
choice_dialog.h
V 23
file 378.0.r12670/99360
K 14
citizensinfo.c
V 23
file 6n1.5kv.r29074/647
K 14
citizensinfo.h
V 25
file 6n2.5kv.r26906/80725
K 9
citydlg.c
V 23
file zy.5kv.r30370/4347
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 25
file 100.5ck.r22325/71392
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 24
file 102.5kv.r28022/5076
K 8
cma_fe.h
V 25
file 103.5ck.r19385/17470
K 8
colors.c
V 25
file 104.5kv.r31098/18101
K 8
colors.h
V 24
file 105.5ck.r16180/3087
K 12
connectdlg.c
V 25
file 106.5ck.r19683/48662
K 12
connectdlg.h
V 25
file 107.5ck.r19154/49180
K 9
dialogs.c
V 23
file 108.5kv.r30531/167
K 9
dialogs.h
V 25
file 109.5kv.r23887/49261
K 10
diplodlg.c
V 25
file 10a.5kv.r28652/20948
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 17
diplomat_dialog.c
V 25
file 36n.5kv.r26318/16788
K 9
editgui.c
V 22
file 4ej.5kv.r30470/55
K 9
editgui.h
V 25
file 4ek.5kv.r26906/80082
K 10
editprop.c
V 23
file 4el.5kv.r31082/484
K 10
editprop.h
V 25
file 3bj.5cl.r21141/52087
K 10
embedggz.c
V 23
file 4gq.5kv.r30125/388
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.r21403/38654
K 9
gotodlg.c
V 23
file 10e.5kv.r30668/944
K 9
gotodlg.h
V 25
file 10f.5ck.r19505/20989
K 10
graphics.c
V 23
file 10g.5ck.r22525/653
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.5kv.r31055/16479
K 10
gui_main.h
V 24
file 10l.5kv.r29597/1520
K 11
gui_stuff.c
V 25
file 10m.5ck.r21403/36693
K 11
gui_stuff.h
V 25
file 10n.5ck.r20622/22320
K 11
happiness.c
V 25
file 10o.5ck.r22264/26496
K 11
happiness.h
V 23
file 10p.0.r9577/106064
K 9
helpdlg.c
V 23
file 10q.5kv.r29141/698
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.5kv.r26230/78183
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 25
file 75w.5kv.r26906/77517
K 12
luaconsole.h
V 25
file 75x.5kv.r26906/77835
K 9
mapctrl.c
V 24
file 10v.5ck.r20037/8551
K 9
mapctrl.h
V 25
file 10w.5bk.r14157/11089
K 9
mapview.c
V 24
file 10x.5kv.r30370/4616
K 9
mapview.h
V 24
file 10y.5ck.r17351/2736
K 6
menu.c
V 24
file 10z.5kv.r30376/2524
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 24
file 111.5ck.r20767/1172
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 24
file 112.5ck.r21446/1721
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 24
file 4js.5kv.r30376/2789
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 24
file 2pi.5kv.r27140/4870
K 7
pages.h
V 24
file 2pj.5kv.r24719/1381
K 8
plrdlg.c
V 24
file 115.5kv.r30424/1755
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 24
file 118.5kv.r28244/6207
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 25
file kcq.5kv.r26906/77195
K 14
spaceshipdlg.c
V 25
file 11c.5ck.r20622/24322
K 14
spaceshipdlg.h
V 23
file 11d.0.r9577/110090
K 8
sprite.c
V 23
file 2y8.5kv.r24400/217
K 8
sprite.h
V 23
file 2y9.0.r10141/29270
K 11
theme_dlg.c
V 25
file 47d.5ck.r19767/51012
K 8
themes.c
V 23
file 34x.5ck.r20534/377
K 13
tileset_dlg.c
V 23
file 45i.5kv.r30227/498
K 12
unitselect.c
V 25
file 6pa.5kv.r27923/37734
K 12
unitselect.h
V 25
file 6pb.5kv.r26906/76875
K 14
voteinfo_bar.c
V 23
file 4h8.5kv.r30888/128
K 14
voteinfo_bar.h
V 25
file 4h9.5kv.r26906/78482
K 7
wldlg.c
V 23
file 11e.5kv.r30125/656
K 7
wldlg.h
V 25
file 11f.5ck.r16285/86707
END
ENDREP
id: zs.5kv.r31098/22464
type: dir
pred: zs.5kv.r31082/4846
count: 1688
text: 31098 18370 4081 0 1c2d68c0cfd0cb8ac3aa875adeeadf24
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /branches/S2_5/client/gui-gtk-2.0
copyroot: 22812 /branches/S2_5

id: 2y6.5kx.r31098/22723
type: file
pred: 2y6.5g7.r22000/1989
count: 14
text: 31098 1735 315 11918 ba3ad57f81215f8bb4d7f358e821cd8e
props: 10518 13071 110 0 705660468cdcbf270377dea86b274451
cpath: /branches/S2_5/client/gui-gtk-3.0/canvas.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

id: 104.5kx.r31098/23006
type: file
pred: 104.5g7.r21920/14125
count: 15
text: 31098 2076 574 3013 8dca658276e4f3079b906eb189208fff
props: 10458 4167 110 0 7d181b70073f10d0c5a58c73a72d4f04
cpath: /branches/S2_5/client/gui-gtk-3.0/colors.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 11
Makefile.am
V 24
file zu.5kx.r25194/24605
K 8
canvas.c
V 25
file 2y6.5kx.r31098/22723
K 8
canvas.h
V 25
file 2y7.5g7.r20781/42180
K 16
caravan_dialog.c
V 24
file 376.5kx.r26309/4947
K 10
chatline.c
V 23
file zw.5kx.r30194/5325
K 10
chatline.h
V 24
file zx.5kx.r25819/30073
K 15
choice_dialog.c
V 23
file 377.5g7.r22029/922
K 15
choice_dialog.h
V 23
file 378.0.r12670/99360
K 14
citizensinfo.c
V 24
file 6n1.5kx.r29074/5287
K 14
citizensinfo.h
V 25
file 6n2.5kx.r26906/69800
K 9
citydlg.c
V 23
file zy.5kx.r30867/3108
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 23
file 100.5kx.r23708/362
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 25
file 102.5kx.r28715/13507
K 8
cma_fe.h
V 25
file 103.5kx.r28715/13785
K 8
colors.c
V 25
file 104.5kx.r31098/23006
K 8
colors.h
V 25
file 105.5g7.r21920/14399
K 12
connectdlg.c
V 25
file 106.5ck.r19683/48662
K 12
connectdlg.h
V 25
file 107.5ck.r19154/49180
K 9
dialogs.c
V 24
file 108.5kx.r30531/4785
K 9
dialogs.h
V 25
file 109.5kx.r23887/54436
K 10
diplodlg.c
V 25
file 10a.5kx.r28652/34698
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 17
diplomat_dialog.c
V 25
file 36n.5kx.r26318/21439
K 9
editgui.c
V 23
file 4ej.5kx.r30191/772
K 9
editgui.h
V 25
file 4ek.5kx.r26906/69139
K 10
editprop.c
V 24
file 4el.5kx.r31082/5103
K 10
editprop.h
V 25
file 3bj.5jh.r21141/57145
K 10
embedggz.c
V 24
file 4gq.5kx.r30125/5277
K 9
finddlg.c
V 23
file 10c.5kx.r24964/157
K 9
finddlg.h
V 22
file 2d0.0.r5989/22356
K 10
gamedlgs.c
V 23
file 10d.5kx.r30606/108
K 9
gotodlg.c
V 24
file 10e.5kx.r30668/5564
K 9
gotodlg.h
V 25
file 10f.5ck.r19505/20989
K 10
graphics.c
V 24
file 10g.5g7.r22525/6030
K 10
graphics.h
V 24
file 10h.5g7.r22525/6304
K 12
gtkpixcomm.c
V 25
file 10i.5g7.r21620/11139
K 12
gtkpixcomm.h
V 24
file 10j.5g7.r21587/1498
K 10
gui_main.c
V 25
file 10k.5kx.r31055/21108
K 10
gui_main.h
V 24
file 10l.5kx.r29597/6722
K 11
gui_stuff.c
V 25
file 10m.5g7.r22082/16090
K 11
gui_stuff.h
V 24
file 10n.5g7.r22000/3088
K 11
happiness.c
V 23
file 10o.5kx.r25223/183
K 11
happiness.h
V 23
file 10p.0.r9577/106064
K 9
helpdlg.c
V 24
file 10q.5kx.r29141/5331
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.5kx.r26230/69666
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 22
file 76e.5kx.r31042/51
K 12
luaconsole.h
V 25
file 76f.5kx.r26906/66820
K 9
mapctrl.c
V 23
file 10v.5kx.r22943/708
K 9
mapctrl.h
V 23
file 10w.5g7.r21978/547
K 9
mapview.c
V 24
file 10x.5kx.r30370/9523
K 9
mapview.h
V 24
file 10y.5g7.r21620/8982
K 6
menu.c
V 24
file 10z.5kx.r30376/7417
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 25
file 111.5g7.r22082/18513
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 25
file 112.5g7.r22082/16367
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 24
file 4js.5kx.r30376/7695
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 24
file 2pi.5lu.r29824/5738
K 7
pages.h
V 24
file 2pj.5kx.r24719/6591
K 8
plrdlg.c
V 24
file 115.5kx.r30424/6382
K 8
plrdlg.h
V 22
file 116.0.r10803/7069
K 10
ratesdlg.h
V 22
file 2d3.0.r5989/22018
K 10
repodlgs.c
V 24
file 118.5kx.r28244/1420
K 10
repodlgs.h
V 24
file 119.5ck.r18439/2365
K 14
soundset_dlg.c
V 24
file cku.5kx.r30227/5124
K 14
spaceshipdlg.c
V 25
file 11c.5g7.r22082/18236
K 14
spaceshipdlg.h
V 23
file 11d.0.r9577/110090
K 8
sprite.c
V 24
file 2y8.5kx.r26098/7071
K 8
sprite.h
V 23
file 2y9.5kx.r30390/130
K 11
theme_dlg.c
V 25
file 47d.5g7.r20464/70472
K 8
themes.c
V 22
file 34x.5kx.r26760/61
K 13
tileset_dlg.c
V 24
file 45i.5kx.r30227/5406
K 12
unitselect.c
V 25
file 6pa.5kx.r27923/42384
K 12
unitselect.h
V 25
file 6pb.5kx.r26906/65829
K 14
voteinfo_bar.c
V 24
file 4h8.5kx.r30888/4749
K 14
voteinfo_bar.h
V 25
file 4h9.5kx.r26906/67484
K 7
wldlg.c
V 24
file 11e.5kx.r30867/3389
K 7
wldlg.h
V 25
file 11f.5ck.r16285/86707
END
ENDREP
id: zs.5kx.r31098/27252
type: dir
pred: zs.5kx.r31082/9350
count: 1820
text: 31098 23288 3951 0 a93bc72e302964a6abe3c49477fbd225
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /branches/S2_5/client/gui-gtk-3.0
copyroot: 19694 /trunk/client/gui-gtk-3.0

id: 6in.5kv.r31098/27522
type: file
pred: 6in.5kv.r26906/103676
count: 4
text: 31098 2679 651 2230 535a98c870787d619cf523e83cd44a05
props: 26906 103629 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_5/client/gui-qt/colors.cpp
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 25
file 6if.5kv.r27238/27432
K 10
canvas.cpp
V 22
file 6ig.5kv.r30433/85
K 8
canvas.h
V 25
file 6ih.5kv.r26906/90764
K 12
chatline.cpp
V 23
file 6ii.5kv.r31050/165
K 10
chatline.h
V 23
file 6ij.5kv.r30985/824
K 11
citydlg.cpp
V 22
file 6ik.5kv.r31047/73
K 9
citydlg.h
V 24
file gr2.5kv.r30991/5401
K 11
cityrep.cpp
V 23
file 6il.5kv.r30720/110
K 9
cityrep.h
V 25
file 6im.5kv.r27709/10660
K 10
colors.cpp
V 25
file 6in.5kv.r31098/27522
K 8
colors.h
V 25
file 6io.5kv.r26906/99568
K 14
connectdlg.cpp
V 24
file 6ip.5kv.r30745/1817
K 12
connectdlg.h
V 25
file 6iq.5kv.r26906/86674
K 11
dialogs.cpp
V 23
file 6ir.5kv.r30988/353
K 9
dialogs.h
V 25
file 6is.5kv.r26906/98312
K 12
diplodlg.cpp
V 23
file 6it.5kv.r29262/687
K 10
diplodlg.h
V 23
file 6iu.5kv.r29262/954
K 13
fc_client.cpp
V 23
file 6lc.5kv.r30997/154
K 11
fc_client.h
V 23
file 6ld.5kv.r30988/883
K 11
finddlg.cpp
V 26
file 6iv.5kv.r26906/104633
K 9
finddlg.h
V 26
file 6iw.5kv.r26906/101143
K 11
gotodlg.cpp
V 25
file 6ix.5kv.r26906/92648
K 9
gotodlg.h
V 25
file 6iy.5kv.r26906/87936
K 12
graphics.cpp
V 25
file 6iz.5kv.r26906/93600
K 10
graphics.h
V 25
file 6j0.5kv.r26906/99254
K 12
gui_main.cpp
V 25
file 6j1.5kv.r31055/25629
K 10
gui_main.h
V 25
file oxy.5kv.r26906/92026
K 11
helpdlg.cpp
V 25
file 6j2.5kv.r30982/30390
K 9
helpdlg.h
V 24
file 6j3.5kv.r27862/9368
K 12
inteldlg.cpp
V 25
file 6j4.5kv.r26906/94230
K 10
inteldlg.h
V 26
file 6j5.5kv.r26906/100509
K 14
luaconsole.cpp
V 25
file 76c.5kv.r26906/88564
K 12
luaconsole.h
V 25
file 76d.5kv.r26906/95480
K 11
mapctrl.cpp
V 24
file 6j6.5kv.r30626/2299
K 9
mapctrl.h
V 26
file 6j7.5kv.r26906/100194
K 11
mapview.cpp
V 24
file 6j8.5kv.r31046/2398
K 9
mapview.h
V 24
file 6j9.5kv.r31046/2664
K 8
menu.cpp
V 23
file 6ja.5kv.r30895/425
K 6
menu.h
V 23
file 6jb.5kv.r30895/686
K 14
messagedlg.cpp
V 25
file 6jc.5kv.r26906/89827
K 12
messagedlg.h
V 25
file 6jd.5kv.r26906/86359
K 14
messagewin.cpp
V 25
file 6je.5kv.r30994/15637
K 12
messagewin.h
V 25
file 6jf.5kv.r30994/15910
K 13
optiondlg.cpp
V 24
file 6jg.5kv.r30991/5667
K 11
optiondlg.h
V 24
file 6jh.5kv.r30991/5937
K 9
pages.cpp
V 24
file 6ji.5kv.r30836/1683
K 7
pages.h
V 25
file 6jj.5kv.r26906/94548
K 10
plrdlg.cpp
V 23
file 6jk.5kv.r30981/189
K 8
plrdlg.h
V 23
file 6jl.5kv.r30717/788
K 15
qtg_cxxside.cpp
V 25
file 6jo.5kv.r26906/91390
K 13
qtg_cxxside.h
V 25
file 6jp.5kv.r26906/97994
K 12
ratesdlg.cpp
V 26
file 6jq.5kv.r26906/103995
K 10
ratesdlg.h
V 26
file 6jr.5kv.r26906/100825
K 12
repodlgs.cpp
V 24
file 6js.5kv.r30991/6202
K 10
repodlgs.h
V 24
file 6jt.5kv.r30890/8268
K 16
spaceshipdlg.cpp
V 24
file 6ju.5kv.r27442/9892
K 14
spaceshipdlg.h
V 25
file 6jv.5kv.r27442/10698
K 10
sprite.cpp
V 26
file 6jw.5kv.r26906/104315
K 8
sprite.h
V 25
file 6jx.5kv.r26906/90142
K 10
themes.cpp
V 25
file 6jy.5kv.r26906/97370
K 16
voteinfo_bar.cpp
V 26
file 6jz.5kv.r26906/101458
K 14
voteinfo_bar.h
V 25
file 6k0.5kv.r27392/14185
K 9
wldlg.cpp
V 25
file 6k1.5kv.r26906/89512
K 7
wldlg.h
V 25
file 6k2.5kv.r26906/85733
END
ENDREP
id: 6ie.5kv.r31098/30817
type: dir
pred: 6ie.5kv.r31055/28926
count: 279
text: 31098 27791 3013 0 e4ede4274ae755c381e17b943e5d8bd4
props: 28038 4603 380 0 e35272c2f76a630dd3f417e198cbcde9
cpath: /branches/S2_5/client/gui-qt
copyroot: 22812 /branches/S2_5

id: 176.5kv.r31098/31073
type: file
pred: 176.5kv.r31055/31321
count: 22
text: 31098 3360 478 3821 bef88b7e498a934f1f8e418ed646f615
props: 9030 111894 111 0 5396249b3009eb64cd90e5da0b7a56fa
cpath: /branches/S2_5/client/gui-sdl/colors.c
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 25
file 16u.5kv.r25194/19087
K 11
alphablit.c
V 25
file 3be.5kv.r31055/29181
K 8
canvas.c
V 25
file 39i.5kv.r31055/29451
K 8
canvas.h
V 25
file 39j.5kv.r31055/29720
K 16
caravan_dialog.c
V 23
file 3bp.5kv.r26310/103
K 10
chatline.c
V 25
file 16y.5kv.r31055/29983
K 10
chatline.h
V 26
file 16z.5ck.r16199/137581
K 9
citydlg.c
V 25
file 170.5kv.r31055/30254
K 9
citydlg.h
V 25
file 171.5kv.r31055/30523
K 9
cityrep.c
V 25
file 172.5kv.r31055/30789
K 9
cityrep.h
V 26
file 173.5ck.r18101/104032
K 8
cma_fe.c
V 25
file 174.5kv.r31055/31056
K 8
cma_fe.h
V 23
file 175.0.r11361/43495
K 8
colors.c
V 25
file 176.5kv.r31098/31073
K 8
colors.h
V 25
file 177.5kv.r31055/31588
K 12
connectdlg.c
V 25
file 178.5kv.r31055/31855
K 12
connectdlg.h
V 23
file 179.0.r12349/45319
K 9
dialogs.c
V 25
file 17a.5kv.r31055/32125
K 9
dialogs.h
V 25
file 17b.5kv.r31055/32393
K 10
diplodlg.c
V 25
file 17c.5kv.r31055/32661
K 10
diplodlg.h
V 22
file 17d.0.r11584/2869
K 17
diplomat_dialog.c
V 22
file 3bn.5kv.r28554/63
K 9
finddlg.c
V 25
file 17e.5kv.r31055/32932
K 9
finddlg.h
V 20
file 2d8.0.r5991/702
K 9
gotodlg.c
V 25
file 17f.5kv.r31055/33201
K 9
gotodlg.h
V 22
file 17g.0.r6515/58208
K 10
graphics.c
V 25
file 17h.5kv.r31055/33470
K 10
graphics.h
V 25
file 17i.5kv.r31055/33739
K 11
gui_iconv.c
V 25
file 17l.5kv.r31055/34008
K 11
gui_iconv.h
V 25
file 17m.5kv.r31055/34276
K 8
gui_id.h
V 25
file 17n.5kv.r25859/80997
K 10
gui_main.c
V 25
file 17o.5kv.r31055/34545
K 10
gui_main.h
V 25
file 17p.5kv.r31055/34818
K 11
gui_mouse.c
V 25
file 3ca.5kv.r31055/35086
K 11
gui_mouse.h
V 24
file 3cb.0.r12670/112397
K 12
gui_string.c
V 25
file 17r.5kv.r31055/35356
K 12
gui_string.h
V 25
file 17s.5kv.r31055/35623
K 14
gui_tilespec.c
V 25
file 191.5kv.r31055/35892
K 14
gui_tilespec.h
V 25
file 192.5kv.r31055/36166
K 11
happiness.c
V 25
file 17x.5ck.r22264/31615
K 11
happiness.h
V 23
file 17y.0.r11361/41867
K 9
helpdlg.c
V 25
file 17z.5kv.r31055/36440
K 9
helpdlg.h
V 23
file 180.0.r11361/47416
K 10
inputdlg.c
V 26
file 181.5ck.r19259/472952
K 10
inputdlg.h
V 23
file 182.0.r5500/260641
K 10
inteldlg.c
V 25
file 183.5kv.r31055/36712
K 10
inteldlg.h
V 22
file 2d9.0.r11409/2687
K 12
luaconsole.c
V 26
file 768.5kv.r26906/121114
K 12
luaconsole.h
V 26
file 769.5kv.r26906/121430
K 9
mapctrl.c
V 25
file 184.5kv.r31055/36982
K 9
mapctrl.h
V 25
file 185.5kv.r31055/37248
K 9
mapview.c
V 25
file 186.5kv.r31055/37514
K 9
mapview.h
V 25
file 187.5kv.r31055/37782
K 6
menu.c
V 25
file 188.5kv.r31055/38048
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.5kv.r31055/38315
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.5kv.r31055/38586
K 11
optiondlg.h
V 24
file 18e.5kv.r28843/1527
K 7
pages.c
V 25
file 2qg.5kv.r26102/16198
K 7
pages.h
V 22
file 2qh.0.r8639/16416
K 8
plrdlg.c
V 25
file 18f.5kv.r31055/38856
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.5kv.r30547/1451
K 10
repodlgs.h
V 25
file 18j.5kv.r31055/39124
K 14
spaceshipdlg.c
V 26
file 18m.5ck.r19259/473719
K 14
spaceshipdlg.h
V 23
file 18n.0.r5500/263363
K 8
sprite.c
V 25
file 39k.5kv.r31055/39395
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.5kv.r31055/39661
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 23
file 38p.5kv.r29985/414
K 11
themespec.c
V 23
file 390.5kv.r29985/678
K 11
themespec.h
V 23
file 391.5kv.r29985/945
K 11
unistring.c
V 25
file 18o.5kv.r31055/39938
K 11
unistring.h
V 25
file 18p.5kv.r31055/40210
K 14
voteinfo_bar.c
V 26
file 4ha.5kv.r26906/121747
K 14
voteinfo_bar.h
V 26
file 4hb.5kv.r26906/122065
K 8
widget.c
V 25
file 3fu.5kv.r31055/40478
K 8
widget.h
V 25
file 3fv.5ck.r18995/17029
K 15
widget_button.c
V 25
file 3fh.5kv.r31055/40748
K 15
widget_button.h
V 24
file 3g7.0.r12670/113556
K 17
widget_checkbox.c
V 25
file 3fi.5kv.r31055/41023
K 17
widget_checkbox.h
V 24
file 3g8.0.r12670/106620
K 14
widget_combo.c
V 25
file 4k3.5kv.r31055/41300
K 14
widget_combo.h
V 26
file 4k4.5kv.r26906/122708
K 13
widget_core.c
V 25
file 3fj.5kv.r31055/41573
K 13
widget_edit.c
V 25
file 3fk.5kv.r31055/41844
K 13
widget_edit.h
V 24
file 3g9.0.r12670/115595
K 13
widget_icon.c
V 25
file 3fl.5kv.r31055/42117
K 13
widget_icon.h
V 24
file 3ga.0.r12670/112107
K 14
widget_label.c
V 25
file 3fm.5kv.r31055/42392
K 14
widget_label.h
V 24
file 3gb.0.r12670/110079
K 10
widget_p.h
V 24
file 3fn.0.r12670/107197
K 18
widget_scrollbar.c
V 25
file 3fo.5u0.r31055/42668
K 18
widget_scrollbar.h
V 24
file 3gc.0.r12670/116811
K 15
widget_window.c
V 25
file 3fp.5kv.r31055/42971
K 15
widget_window.h
V 23
file 3gd.0.r12699/32533
K 7
wldlg.c
V 25
file 18q.5kv.r31055/43245
K 7
wldlg.h
V 26
file 18r.5ck.r16285/100508
END
ENDREP
id: 16t.5kv.r31098/36356
type: dir
pred: 16t.5kv.r31055/48528
count: 800
text: 31098 31341 5002 0 40c644006dcf82ad6f796314b173ca15
props: 11108 12869 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /branches/S2_5/client/gui-sdl
copyroot: 22812 /branches/S2_5

id: mr.5kv.r31098/36613
type: file
pred: mr.5ck.r20753/28236
count: 7
text: 31098 3865 598 2239 79abbc0dde65a800a148b7d336ee20ad
props: 10458 11042 110 0 dce24d5ac3f5e86568d59a55fa196991
cpath: /branches/S2_5/client/gui-stub/colors.c
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 23
file mj.5kv.r25194/7371
K 8
canvas.c
V 25
file 2y0.5ck.r20753/30000
K 8
canvas.h
V 23
file 2y1.0.r10095/12720
K 10
chatline.c
V 24
file ml.5kv.r25000/28348
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.5kv.r31098/36613
K 8
colors.h
V 22
file ms.0.r10458/11524
K 12
connectdlg.c
V 26
file mt.5ck.r21528/1396317
K 12
connectdlg.h
V 21
file mu.0.r5491/46943
K 9
dialogs.c
V 24
file mv.5kv.r25859/66282
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 24
file n2.5ck.r20753/27982
K 10
graphics.h
V 21
file n3.0.r5491/36199
K 10
gui_main.c
V 24
file n4.5kv.r27287/11419
K 10
gui_main.h
V 21
file n5.0.r5491/41925
K 10
gui_stub.h
V 25
file a3a.5kv.r26906/60625
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 25
file 76g.5kv.r26906/61570
K 12
luaconsole.h
V 25
file 76h.5kv.r26906/61887
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.r20753/29747
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 25
file 4jt.5kv.r26906/60940
K 11
optiondlg.h
V 25
file 4ju.5kv.r26906/61253
K 7
pages.c
V 25
file 2qi.5ck.r20753/31770
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.r20753/28990
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 25
file 4hc.5kv.r26906/62203
K 14
voteinfo_bar.h
V 25
file 4hd.5kv.r26906/60305
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.5kv.r31098/39596
type: dir
pred: mh.5kv.r27287/14406
count: 213
text: 31098 36879 2704 0 2179122bd1133501b2e0b6566a352f8e
props: 11108 13796 68 0 fbaef5f6348d6ae4b0cc177104ca4ad2
cpath: /branches/S2_5/client/gui-stub
copyroot: 22812 /branches/S2_5

id: a2.5kv.r31098/39852
type: file
pred: a2.5ck.r19259/443412
count: 17
text: 31098 4491 701 9302 8d3b06752d0da26b222db1f64dee67af
props: 10532 8477 111 0 8e6f231ffe21dad0a34f68090b1c0b69
cpath: /branches/S2_5/client/gui-xaw/colors.c
copyroot: 22812 /branches/S2_5

id: al.5kv.r31098/40118
type: file
pred: al.5ck.r20799/86
count: 227
text: 31098 5222 191 29104 72368871bd4abcc21050d6bef1b1bdac
props: 11084 5307 112 0 a976793c1b86634c19e93e3af962ba38
cpath: /branches/S2_5/client/gui-xaw/mapview.c
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 24
file bq.5kv.r25194/15253
K 9
actions.c
V 25
file nt.5ck.r21392/116240
K 9
actions.h
V 21
file nu.0.r1888/21779
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.5kv.r25000/16114
K 10
chatline.h
V 21
file 9v.0.r2187/10435
K 9
citydlg.c
V 24
file 9w.5ck.r22199/32958
K 9
citydlg.h
V 20
file 9x.0.r2187/8309
K 9
cityrep.c
V 23
file 9y.5ck.r20685/1594
K 9
cityrep.h
V 24
file g1.5ck.r18101/97080
K 8
cma_fe.c
V 26
file 2ei.5ck.r19259/441430
K 8
cma_fe.h
V 21
file 2ej.0.r6908/4433
K 8
colors.c
V 24
file a2.5kv.r31098/39852
K 8
colors.h
V 21
file a3.0.r10532/9312
K 12
connectdlg.c
V 24
file a4.5ck.r20478/41190
K 12
connectdlg.h
V 21
file a5.0.r2187/12228
K 9
dialogs.c
V 24
file a6.5kv.r25859/74171
K 9
dialogs.h
V 24
file a7.5ck.r20375/28717
K 10
diplodlg.c
V 25
file a8.5ck.r19259/442903
K 10
diplodlg.h
V 20
file a9.0.r2187/7955
K 17
diplomat_dialog.c
V 25
file 37p.5kv.r26228/15368
K 9
finddlg.c
V 25
file aa.5ck.r19259/444677
K 9
finddlg.h
V 22
file 2dk.0.r5989/31562
K 9
gotodlg.c
V 25
file ab.5ck.r19259/437889
K 9
gotodlg.h
V 21
file ac.0.r1888/21069
K 10
graphics.c
V 23
file ad.5kv.r23438/6495
K 10
graphics.h
V 21
file ae.0.r10789/6338
K 10
gui_main.c
V 24
file bm.5kv.r31055/48785
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 24
file af.5kv.r28737/27375
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.5kv.r26230/83360
K 10
inteldlg.h
V 23
file 2dl.0.r10108/22972
K 12
luaconsole.c
V 26
file 76a.5kv.r26906/112412
K 12
luaconsole.h
V 26
file 76b.5kv.r26906/112728
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.5kv.r31098/40118
K 9
mapview.h
V 24
file am.5bk.r13912/46304
K 6
menu.c
V 24
file an.5kv.r30376/21557
K 6
menu.h
V 23
file ao.5kv.r22832/8632
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 26
file 2qm.5ck.r19259/440675
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 25
file aw.5ck.r19259/445187
K 8
plrdlg.h
V 20
file g4.0.r5489/3140
K 10
ratesdlg.c
V 25
file ax.5ck.r19259/444421
K 10
ratesdlg.h
V 22
file 2dn.0.r5989/31227
K 10
repodlgs.c
V 24
file ay.5kv.r26230/83088
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 25
file b2.5ck.r19259/445938
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.5kv.r26906/111770
K 14
voteinfo_bar.h
V 26
file 4hh.5kv.r26906/112093
K 7
wldlg.c
V 25
file o5.5ck.r19259/446193
K 7
wldlg.h
V 24
file o6.5ck.r16285/91411
END
ENDREP
id: 9o.5kv.r31098/43701
type: dir
pred: 9o.5kv.r31055/52371
count: 1068
text: 31098 40383 3305 0 59685e26d1aead7610ef78c2dee9cf56
props: 11108 12237 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /branches/S2_5/client/gui-xaw
copyroot: 22812 /branches/S2_5

id: in.5kv.r31098/43957
type: file
pred: in.5ck.r20720/22443
count: 11
text: 31098 5437 60 1037 1741325c971cd29e5d0169a3ebb2d690
props: 10458 8834 111 0 3d57169d64a739976bce7d2e578e29eb
cpath: /branches/S2_5/client/include/colors_g.h
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 21
file dt.5ck.r20722/73
K 10
canvas_g.h
V 25
file 2y4.5ck.r20720/24208
K 12
chatline_g.h
V 24
file en.5kv.r25000/19948
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.5kv.r31098/43957
K 14
connectdlg_g.h
V 24
file eq.5ck.r20720/20549
K 11
dialogs_g.h
V 24
file er.5kv.r25859/78008
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 7
ggz_g.h
V 26
file 4gr.5kv.r26906/116621
K 11
gotodlg_g.h
V 24
file et.5ck.r20720/21494
K 12
graphics_g.h
V 24
file eu.5ck.r20720/22190
K 12
gui_main_g.h
V 24
file ev.5ck.r20720/17853
K 23
gui_proto_constructor.h
V 26
file 9sq.5kv.r26906/117254
K 11
helpdlg_g.h
V 23
file g6.5kv.r29851/9312
K 12
inteldlg_g.h
V 25
file 2dp.5ck.r20720/22691
K 14
luaconsole_g.h
V 26
file 75y.5kv.r26906/117583
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.5kv.r26906/116934
K 9
pages_g.h
V 24
file 2pk.5ck.r22413/7558
K 10
plrdlg_g.h
V 24
file g8.5ck.r20720/17105
K 12
ratesdlg_g.h
V 25
file 2dr.5ck.r20720/23199
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.5kv.r26906/117904
K 9
wldlg_g.h
V 24
file o7.5ck.r20720/19599
END
ENDREP
id: b8.5kv.r31098/45875
type: dir
pred: b8.5kv.r29851/11226
count: 279
text: 31098 44223 1639 0 2dd3ea88d7de74b1d9ed5601c5cae11e
props: 4431 36493 46 0 e473fc4bd409d833d90929dfcb3a14b8
cpath: /branches/S2_5/client/include
copyroot: 22812 /branches/S2_5

id: z2.5kv.r31098/46129
type: file
pred: z2.5kv.r30370/14040
count: 328
text: 31098 5526 955 123572 18d1f6477d638d09c49fa496d24ce9c8
props: 11084 12552 112 0 73ff9df0f3aabd6f615c7264c2fe22c7
cpath: /branches/S2_5/client/mapview_common.c
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 23
file 5f.5kv.r25962/1188
K 6
agents
V 21
dir zf.5kv.r29332/744
K 11
attribute.c
V 24
file xh.5kv.r27498/50327
K 11
attribute.h
V 24
file xi.5ck.r18863/23649
K 7
audio.c
V 24
file 139.5ck.r22180/7668
K 7
audio.h
V 24
file 13a.5ck.r22180/7911
K 12
audio_none.c
V 26
file 13d.5ck.r19259/462511
K 12
audio_none.h
V 25
file 13e.5ck.r18863/20841
K 11
audio_sdl.c
V 25
file 13f.5kv.r31055/16217
K 11
audio_sdl.h
V 25
file 13g.5ck.r18863/23885
K 17
chatline_common.c
V 24
file 14q.5kv.r24896/5437
K 17
chatline_common.h
V 24
file 14r.5kv.r24893/5197
K 16
citydlg_common.c
V 22
file z4.5kv.r29070/382
K 16
citydlg_common.h
V 24
file z5.5ck.r18863/18619
K 13
cityrepdata.c
V 22
file mb.5kv.r24130/185
K 13
cityrepdata.h
V 24
file mc.5ck.r18863/19121
K 13
client_main.c
V 23
file 2f.5m3.r30376/1995
K 13
client_main.h
V 24
file hz.5p3.r29283/28771
K 8
climap.c
V 24
file 197.5ck.r20232/3008
K 8
climap.h
V 25
file 198.5ck.r18863/24126
K 9
climisc.c
V 24
file d5.5kv.r26655/41648
K 9
climisc.h
V 24
file i0.5kv.r26655/41906
K 8
clinet.c
V 24
file hc.5kv.r31003/53958
K 8
clinet.h
V 24
file i1.5ck.r18863/24866
K 15
colors_common.c
V 25
file 33a.5kv.r31098/17301
K 15
colors_common.h
V 25
file 33b.5kv.r31098/17561
K 19
connectdlg_common.c
V 24
file 2fw.5kv.r30113/1635
K 19
connectdlg_common.h
V 25
file 2fx.5ck.r19154/53802
K 9
control.c
V 22
file gz.5kv.r29360/358
K 9
control.h
V 23
file i2.5kv.r26325/5744
K 7
dummy.c
V 26
file 4f9.5kv.r26906/128290
K 12
dummycxx.cpp
V 25
file 6kr.5kv.r26906/60002
K 8
editor.c
V 24
file 3bg.5kv.r30515/2923
K 8
editor.h
V 24
file 3bh.5kv.r26199/1251
K 11
ggzclient.c
V 26
file 394.5ck.r20126/104106
K 11
ggzclient.h
V 25
file 395.5ck.r18863/21083
K 17
global_worklist.c
V 26
file 4i6.5kv.r26906/111450
K 17
global_worklist.h
V 26
file 4i7.5kv.r26906/120138
K 6
goto.c
V 22
file vu.5kv.r26658/166
K 6
goto.h
V 24
file vv.5ck.r20865/49000
K 11
gui-gtk-2.0
V 23
dir zs.5kv.r31098/22464
K 11
gui-gtk-3.0
V 23
dir zs.5kx.r31098/27252
K 6
gui-qt
V 24
dir 6ie.5kv.r31098/30817
K 7
gui-sdl
V 24
dir 16t.5kv.r31098/36356
K 8
gui-stub
V 23
dir mh.5kv.r31098/39596
K 7
gui-xaw
V 23
dir 9o.5kv.r31098/43701
K 14
gui_cbsetter.c
V 25
file a3c.5kv.r26906/75933
K 14
gui_cbsetter.h
V 25
file a3d.5kv.r26906/85422
K 15
gui_interface.c
V 26
file 6jm.5ni.r26906/120454
K 15
gui_interface.h
V 26
file 6jn.5nj.r26906/120785
K 10
helpdata.c
V 24
file h1.5kv.r30515/12328
K 10
helpdata.h
V 24
file i3.5kv.r25496/41390
K 7
include
V 23
dir b8.5kv.r31098/45875
K 19
luaconsole_common.c
V 25
file 75z.5kv.r26906/75620
K 19
luaconsole_common.h
V 25
file 760.5kv.r26906/76240
K 9
luascript
V 25
dir 761.5kv.r26906/110514
K 16
mapctrl_common.c
V 22
file 15m.5kv.r30624/66
K 16
mapctrl_common.h
V 25
file 15n.5ck.r19893/12504
K 16
mapview_common.c
V 24
file z2.5kv.r31098/46129
K 16
mapview_common.h
V 24
file z3.5ck.r20392/39510
K 19
messagewin_common.c
V 25
file 14s.5ck.r19354/71979
K 19
messagewin_common.h
V 25
file 14t.5ck.r18863/21579
K 9
options.c
V 23
file dc.5kv.r30869/4049
K 9
options.h
V 24
file i4.5kv.r30376/25649
K 17
overview_common.c
V 23
file 2yk.5kv.r29835/603
K 17
overview_common.h
V 23
file 2yl.5kv.r29835/868
K 10
packhand.c
V 21
file n.5kv.r30977/759
K 10
packhand.h
V 24
file i5.5ck.r18863/20596
K 15
plrdlg_common.c
V 24
file 14u.5kv.r28835/1378
K 15
plrdlg_common.h
V 25
file 14v.5ck.r18863/21328
K 17
repodlgs_common.c
V 25
file 11i.5ck.r22325/76263
K 17
repodlgs_common.h
V 25
file 11j.5ck.r19589/11861
K 9
reqtree.c
V 24
file 2ym.5kv.r28244/5947
K 9
reqtree.h
V 24
file 2yn.5ck.r19057/3837
K 9
servers.c
V 25
file 33x.5kv.r31003/59723
K 9
servers.h
V 25
file 33y.5ck.r20478/36372
K 6
text.c
V 24
file 2g3.5kv.r29376/4874
K 6
text.h
V 25
file 2g4.5ck.r22264/31375
K 15
themes_common.c
V 22
file 352.5kv.r26466/95
K 15
themes_common.h
V 25
file 353.5ck.r18863/22710
K 10
tilespec.c
V 22
file hl.5kv.r30643/307
K 10
tilespec.h
V 24
file i6.5kv.r30370/14567
K 19
unitselect_common.c
V 26
file 76v.5kv.r26906/110817
K 19
unitselect_common.h
V 26
file 76w.5kv.r26906/111132
K 14
update_queue.c
V 25
file 4jw.5kv.r26906/74380
K 14
update_queue.h
V 25
file 4jx.5kv.r26906/75002
K 10
voteinfo.c
V 25
file 4fe.5kv.r26906/74693
K 10
voteinfo.h
V 25
file 4ff.5kv.r26906/75313
END
ENDREP
id: d.5kv.r31098/50628
type: dir
pred: d.5kv.r31082/13846
count: 6243
text: 31098 46398 4217 0 cfcad948ab1d953f5ee722840f42546c
props: 23991 877 341 0 4a292777c297b001f37cdd3988879aee
cpath: /branches/S2_5/client
copyroot: 22812 /branches/S2_5

id: 6i6.5kv.r31098/50873
type: file
pred: 6i6.5kv.r26906/174982
count: 9
text: 31098 6508 791 6989 69c335e37d330f455a296d454b23f231
props: 26906 174935 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_5/common/rgbcolor.c
copyroot: 22812 /branches/S2_5

id: 6i7.5kv.r31098/51135
type: file
pred: 6i7.5kv.r26906/175290
count: 5
text: 31098 7326 76 3751 48f91920b1b2acbc94ec76be02fcb18e
props: 26906 175243 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_5/common/rgbcolor.h
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 23
file 5h.5kv.r25190/4634
K 4
ai.c
V 23
file 4go.5kv.r29099/627
K 4
ai.h
V 22
file 4gp.5kv.r27003/63
K 6
aicore
V 23
dir 18t.5kv.r31014/3019
K 6
base.c
V 24
file 3jw.5kv.r24813/2285
K 6
base.h
V 24
file 3jx.5kv.r27696/2200
K 9
borders.c
V 26
file 4f0.5kv.r26906/171259
K 9
borders.h
V 26
file 4f1.5kv.r26906/172192
K 8
capstr.c
V 22
file dv.5kv.r24977/289
K 8
capstr.h
V 24
file dw.5ck.r18858/97074
K 10
citizens.c
V 26
file 6mx.5kv.r26906/178051
K 10
citizens.h
V 26
file 6my.5kv.r26906/178662
K 6
city.c
V 22
file q.5kv.r29572/6165
K 6
city.h
V 23
file 3q.5kv.r29375/6017
K 8
combat.c
V 23
file wp.5kv.r30699/9905
K 8
combat.h
V 23
file wq.5kv.r24574/4864
K 12
connection.c
V 24
file un.5kv.r31003/64449
K 12
connection.h
V 24
file uo.5ck.r22458/34945
K 8
dataio.c
V 22
file 15r.5kv.r31058/59
K 8
dataio.h
V 24
file 15s.5kv.r26835/7796
K 11
diptreaty.c
V 23
file 3r.5kv.r29572/6418
K 11
diptreaty.h
V 24
file 3s.5ck.r22430/33000
K 10
disaster.c
V 26
file b2m.5kv.r26906/173130
K 10
disaster.h
V 26
file b2o.5kv.r26906/173743
K 9
effects.c
V 24
file 2eo.5kv.r29572/6677
K 9
effects.h
V 24
file 2ep.5kv.r28103/9736
K 8
events.c
V 23
file 33h.5ck.r21798/853
K 8
events.h
V 24
file 3t.5ck.r22430/32762
K 12
fc_cmdhelp.c
V 26
file 76j.5kv.r26906/174050
K 12
fc_cmdhelp.h
V 26
file 76k.5kv.r26906/174359
K 14
fc_interface.c
V 25
file 4up.5kv.r29370/40477
K 14
fc_interface.h
V 25
file 4uq.5kv.r28565/12627
K 10
fc_types.h
V 24
file 2ll.5kv.r31014/3270
K 15
featured_text.c
V 26
file 4h3.5kv.r26906/171876
K 15
featured_text.h
V 26
file 4h4.5kv.r26906/172501
K 6
game.c
V 21
file 3u.5kv.r30791/68
K 6
game.h
V 22
file 3v.5kv.r29846/577
K 19
generate_packets.py
V 25
file 2f4.5kv.r27498/41211
K 12
government.c
V 24
file he.5kv.r27498/41478
K 12
government.h
V 24
file hf.5ck.r18858/98787
K 6
idex.c
V 25
file qo.5ck.r19259/406132
K 6
idex.h
V 24
file qp.5ck.r18858/92434
K 13
improvement.c
V 23
file vb.5kv.r28820/2398
K 13
improvement.h
V 25
file vc.5kv.r24792/101133
K 5
map.c
V 22
file r.5kv.r31014/3526
K 5
map.h
V 22
file 41.5kv.r30788/924
K 8
mapimg.c
V 22
file 6n9.5kv.r30291/76
K 8
mapimg.h
V 26
file 6na.5kv.r26906/173437
K 10
movement.c
V 25
file 2xv.5kv.r30515/18445
K 10
movement.h
V 25
file 2xw.5kv.r30515/18706
K 18
name_translation.h
V 26
file 4k1.5kv.r26906/174664
K 8
nation.c
V 21
file il.5kv.r30334/76
K 8
nation.h
V 23
file im.5kv.r25349/1914
K 9
packets.c
V 24
file 43.5kv.r31003/64970
K 11
packets.def
V 25
file 2f5.5kv.r30653/21807
K 9
packets.h
V 23
file 44.5kv.r22884/2307
K 8
player.c
V 23
file 45.5kv.r30537/1715
K 8
player.h
V 23
file 46.5kv.r30537/1970
K 14
requirements.c
V 22
file 2wq.5kv.r29393/56
K 14
requirements.h
V 24
file 2wr.5kv.r27696/1936
K 10
research.c
V 26
file 4ro.5kv.r26906/175898
K 10
research.h
V 22
file 4rp.5kv.r26982/83
K 10
rgbcolor.c
V 25
file 6i6.5kv.r31098/50873
K 10
rgbcolor.h
V 25
file 6i7.5kv.r31098/51135
K 6
road.c
V 26
file 6pq.5kv.r26906/177745
K 6
road.h
V 24
file 6pr.5kv.r29572/7960
K 10
scriptcore
V 23
dir 75a.5kv.r27064/5034
K 11
spaceship.c
V 24
file 98.5kv.r24606/14851
K 11
spaceship.h
V 24
file 99.5kv.r24606/15110
K 12
specialist.c
V 24
file 33f.5kv.r29572/8218
K 12
specialist.h
V 24
file 33g.5kv.r29572/8477
K 6
team.c
V 23
file 33i.5kv.r25892/212
K 6
team.h
V 23
file 33j.5kv.r26184/314
K 6
tech.c
V 23
file t.5kv.r28737/46576
K 6
tech.h
V 22
file u.5kv.r27884/7568
K 9
terrain.c
V 23
file 2fp.5kv.r25241/409
K 9
terrain.h
V 23
file qs.5kv.r27884/7821
K 6
tile.c
V 25
file 2ys.5kv.r30515/18967
K 6
tile.h
V 25
file 2yt.5kv.r30515/19225
K 13
traderoutes.c
V 25
file bf8.5kv.r27129/12723
K 13
traderoutes.h
V 25
file bfa.5kv.r27129/12989
K 8
traits.h
V 26
file 7k3.5kv.r26906/177127
K 6
unit.c
V 20
file v.5kv.r29958/54
K 6
unit.h
V 23
file 48.5kv.r29214/2733
K 10
unitlist.c
V 25
file 39m.5ck.r21517/87214
K 10
unitlist.h
V 24
file 39n.5kv.r24114/1627
K 10
unittype.c
V 24
file v9.5kv.r30699/10161
K 10
unittype.h
V 24
file va.5kv.r30699/10421
K 9
version.c
V 23
file oe.5kv.r26252/3132
K 9
version.h
V 23
file e7.5kv.r26252/3386
K 8
vision.c
V 22
file 4dm.5kv.r27640/98
K 8
vision.h
V 24
file 4dn.5ck.r21811/9325
K 12
workertask.c
V 26
file llw.5kv.r26906/165846
K 12
workertask.h
V 26
file lly.5kv.r26906/171570
K 10
worklist.c
V 22
file o8.5kv.r28028/169
K 10
worklist.h
V 24
file o9.5ck.r18858/98299
END
ENDREP
id: p.5kv.r31098/55709
type: dir
pred: p.5kv.r31058/4628
count: 3686
text: 31098 51396 4300 0 a976eecb1562308612a4b43b97227aa9
props: 23740 0 112 0 b2bc91bf125d83375389d51f25ff2c2f
cpath: /branches/S2_5/common
copyroot: 22812 /branches/S2_5

id: 1d.5kv.r31098/55951
type: file
pred: 1d.5kv.r29761/128
count: 192
text: 31098 7429 9843 14199 a29ebc22cebf87e6180a590f6f6c1f39
props: 10717 817 112 0 a00d30a519ad77ac91be0933c5118bd6
cpath: /branches/S2_5/utility/shared.h
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 25
file 2gg.5kv.r26189/11447
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.5kv.r26906/38163
K 11
bitvector.h
V 25
file 4uo.5kv.r26906/39090
K 12
capability.c
V 21
file 7p.5ck.r20361/90
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.5kv.r26945/198
K 9
fc_utf8.h
V 25
file 4kv.5kv.r26906/38782
K 13
fcbacktrace.c
V 22
file 731.5kv.r26960/60
K 13
fcbacktrace.h
V 25
file 732.5kv.r26906/37250
K 9
fciconv.c
V 24
file 2g7.5kv.r26807/3206
K 9
fciconv.h
V 25
file 2g8.5ck.r18858/89144
K 8
fcintl.c
V 22
file k3.5kv.r30878/137
K 8
fcintl.h
V 24
file fw.5kv.r24145/31999
K 10
fcthread.c
V 25
file 6hv.5kv.r26906/32941
K 10
fcthread.h
V 25
file 6hw.5kv.r26906/33243
K 20
generate_specenum.py
V 24
file 4ia.5kv.r23283/1974
K 9
genhash.c
V 24
file 57v.5kv.r27502/8440
K 9
genhash.h
V 25
file 57w.5kv.r27498/46583
K 9
genlist.c
V 22
file 51.5kv.r29870/642
K 9
genlist.h
V 21
file 52.5kv.r29981/44
K 11
inputfile.c
V 21
file h9.5kv.r29814/49
K 11
inputfile.h
V 24
file ha.5ck.r18858/84203
K 5
ioz.c
V 21
file uh.5kv.r30309/71
K 5
ioz.h
V 23
file ui.5kv.r24201/7308
K 10
iterator.c
V 25
file 4h5.5kv.r26906/34168
K 10
iterator.h
V 25
file 4f3.5kv.r26906/35098
K 5
log.c
V 21
file 53.5kv.r24497/53
K 5
log.h
V 24
file 54.5kv.r30376/30380
K 5
md5.c
V 22
file 33q.5kv.r25083/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.5kv.r26906/33548
K 9
netfile.h
V 25
file 6m9.5kv.r26906/34478
K 9
netintf.c
V 24
file t6.5kv.r31003/74764
K 9
netintf.h
V 24
file t7.5kv.r31003/75021
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.5kv.r26906/35712
K 10
registry.h
V 25
file 7po.5kv.r26906/36324
K 14
registry_ini.c
V 24
file dh.5nm.r29572/13544
K 14
registry_ini.h
V 24
file di.5or.r26115/21372
K 14
section_file.c
V 25
file bw9.5kv.r26906/38471
K 14
section_file.h
V 25
file axo.5kv.r26906/39392
K 8
shared.c
V 22
file 55.5kv.r29710/115
K 8
shared.h
V 24
file 1d.5kv.r31098/55951
K 10
spechash.h
V 25
file 57x.5kv.r27498/46844
K 10
speclist.h
V 21
file gb.5kv.r23840/61
K 8
specpq.h
V 26
file 1brz.5kv.r26906/37857
K 9
specvec.h
V 24
file z9.5kv.r29572/13826
K 15
string_vector.c
V 25
file 4hy.5kv.r26906/33851
K 15
string_vector.h
V 25
file 4hz.5kv.r26906/34784
K 9
support.c
V 24
file m9.5kv.r31003/75279
K 9
support.h
V 22
file ma.5kv.r28237/161
K 8
timing.c
V 23
file el.5kv.r24201/8068
K 8
timing.h
V 24
file em.5ck.r22382/27015
END
ENDREP
id: 1c.5kv.r31098/58921
type: dir
pred: 1c.5kv.r31003/78247
count: 883
text: 31098 56209 2699 0 8f06d80fc4e0e876798acd3f36777dc6
props: 17175 331 84 0 5447a85ba28edec0d4a8f6120070e2b2
cpath: /branches/S2_5/utility
copyroot: 22812 /branches/S2_5

PLAIN
K 9
ABOUT-NLS
V 24
file fu.5kv.r23463/86338
K 7
AUTHORS
V 24
file 5u.5ck.r22143/14016
K 7
COPYING
V 22
file 1h.5kv.r29456/845
K 9
ChangeLog
V 26
file 6l.5kv.r29515/3873833
K 7
INSTALL
V 21
file 6.5kv.r29707/213
K 11
Makefile.am
V 23
file 59.5kv.r29106/3136
K 4
NEWS
V 22
file 6m.5kv.r28524/894
K 8
NEWS-2.5
V 23
file 1h59.5kv.r29575/53
K 6
README
V 20
file 7.0.r4421/96382
K 2
ai
V 21
dir 8.5kv.r30973/1269
K 10
autogen.sh
V 23
file 12o.5kv.r30656/415
K 9
bootstrap
V 23
dir 2p5.5kv.r28599/3351
K 6
client
V 22
dir d.5kv.r31098/50628
K 6
common
V 22
dir p.5kv.r31098/55709
K 12
configure.ac
V 25
file 149.5kv.r31003/69787
K 4
data
V 21
dir w.5kv.r31006/3172
K 6
debian
V 22
dir 5w.5kv.r23304/4091
K 12
dependencies
V 23
dir 2yu.5kv.r30885/2554
K 11
diff_ignore
V 24
file qq.5ck.r21039/26581
K 3
doc
V 22
dir k7.5kv.r30742/2302
K 10
fc_version
V 25
file 2lo.5kw.r30653/26619
K 2
m4
V 23
dir 12p.5kv.r31063/2628
K 7
scripts
V 23
dir 2yo.5kv.r28718/5390
K 6
server
V 22
dir z.5kv.r31082/18054
K 5
tests
V 22
dir 2g9.5kv.r27024/930
K 5
tools
V 23
dir 4pj.5lo.r29030/2274
K 12
translations
V 24
dir t0n.5kv.r31067/36885
K 7
utility
V 23
dir 1c.5kv.r31098/58921
K 3
vms
V 25
dir u9.5ck.r21528/1396085
K 5
win32
V 23
dir 2eu.5kv.r30467/1744
END
ENDREP
id: 3.5kv.r31098/60418
type: dir
pred: 3.5kv.r31082/19548
count: 18278
text: 31098 59167 1238 0 69b4bd3b2f4413fc19ba0f5a13dbad80
props: 20140 3888 282 0 e4bb46e81629a60eef613b169b23a9ea
cpath: /branches/S2_5
copyroot: 22812 /branches/S2_5

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.r31098/60418
K 4
S2_6
V 22
dir 3.5qi.r31097/12563
K 11
freeciv-web
V 22
dir 3.5bl.r13594/14918
END
ENDREP
id: 1.0.r31098/61013
type: dir
pred: 1.0.r31097/13159
count: 10405
text: 31098 60658 342 0 e48ae47e4fc408e51af1569374a095ec
cpath: /branches
copyroot: 0 /

PLAIN
K 8
branches
V 20
dir 1.0.r31098/61013
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.r31098/61335
type: dir
pred: 0.0.r31097/13481
count: 31098
text: 31098 61169 153 0 993f8c01f135be75294f53a4dc18866d
cpath: /
copyroot: 0 /

33a.5kv.t31097-1 modify true false /branches/S2_5/client/colors_common.c

33b.5kv.t31097-1 modify true false /branches/S2_5/client/colors_common.h

2y6.5kv.t31097-1 modify true false /branches/S2_5/client/gui-gtk-2.0/canvas.c

104.5kv.t31097-1 modify true false /branches/S2_5/client/gui-gtk-2.0/colors.c

2y6.5kx.t31097-1 modify true false /branches/S2_5/client/gui-gtk-3.0/canvas.c

104.5kx.t31097-1 modify true false /branches/S2_5/client/gui-gtk-3.0/colors.c

6in.5kv.t31097-1 modify true false /branches/S2_5/client/gui-qt/colors.cpp

176.5kv.t31097-1 modify true false /branches/S2_5/client/gui-sdl/colors.c

mr.5kv.t31097-1 modify true false /branches/S2_5/client/gui-stub/colors.c

a2.5kv.t31097-1 modify true false /branches/S2_5/client/gui-xaw/colors.c

al.5kv.t31097-1 modify true false /branches/S2_5/client/gui-xaw/mapview.c

in.5kv.t31097-1 modify true false /branches/S2_5/client/include/colors_g.h

z2.5kv.t31097-1 modify true false /branches/S2_5/client/mapview_common.c

6i6.5kv.t31097-1 modify true false /branches/S2_5/common/rgbcolor.c

6i7.5kv.t31097-1 modify true false /branches/S2_5/common/rgbcolor.h

1d.5kv.t31097-1 modify true false /branches/S2_5/utility/shared.h


61335 61483
