DELTA SVN‡X‡X€‡X ; Modifying this file: ; You should not modify this file except to make bugfixes or ; for other "maintenance". If you want to make custom changes ; you should create a new datadir subdirectory and copy this file ; into that directory, and then modify that copy. Then use the ; command "rulesetdir " in the server to have freeciv ; use your new customized file. [datafile] description="Nation theme data for Freeciv" options="+Freeciv-ruleset-Devel-2013.May.14" ; /* <-- avoid gettext warnings ; ; Nation styles ; ; name = translatable name as seen by user ; rule_name = (optional) name for rulesets; if not ; present, 'name' is used. ; ; */ <-- avoid gettext warnings [style_european] name = _("?style:European") [style_classical] name = _("?style:Classical") [style_tropical] name = _("?style:Tropical") [style_asian] name = _("?style:Asian") [style_babylonian] name = _("?style:Babylonian") [style_celtic] name = _("?style:Celtic") ENDREP DELTA SVN…p…p€…p ; Modifying this file: ; You should not modify this file except to make bugfixes or ; for other "maintenance". If you want to make custom changes ; you should create a new datadir subdirectory and copy this file ; into that directory, and then modify that copy. Then use the ; command "rulesetdir " in the server to have freeciv ; use your new customized file. [datafile] description="Nation theme data for Freeciv" options="+Freeciv-ruleset-Devel-2013.May.14" ; /* <-- avoid gettext warnings ; ; Nation styles ; ; name = translatable name as seen by user ; rule_name = (optional) name for rulesets; if not ; present, 'name' is used. ; ; */ <-- avoid gettext warnings [style_human] name = _("?style:Human") ENDREP DELTA 24519 3647 1264 SVN† † )Ši……Þ7Š[¤¶7…é stylestyles_alloc(game.control.num_styles† ‚ž,‚¢%$‚P®WÜ@•I¬eÑ€[Q÷@›L‚–‡d–H************** Packet ruleset_tech_flag hand** Handle a packet about a particular stylstyle(const struct packet_ruleset_style *p) { struct nation_style *pstyle = style_by_number(p->id); fc_assert_ret_msg(NULL != pstyle, "Bad style %d.", p->id); names_set(&pstyle->name, NULL, p->name, p->rule_name Handle city style packetENDREP DELTA SVNž(ž(€ž(/********************************************************************** Freeciv - Copyright (C) 2005 - The Freeciv Project This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ***********************************************************************/ #ifdef HAVE_CONFIG_H #include #endif /* utility */ #include "mem.h" /* common */ #include "fc_types.h" #include "game.h" #include "name_translation.h" #include "style.h" static struct nation_style *styles = NULL; /**************************************************************************** Initialise styles structures. ****************************************************************************/ void styles_alloc(int count) { int i; styles = fc_malloc(count * sizeof(struct nation_style)); for (i = 0; i < count; i++) { styles[i].id = i; } } /**************************************************************************** Free the memory associated with styles ****************************************************************************/ void styles_free(void) { FC_FREE(styles); styles = NULL; } /************************************************************************** Return the number of styles. **************************************************************************/ int style_count(void) { return game.control.num_styles; } /************************************************************************** Return the style id. **************************************************************************/ int style_number(const struct nation_style *pstyle) { fc_assert_ret_val(NULL != pstyle, -1); return pstyle->id; } /************************************************************************** Return the style index. **************************************************************************/ int style_index(const struct nation_style *pstyle) { fc_assert_ret_val(NULL != pstyle, -1); return pstyle - styles; } /**************************************************************************** Return style of given id. ****************************************************************************/ struct nation_style *style_by_number(int id) { fc_assert_ret_val(id >= 0 && id < game.control.num_styles, NULL); return &styles[id]; } /************************************************************************** Return the (translated) name of the style. You don't have to free the return pointer. **************************************************************************/ const char *style_name_translation(const struct nation_style *pstyle) { return name_translation(&pstyle->name); } /************************************************************************** Return the (untranslated) rule name of the style. You don't have to free the return pointer. **************************************************************************/ const char *style_rule_name(const struct nation_style *pstyle) { return rule_name(&pstyle->name); } /************************************************************************** Returns style matching rule name or NULL if there is no style with such name. **************************************************************************/ struct nation_style *style_by_rule_name(const char *name) { const char *qs = Qn_(name); styles_iterate(pstyle) { if (!fc_strcasecmp(style_rule_name(pstyle), qs)) { return pstyle; } } styles_iterate_end; return NULL; } ENDREP DELTA 21460 185939 427 SVNƒƒ/ ‚Ž‚styles.rulesetENDREP DELTA 22817 459 442 SVNƒ,ƒX 6‚¶‚nation_effects.ruleset \ script.lua \ styles.rulesetENDREP DELTA 24475 3032 15671 SVN† † ,‹e…‡‹WK’P…ŒJŸg……òX«}styleSTYLE_SECTION_PREFIX "style_"stylestyle† † † .„h€tE¶= …w‚òf¬x‚ô,€Uó|€‚3Nê4€@ƒ¤‚ò}al); if (pextra2 == NULL) { ruleset_error(LOG_ERROR, "\"%s\" extra \"%s\": unknown conflict extranation styles so other rulesets can refer tostyle_names(struct section_file *file) { bool ok = TRUE; struct section_list *secSTYLE_SECTION_PREFIX); if (NULL == sec) { ruleset_error(LOG_ERROR, "No available nation styles in this ruleset!"); ok = FALSE; } else { game.control.num_styles = section_list_size(sec); styles_alloc(game.control.num_styles); styles_iterate(ps) { const int i = style_index(ps)ruleset_load_names(&ps->name, NULL, file, sec_name); } styleŒÀmŸ]NˆtŠw€„6hœ€Us¸:Š·|‡,¸€‚(iŠ@°·|Š„+ç}©‚t쉃 î|‘†Xñq…–5ø&…‚*ŽCdisasters(struct conn_list *dest) { struct packet_ruleset_disaster packet; disaster_type_iterate(d) { int j; packet.id = disaster_number(d); sz_strlcpy(packet.name, untranslated_name(&d->name)); sz_strlcpy(packet.rule_name, rule_name(&d->name)); j = 0; requirement_vector_iterate(&d->reqs, preq) { packet.reqs[j++] = *preq; } requirement_vector_iterate_end; packet.reqs_count = j; packet.frequency = d->frequency; packet.effects = d->effects; lsend_packet_ruleset_disaster(dest, &packet); } disaster_typeachievement ruleset information (all individual achievement types) to the specifiedachievemennation styles(struct conn_list *dest) { struct packet_ruleset_style packet; styles_iterate(s) { packet.id = style_index(s); sz_strlcpy(packet.name, untranslated_name(&s->name)); sz_strlcpy(packet.rule_name, rule_name(&s->name)); lsend_packet_ruleset_style(dest, &packet); } stylestylefile,stylefile = openload_ruleset_file("stylesstylefilestyle_names(stylestylestyleENDREP DELTA SVN‡X‡X€‡X ; Modifying this file: ; You should not modify this file except to make bugfixes or ; for other "maintenance". If you want to make custom changes ; you should create a new datadir subdirectory and copy this file ; into that directory, and then modify that copy. Then use the ; command "rulesetdir " in the server to have freeciv ; use your new customized file. [datafile] description="Nation theme data for Freeciv" options="+Freeciv-ruleset-Devel-2013.May.14" ; /* <-- avoid gettext warnings ; ; Nation styles ; ; name = translatable name as seen by user ; rule_name = (optional) name for rulesets; if not ; present, 'name' is used. ; ; */ <-- avoid gettext warnings [style_european] name = _("?style:European") [style_classical] name = _("?style:Classical") [style_tropical] name = _("?style:Tropical") [style_asian] name = _("?style:Asian") [style_babylonian] name = _("?style:Babylonian") [style_celtic] name = _("?style:Celtic") ENDREP DELTA SVN[[€[/********************************************************************** Freeciv - Copyright (C) 2005 - The Freeciv Project This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ***********************************************************************/ #ifndef FC__STYLE_H #define FC__STYLE_H #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ struct nation_style { int id; struct name_translation name; }; void styles_alloc(int count); void styles_free(void); int style_count(void); int style_number(const struct nation_style *pstyle); int style_index(const struct nation_style *pstyle); struct nation_style *style_by_number(int id); const char *style_name_translation(const struct nation_style *pstyle); const char *style_rule_name(const struct nation_style *pstyle); struct nation_style *style_by_rule_name(const char *name); #define styles_iterate(_p) \ { \ int _i_; \ for (_i_ = 0; _i_ < game.control.num_styles; _i_++) { \ struct nation_style *_p = style_by_number(_i_); #define styles_iterate_end \ } \ } #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* FC__STYLE_H */ ENDREP DELTA 24409 0 362 SVNƒ’@ƒ“~'Sª¬*‹ù­‹W‚Ã9ƒ.‚¦‹£+‚©+ˆÅw‚ÌI/* Max used id: ============ Max id: 239UINT8 musicSTYLE = 239TRING musicnum_stylENDREP DELTA 17319 0 332 SVNƒ2ƒI&Œ{-Ž‚$experimentalstyles.rulesetENDREP DELTA 24305 11172 1095 SVNƒø+ƒþR&‚L‡5…ì*‡'…gƒ³>†m‚¯;€‚ ‚ûdò?²Šoƒíname), path); } stylesstyles.ruleset", path); success = save_styleENDREP DELTA SVN‡X‡X€‡X ; Modifying this file: ; You should not modify this file except to make bugfixes or ; for other "maintenance". If you want to make custom changes ; you should create a new datadir subdirectory and copy this file ; into that directory, and then modify that copy. Then use the ; command "rulesetdir " in the server to have freeciv ; use your new customized file. [datafile] description="Nation theme data for Freeciv" options="+Freeciv-ruleset-Devel-2013.May.14" ; /* <-- avoid gettext warnings ; ; Nation styles ; ; name = translatable name as seen by user ; rule_name = (optional) name for rulesets; if not ; present, 'name' is used. ; ; */ <-- avoid gettext warnings [style_european] name = _("?style:European") [style_classical] name = _("?style:Classical") [style_tropical] name = _("?style:Tropical") [style_asian] name = _("?style:Asian") [style_babylonian] name = _("?style:Babylonian") [style_celtic] name = _("?style:Celtic") ENDREP DELTA SVN‡X‡X€‡X ; Modifying this file: ; You should not modify this file except to make bugfixes or ; for other "maintenance". If you want to make custom changes ; you should create a new datadir subdirectory and copy this file ; into that directory, and then modify that copy. Then use the ; command "rulesetdir " in the server to have freeciv ; use your new customized file. [datafile] description="Nation theme data for Freeciv" options="+Freeciv-ruleset-Devel-2013.May.14" ; /* <-- avoid gettext warnings ; ; Nation styles ; ; name = translatable name as seen by user ; rule_name = (optional) name for rulesets; if not ; present, 'name' is used. ; ; */ <-- avoid gettext warnings [style_european] name = _("?style:European") [style_classical] name = _("?style:Classical") [style_tropical] name = _("?style:Tropical") [style_asian] name = _("?style:Asian") [style_babylonian] name = _("?style:Babylonian") [style_celtic] name = _("?style:Celtic") ENDREP DELTA 23881 27491 425 SVNÒgÓ ‰a…Œ ‰S½•OstyleENDREP DELTA 21483 0 236 SVNƒƒ+ ‚Ž‚ styles.rulesetENDREP DELTA 21483 262 273 SVNƒƒ+ ‚Ž‚ styles.rulesetENDREP DELTA SVN‡X‡X€‡X ; Modifying this file: ; You should not modify this file except to make bugfixes or ; for other "maintenance". If you want to make custom changes ; you should create a new datadir subdirectory and copy this file ; into that directory, and then modify that copy. Then use the ; command "rulesetdir " in the server to have freeciv ; use your new customized file. [datafile] description="Nation theme data for Freeciv" options="+Freeciv-ruleset-Devel-2013.May.14" ; /* <-- avoid gettext warnings ; ; Nation styles ; ; name = translatable name as seen by user ; rule_name = (optional) name for rulesets; if not ; present, 'name' is used. ; ; */ <-- avoid gettext warnings [style_european] name = _("?style:European") [style_classical] name = _("?style:Classical") [style_tropical] name = _("?style:Tropical") [style_asian] name = _("?style:Asian") [style_babylonian] name = _("?style:Babylonian") [style_celtic] name = _("?style:Celtic") ENDREP DELTA 20653 0 204 SVNƒ#ƒH I‚,€IS‚Pstyles.ruleset \ game.ruleset \ governments.ruleset \ nations.ruleset ENDREP DELTA 24520 2917 607 SVN ‹:‚J‹<21ENDREP DELTA SVN‡X‡X€‡X ; Modifying this file: ; You should not modify this file except to make bugfixes or ; for other "maintenance". If you want to make custom changes ; you should create a new datadir subdirectory and copy this file ; into that directory, and then modify that copy. Then use the ; command "rulesetdir " in the server to have freeciv ; use your new customized file. [datafile] description="Nation theme data for Freeciv" options="+Freeciv-ruleset-Devel-2013.May.14" ; /* <-- avoid gettext warnings ; ; Nation styles ; ; name = translatable name as seen by user ; rule_name = (optional) name for rulesets; if not ; present, 'name' is used. ; ; */ <-- avoid gettext warnings [style_european] name = _("?style:European") [style_classical] name = _("?style:Classical") [style_tropical] name = _("?style:Tropical") [style_asian] name = _("?style:Asian") [style_babylonian] name = _("?style:Babylonian") [style_celtic] name = _("?style:Celtic") ENDREP DELTA 24459 6834 210 SVNšš( ‹B•ŽQ‹=style.c \ style.h ENDREP DELTA 21163 698 426 SVNƒƒ/&‡-ŽW‚Eclassicstyles.rulesetENDREP id: zzb.5ck.r24528/16268 type: file count: 0 text: 24528 2275 3894 3880 2b19e22752c299761031970d2cb73057 cpath: /trunk/common/style.c copyroot: 15280 /trunk id: zzd.5ck.r24528/16426 type: file count: 0 text: 24528 9291 1769 1755 c3708c716f748b75bf77f00a81d68915 cpath: /trunk/common/style.h copyroot: 15280 /trunk id: 2f5.5ck.r24528/16584 type: file pred: 2f5.5ck.r24475/27404 count: 478 text: 24528 11073 135 51710 6943526d3d2e207fa0482deb1d488897 props: 11057 30210 112 0 64942f9576ccbd6a94350596bbb7a5cc cpath: /trunk/common/packets.def copyroot: 15280 /trunk id: 3u.5ck.r24528/16834 type: file pred: 3u.5ck.r23881/112588 count: 389 text: 24528 13746 35 27019 c371485ebc576427778db63bb1ff3ae0 props: 11041 20516 112 0 779057fa36f350a13e5c75663a7074d1 cpath: /trunk/common/game.c copyroot: 15280 /trunk id: 5h.5ck.r24528/17077 type: file pred: 5h.5ck.r24459/7697 count: 99 text: 24528 16124 42 3368 f075e456248ec374d224f7b9385c3027 props: 10503 239 111 0 7f9b5cf6c8fffd7438ed66579e7ad166 cpath: /trunk/common/Makefile.am copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 24 file 5h.5ck.r24528/17077 K 14 achievements.c V 24 file qhc.5ck.r24159/6833 K 14 achievements.h V 25 file qhe.5ck.r23319/42059 K 9 actions.c V 24 file r7a.5ck.r24527/3134 K 9 actions.h V 25 file r7c.5ck.r24474/18114 K 4 ai.c V 25 file 4go.5ck.r22382/18940 K 4 ai.h V 23 file 4gp.5ck.r23975/335 K 6 aicore V 23 dir 18t.5ck.r24335/6928 K 6 base.c V 25 file 3jw.5ck.r23866/18985 K 6 base.h V 25 file 3jx.5ck.r24158/73597 K 9 borders.c V 26 file 4f0.5ck.r19259/404033 K 9 borders.h V 25 file 4f1.5ck.r18858/99721 K 8 capstr.c V 25 file dv.5ck.r19259/401812 K 8 capstr.h V 24 file dw.5ck.r18858/97074 K 10 citizens.c V 24 file 6mx.5ck.r20853/5961 K 10 citizens.h V 24 file 6my.5ck.r20853/6145 K 6 city.c V 22 file q.5ck.r24430/7208 K 6 city.h V 24 file 3q.5ck.r24475/27651 K 13 clientutils.c V 24 file zj9.5ck.r24459/7375 K 13 clientutils.h V 24 file zjb.5ck.r24459/7536 K 8 combat.c V 23 file wp.5ck.r24449/6575 K 8 combat.h V 23 file wq.5ck.r24449/6819 K 12 connection.c V 24 file un.5ck.r22421/11281 K 12 connection.h V 24 file uo.5ck.r22458/34945 K 8 dataio.c V 23 file 15r.5ck.r23908/582 K 8 dataio.h V 25 file 15s.5ck.r23422/59337 K 11 diptreaty.c V 22 file 3r.5ck.r23499/797 K 11 diptreaty.h V 24 file 3s.5ck.r22430/33000 K 10 disaster.c V 25 file b2m.5ck.r23215/15462 K 10 disaster.h V 23 file b2o.5ck.r23275/120 K 9 effects.c V 24 file 2eo.5ck.r24430/7687 K 9 effects.h V 24 file 2ep.5ck.r24430/7930 K 8 events.c V 24 file 33h.5ck.r23572/7042 K 8 events.h V 23 file 3t.5ck.r23572/7281 K 8 extras.c V 24 file o9u.5ck.r24214/1980 K 8 extras.h V 25 file o9w.5ck.r24158/74509 K 12 fc_cmdhelp.c V 24 file 76j.5ck.r20867/6570 K 12 fc_cmdhelp.h V 23 file 76k.5ck.r23663/127 K 14 fc_interface.c V 24 file 4up.5ck.r22631/8528 K 14 fc_interface.h V 24 file 4uq.5ck.r23325/4181 K 10 fc_types.h V 25 file 2ll.5ck.r24187/22652 K 15 featured_text.c V 25 file 4h3.5ck.r20306/26314 K 15 featured_text.h V 23 file 4h4.5ck.r22302/750 K 6 game.c V 24 file 3u.5ck.r24528/16834 K 6 game.h V 23 file 3v.5ck.r24454/3909 K 19 generate_packets.py V 23 file 2f4.5ck.r24181/139 K 12 government.c V 24 file he.5ck.r23689/44986 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.5ck.r24125/3332 K 13 improvement.h V 22 file vc.5ck.r23587/722 K 5 map.c V 21 file r.5ck.r24285/896 K 5 map.h V 23 file 41.5ck.r24222/3032 K 8 mapimg.c V 25 file 6n9.5ck.r23659/31563 K 8 mapimg.h V 24 file 6na.5ck.r22508/1884 K 15 metaknowledge.c V 24 file siq.5ck.r24527/3319 K 15 metaknowledge.h V 24 file sis.5ck.r24527/3506 K 10 movement.c V 24 file 2xv.5ck.r24335/7165 K 10 movement.h V 24 file 2xw.5ck.r24335/7410 K 18 name_translation.h V 25 file 4k1.5ck.r24144/26977 K 8 nation.c V 24 file il.5ck.r24144/27173 K 8 nation.h V 24 file im.5ck.r23917/11731 K 9 packets.c V 24 file 43.5ck.r23778/20942 K 11 packets.def V 25 file 2f5.5ck.r24528/16584 K 9 packets.h V 23 file 44.5ck.r22883/2307 K 8 player.c V 24 file 45.5ck.r24475/27892 K 8 player.h V 24 file 46.5ck.r24475/28131 K 14 requirements.c V 24 file 2wq.5ck.r24125/3575 K 14 requirements.h V 23 file 2wr.5ck.r24016/185 K 10 research.c V 22 file 4ro.5ck.r21370/97 K 10 research.h V 23 file 4rp.5ck.r19352/728 K 10 rgbcolor.c V 25 file 6i6.5ck.r21333/48710 K 10 rgbcolor.h V 25 file 6i7.5ck.r21333/48896 K 6 road.c V 25 file 6pq.5ck.r23866/19227 K 6 road.h V 25 file 6pr.5ck.r24177/16768 K 10 scriptcore V 23 dir 75a.5ck.r24489/3473 K 11 spaceship.c V 24 file 98.5ck.r23422/59826 K 11 spaceship.h V 24 file 99.5ck.r23422/60070 K 12 specialist.c V 23 file 33f.5ck.r22372/258 K 12 specialist.h V 25 file 33g.5ck.r23560/15220 K 7 style.c V 25 file zzb.5ck.r24528/16268 K 7 style.h V 25 file zzd.5ck.r24528/16426 K 6 team.c V 26 file 33i.5ck.r19259/396899 K 6 team.h V 25 file 33j.5ck.r18858/94759 K 6 tech.c V 22 file t.5ck.r24454/3435 K 6 tech.h V 22 file u.5ck.r24454/3674 K 9 terrain.c V 25 file 2fp.5ck.r23915/44024 K 9 terrain.h V 23 file qs.5ck.r23859/7901 K 6 tile.c V 23 file 2ys.5ck.r24522/579 K 6 tile.h V 24 file 2yt.5ck.r23859/7420 K 13 traderoutes.c V 25 file bf8.5ck.r22228/24352 K 13 traderoutes.h V 25 file bfa.5ck.r22430/33483 K 8 traits.h V 24 file 7k3.5ck.r22120/1406 K 6 unit.c V 23 file v.5ck.r24518/25878 K 6 unit.h V 23 file 48.5ck.r23972/3624 K 10 unitlist.c V 24 file 39m.5ck.r23624/4825 K 10 unitlist.h V 24 file 39n.5ck.r24112/3056 K 10 unittype.c V 22 file v9.5ck.r23899/906 K 10 unittype.h V 24 file va.5ck.r24518/26112 K 9 version.c V 23 file oe.5ck.r24297/6701 K 9 version.h V 23 file e7.5ck.r24297/6940 K 9 victory.c V 24 file qex.5ck.r23119/2099 K 9 victory.h V 24 file qez.5ck.r23119/2255 K 8 vision.c V 26 file 4dm.5ck.r19259/404222 K 8 vision.h V 24 file 4dn.5ck.r21811/9325 K 12 workertask.c V 24 file llw.5ck.r22482/3617 K 12 workertask.h V 25 file lly.5ck.r23027/52794 K 10 worklist.c V 25 file o8.5ck.r19259/402799 K 10 worklist.h V 24 file o9.5ck.r18858/98299 END ENDREP id: p.5ck.r24528/22281 type: dir pred: p.5ck.r24527/8571 count: 3675 text: 24528 17319 4949 4949 00f68b06eb43a7fbb25f2bf4f1e3d598 props: 23743 0 112 0 b2bc91bf125d83375389d51f25ff2c2f cpath: /trunk/common copyroot: 15280 /trunk id: 2lo.5en.r24528/22510 type: file pred: 2lo.5en.r24520/3552 count: 367 text: 24528 15062 23 1670 e3b7c373388df7a2a6a617303a4baa9b props: 17663 394 136 0 3ab197576d3eab59f498bb0d6a363f31 cpath: /trunk/fc_version copyroot: 17672 /trunk/fc_version id: thd.5js.r24528/22758 type: file pred: thd.5js.r24305/56217 count: 21 text: 24528 11310 384 65362 f7e0e8828df18985a6f53d80c76ac777 cpath: /trunk/tools/ruledit/rulesave.c copyroot: 21464 /trunk/tools PLAIN K 11 Makefile.am V 23 file sso.5js.r24271/808 K 11 ruledit.cpp V 24 file ssq.5m2.r24355/9768 K 9 ruledit.h V 25 file uyp.5js.r23793/14435 K 14 ruledit_qt.cpp V 25 file uyr.5js.r24355/10188 K 12 ruledit_qt.h V 24 file uys.5js.r24355/9173 K 10 rulesave.c V 25 file thd.5js.r24528/22758 K 10 rulesave.h V 24 file thf.5js.r23685/2890 K 12 tab_misc.cpp V 24 file vcq.5js.r24355/9373 K 10 tab_misc.h V 24 file vcs.5js.r24355/9572 K 12 tab_tech.cpp V 24 file vct.5js.r24355/9987 K 10 tab_tech.h V 24 file vcu.5js.r24355/8978 END ENDREP id: ssm.5js.r24528/23496 type: dir pred: ssm.5js.r24355/10928 count: 37 text: 24528 22961 522 522 cea7be0bf5f5068c0162e445bf4f6034 props: 24238 799 125 0 7fe4abae77ea160c7595b9a9ec251e53 cpath: /trunk/tools/ruledit copyroot: 21464 /trunk/tools PLAIN K 11 Makefile.am V 23 file 4pk.5js.r24439/999 K 11 civmanual.c V 24 file 2m5.5jt.r24286/1198 K 10 download.c V 24 file 4pl.5js.r24423/3223 K 10 download.h V 24 file 4pm.5js.r24423/3413 K 9 modinst.c V 24 file bj7.5ck.r21139/5112 K 9 modinst.h V 25 file 76i.5js.r24225/10382 K 7 mpcli.c V 24 file y74.5js.r24225/9612 K 11 mpcmdline.c V 24 file 73v.5js.r24286/1008 K 11 mpcmdline.h V 25 file 73w.5ck.r20760/16287 K 6 mpdb.c V 23 file bjc.5ck.r21142/258 K 6 mpdb.h V 24 file bje.5ck.r20961/5129 K 12 mpgui_gtk2.c V 24 file 4pn.5lm.r24225/9966 K 12 mpgui_gtk3.c V 25 file 4pn.5ln.r24225/10174 K 12 mpgui_qt.cpp V 25 file a65.5js.r24225/10571 K 10 mpgui_qt.h V 25 file a67.5js.r24225/10956 K 19 mpgui_qt_worker.cpp V 24 file vuz.5js.r23875/3825 K 17 mpgui_qt_worker.h V 24 file vv1.5js.r23868/2651 K 7 ruledit V 24 dir ssm.5js.r24528/23496 END ENDREP id: 4pj.5js.r24528/24593 type: dir pred: 4pj.5js.r24439/2041 count: 144 text: 24528 23741 839 839 087635aa02d7187e9672394f7e5317ac props: 24238 2030 216 0 ecd4e82177b0a82a2138833b7e9a5bd7 cpath: /trunk/tools copyroot: 21464 /trunk/tools id: 8w.5ck.r24528/24831 type: file pred: 8w.5ck.r24475/33731 count: 689 text: 24528 6349 1901 225245 2ecefe2fd4c3586e891213ac2b2a6c2a props: 11085 367 112 0 7f6d12fc80ead5cc285da723cb8caa9d cpath: /trunk/server/ruleset.c copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 23 file 5q.5ck.r24142/8400 K 8 advisors V 24 dir 4n2.5ck.r24449/16130 K 9 aiiface.c V 25 file 4gm.5ck.r22318/27020 K 9 aiiface.h V 24 file 4gn.5ck.r20559/1295 K 9 animals.c V 23 file vnk.5ck.r23907/126 K 9 animals.h V 25 file vnm.5ck.r23831/63475 K 6 auth.c V 25 file 39c.5ck.r20274/32101 K 6 auth.h V 25 file 39d.5ck.r18977/19170 K 11 barbarian.c V 24 file lw.5ck.r23878/15861 K 11 barbarian.h V 24 file lx.5ck.r22667/36940 K 14 citizenshand.c V 25 file 6mz.5ck.r22267/14643 K 14 citizenshand.h V 25 file 6n0.5ck.r22267/14833 K 10 cityhand.c V 24 file 10.5ck.r19573/66885 K 10 cityhand.h V 23 file 4f.0.r13297/423686 K 11 citytools.c V 23 file 4g.5ck.r23926/3457 K 11 citytools.h V 24 file 4h.5ck.r22876/12292 K 10 cityturn.c V 22 file 4i.5ck.r24265/548 K 10 cityturn.h V 24 file 4j.5ck.r22267/13479 K 11 civserver.c V 24 file 4k.5ck.r22382/30242 K 11 civserver.h V 21 file 4l.0.r2805/33121 K 10 commands.c V 26 file 2ly.5ck.r23881/118854 K 10 commands.h V 24 file 2lz.5ck.r21821/2153 K 13 connecthand.c V 24 file 2dw.5ck.r24493/4372 K 13 connecthand.h V 24 file 2dx.5ck.r23606/2057 K 9 console.c V 22 file dd.5ck.r20765/191 K 9 console.h V 23 file de.5ck.r19183/7918 K 10 diplhand.c V 24 file 4m.5ck.r24305/60224 K 10 diplhand.h V 21 file 4n.0.r13421/6826 K 11 diplomats.c V 22 file vz.5ck.r24360/167 K 11 diplomats.h V 23 file w0.5ck.r19106/3619 K 10 edithand.c V 22 file 3bk.5ck.r23938/53 K 10 edithand.h V 26 file 4ez.5ck.r18452/115476 K 6 fcdb.c V 25 file 6l3.5ck.r24496/15626 K 6 fcdb.h V 25 file 6l4.5ck.r24496/15810 K 10 gamehand.c V 24 file 4o.5ck.r23860/14653 K 10 gamehand.h V 24 file 4p.5ck.r15698/24111 K 9 generator V 23 dir 2me.5ck.r24008/8005 K 11 ggzserver.c V 25 file 39a.5ck.r20126/49744 K 11 ggzserver.h V 23 file 39b.5ck.r20191/350 K 10 handchat.c V 23 file 4q.5ck.r21364/3610 K 10 handchat.h V 24 file dj.5ck.r18270/28229 K 9 maphand.c V 23 file 13.5ck.r24237/2293 K 9 maphand.h V 23 file 14.5ck.r23941/3368 K 6 meta.c V 23 file 4s.5ck.r24169/9118 K 6 meta.h V 24 file 4t.5ck.r24200/20596 K 8 notify.c V 24 file 4i2.5ck.r22596/6685 K 8 notify.h V 24 file 4i3.5ck.r18282/3660 K 9 plrhand.c V 23 file 4u.5ck.r24493/5296 K 9 plrhand.h V 24 file 4v.5ck.r23917/17500 K 8 report.c V 21 file vi.5ck.r22618/92 K 8 report.h V 24 file vj.5ck.r18270/29203 K 10 rssanity.c V 23 file hew.5ck.r24054/105 K 10 rssanity.h V 25 file hey.5ck.r21709/23329 K 9 ruleset.c V 24 file 8w.5ck.r24528/24831 K 9 ruleset.h V 24 file 8x.5ck.r24305/59981 K 13 sanitycheck.c V 21 file wi.5ck.r24100/51 K 13 sanitycheck.h V 24 file wj.5ck.r20315/26296 K 12 savecompat.c V 24 file qva.5ck.r24493/3941 K 12 savecompat.h V 25 file qvc.5ck.r23867/15437 K 10 savegame.c V 23 file vl.5ck.r24493/5054 K 10 savegame.h V 24 file vm.5ck.r20758/19233 K 11 savegame2.c V 24 file 4m0.5ck.r24493/4618 K 11 savegame2.h V 25 file 4m1.5ck.r21363/11592 K 7 score.c V 24 file 2eg.5ck.r21929/5694 K 7 score.h V 24 file 2eh.5ck.r21929/6179 K 9 scripting V 24 dir 31x.5ck.r24496/15385 K 8 sernet.c V 22 file 15.5ck.r24227/171 K 8 sernet.h V 23 file 4y.5ck.r23685/5129 K 10 settings.c V 24 file 2m0.5ck.r24486/1036 K 10 settings.h V 24 file 2m1.5ck.r23685/4644 K 11 spacerace.c V 24 file 9a.5ck.r23422/68437 K 11 spacerace.h V 21 file 9b.0.r11338/1129 K 9 srv_log.c V 25 file 15t.5el.r22382/32625 K 9 srv_log.h V 25 file 15u.5em.r20315/26035 K 10 srv_main.c V 23 file vg.5ck.r24493/4128 K 10 srv_main.h V 24 file vh.5ck.r23878/15619 K 11 stdinhand.c V 23 file 4z.5ck.r24493/4808 K 11 stdinhand.h V 24 file 50.5ck.r22255/10473 K 11 techtools.c V 24 file 33n.5ck.r24454/9400 K 11 techtools.h V 25 file 33o.5ck.r21976/23870 K 10 unithand.c V 23 file 18.5ck.r24515/2615 K 10 unithand.h V 24 file 19.5ck.r23027/66151 K 11 unittools.c V 23 file 1a.5ck.r24008/8246 K 11 unittools.h V 24 file 1b.5ck.r23027/65661 K 8 voting.c V 24 file 4ex.5ck.r21364/3852 K 8 voting.h V 25 file 4ey.5ck.r18054/19315 END ENDREP id: z.5ck.r24528/28972 type: dir pred: z.5ck.r24515/6755 count: 5305 text: 24528 25076 3883 3883 3dd0e81d67a4d0a701c4cb5a9a6625a9 props: 23990 448 166 0 e5026e1cb18fe57b41417951bfac7b19 cpath: /trunk/server copyroot: 15280 /trunk id: zzh.5ck.r24528/29203 type: file count: 0 text: 24528 11724 998 984 b64ba7ab7b1234af97e505ad80c72f01 cpath: /trunk/data/civ1/styles.ruleset copyroot: 15280 /trunk id: 8n.5ck.r24528/29370 type: file pred: 8n.5ck.r21483/562 count: 9 text: 24528 13810 35 427 98fce72333f022b442a89844c1b1a18e props: 9691 2594 110 0 fdfdab56f53d2388a66f6a5ce0985f95 cpath: /trunk/data/civ1/Makefile.am copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 24 file 8n.5ck.r24528/29370 K 17 buildings.ruleset V 24 file 8p.5ck.r23033/19504 K 14 cities.ruleset V 25 file 3c4.5f0.r24475/38610 K 15 effects.ruleset V 25 file 2ww.5ck.r24506/32499 K 12 game.ruleset V 24 file u6.5ck.r24305/65097 K 19 governments.ruleset V 25 file hg.5ck.r22861/114443 K 15 nations.ruleset V 23 file os.5ck.r24250/5029 K 10 script.lua V 25 file 3w7.5ck.r15828/10205 K 14 styles.ruleset V 25 file zzh.5ck.r24528/29203 K 13 techs.ruleset V 24 file 8q.5ck.r23173/72085 K 15 terrain.ruleset V 24 file gd.5ck.r24432/31974 K 13 units.ruleset V 23 file 8r.5ck.r24069/3645 END ENDREP id: 8l.5ck.r24528/30232 type: dir pred: 8l.5ck.r24506/33321 count: 523 text: 24528 29612 607 607 b5606bdae75a9ffddc58d2d2aa1419b5 props: 4431 12663 46 0 e473fc4bd409d833d90929dfcb3a14b8 cpath: /trunk/data/civ1 copyroot: 15280 /trunk id: zzj.5ck.r24528/30466 type: file count: 0 text: 24528 12735 998 984 b64ba7ab7b1234af97e505ad80c72f01 cpath: /trunk/data/civ2/styles.ruleset copyroot: 15280 /trunk id: gg.5ck.r24528/30633 type: file pred: gg.5ck.r21483/1592 count: 9 text: 24528 13870 35 427 f056e8e56c555c0cfa6203692ee5cefa props: 9691 3640 110 0 7d181b70073f10d0c5a58c73a72d4f04 cpath: /trunk/data/civ2/Makefile.am copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 24 file gg.5ck.r24528/30633 K 17 buildings.ruleset V 24 file gm.5ck.r23033/21325 K 14 cities.ruleset V 25 file 3c4.5ck.r24475/39686 K 15 effects.ruleset V 25 file 2wx.5ck.r24506/33555 K 12 game.ruleset V 24 file u7.5ck.r24305/66146 K 19 governments.ruleset V 25 file hh.5ck.r22861/117537 K 15 nations.ruleset V 24 file 38l.5ck.r24250/6077 K 10 script.lua V 25 file 3w8.5ck.r15828/11190 K 14 styles.ruleset V 25 file zzj.5ck.r24528/30466 K 13 techs.ruleset V 24 file gn.5ck.r23173/73143 K 15 terrain.ruleset V 24 file gi.5ck.r24432/33029 K 13 units.ruleset V 23 file go.5ck.r24425/1081 END ENDREP id: ge.5ck.r24528/31497 type: dir pred: ge.5ck.r24506/34378 count: 574 text: 24528 30876 608 608 b9a1d287017df0f4658388da4730b56a props: 4431 13678 46 0 e473fc4bd409d833d90929dfcb3a14b8 cpath: /trunk/data/civ2 copyroot: 15280 /trunk id: zzr.5es.r24528/31731 type: file count: 0 text: 24528 13932 998 984 b64ba7ab7b1234af97e505ad80c72f01 cpath: /trunk/data/multiplayer/styles.ruleset copyroot: 17702 /trunk/data/multiplayer id: 8f.5es.r24528/31922 type: file pred: 8f.5es.r21140/1890 count: 26 text: 24528 14943 94 456 3753373683bf9d930002a88b7de3506b props: 10422 4165 111 0 df9f31216c5039327c376b7fe82756f5 cpath: /trunk/data/multiplayer/Makefile.am copyroot: 17702 /trunk/data/multiplayer PLAIN K 11 Makefile.am V 24 file 8f.5es.r24528/31922 K 18 ai_effects.ruleset V 25 file 3s4.5bk.r13978/25400 K 17 buildings.ruleset V 24 file 8t.5es.r23033/22921 K 14 cities.ruleset V 24 file jx.5es.r24475/40738 K 15 effects.ruleset V 25 file 2wy.5es.r24506/34612 K 12 game.ruleset V 23 file u8.5es.r24452/3425 K 19 governments.ruleset V 25 file hi.5es.r22861/120772 K 15 nations.ruleset V 24 file cod.5es.r23466/9399 K 10 script.lua V 23 file 330.5es.r21577/652 K 14 styles.ruleset V 25 file zzr.5es.r24528/31731 K 13 techs.ruleset V 24 file 8u.5es.r23173/74202 K 15 terrain.ruleset V 24 file gl.5es.r24432/34083 K 13 units.ruleset V 24 file 8v.5es.r24518/31705 END ENDREP id: 89.5es.r24528/32864 type: dir pred: 89.5es.r24518/32600 count: 891 text: 24528 32191 660 660 7e270670dcc7753049bf808f7d03453d props: 4431 6509 46 0 e473fc4bd409d833d90929dfcb3a14b8 cpath: /trunk/data/multiplayer copyroot: 17702 /trunk/data/multiplayer id: zzn.5ck.r24528/33121 type: file count: 0 text: 24528 15113 998 984 b64ba7ab7b1234af97e505ad80c72f01 cpath: /trunk/data/classic/styles.ruleset copyroot: 15280 /trunk id: csz.5ck.r24528/33291 type: file pred: csz.5ck.r21258/55 count: 2 text: 24528 16194 47 431 11140b3c56c9c37db53be5e56daf0136 cpath: /trunk/data/classic/Makefile.am copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 25 file csz.5ck.r24528/33291 K 17 buildings.ruleset V 24 file 8t.5ji.r23033/24648 K 14 cities.ruleset V 24 file jx.5jj.r24475/41890 K 15 effects.ruleset V 25 file 2wy.5jk.r24506/35769 K 12 game.ruleset V 24 file u8.5jl.r24305/68350 K 19 governments.ruleset V 25 file hi.5jm.r22861/124136 K 15 nations.ruleset V 24 file i7.5jn.r23466/10492 K 10 script.lua V 23 file 330.5jo.r23910/131 K 14 styles.ruleset V 25 file zzn.5ck.r24528/33121 K 13 techs.ruleset V 24 file 8u.5jp.r23173/75360 K 15 terrain.ruleset V 24 file gl.5jq.r24432/35434 K 13 units.ruleset V 24 file 8v.5jr.r24518/32857 END ENDREP id: csx.5ck.r24528/34101 type: dir pred: csx.5ck.r24518/33702 count: 168 text: 24528 33481 607 607 3162965f0d075f5d78c056484eced538 props: 21472 352 47 0 bf36bdb5202732a1b9a911cc1234183c cpath: /trunk/data/classic copyroot: 15280 /trunk id: zzf.5ck.r24528/34339 type: file count: 0 text: 24528 1011 766 752 383ba815bf845252f458214d50846578 cpath: /trunk/data/alien/styles.ruleset copyroot: 15280 /trunk id: o99.5ck.r24528/34506 type: file pred: o99.5ck.r23414/71 count: 2 text: 24528 6247 75 472 9015ce6b8a5060d4f6b4fb0bd05cf7e0 cpath: /trunk/data/alien/Makefile.am copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 25 file o99.5ck.r24528/34506 K 17 buildings.ruleset V 24 file fax.5ck.r23130/2218 K 14 cities.ruleset V 25 file faz.5ck.r24475/42975 K 15 effects.ruleset V 24 file fb0.5ck.r24179/4437 K 12 game.ruleset V 24 file fb1.5ck.r24452/4571 K 19 governments.ruleset V 23 file fb2.5ck.r23251/162 K 6 nation V 23 dir fb3.5ck.r23983/8927 K 22 nation_effects.ruleset V 24 file fbe.5ck.r23123/7301 K 15 nations.ruleset V 24 file fbf.5ck.r24061/9190 K 10 script.lua V 22 file fbg.5ck.r22841/79 K 14 styles.ruleset V 25 file zzf.5ck.r24528/34339 K 13 techs.ruleset V 25 file fbh.5ck.r23173/76449 K 15 terrain.ruleset V 25 file fbi.5ck.r24432/36522 K 13 units.ruleset V 25 file fbj.5ck.r24518/33940 END ENDREP id: fav.5ck.r24528/35411 type: dir pred: fav.5ck.r24518/34800 count: 170 text: 24528 34693 705 705 5a0b14a30f5d5a95500d8abcaddc6c5f props: 23744 7507 47 0 bf36bdb5202732a1b9a911cc1234183c cpath: /trunk/data/alien copyroot: 15280 /trunk id: zzl.5ck.r24528/35648 type: file count: 0 text: 24528 0 998 984 b64ba7ab7b1234af97e505ad80c72f01 cpath: /trunk/data/civ2civ3/styles.ruleset copyroot: 15280 /trunk id: fuo.5ck.r24528/35815 type: file pred: fuo.5ck.r21460/328585 count: 1 text: 24528 6182 35 431 672477ff25004caac23c7ca5b8237b70 cpath: /trunk/data/civ2civ3/Makefile.am copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 25 file fuo.5ck.r24528/35815 K 17 buildings.ruleset V 25 file fuq.5ck.r24371/72979 K 14 cities.ruleset V 25 file fur.5ck.r24475/44071 K 15 effects.ruleset V 25 file fus.5ck.r24506/36859 K 12 game.ruleset V 24 file fut.5ck.r24477/7352 K 19 governments.ruleset V 25 file fuu.5ck.r22989/13072 K 15 nations.ruleset V 25 file fuv.5ck.r23466/12613 K 10 script.lua V 24 file fuw.5ck.r23958/2054 K 14 styles.ruleset V 25 file zzl.5ck.r24528/35648 K 13 techs.ruleset V 25 file fux.5ck.r24371/73755 K 15 terrain.ruleset V 25 file fuy.5ck.r24432/37620 K 13 units.ruleset V 25 file fuz.5ck.r24518/35037 END ENDREP id: fum.5ck.r24528/36636 type: dir pred: fum.5ck.r24518/35873 count: 168 text: 24528 36009 614 614 1ed52ece3000a7b73d3bd69afac65992 props: 21472 647 47 0 bf36bdb5202732a1b9a911cc1234183c cpath: /trunk/data/civ2civ3 copyroot: 15280 /trunk id: zzp.5ck.r24528/36875 type: file count: 0 text: 24528 8280 998 984 b64ba7ab7b1234af97e505ad80c72f01 cpath: /trunk/data/experimental/styles.ruleset copyroot: 15280 /trunk id: 4k6.5ck.r24528/37049 type: file pred: 4k6.5ck.r21140/3216 count: 4 text: 24528 11233 52 457 0f22acc730cb7bc262d2aec4aaddad0f cpath: /trunk/data/experimental/Makefile.am copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 25 file 4k6.5ck.r24528/37049 K 18 ai_effects.ruleset V 24 file 4k7.5ck.r23567/1154 K 17 buildings.ruleset V 25 file 4k8.5ck.r22998/29054 K 14 cities.ruleset V 25 file 4k9.5ck.r24475/45145 K 15 effects.ruleset V 25 file 4ka.5ck.r24506/37929 K 12 game.ruleset V 24 file 4kb.5ck.r24452/5662 K 19 governments.ruleset V 26 file 4kc.5ck.r22861/132838 K 15 nations.ruleset V 25 file cob.5ck.r23466/13687 K 10 script.lua V 24 file 4ke.5ck.r21577/3503 K 14 styles.ruleset V 25 file zzp.5ck.r24528/36875 K 13 techs.ruleset V 25 file 4kf.5ck.r23173/78571 K 15 terrain.ruleset V 25 file 4kg.5ck.r24432/38944 K 13 units.ruleset V 25 file 4kh.5ck.r24518/36112 END ENDREP id: 4k5.5ck.r24528/37928 type: dir pred: 4k5.5ck.r24518/36944 count: 268 text: 24528 37246 669 669 392ab95f2abe0a93854f36a268286324 props: 17871 6210 47 0 c348519a2f02d6470452d3eca58ed415 cpath: /trunk/data/experimental copyroot: 15280 /trunk PLAIN K 10 Freeciv.in V 24 file 2ph.5ck.r24349/4589 K 11 Makefile.am V 23 file 5l.5ck.r22816/3199 K 5 alien V 24 dir fav.5ck.r24528/35411 K 10 alien.serv V 23 file fbk.5ck.r22305/900 K 6 amplio V 24 dir 340.5ck.r24432/28130 K 15 amplio.tilespec V 24 file 34t.5ck.r24466/4026 K 7 amplio2 V 24 dir 4na.5ck.r24432/42702 K 16 amplio2.tilespec V 24 file 4oe.5ck.r24466/8056 K 9 buildings V 22 dir 3co.0.r12672/18420 K 10 cimpletoon V 24 dir 78f.5ck.r22441/69549 K 19 cimpletoon.tilespec V 24 file 78i.5ck.r24466/4271 K 4 civ1 V 23 dir 8l.5ck.r24528/30232 K 9 civ1.serv V 23 file 8s.5ck.r20880/5228 K 4 civ2 V 23 dir ge.5ck.r24528/31497 K 9 civ2.serv V 23 file gj.5ck.r20880/5465 K 8 civ2civ3 V 24 dir fum.5ck.r24528/36636 K 13 civ2civ3.serv V 23 file fv0.5ck.r24155/112 K 16 civclient.dsc.in V 27 file 396.5ck.r21487/1507487 K 16 civserver.dsc.in V 27 file 397.5ck.r21487/1507238 K 17 civserver.room.in V 23 file 398.0.r12670/25531 K 7 classic V 24 dir csx.5ck.r24528/34101 K 12 classic.serv V 23 file n1h.5ck.r22608/212 K 12 database.lua V 25 file 6l2.5ck.r24496/20120 K 7 default V 22 dir 89.5ck.r24250/7543 K 12 default.serv V 25 file 2xa.5ck.r21163/12081 K 12 experimental V 24 dir 4k5.5ck.r24528/37928 K 17 experimental.serv V 24 file 4ki.5ck.r20880/5702 K 5 flags V 25 dir 2gl.5ck.r23811/200789 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 10 freeciv.rc V 21 file 2yj.0.r10123/605 K 14 freeciv.rc-2.0 V 25 file 11h.5ck.r16281/11565 K 8 graphics V 25 dir 2x2.5ck.r24097/139847 K 13 gtk_menus.xml V 23 file 4hw.5ck.r22831/660 K 12 helpdata.txt V 23 file y.5ck.r24518/31463 K 5 hex2t V 24 dir 3dv.5ck.r24432/31741 K 14 hex2t.tilespec V 24 file 3e7.5ck.r24466/7814 K 5 icons V 24 dir 4cb.5ck.r20125/42857 K 7 isophex V 24 dir 2pl.5ck.r24432/25595 K 16 isophex.tilespec V 24 file 2pz.5ck.r24466/3778 K 10 isotrident V 24 dir 13p.5ck.r24432/29976 K 19 isotrident.tilespec V 24 file 148.5ck.r24466/4464 K 4 misc V 22 dir jl.5ck.r24508/6709 K 11 multiplayer V 23 dir 89.5es.r24528/32864 K 16 multiplayer.serv V 24 file 2xa.5et.r17702/1849 K 6 nation V 23 dir ot.5ck.r23811/40995 K 9 scenarios V 23 dir io.5g6.r24223/45153 K 9 stdsounds V 22 dir 32g.0.r12315/22932 K 19 stdsounds.soundspec V 25 file 32y.5ck.r24475/38355 K 6 themes V 23 dir 2m6.5ck.r22741/2197 K 7 trident V 23 dir eb.5ck.r24432/44369 K 16 trident.tilespec V 23 file k4.5ck.r24466/3534 K 7 wonders V 25 dir 3qc.5ck.r24097/132835 END ENDREP id: w.5ck.r24528/40787 type: dir pred: w.5ck.r24518/39803 count: 2976 text: 24528 38172 2602 2602 b303b9fce4073f819455a27126e17d9c props: 11355 32945 104 0 b8b28eed1bd4d902aad8c746f9403748 cpath: /trunk/data copyroot: 15280 /trunk id: n.5ck.r24528/41019 type: file pred: n.5ck.r24519/26141 count: 925 text: 24528 1790 456 139557 abb7f9f499e49642384d877ca748f697 props: 11088 14698 112 0 2c9d3e41a2f20488aa9cdb8d740d094e cpath: /trunk/client/packhand.c copyroot: 15280 /trunk PLAIN K 11 Makefile.am V 24 file 5f.5ck.r24475/49895 K 6 agents V 22 dir zf.5ck.r23835/2132 K 11 attribute.c V 23 file xh.5ck.r23771/1181 K 11 attribute.h V 24 file xi.5ck.r18863/23649 K 7 audio.c V 24 file 139.5ck.r24516/4718 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.5ck.r19354/73618 K 11 audio_sdl.h V 25 file 13g.5ck.r18863/23885 K 17 chatline_common.c V 26 file 14q.5ck.r19259/494007 K 17 chatline_common.h V 25 file 14r.5ck.r18863/23155 K 16 citydlg_common.c V 24 file z4.5ck.r24430/13179 K 16 citydlg_common.h V 24 file z5.5ck.r18863/18619 K 13 cityrepdata.c V 22 file mb.5ck.r24126/185 K 13 cityrepdata.h V 24 file mc.5ck.r18863/19121 K 13 client_main.c V 23 file 2f.5cp.r24516/5138 K 13 client_main.h V 24 file hz.5cq.r18863/25358 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.5ck.r23027/92426 K 9 climisc.h V 24 file i0.5ck.r23027/96165 K 8 clinet.c V 23 file hc.5ck.r22513/7891 K 8 clinet.h V 24 file i1.5ck.r18863/24866 K 15 colors_common.c V 24 file 33a.5ck.r22855/3020 K 15 colors_common.h V 24 file 33b.5ck.r24136/6711 K 19 connectdlg_common.c V 23 file 2fw.5ck.r24352/536 K 19 connectdlg_common.h V 25 file 2fx.5ck.r19154/53802 K 9 control.c V 24 file gz.5ck.r24519/17196 K 9 control.h V 24 file i2.5ck.r24519/22070 K 7 dummy.c V 23 file 4f9.5ck.r15641/551 K 12 dummycxx.cpp V 23 file 6kr.5ck.r18947/939 K 8 editor.c V 25 file 3bg.5ck.r23867/40195 K 8 editor.h V 23 file 3bh.5ck.r23105/702 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.5ck.r19259/493810 K 17 global_worklist.h V 25 file 4i7.5ck.r18863/22960 K 6 goto.c V 22 file vu.5ck.r24122/157 K 6 goto.h V 24 file vv.5ck.r23027/81018 K 11 gui-gtk-2.0 V 23 dir zs.5ck.r24519/21823 K 11 gui-gtk-3.0 V 23 dir zs.5g7.r24519/36179 K 6 gui-qt V 24 dir 6ie.5ck.r24519/39701 K 7 gui-sdl V 24 dir 16t.5ck.r24519/31657 K 8 gui-sdl2 V 24 dir 16t.5l8.r24519/16935 K 8 gui-stub V 23 dir mh.5ck.r24483/43578 K 7 gui-xaw V 23 dir 9o.5ck.r24519/25898 K 14 gui_cbsetter.c V 26 file a3c.5ck.r23312/344798 K 14 gui_cbsetter.h V 25 file a3d.5ck.r20753/37736 K 15 gui_interface.c V 26 file 6jm.5ir.r23312/328430 K 15 gui_interface.h V 26 file 6jn.5is.r23312/328650 K 10 helpdata.c V 24 file h1.5ck.r24518/40034 K 10 helpdata.h V 24 file i3.5ck.r24476/20844 K 7 include V 23 dir b8.5ck.r24483/30063 K 19 luaconsole_common.c V 22 file 75z.5ck.r20372/58 K 19 luaconsole_common.h V 25 file 760.5ck.r20306/31022 K 9 luascript V 23 dir 761.5ck.r22514/7638 K 16 mapctrl_common.c V 25 file 15m.5ck.r20865/59741 K 16 mapctrl_common.h V 25 file 15n.5ck.r19893/12504 K 16 mapview_common.c V 24 file z2.5ck.r24430/13431 K 16 mapview_common.h V 23 file z3.5ck.r24408/3312 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 7 music.c V 24 file zmc.5ck.r24516/4958 K 7 music.h V 24 file zme.5ck.r24516/5407 K 9 options.c V 22 file dc.5ck.r24525/123 K 9 options.h V 23 file i4.5ck.r24516/4478 K 17 overview_common.c V 25 file 2yk.5ck.r23659/48640 K 17 overview_common.h V 24 file 2yl.5ck.r19511/5441 K 10 packhand.c V 23 file n.5ck.r24528/41019 K 10 packhand.h V 24 file i5.5ck.r18863/20596 K 15 plrdlg_common.c V 23 file 14u.5ck.r23426/823 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.5ck.r24150/5760 K 9 reqtree.h V 24 file 2yn.5ck.r24150/6004 K 9 servers.c V 25 file 33x.5ck.r22325/81040 K 9 servers.h V 25 file 33y.5ck.r20478/36372 K 6 text.c V 25 file 2g3.5ck.r24459/13040 K 6 text.h V 25 file 2g4.5ck.r24459/13284 K 15 themes_common.c V 25 file 352.5ck.r19354/73121 K 15 themes_common.h V 25 file 353.5ck.r18863/22710 K 10 tilespec.c V 22 file hl.5ck.r24444/266 K 10 tilespec.h V 23 file i6.5ck.r24408/2821 K 19 unitselect_common.c V 24 file 76v.5ck.r20397/3580 K 19 unitselect_common.h V 24 file 76w.5ck.r20397/3746 K 14 update_queue.c V 25 file 4jw.5ck.r22413/14226 K 14 update_queue.h V 25 file 4jx.5ck.r18863/22078 K 10 voteinfo.c V 25 file 4fe.5ck.r19354/72931 K 10 voteinfo.h V 25 file 4ff.5ck.r18863/22523 END ENDREP id: d.5ck.r24528/45619 type: dir pred: d.5ck.r24525/4714 count: 5924 text: 24528 41264 4342 4342 926e7913fb1a73adf41a3520682284fc props: 23990 857 387 0 afe872b7fe8919650a535e373916e1f7 cpath: /trunk/client copyroot: 15280 /trunk PLAIN K 9 ABOUT-NLS V 24 file fu.5ck.r23462/85000 K 7 AUTHORS V 24 file 5u.5ck.r22143/14016 K 7 COPYING V 19 file 1h.0.r9643/400 K 9 ChangeLog V 26 file 6l.5ck.r22811/6091752 K 7 INSTALL V 22 file 6.5ck.r24055/8187 K 11 Makefile.am V 24 file 59.5ck.r24297/12667 K 4 NEWS V 24 file 6m.5ck.r23374/75525 K 6 README V 20 file 7.0.r4421/96382 K 2 ai V 22 dir 8.5ck.r24449/14783 K 10 autogen.sh V 23 file 12o.5ck.r24091/228 K 9 bootstrap V 23 dir 2p5.5ck.r24310/1660 K 6 client V 22 dir d.5ck.r24528/45619 K 6 common V 22 dir p.5ck.r24528/22281 K 12 configure.ac V 24 file 149.5ck.r24520/3799 K 4 data V 22 dir w.5ck.r24528/40787 K 12 dependencies V 23 dir 2yu.5ck.r23968/4002 K 11 diff_ignore V 24 file qq.5ck.r21039/26581 K 3 doc V 23 dir k7.5ck.r24496/13579 K 10 fc_version V 25 file 2lo.5en.r24528/22510 K 2 m4 V 23 dir 12p.5ck.r24461/3543 K 7 scripts V 22 dir 2yo.5ck.r24495/862 K 6 server V 22 dir z.5ck.r24528/28972 K 5 tests V 23 dir 2g9.5ck.r23807/1326 K 5 tools V 24 dir 4pj.5js.r24528/24593 K 12 translations V 23 dir t0a.5ck.r24330/7174 K 7 utility V 22 dir 1c.5ck.r24492/3032 K 3 vms V 25 dir u9.5ck.r21528/1396085 K 5 win32 V 23 dir 2eu.5ck.r24415/1800 END ENDREP id: 3.5ck.r24528/47022 type: dir pred: 3.5ck.r24527/9965 count: 17152 text: 24528 45850 1159 1159 38847a7a60dbf6c1e374b2861cf21c59 props: 23244 4830 282 0 e4bb46e81629a60eef613b169b23a9ea cpath: /trunk copyroot: 15280 /trunk PLAIN K 8 branches V 20 dir 1.0.r24526/14404 K 4 tags V 19 dir 2.0.r24394/6245 K 5 trunk V 22 dir 3.5ck.r24528/47022 K 7 website V 21 dir 3ge.0.r22980/2263 END ENDREP id: 0.0.r24528/47415 type: dir pred: 0.0.r24527/10355 count: 24528 text: 24528 47248 154 154 ff2efc41cfbfbe373dd4d4829789ed9e cpath: / copyroot: 0 / 2lo.5en.t24527-1 modify true false /trunk/fc_version _e.5ck.t24527-1 add true false /trunk/data/classic/styles.ruleset 5h.5ck.t24527-1 modify true false /trunk/common/Makefile.am csz.5ck.t24527-1 modify true false /trunk/data/classic/Makefile.am _c.5ck.t24527-1 add true false /trunk/data/civ2civ3/styles.ruleset _6.5ck.t24527-1 add true false /trunk/data/alien/styles.ruleset n.5ck.t24527-1 modify true false /trunk/client/packhand.c _2.5ck.t24527-1 add true false /trunk/common/style.c 8w.5ck.t24527-1 modify true false /trunk/server/ruleset.c o99.5ck.t24527-1 modify true false /trunk/data/alien/Makefile.am fuo.5ck.t24527-1 modify true false /trunk/data/civ2civ3/Makefile.am _g.5ck.t24527-1 add true false /trunk/data/experimental/styles.ruleset _4.5ck.t24527-1 add true false /trunk/common/style.h thd.5js.t24527-1 modify true false /trunk/tools/ruledit/rulesave.c 4k6.5ck.t24527-1 modify true false /trunk/data/experimental/Makefile.am 2f5.5ck.t24527-1 modify true false /trunk/common/packets.def _8.5ck.t24527-1 add true false /trunk/data/civ1/styles.ruleset _a.5ck.t24527-1 add true false /trunk/data/civ2/styles.ruleset 3u.5ck.t24527-1 modify true false /trunk/common/game.c 8n.5ck.t24527-1 modify true false /trunk/data/civ1/Makefile.am _i.5es.t24527-1 add true false /trunk/data/multiplayer/styles.ruleset gg.5ck.t24527-1 modify true false /trunk/data/civ2/Makefile.am 8f.5es.t24527-1 modify true false /trunk/data/multiplayer/Makefile.am 47415 47565