DELTA 21517 46246 188
SVN  µIµG
# “/ £ ¡u“Tother) {
    city_list_iterate(pothENDREP
DELTA 29375 1235 2385
SVN  †  †  " „év † „„éw† 7„î† M„ïM† ®Q„ñ_count_count_count_count†  ìpí” ìp  by city.  otype givENDREP
DELTA 4008 3305 1750
SVN  —a¤u!“ † ‘ …U†n€{ ‚Žw€l ƒ‘€i }–d¯resizable arrays.const struct foo_vector *tthis);
      foo_t *foo_vector_get(struct foo_vector *tthis, int index);
      void foo_vector_copy(struct foo_vector *to, 
                const struct foo_vector *from);
      void foo_vector_free(struct foo_vector *tthis);fdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#include <string.h>		/* for memcpy */

#include "mem/* Users are allowed to access the data pointer directly. */
  SPECVEC_TYPE *p;

  size_t size, size_alloc;
};

static inline void SPECVEC_FOO(_vector_init) (SPECVEC_VECTOR *tthis)
{
  tthis->p = NULL;
  tthis->size = tthis->size_alloc = 0;
}

static inline void SPECVEC_FOO(_vector_reserve) (SPECVEC_VECTOR *tthis,
						 size_t size)
{
  if (size > tthis->size_alloc) {
    size_t new_size = MAX(size, tthis->size_alloc * 2);

    tthis->p = (SPECVEC_TYPE *)fc_realloc(tthis->p,
					  new_size * sizeof(*tthis->p));
    tthis->size_alloc = new_size;
  }
  tthis->size = size;
}

static inline size_t SPECVEC_FOO(_vector_size) (const SPECVEC_VECTOR *tthis)
{
  return tthis->size;
}

static inline SPECVEC_TYPE *SPECVEC_FOO(_vector_get) (const SPECVEC_VECTOR
						      *tthis,
						      int index)
{
  if (index == -1 && tthis->size > 0) {
    return tthis->p + tthis->size - 1;
  } else if (index >= 0 && (size_t)index < tthis->size) {
    return tthis->p + index;
  } else {
    return NULL;
  }
}

/* You must _init "*to" before using this function */
static inline void SPECVEC_FOO(_vector_copy) (SPECVEC_VECTOR *to,
					      const SPECVEC_VECTOR *from)
{
  SPECVEC_FOO(_vector_reserve) (to, from->size);
  memcpy(to->p, from->p, from->size * sizeof(*to->p));
}

static inline void SPECVEC_FOO(_vector_free) (SPECVEC_VECTOR *tthis)
{
  if (tthis->p) {
    free(tthis->p);
  }
  SPECVEC_FOO(_vector_init)(tthis);
}

static inline void SPECVEC_FOO(_vector_append) (SPECVEC_VECTOR *tthis,
                                                SPECVEC_TYPE const pfoo)
{
  SPECVEC_FOO(_vector_reserve) (tthis, tthis->size + 1);
  tthis->p[tthis->size - 1] = pfoo;
}



#define TYPED_VECTOR_ITERATE(atype, vector, var) {      \
  unsigned int myiter##var;                             \
  atype *var;                                           \
  for (myiter##var = 0; myiter##var < (vector)->size; myiter##var++) { \
    var = &(vector)->p[myiter##var];			        \
 
/* Balance for above: */
#define VECTOR_ITERATE_END  }}

#ifdef __cplusplus
}
#endif /* __cplusplus */
ENDREP
DELTA 24694 2602 246
SVN  ³2³B& ­ €& …®!##_p;                                   \
  for (_i_##_p = 0; _i_##_p < game.control.num_road_types ; _i_##_p++) { \
    struct road_type *_p = road_by_number(_i_##_pENDREP
DELTA 29142 10176 590
SVN  ƒcƒd	 ƒ~  kƒˆ ‚ˆr„qddslot);
ENDREP
DELTA 27794 0 123
SVN  ÔIÔ9  œP  ·iœ`ENDREP
DELTA 26429 166 1046
SVN  ƒ½Tƒ½cY ‚¥n €Y —‚¦8check_tile) {
      if (filter(check_tile, data)) {
	positions[count] = tile_index(check_ENDREP
DELTA 28727 0 7031
SVN  ‚¾8‚¾TI ÅA €I ÷JÆntracker_list = ruleset_cache.tracker;

  if (tracker_list) {
    effect_list_iterate(tracker_list, peffect) {
      effect_free(peffect);
    } effect_list_iterate_end;
    effect_list_destroy(tracker_ENDREP
DELTA 22372 0 228
SVN  ¹V¹^
 ³3 … J³4… „W´_list_listENDREP
DELTA 29375 0 1209
SVN  …I…F/Q ¼
 † ‡*¼† „TÃ6† Þ.È… ƒ¦Dº U„Ø äXƒ¨q_count_count_countcountcount += soln->worker_counts[i];
    }
  }

  return countENDREP
DELTA 29142 10795 90
SVN  …h…h ò2  _ò?Œ ’>ó*##_pplayer) {##_pplayer);ENDREP
DELTA 26951 0 139
SVN  ëë'r Ÿ: Ž ]Ÿ=˜ 1¯2¶ \±‹ C³ ‹ ·=³N##center_tile,tile##_cx, _tile##_cy;  tile##_cx, &_tile##_cy, tile_index(_tile##_center));  tile##_cx; tile##_cy; ENDREP
DELTA 25700 0 1724
SVN  †  †  D “ €D …Œ“Uhashing_section) {
      entry_list_iterate(section_entries(hashing_†  ›› ‚ ›   ENDREP
DELTA 24571 0 177
SVN  ¼	¼< „$ £Z €O V¤!€v }¶S€ ~¸Q€O mº (pclause->type == type && pclause->from == pfrom
        && pclause->value == old_clause) {
    if (old_clause->type == type
        && old_clause->from == pfrom
        && old_clause->value == val) {
      /* same clause already there */
      return FALSE;
    }
    if (is_pact_clause(type) &&
        is_pact_clause(old_old_clause->type = type;
      return TRUE;
    }
    if (type == CLAUSE_GOLD && old_clause->type == CLAUSE_GOLD &&
        old_clause->from == old_clause->value = val;
      return TRUE;
    }
  } clause_list_iterate_end;
ENDREP
DELTA 24146 146495 51
SVN  •$•(
 k … …8l_listENDREP
id: 2gj.5kv.r29572/4787
type: file
pred: 2gj.5ck.r21517/83144
count: 21
text: 29572 0 56 6855 407cccb4bd3990cb85ac75ee5dfb869e
props: 9051 16448 110 0 fdfdab56f53d2388a66f6a5ce0985f95
cpath: /branches/S2_5/common/aicore/citymap.c
copyroot: 22812 /branches/S2_5

id: 18x.5kv.r29572/5049
type: file
pred: 18x.5kv.r29375/4646
count: 102
text: 29572 3537 141 83654 af546f49d16c778cbe80fcc0497c3820
props: 11052 815 111 0 3d8b904835b9008e2a0a4d4db6ee628d
cpath: /branches/S2_5/common/aicore/cm.c
copyroot: 22812 /branches/S2_5

PLAIN
K 11
Makefile.am
V 24
file 18u.5ck.r15407/8822
K 11
aisupport.c
V 23
file 2em.5kv.r25876/403
K 11
aisupport.h
V 22
file 2en.0.r8119/19806
K 9
caravan.c
V 23
file 33l.5kv.r28925/242
K 9
caravan.h
V 25
file 33m.5ck.r21934/58014
K 9
citymap.c
V 24
file 2gj.5kv.r29572/4787
K 9
citymap.h
V 25
file 2gk.5ck.r20375/18425
K 4
cm.c
V 24
file 18x.5kv.r29572/5049
K 4
cm.h
V 26
file 18y.5ck.r19113/125877
K 14
path_finding.c
V 23
file 2ds.5kv.r26721/228
K 14
path_finding.h
V 25
file 2dt.5kv.r26335/10547
K 10
pf_tools.c
V 23
file 2du.5kv.r26867/486
K 10
pf_tools.h
V 25
file 2dv.5kv.r26335/10281
END
ENDREP
id: 18t.5kv.r29572/5914
type: dir
pred: 18t.5kv.r29375/5510
count: 310
text: 29572 5310 591 0 0da768f57473b6606d6d2f2eb3f04705
props: 11108 8037 65 0 8b44e87f657ecca3b8458ca1746fb7c6
cpath: /branches/S2_5/common/aicore
copyroot: 22812 /branches/S2_5

id: q.5kv.r29572/6165
type: file
pred: q.5kv.r29375/5761
count: 539
text: 29572 85 105 116356 88e92967447b181199e5d969fbd07bff
props: 11069 12442 112 0 7c45f13e78520e4754bc476682276743
cpath: /branches/S2_5/common/city.c
copyroot: 22812 /branches/S2_5

id: 3r.5kv.r29572/6418
type: file
pred: 3r.5kv.r24571/205
count: 52
text: 29572 4115 592 7740 10f744e3357ec7968f6d1edeca3b0a68
props: 10411 121637 111 0 b4233197920770c602c29330b7f7c623
cpath: /branches/S2_5/common/diptreaty.c
copyroot: 22812 /branches/S2_5

id: 2eo.5kv.r29572/6677
type: file
pred: 2eo.5kv.r28727/7056
count: 109
text: 29572 3221 228 40788 47060ab6036b2a44c3bd6cfd47bbd910
props: 11071 1400 111 0 efbf1421a4b2405f7925bee6ef319aa7
cpath: /branches/S2_5/common/effects.c
copyroot: 22812 /branches/S2_5

id: r.5kv.r29572/6937
type: file
pred: r.5kv.r26429/8060
count: 309
text: 29572 3077 116 57059 646320bcd55b2924eef10031b4839693
props: 10724 27851 112 0 420a5381801e97e189af945ae9b174d4
cpath: /branches/S2_5/common/map.c
copyroot: 22812 /branches/S2_5

id: 41.5kv.r29572/7190
type: file
pred: 41.5kv.r26951/168
count: 307
text: 29572 3785 166 30102 46c8bad5153d6acd82c341d7a2e0177a
props: 10733 16375 112 0 04d6f3553e14be31b9e437b066651140
cpath: /branches/S2_5/common/map.h
copyroot: 22812 /branches/S2_5

id: 45.5kv.r29572/7444
type: file
pred: 45.5kv.r29142/24887
count: 287
text: 29572 2958 41 50916 4d7346b962db55f7fcf9224680a8598b
props: 11057 32005 112 0 5a3876431ad0faf061b096a2484d7aad
cpath: /branches/S2_5/common/player.c
copyroot: 22812 /branches/S2_5

id: 46.5kv.r29572/7702
type: file
pred: 46.5kv.r29142/25148
count: 248
text: 29572 3704 53 17128 4ff361ceadacec59fd92821520488527
props: 11057 32360 112 0 008c1f4aede3063a105ee5510d8fc5d7
cpath: /branches/S2_5/common/player.h
copyroot: 22812 /branches/S2_5

id: 6pr.5kv.r29572/7960
type: file
pred: 6pr.5kv.r26906/178356
count: 56
text: 29572 2740 190 6594 3c1c5dc9107d6148688abef7947ca143
props: 26906 178309 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /branches/S2_5/common/road.h
copyroot: 22812 /branches/S2_5

id: 33f.5kv.r29572/8218
type: file
pred: 33f.5ck.r22372/258
count: 15
text: 29572 3475 37 7390 a5f11df3400d38761e2da923449fc9a7
props: 10490 6797 110 0 dce24d5ac3f5e86568d59a55fa196991
cpath: /branches/S2_5/common/specialist.c
copyroot: 22812 /branches/S2_5

id: 33g.5kv.r29572/8477
type: file
pred: 33g.5kv.r24146/147197
count: 12
text: 29572 4732 26 2728 653b38e21c969353ba21391be5952c3a
props: 10490 7151 110 0 dce24d5ac3f5e86568d59a55fa196991
cpath: /branches/S2_5/common/specialist.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.r29572/5914
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 22
file wp.5kv.r26867/233
K 8
combat.h
V 23
file wq.5kv.r24574/4864
K 12
connection.c
V 22
file un.5kv.r25723/179
K 12
connection.h
V 24
file uo.5ck.r22458/34945
K 8
dataio.c
V 23
file 15r.5kv.r27010/101
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 23
file 2ll.5kv.r26147/891
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 24
file 3u.5kv.r26088/28852
K 6
game.h
V 21
file 3v.5kv.r26994/82
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.r29572/6937
K 5
map.h
V 23
file 41.5kv.r29572/7190
K 8
mapimg.c
V 26
file 6n9.5kv.r26906/172817
K 8
mapimg.h
V 26
file 6na.5kv.r26906/173437
K 10
movement.c
V 24
file 2xv.5kv.r27983/4950
K 10
movement.h
V 24
file 2xw.5kv.r25619/6757
K 18
name_translation.h
V 26
file 4k1.5kv.r26906/174664
K 8
nation.c
V 22
file il.5kv.r26393/332
K 8
nation.h
V 23
file im.5kv.r25349/1914
K 9
packets.c
V 22
file 43.5kv.r23849/115
K 11
packets.def
V 23
file 2f5.5kv.r26837/178
K 9
packets.h
V 23
file 44.5kv.r22884/2307
K 8
player.c
V 23
file 45.5kv.r29572/7444
K 8
player.h
V 23
file 46.5kv.r29572/7702
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 26
file 6i6.5kv.r26906/174982
K 10
rgbcolor.h
V 26
file 6i7.5kv.r26906/175290
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.r26110/23316
K 6
tile.h
V 25
file 2yt.5kv.r26110/23570
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 22
file v.5kv.r29214/2485
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 23
file v9.5kv.r29437/4677
K 10
unittype.h
V 23
file va.5kv.r29437/4934
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.r29572/13053
type: dir
pred: p.5kv.r29437/9510
count: 3655
text: 29572 8739 4301 0 9d7bfb11c6930d16e77feaf64d576c88
props: 23740 0 112 0 b2bc91bf125d83375389d51f25ff2c2f
cpath: /branches/S2_5/common
copyroot: 22812 /branches/S2_5

id: uh.5kv.r29572/13294
type: file
pred: uh.5kv.r27794/150
count: 37
text: 29572 3028 24 27193 1b1b75f66a2b06ff769925628cdea74c
props: 9074 52 111 0 4b4193808cb95e702a5e5065e4345324
cpath: /branches/S2_5/utility/ioz.c
copyroot: 22812 /branches/S2_5

id: dh.5nm.r29572/13544
type: file
pred: dh.5nm.r25700/10804
count: 125
text: 29572 3976 113 105872 b602f4005c9c70d6b0c32c5911aa1e15
props: 11100 7043 111 0 b4cfde065419379bdf3504580a67fa13
cpath: /branches/S2_5/utility/registry_ini.c
copyroot: 20530 /trunk/utility/registry_ini.c

id: z9.5kv.r29572/13826
type: file
pred: z9.5kv.r24659/96
count: 16
text: 29572 219 2493 4725 4deae98d186e7dccea7fb127e812b0b3
props: 10194 1650 111 0 b491beec13ba952c0167e367d3cb48d2
cpath: /branches/S2_5/utility/specvec.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 23
file k3.5kv.r23283/2243
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 24
file 51.5kv.r27498/47107
K 9
genlist.h
V 24
file 52.5ck.r20422/10948
K 11
inputfile.c
V 22
file h9.5kv.r29554/156
K 11
inputfile.h
V 24
file ha.5ck.r18858/84203
K 5
ioz.c
V 24
file uh.5kv.r29572/13294
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 22
file 54.5kv.r25337/481
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 22
file t6.5kv.r27905/423
K 9
netintf.h
V 21
file t7.5kv.r26629/46
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 24
file 55.5kv.r29370/45301
K 8
shared.h
V 24
file 1d.5kv.r29370/45560
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 23
file m9.5kv.r24201/7560
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.r29572/16798
type: dir
pred: 1c.5kv.r29554/3123
count: 865
text: 29572 14082 2703 0 faa31b1fefb7667ddf7e99c237e8b561
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.r28850/212
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 26
file 1h59.5kv.r29513/13679
K 6
README
V 20
file 7.0.r4421/96382
K 2
ai
V 21
dir 8.5kv.r29551/1349
K 10
autogen.sh
V 23
file 12o.5kv.r24092/228
K 9
bootstrap
V 23
dir 2p5.5kv.r28599/3351
K 6
client
V 21
dir d.5kv.r29561/4559
K 6
common
V 22
dir p.5kv.r29572/13053
K 12
configure.ac
V 23
file 149.5kv.r29005/212
K 4
data
V 21
dir w.5kv.r29537/7014
K 6
debian
V 22
dir 5w.5kv.r23304/4091
K 12
dependencies
V 23
dir 2yu.5kv.r28816/1070
K 11
diff_ignore
V 24
file qq.5ck.r21039/26581
K 3
doc
V 22
dir k7.5kv.r29505/2128
K 10
fc_version
V 22
file 2lo.5kw.r29514/46
K 2
m4
V 23
dir 12p.5kv.r29531/2648
K 7
scripts
V 23
dir 2yo.5kv.r28718/5390
K 6
server
V 21
dir z.5kv.r29539/5594
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.r29532/66105
K 7
utility
V 23
dir 1c.5kv.r29572/16798
K 3
vms
V 25
dir u9.5ck.r21528/1396085
K 5
win32
V 23
dir 2eu.5kv.r28344/1663
END
ENDREP
id: 3.5kv.r29572/18290
type: dir
pred: 3.5kv.r29561/6046
count: 18016
text: 29572 17043 1234 0 b824440742c1d0862fe633a711fea610
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 24
dir 3.5ii.r29512/2246126
K 4
S2_5
V 22
dir 3.5kv.r29572/18290
K 4
S2_6
V 22
dir 3.5qi.r29571/20247
K 11
freeciv-web
V 22
dir 3.5bl.r13594/14918
END
ENDREP
id: 1.0.r29572/18886
type: dir
pred: 1.0.r29571/20843
count: 9606
text: 29572 18529 344 0 13b23371fbf31efc4ed31c782a38c192
cpath: /branches
copyroot: 0 /

PLAIN
K 8
branches
V 20
dir 1.0.r29572/18886
K 4
tags
V 19
dir 2.0.r29519/6475
K 5
trunk
V 22
dir 3.5ck.r29570/21821
K 7
website
V 21
dir 3ge.0.r22980/2263
END
ENDREP
id: 0.0.r29572/19208
type: dir
pred: 0.0.r29571/21164
count: 29572
text: 29572 19041 154 0 8b707b986bd34fdaf4477d35edf879d4
cpath: /
copyroot: 0 /

2gj.5kv.t29571-1 modify true false /branches/S2_5/common/aicore/citymap.c

18x.5kv.t29571-1 modify true false /branches/S2_5/common/aicore/cm.c

q.5kv.t29571-1 modify true false /branches/S2_5/common/city.c

3r.5kv.t29571-1 modify true false /branches/S2_5/common/diptreaty.c

2eo.5kv.t29571-1 modify true false /branches/S2_5/common/effects.c

r.5kv.t29571-1 modify true false /branches/S2_5/common/map.c

41.5kv.t29571-1 modify true false /branches/S2_5/common/map.h

45.5kv.t29571-1 modify true false /branches/S2_5/common/player.c

46.5kv.t29571-1 modify true false /branches/S2_5/common/player.h

6pr.5kv.t29571-1 modify true false /branches/S2_5/common/road.h

33f.5kv.t29571-1 modify true false /branches/S2_5/common/specialist.c

33g.5kv.t29571-1 modify true false /branches/S2_5/common/specialist.h

uh.5kv.t29571-1 modify true false /branches/S2_5/utility/ioz.c

dh.5nm.t29571-1 modify true false /branches/S2_5/utility/registry_ini.c

z9.5kv.t29571-1 modify true false /branches/S2_5/utility/specvec.h


19208 19356
