DELTA 21401 148020 1140 SVNˆf›%“&ƒW€ƒy%ƒ_€-ƒ…c4.September.14c" ; This section contains meta information for freeciv-ruledit to recreate the ruleset ; file in a form wanted. These have no in-game effect whatsoever [ruledit] ; Nationlist to add include statement for. If this entry is omitted, all the nations ; will be saved to nations.ruleset itself. ; There`s no nationlist file for alien ruleset ;nationlist = "" ; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nations = "_min = 50 ;expansionist_max = 50 ;trader_min = 50 ;trader_max = 50 ;aggressive_min = 50 ;aggressive_max = 50 ; Descriptions of nation sets ; These are self-contained subsets of the available nations; one of these ; can be chosen in pregame with the "nationset" option. No nations ; outside the selected subset will be used. ; The first set defined is the one that is used by default. It is mandatory ; to have at least one, but if there is only one, it will be kept out of ; the user`s way. ; name = Translatable name of the set presented in the UI. ; rule_name = Unique persistent name; this is also visible to users as ; the value of the "nationset" server option, and presented ; in "/list nationsets". It should thus be short, in lower ; case, and not contain spaces or punctuation. ; The same saved "nationset" setting may be used for multiple ; rulesets, so if your custom ruleset has any set which ; contains all of its nations, it is useful to give it a ; rule_name of "all" so that users can specify that they ; always want the choice of all available nations by ; default. ; description = Optional short user description of this set. [nset_all] name=_("All nations") rule_name="all" ; Descriptions of nation groups ; These are more cosmetic than sets; they affect the "pick nation" dialog, ; random nation selection, and possibly ruleset behaviour. ; It`s OK to not define any nation groups at all. ; name = name of the group (used adjectivally) ; hidden = TRUE to not include this group in the "pick nation" dialog ; (for instance if it`s for use in a NationGroup requirement). ; Default FALSE. ; match = How much the AI will try to select a nation in the same ; group [ngroup_barbarian] name=_("?nationgroup:Barbarian") match=0 hidden=trueENDREP DELTA 25087 3905 1199 SVN‰ Š/ƒT‚Oƒ\€‚x†(4.September.14c; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nations = "ENDREP DELTA 28004 0 82 SVN„ñ„ø#¯(‚Â^½€„cZ‚Õ.€‡Ig‚Þ=”i‚ß@€ƒ[‚ãw€GN‚æ5€U‚è8€Nh‚êk€\P‚ì?€„!b‚ñ`€~‚óo€‡|E‚ý}€ƒHi™?†gë?‚S‚Âq€„Fƒ@‚Å=€„ˆ‚È|€Døw„gë?„nÛ{ëQƒ…Na single nation.nation(struct section_file *sfile, struct nation_type *pnat, int sect_idx) { char path[512]; int max_items = nation_city_list_size(pnat->server.default_cities); char *city_str[max_items]; max_items = MAX(max_items, MAX_NUM_NATION_SETS + MAX_NUM_NATION_GROUPS); max_items = MAX(max_items, game.control.nation_count); const char *list_items[max_items]; int set_count; int subsect_idx; fc_snprintf(path, sizeof(path), "nation_%d", sect_idx++); if (pnat->translation_domain == NULL) { secfile_insert_str(sfile, "freeciv", "%s.translation_domain", path); } else { } save_name_translation(sfile, &(pnat->adjective), path); secfile_insert_str(sfile, untranslated_name(&(pnat->noun_plural)), "%s.plural", path); set_count = 0; nation_sets_iterate(pset) { if (nation_is_in_set(pnat, pset)) { list_items[set_count++] = nation_set_rule_name(pset); } } nation_sets_iterate_end; nation_groups_iterate(pgroup) { if (nation_is_in_group(pnat, pgroup)) { list_items[set_count++] = nation_group_rule_name(pgroup); } } nation_groups_iterate_end; if (set_count > 0) { secfile_insert_str_vec(sfile, list_items, set_count, "%s.groups", path); } set_count = 0; nation_list_iterate(pnat->server.conflicts_with, pconfl) { list_items[set_count++] = nation_rule_name(pconfl); } nation_list_iterate_end; if (set_count > 0) { secfile_insert_str_vec(sfile, list_items, set_count, "%s.conflicts_with", path); } subsect_idx = 0; nation_leader_list_iterate(pnat->leaders, pleader) { path, subsect_idx); path, subsect_idx++); } nation_leader_list_iterate_end; if (pnat->server.rgb != NULL) { rgbcolor_save(sfile, pnat->server.rgb, "%s.color", path); } save_traits(pnat->server.traits, game.server.default_traits, sfile, path, "trait_"); if (!pnat->is_playable) { secfile_insert_bool(sfile, pnat->is_playable, "%s.is_playable", path); } if (pnat->barb_type != NOT_A_BARBARIAN) { "%s.barbarian_type", path); } if (strcmp(pnat->flag_graphic_str, "-")) { secfile_insert_str(sfile, pnat->flag_graphic_str, "%s.flag", path); } if (strcmp(pnat->flag_graphic_alt, "-")) { } subsect_idx = 0; governments_iterate(pgov) { struct ruler_title *prtitle; if (ruler_title_hash_lookup(pgov->ruler_titles, pnat, &prtitle)) { "%s.ruler_titles%d.government", path, subsect_idx); secfile_insert_str(sfile, ruler_title_male_untranslated_name(prtitle), "%s.ruler_titles%d.male_title", path, subsect_idx); "%s.ruler_titles%d.female_title", path, subsect_idx++); } } governments_iterate_end; set_count = 0; nation_list_iterate(pnat->server.civilwar_nations, pconfl) { list_items[set_count++] = nation_rule_name(pconfl); } nation_list_iterate_end; if (set_count > 0) { secfile_insert_str_vec(sfile, list_items, set_count, "%s.civilwar_nations", path); } save_tech_list(sfile, pnat->init_techs, path, "init_techs"); save_building_list(sfile, pnat->init_buildings, path, "init_buildings"); save_unit_list(sfile, pnat->init_units, path, "init_units"); if (pnat->init_government != game.server.default_government) { "%s.init_government", path); } set_count = 0; nation_city_list_iterate(pnat->server.default_cities, pncity) { bool list_started = FALSE; + strlen(")") + MAX_NUM_TERRAINS * (strlen(", ") + MAX_LEN_NAME)); strcpy(city_str[set_count], nation_city_name(pncity)); switch(nation_city_river_preference(pncity)) { case NCP_DISLIKE: strcat(city_str[set_count], " (!river"); list_started = TRUE; break; case NCP_LIKE: strcat(city_str[set_count], " (river"); list_started = TRUE; break; case NCP_NONE: break; } terrain_type_iterate(pterr) { const char *pref = NULL; switch(nation_city_terrain_preference(pncity, pterr)) { case NCP_DISLIKE: pref = "!"; break; case NCP_LIKE: pref = ""; break; case NCP_NONE: pref = NULL; break; } if (pref != NULL) { if (list_started) { strcat(city_str[set_count], ", "); } else { strcat(city_str[set_count], " ("); list_started = TRUE; } strcat(city_str[set_count], pref); } } terrain_type_iterate_end; if (list_started) { strcat(city_str[set_count], ")"); } list_items[set_count] = city_str[set_count]; set_count++; } nation_city_list_iterate_end; if (set_count > 0) { int i; secfile_insert_str_vec(sfile, list_items, set_count, "%s.cities", path); for (i = 0; i < set_count; i++) { FC_FREE(city_str[i]); } } secfile_insert_str(sfile, pnat->legend, "%s.legend", pathnation if (game.server.ruledit.embedded_nations != NULL) { int i; const char **tmp = fc_malloc(game.server.ruledit.embedded_nations_count * sizeof(char *)); /* Dance around the secfile_insert_str_vec() parameter type (requires extra const) * resrictions */ for (i = 0; i < game.server.ruledit.embedded_nations_count; i++) { tmp[i] = game.server.ruledit.embedded_nations[i]; } secfile_insert_str_vec(sfile, tmp, game.server.ruledit.embedded_nations_count, "ruledit.embedded_nations"); free(tmp if (game.server.ruledit.embedded_nations != NULL) { int sect_idx; for (sect_idx = 0; sect_idx < game.server.ruledit.embedded_nations_count; sect_idx++) { struct nation_type *pnat = nation_by_rule_name(game.server.ruledit.embedded_nations[sect_idx]); if (pnat == NULL) { log_error("Embedded nation \"%s\" not found!", game.server.ruledit.embedded_nations[sect_idx]); } else { save_nation(sfile, pnat, sect_idx); } } }save_nation(sfile, pnat, sect_idx++); } nations_iterate_end; }techtechENDREP DELTA 28455 0 624 SVNÊ2Î „V”e€aL >‰'•-€ƒuª\ŸV game.server.ruledit.embedded_nations = NULL; game.server.ruledit.embedded_nations_count = 0) { if (game.server.ruledit.nationlist != NULL) { free(game.server.ruledit.nationlist); game.server.ruledit.nationlist = NULL; } if (game.server.ruledit.embedded_nations != NULL) { for (i = 0; i < game.server.ruledit.embedded_nations_count; i++) { free(game.server.ruledit.embedded_nations[i]); } free(game.server.ruledit.embedded_nations); game.server.ruledit.embedded_nations = NULL; game.server.ruledit.embedded_nations_count = 0; }ENDREP DELTA 26403 33357 437 SVN‰,Š.w†7€†4€rhˆD; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nations = "expansionist_min = 35 expansionist_max = 80 trader_min = 35 trader_max = 80 aggressive_min = 35 aggressive_max = 8ENDREP DELTA 26923 1129 464 SVNš› „€–ƒ{; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nationsENDREP DELTA 26881 13311 1390 SVNÒØ&…0ö €ngÀ:Ùöh:Ïx€yE†~€ImÑ*if (num_role_units(L_PARTISAN) == 0 && effect_cumulative_max(EFT_INSPIRE_PARTISANS, NULL) > 0) { ruleset_error(LOG_ERROR, "Inspire_Partisans effect present, but no units with partisan role."); return FALSE;game.server.ruledit.embedded_nations != NULL) { int i; for (i = 0; i < game.server.ruledit.embedded_nations_count; i++) { struct nation_type *pnat = nation_by_rule_name(game.server.ruledit.embedded_nations[i]); if (pnathere's nation %s listed in embedded nations, but there's " "no such nation.", game.server.ruledit.embedded_nations[i]); ok = FALSE; } } }ENDREP DELTA 27288 0 400 SVN´´OA·¿l·‚ß Ô{ char **embedded_nations; size_t embedded_nations_coun11ENDREP DELTA 26544 0 106 SVN‰'Š/ †2€‚x†/; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nations = "ENDREP DELTA 27492 1168 900 SVN‚ž\‚Ÿd †w€‚—l†p; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nationsENDREP DELTA 27062 50 378 SVNƒ‹ƒŒz"l‡€}‡€G‚èZ˜’„Hƒ€m’…Pƒ…4; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nations[ngroup_barbarian] name=_("?nationgroup:Barbarian") match=0 hidden=truegroups="Barbarian"groups="Barbarian"ENDREP DELTA 27757 0 181226 SVN† † † † † † ƒSÅ5€ƒS„ÖxÅ0 vec = secfile_lookup_str_vec(file, &game.server.ruledit.embedded_nations_count, "ruledit.embedded_nations"); if (vec != NULL) { /* Copy to persistent vector */ game.server.ruledit.embedded_nations = fc_malloc(game.server.ruledit.embedded_nations_count * sizeof(char *)); for (j = 0; j < game.server.ruledit.embedded_nations_count; j++) { game.server.ruledit.embedded_nations[j] = fc_strdup(vec[j]); }ŒÀø[ü4‚h€vqÃ6€qãF•ãFstr, b->graphic_str); sz_strlcpy(packet.graphic_alt, b->graphic_alt); j = 0; requirement_vector_iterate(&b j = 0; requirement_vector_iterate(&b->obsolete_by, pobs) { packet.obs_reqs[j++] = *pobs; } requirement_vector_iterate_end; packet.obs_count = j; packet.build_cost = b->build_cost; packet.upkeep = b->upkeep; !ENDREP DELTA 26403 53405 437 SVN‰+Š3 †6€‚x†3; List of nations to embed to main nations.ruleset despite separate nationlist ; being used for other nations. ; embedded_nations = "ENDREP id: 3u.5qi.r28491/12826 type: file pred: 3u.5qi.r28455/652 count: 409 text: 28491 8991 639 26378 77da8abb0dcf3f961b0ce280290970a1 props: 11041 20516 112 0 779057fa36f350a13e5c75663a7074d1 cpath: /branches/S2_6/common/game.c copyroot: 27474 /branches/S2_6 id: 3v.5qi.r28491/13082 type: file pred: 3v.5ck.r27377/50 count: 350 text: 28491 10912 94 23119 5f0d3ce8eba576b2cd0fb4a5a180ec44 props: 11057 32714 112 0 2cf57fb6d11b8ba51814c6d419f0189e cpath: /branches/S2_6/common/game.h copyroot: 27474 /branches/S2_6 PLAIN K 11 Makefile.am V 24 file 5h.5ck.r25801/35234 K 14 achievements.c V 26 file qhc.5ck.r26905/214675 K 14 achievements.h V 26 file qhe.5ck.r26905/215849 K 9 actions.c V 25 file r7a.5qi.r27866/82257 K 9 actions.h V 23 file r7c.5qi.r27733/151 K 4 ai.c V 26 file 4go.5ck.r26905/200613 K 4 ai.h V 25 file 4gp.5qi.r28013/46427 K 6 aicore V 24 dir 18t.5qi.r27612/28586 K 6 base.c V 25 file 3jw.5ck.r27223/37135 K 6 base.h V 25 file 3jx.5qi.r27880/14407 K 9 borders.c V 25 file 4f0.5ck.r27223/36397 K 9 borders.h V 26 file 4f1.5ck.r26905/213493 K 10 calendar.c V 27 file 147p.5ck.r26905/214086 K 10 calendar.h V 27 file 147r.5ck.r26905/215265 K 8 capstr.c V 22 file dv.5ck.r24976/289 K 8 capstr.h V 24 file dw.5ck.r18858/97074 K 10 citizens.c V 26 file 6mx.5ck.r26905/203234 K 10 citizens.h V 26 file 6my.5ck.r26905/204108 K 6 city.c V 21 file q.5qi.r28483/717 K 6 city.h V 22 file 3q.5qi.r28483/967 K 13 clientutils.c V 26 file zj9.5ck.r26905/212022 K 13 clientutils.h V 26 file zjb.5ck.r26905/213199 K 8 combat.c V 22 file wp.5ck.r27137/126 K 8 combat.h V 24 file wq.5ck.r24573/25814 K 12 connection.c V 23 file un.5qi.r27858/9823 K 12 connection.h V 23 file uo.5qi.r27800/3589 K 9 culture.c V 27 file 104t.5ck.r26905/202652 K 9 culture.h V 27 file 104v.5ck.r26905/203523 K 8 dataio.c V 24 file 15r.5ck.r27027/2551 K 8 dataio.h V 24 file 15s.5ck.r26834/4081 K 11 diptreaty.c V 23 file 3r.5qi.r27518/9475 K 11 diptreaty.h V 23 file 3s.5qi.r27518/9734 K 10 disaster.c V 26 file b2m.5ck.r26905/214973 K 10 disaster.h V 26 file b2o.5ck.r26905/216145 K 9 effects.c V 24 file 2eo.5qi.r28102/6823 K 9 effects.h V 24 file 2ep.5qi.r28102/6309 K 8 events.c V 24 file 33h.5qi.r28399/2883 K 8 events.h V 23 file 3t.5qi.r28399/3138 K 8 extras.c V 24 file o9u.5qi.r28160/8754 K 8 extras.h V 24 file o9w.5qi.r28201/9903 K 12 fc_cmdhelp.c V 26 file 76j.5ck.r26905/216438 K 12 fc_cmdhelp.h V 26 file 76k.5ck.r26905/216731 K 14 fc_interface.c V 25 file 4up.5qi.r28204/10344 K 14 fc_interface.h V 25 file 4uq.5qi.r28204/10610 K 10 fc_types.h V 24 file 2ll.5qi.r28483/1220 K 15 featured_text.c V 26 file 4h3.5ck.r26905/212899 K 15 featured_text.h V 26 file 4h4.5ck.r26905/213786 K 6 game.c V 24 file 3u.5qi.r28491/12826 K 6 game.h V 24 file 3v.5qi.r28491/13082 K 19 generate_packets.py V 25 file 2f4.5ck.r27339/27191 K 12 government.c V 25 file he.5ck.r25382/101248 K 12 government.h V 24 file hf.5ck.r25151/83855 K 6 idex.c V 24 file qo.5ck.r25151/84101 K 6 idex.h V 24 file qp.5ck.r18858/92434 K 13 improvement.c V 22 file vb.5ck.r27036/203 K 13 improvement.h V 23 file vc.5ck.r26605/3666 K 5 map.c V 22 file r.5qi.r27606/1159 K 5 map.h V 23 file 41.5ck.r27446/5985 K 8 mapimg.c V 26 file 6n9.5ck.r26905/214381 K 8 mapimg.h V 26 file 6na.5ck.r26905/215559 K 15 metaknowledge.c V 26 file siq.5ck.r26905/206154 K 15 metaknowledge.h V 26 file sis.5ck.r26905/206455 K 10 movement.c V 25 file 2xv.5qi.r27978/10772 K 10 movement.h V 25 file 2xw.5ck.r26369/89711 K 13 multipliers.c V 27 file 197b.5ck.r26905/218478 K 13 multipliers.h V 27 file 197d.5ck.r26905/219360 K 18 name_translation.h V 26 file 4k1.5ck.r26905/217596 K 8 nation.c V 24 file il.5ck.r26881/35006 K 8 nation.h V 22 file im.5ck.r27000/284 K 9 packets.c V 23 file 43.5ck.r27337/9550 K 11 packets.def V 24 file 2f5.5qi.r27823/2646 K 9 packets.h V 24 file 44.5ck.r27336/26555 K 8 player.c V 22 file 45.5ck.r27147/309 K 8 player.h V 24 file 46.5ck.r26824/28997 K 14 requirements.c V 24 file 2wq.5qi.r28483/1482 K 14 requirements.h V 23 file 2wr.5qi.r27695/463 K 10 research.c V 25 file 4ro.5qi.r27900/33355 K 10 research.h V 23 file 4rp.5qi.r27751/838 K 10 rgbcolor.c V 26 file 6i6.5ck.r26905/218776 K 10 rgbcolor.h V 26 file 6i7.5ck.r26905/219068 K 6 road.c V 26 file 6pq.5ck.r26905/202943 K 6 road.h V 25 file 6pr.5qi.r27880/13889 K 10 scriptcore V 24 dir 75a.5qi.r28013/46165 K 11 spaceship.c V 23 file 98.5ck.r26349/9773 K 11 spaceship.h V 24 file 99.5ck.r26349/10015 K 12 specialist.c V 23 file 33f.5ck.r22372/258 K 12 specialist.h V 25 file 33g.5ck.r23560/15220 K 7 style.c V 26 file zzb.5ck.r26905/204398 K 7 style.h V 26 file zzd.5ck.r26905/204988 K 6 team.c V 23 file 33i.5ck.r25891/212 K 6 team.h V 23 file 33j.5ck.r26183/314 K 6 tech.c V 22 file t.5ck.r27149/7328 K 6 tech.h V 23 file u.5qi.r27880/13634 K 9 terrain.c V 24 file 2fp.5ck.r27149/7564 K 9 terrain.h V 24 file qs.5qi.r27880/14146 K 6 tile.c V 25 file 2ys.5qi.r27621/10104 K 6 tile.h V 25 file 2yt.5ck.r26109/28279 K 13 traderoutes.c V 25 file bf8.5qi.r27552/33422 K 13 traderoutes.h V 25 file bfa.5qi.r27552/33689 K 8 traits.h V 26 file 7k3.5ck.r26905/202065 K 6 unit.c V 23 file v.5qi.r27632/12531 K 6 unit.h V 24 file 48.5qi.r28013/44195 K 10 unitlist.c V 25 file 39m.5qi.r27612/25885 K 10 unitlist.h V 25 file 39n.5qi.r27612/26147 K 10 unittype.c V 24 file v9.5qi.r27612/26659 K 10 unittype.h V 22 file va.5qi.r28190/333 K 9 version.c V 23 file oe.5ck.r26171/7093 K 9 version.h V 23 file e7.5ck.r26171/7331 K 9 victory.c V 26 file qex.5ck.r26905/217020 K 9 victory.h V 26 file qez.5ck.r26905/217896 K 8 vision.c V 22 file 4dm.5qi.r27639/98 K 8 vision.h V 24 file 4dn.5ck.r24742/9986 K 12 workertask.c V 26 file llw.5ck.r26905/206753 K 12 workertask.h V 26 file lly.5ck.r26905/212604 K 10 worklist.c V 22 file o8.5qi.r28027/169 K 10 worklist.h V 24 file o9.5ck.r18858/98299 END ENDREP id: p.5qi.r28491/18635 type: dir pred: p.5qi.r28483/7042 count: 4177 text: 28491 13337 5285 5285 5bfa163a1ae8034af0f85eff6750d1e9 props: 23743 0 112 0 b2bc91bf125d83375389d51f25ff2c2f cpath: /branches/S2_6/common copyroot: 27474 /branches/S2_6 id: thd.5qp.r28491/18880 type: file pred: thd.5qp.r28004/112 count: 75 text: 28491 2740 6227 80931 f46c85004aac25064f10c1f3e96687ca props: 26905 29675 34 0 25e6c2f7558b7484000d4d090dea5b92 cpath: /branches/S2_6/tools/ruledit/rulesave.c copyroot: 21464 /trunk/tools PLAIN K 11 Makefile.am V 24 file sso.5js.r27114/4408 K 17 requirers_dlg.cpp V 25 file 1942.5qp.r27598/6725 K 15 requirers_dlg.h V 26 file 1944.5js.r26905/32801 K 11 ruledit.cpp V 25 file ssq.5rd.r28204/16946 K 9 ruledit.h V 25 file uyp.5js.r26905/33417 K 14 ruledit_qt.cpp V 24 file uyr.5qp.r27598/7266 K 12 ruledit_qt.h V 25 file uys.5js.r26905/28195 K 10 rulesave.c V 25 file thd.5qp.r28491/18880 K 10 rulesave.h V 25 file thf.5js.r26905/30946 K 16 tab_building.cpp V 25 file 1dyi.5qp.r27598/8068 K 14 tab_building.h V 26 file 1dyk.5js.r26905/30331 K 12 tab_misc.cpp V 24 file vcq.5qp.r27598/7803 K 10 tab_misc.h V 25 file vcs.5js.r26905/30028 K 14 tab_nation.cpp V 25 file 18bk.5qp.r27598/7533 K 12 tab_nation.h V 26 file 18bm.5js.r26905/29111 K 12 tab_tech.cpp V 24 file vct.5qp.r27598/6998 K 10 tab_tech.h V 25 file vcu.5js.r26905/27581 K 12 tab_unit.cpp V 25 file 1ej0.5qp.r27598/6456 K 10 tab_unit.h V 26 file 1ej2.5js.r26905/32496 K 10 validity.c V 25 file 1402.5js.r27470/1762 K 10 validity.h V 26 file 1404.5js.r26905/30640 END ENDREP id: ssm.5qp.r28491/20191 type: dir pred: ssm.5qp.r28204/18276 count: 121 text: 28491 19146 1032 1032 fa718af119c21a8b53e432df3ffc2a54 props: 28037 1441 261 0 b91e205c4bde11780878927c1dda815f cpath: /branches/S2_6/tools/ruledit copyroot: 21464 /trunk/tools PLAIN K 11 Makefile.am V 24 file 4pk.5js.r25961/6125 K 11 civmanual.c V 25 file 2m5.5rg.r28204/16675 K 10 download.c V 25 file 4pl.5js.r26905/35893 K 10 download.h V 25 file 4pm.5js.r26905/37103 K 9 modinst.c V 25 file bj7.5qp.r28204/16421 K 9 modinst.h V 24 file 76i.5js.r27300/3953 K 7 mpcli.c V 24 file y74.5js.r27418/2176 K 11 mpcmdline.c V 25 file 73v.5js.r26905/36184 K 11 mpcmdline.h V 25 file 73w.5js.r26905/37695 K 6 mpdb.c V 25 file bjc.5js.r26905/38590 K 6 mpdb.h V 25 file bje.5js.r26905/35017 K 12 mpgui_gtk2.c V 24 file 4pn.5lm.r27418/2417 K 12 mpgui_gtk3.c V 24 file 4pn.5ln.r27418/2681 K 12 mpgui_qt.cpp V 24 file a65.5qp.r27671/3327 K 10 mpgui_qt.h V 23 file a67.5qp.r27626/983 K 19 mpgui_qt_worker.cpp V 23 file vuz.5qp.r27626/465 K 17 mpgui_qt_worker.h V 25 file vv1.5js.r26905/38877 K 7 ruledit V 24 dir ssm.5qp.r28491/20191 END ENDREP id: 4pj.5qp.r28491/21304 type: dir pred: 4pj.5qp.r28204/19388 count: 260 text: 28491 20448 843 843 a23b86ccb519efd6820078639f734db7 props: 28037 2821 325 0 931541cd07e52416301ed56de9c70dfc cpath: /branches/S2_6/tools copyroot: 21464 /trunk/tools id: hew.5qi.r28491/21551 type: file pred: hew.5qi.r28460/292 count: 60 text: 28491 10142 740 27675 ae0e54c7ea2b244eca1c8aa5fcd76f8b props: 26905 55158 34 0 25e6c2f7558b7484000d4d090dea5b92 cpath: /branches/S2_6/server/rssanity.c copyroot: 27474 /branches/S2_6 id: 8w.5qi.r28491/21812 type: file pred: 8w.5qi.r28087/86 count: 770 text: 28491 11707 905 237108 803ff811afac0703bb0f7fa1e49038d1 props: 11085 367 112 0 7f6d12fc80ead5cc285da723cb8caa9d cpath: /branches/S2_6/server/ruleset.c copyroot: 27474 /branches/S2_6 PLAIN K 11 Makefile.am V 24 file 5q.5qi.r28430/14363 K 13 actiontools.c V 26 file 1p8q.5qi.r28430/14004 K 13 actiontools.h V 26 file 1p8t.5qi.r28430/14182 K 8 advisors V 24 dir 4n2.5qi.r28160/18627 K 9 aiiface.c V 25 file 4gm.5ck.r26905/55786 K 9 aiiface.h V 25 file 4gn.5ck.r26905/56374 K 9 animals.c V 25 file vnk.5ck.r26905/62972 K 9 animals.h V 25 file vnm.5ck.r26905/63257 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 22 file lw.5ck.r26434/594 K 11 barbarian.h V 24 file lx.5ck.r22667/36940 K 14 citizenshand.c V 25 file 6mz.5ck.r26905/56079 K 14 citizenshand.h V 25 file 6n0.5ck.r26905/56662 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 24 file 4g.5qi.r28175/37563 K 11 citytools.h V 24 file 4h.5qi.r28175/37820 K 10 cityturn.c V 22 file 4i.5qi.r27974/146 K 10 cityturn.h V 24 file 4j.5ck.r24742/16670 K 11 civserver.c V 24 file 4k.5qi.r28076/13954 K 10 commands.c V 24 file 2ly.5qi.r27913/1890 K 10 commands.h V 25 file 2lz.5qi.r28013/36715 K 13 connecthand.c V 25 file 2dw.5ck.r27336/16958 K 13 connecthand.h V 24 file 2dx.5ck.r23606/2057 K 9 console.c V 24 file dd.5ck.r24895/15492 K 9 console.h V 23 file de.5ck.r19183/7918 K 10 diplhand.c V 23 file 4m.5qi.r28336/3648 K 10 diplhand.h V 23 file 4n.5qi.r27518/5128 K 11 diplomats.c V 23 file vz.5qi.r28431/2062 K 11 diplomats.h V 23 file w0.5ck.r27461/1674 K 10 edithand.c V 25 file 3bk.5qi.r27612/42316 K 10 edithand.h V 25 file 4ez.5ck.r26905/64705 K 6 fcdb.c V 25 file 6l3.5ck.r26905/56956 K 6 fcdb.h V 25 file 6l4.5ck.r26905/57239 K 10 gamehand.c V 23 file 4o.5ck.r27042/1951 K 10 gamehand.h V 24 file 4p.5ck.r26564/23149 K 9 generator V 23 dir 2me.5ck.r27071/7433 K 10 handchat.c V 23 file 4q.5ck.r25915/6654 K 10 handchat.h V 24 file dj.5ck.r18270/28229 K 9 maphand.c V 22 file 13.5qi.r28416/610 K 9 maphand.h V 23 file 14.5ck.r24759/3742 K 6 meta.c V 23 file 4s.5ck.r27134/1241 K 6 meta.h V 23 file 4t.5ck.r27204/3095 K 6 mood.c V 26 file 112c.5ck.r26905/63547 K 6 mood.h V 26 file 112e.5ck.r26905/64129 K 8 notify.c V 25 file 4i2.5ck.r26905/57814 K 8 notify.h V 25 file 4i3.5ck.r26905/58681 K 9 plrhand.c V 24 file 4u.5ck.r27223/43157 K 9 plrhand.h V 23 file 4v.5ck.r26956/6294 K 8 report.c V 22 file vi.5qi.r28082/133 K 8 report.h V 24 file vj.5ck.r24891/20006 K 10 rssanity.c V 25 file hew.5qi.r28491/21551 K 10 rssanity.h V 25 file hey.5ck.r26905/55500 K 9 ruleset.c V 24 file 8w.5qi.r28491/21812 K 9 ruleset.h V 22 file 8x.5qi.r27725/899 K 13 sanitycheck.c V 22 file wi.5ck.r27281/872 K 13 sanitycheck.h V 24 file wj.5qi.r28076/13693 K 12 savecompat.c V 24 file qva.5ck.r27311/1041 K 12 savecompat.h V 25 file qvc.5ck.r27279/35421 K 10 savegame.c V 23 file vl.5qi.r27749/2766 K 10 savegame.h V 24 file vm.5ck.r20758/19233 K 11 savegame2.c V 24 file 4m0.5qi.r28336/3388 K 11 savegame2.h V 25 file 4m1.5ck.r26905/58971 K 7 score.c V 25 file 2eg.5ck.r25535/51502 K 7 score.h V 24 file 2eh.5ck.r21929/6179 K 9 scripting V 23 dir 31x.5qi.r28468/1251 K 8 sernet.c V 21 file 15.5qi.r28320/51 K 8 sernet.h V 23 file 4y.5ck.r23685/5129 K 10 settings.c V 23 file 2m0.5qi.r28420/318 K 10 settings.h V 24 file 2m1.5qi.r27996/4061 K 11 spacerace.c V 24 file 9a.5ck.r25063/30975 K 11 spacerace.h V 21 file 9b.0.r11338/1129 K 9 srv_log.c V 24 file 15t.5rh.r27915/1004 K 9 srv_log.h V 25 file 15u.5ri.r28013/36974 K 10 srv_main.c V 23 file vg.5qi.r28336/3126 K 10 srv_main.h V 22 file vh.5ck.r27134/762 K 11 stdinhand.c V 23 file 4z.5qi.r27996/3538 K 11 stdinhand.h V 24 file 50.5ck.r26100/15471 K 11 techtools.c V 25 file 33n.5qi.r28175/37034 K 11 techtools.h V 24 file 33o.5ck.r27058/2134 K 10 unithand.c V 23 file 18.5qi.r28431/2322 K 10 unithand.h V 24 file 19.5ck.r23027/66151 K 11 unittools.c V 24 file 1a.5qi.r28379/11395 K 11 unittools.h V 24 file 1b.5qi.r28379/11657 K 8 voting.c V 25 file 4ex.5ck.r26905/57525 K 8 voting.h V 25 file 4ey.5ck.r26905/58399 END ENDREP id: z.5qi.r28491/26023 type: dir pred: z.5qi.r28468/5453 count: 5894 text: 28491 22070 3940 3940 90c598b478df5975b4e76a1fe565aa9d props: 23990 448 166 0 e5026e1cb18fe57b41417951bfac7b19 cpath: /branches/S2_6/server copyroot: 27474 /branches/S2_6 id: i7.5rz.r28491/26270 type: file pred: i7.5jn.r26544/3998 count: 437 text: 28491 11031 157 1327 aeef51210ae3bf72044e572f1cdb5a84 props: 11090 1667 111 0 05d0c9433d86d9823b0e8b2536eb2299 cpath: /branches/S2_6/data/classic/nations.ruleset copyroot: 21163 /trunk/data/classic/nations.ruleset PLAIN K 11 Makefile.am V 25 file csz.5ck.r24528/33291 K 17 buildings.ruleset V 24 file 8t.5ji.r26806/24820 K 14 cities.ruleset V 23 file jx.5jj.r26544/4850 K 15 effects.ruleset V 25 file 2wy.5qr.r27506/15625 K 12 game.ruleset V 23 file u8.5qn.r27541/9628 K 19 governments.ruleset V 23 file hi.5jm.r26544/3431 K 15 nations.ruleset V 24 file i7.5rz.r28491/26270 K 10 script.lua V 24 file 330.5jo.r26787/4815 K 14 styles.ruleset V 24 file zzn.5ck.r26544/5409 K 13 techs.ruleset V 24 file 8u.5rn.r27881/48832 K 15 terrain.ruleset V 23 file gl.5rq.r28169/4200 K 13 units.ruleset V 24 file 8v.5qs.r28489/45498 END ENDREP id: csx.5qi.r28491/27177 type: dir pred: csx.5qi.r28489/46400 count: 297 text: 28491 26562 602 602 58d5ec7a48f47100f2d460c7278e2ea7 props: 21472 352 47 0 bf36bdb5202732a1b9a911cc1234183c cpath: /branches/S2_6/data/classic copyroot: 27474 /branches/S2_6 id: fbf.5qi.r28491/27431 type: file pred: fbf.5qi.r27492/44102 count: 16 text: 28491 0 2502 3493 27f29d818fe8f73dca3843b39f41bf30 cpath: /branches/S2_6/data/alien/nations.ruleset copyroot: 27474 /branches/S2_6 PLAIN K 17 buildings.ruleset V 26 file fax.5ck.r26403/106912 K 14 cities.ruleset V 26 file faz.5ck.r26403/107113 K 15 effects.ruleset V 24 file fb0.5qi.r27506/9779 K 12 game.ruleset V 24 file fb1.5qi.r28274/3072 K 19 governments.ruleset V 24 file fb2.5ck.r26719/9289 K 6 nation V 24 dir fb3.5qi.r27492/43844 K 22 nation_effects.ruleset V 24 file fbe.5ck.r25501/1912 K 15 nations.ruleset V 25 file fbf.5qi.r28491/27431 K 10 script.lua V 24 file fbg.5qi.r28449/3851 K 14 styles.ruleset V 26 file zzf.5ck.r26403/107507 K 13 techs.ruleset V 24 file fbh.5qi.r28274/2867 K 15 terrain.ruleset V 24 file fbi.5qi.r28222/7075 K 13 units.ruleset V 25 file fbj.5qi.r28489/46653 END ENDREP id: fav.5qi.r28491/28319 type: dir pred: fav.5qi.r28489/47540 count: 300 text: 28491 27642 664 664 8d8927da29f6e3ac3a323d49526a8652 props: 23744 7507 47 0 bf36bdb5202732a1b9a911cc1234183c cpath: /branches/S2_6/data/alien copyroot: 27474 /branches/S2_6 id: fuv.5qi.r28491/28572 type: file pred: fuv.5ck.r26403/91884 count: 12 text: 28491 2533 178 1327 65c1da5145aa23fae30486b48df04536 props: 21614 270881 34 0 25e6c2f7558b7484000d4d090dea5b92 cpath: /branches/S2_6/data/civ2civ3/nations.ruleset copyroot: 27474 /branches/S2_6 PLAIN K 11 Makefile.am V 25 file fuo.5ck.r24528/35815 K 17 buildings.ruleset V 25 file fuq.5qi.r28054/48150 K 14 cities.ruleset V 25 file fur.5ck.r26543/72644 K 15 effects.ruleset V 23 file fus.5qi.r28147/655 K 12 game.ruleset V 24 file fut.5qi.r28316/4841 K 19 governments.ruleset V 23 file fuu.5qi.r28061/148 K 15 nations.ruleset V 25 file fuv.5qi.r28491/28572 K 10 script.lua V 24 file fuw.5ck.r26787/5934 K 14 styles.ruleset V 25 file zzl.5ck.r26403/90643 K 13 techs.ruleset V 25 file fux.5qi.r27881/45306 K 15 terrain.ruleset V 25 file fuy.5qi.r28222/11028 K 13 units.ruleset V 25 file fuz.5qi.r28489/50063 END ENDREP id: fum.5qi.r28491/29469 type: dir pred: fum.5qi.r28489/50957 count: 351 text: 28491 28846 610 610 b61f6e989c5698fa38208651e889015c props: 21472 647 47 0 bf36bdb5202732a1b9a911cc1234183c cpath: /branches/S2_6/data/civ2civ3 copyroot: 27474 /branches/S2_6 id: cob.5qi.r28491/29724 type: file pred: cob.5ck.r26565/2923 count: 14 text: 28491 9655 277 1326 0c304c0fea60e66ad8e2a6cc33b875c5 cpath: /branches/S2_6/data/experimental/nations.ruleset copyroot: 27474 /branches/S2_6 PLAIN K 11 Makefile.am V 24 file 4k6.5qi.r28115/3107 K 17 buildings.ruleset V 25 file 4k8.5ck.r26806/27548 K 14 cities.ruleset V 25 file 4k9.5ck.r26403/93685 K 15 effects.ruleset V 24 file 4ka.5qi.r28115/2889 K 12 game.ruleset V 24 file 4kb.5qi.r27541/6223 K 19 governments.ruleset V 25 file 4kc.5ck.r26403/94709 K 15 nations.ruleset V 25 file cob.5qi.r28491/29724 K 10 script.lua V 24 file 4ke.5ck.r26787/8131 K 14 styles.ruleset V 25 file zzp.5ck.r26403/94093 K 13 techs.ruleset V 25 file 4kf.5qi.r27881/46458 K 15 terrain.ruleset V 24 file 4kg.5qi.r28169/5356 K 13 units.ruleset V 25 file 4kh.5qi.r28489/51211 END ENDREP id: 4k5.5qi.r28491/30567 type: dir pred: 4k5.5qi.r28489/52052 count: 404 text: 28491 29943 611 611 73c06726ce4eb6b95d606b72ebc0429d props: 17871 6210 47 0 c348519a2f02d6470452d3eca58ed415 cpath: /branches/S2_6/data/experimental copyroot: 27474 /branches/S2_6 id: 155j.5qi.r28491/30827 type: file pred: 155j.5ck.r26923/2276 count: 5 text: 28491 9961 153 3487 7f2bd2563ba45d7d6d3d40fdaa0b5977 cpath: /branches/S2_6/data/stub/nations.ruleset copyroot: 27474 /branches/S2_6 PLAIN K 17 buildings.ruleset V 27 file 1558.5ck.r26403/100043 K 14 cities.ruleset V 27 file 155a.5ck.r26403/100245 K 15 effects.ruleset V 26 file 155b.5ck.r26941/39714 K 12 game.ruleset V 23 file 155c.5qi.r27704/89 K 19 governments.ruleset V 27 file 155d.5ck.r26403/101238 K 7 nations V 25 dir 155e.5ck.r25199/67995 K 15 nations.ruleset V 26 file 155j.5qi.r28491/30827 K 10 script.lua V 26 file 155k.5ck.r25199/66100 K 14 styles.ruleset V 27 file 155l.5ck.r26403/100642 K 13 techs.ruleset V 27 file 155m.5ck.r26403/101041 K 15 terrain.ruleset V 26 file 155n.5ck.r27395/23126 K 13 units.ruleset V 25 file 155o.5qi.r27520/8625 END ENDREP id: 1556.5qi.r28491/31675 type: dir pred: 1556.5qi.r27704/928 count: 43 text: 28491 31039 623 623 4b43a2cc4c2e021e636803bc1b94cde8 cpath: /branches/S2_6/data/stub copyroot: 27474 /branches/S2_6 id: os.5qi.r28491/31870 type: file pred: os.5qi.r27492/3817 count: 41 text: 28491 11213 156 36836 3bd0a702473939d65f2dcb64a8f34a92 props: 11090 607 110 0 fdfdab56f53d2388a66f6a5ce0985f95 cpath: /branches/S2_6/data/civ1/nations.ruleset copyroot: 27474 /branches/S2_6 PLAIN K 11 Makefile.am V 24 file 8n.5ck.r24528/29370 K 17 buildings.ruleset V 24 file 8p.5ck.r26806/21110 K 14 cities.ruleset V 25 file 3c4.5f0.r26403/84202 K 15 effects.ruleset V 25 file 2ww.5qi.r27506/12124 K 12 game.ruleset V 24 file u6.5qi.r27541/11959 K 19 governments.ruleset V 24 file hg.5ck.r26403/85425 K 15 nations.ruleset V 24 file os.5qi.r28491/31870 K 10 script.lua V 25 file 3w7.5ck.r15828/10205 K 14 styles.ruleset V 25 file zzh.5ck.r26403/84727 K 13 techs.ruleset V 24 file 8q.5qi.r27881/43034 K 15 terrain.ruleset V 24 file gd.5ck.r27395/24145 K 13 units.ruleset V 24 file 8r.5qi.r28489/47792 END ENDREP id: 8l.5qi.r28491/32758 type: dir pred: 8l.5qi.r28489/48680 count: 626 text: 28491 32137 608 608 90652d6a3c5aa3aad5ffb8b432803c3a props: 4431 12663 46 0 e473fc4bd409d833d90929dfcb3a14b8 cpath: /branches/S2_6/data/civ1 copyroot: 27474 /branches/S2_6 id: 38l.5qi.r28491/33008 type: file pred: 38l.5qi.r27492/5215 count: 38 text: 28491 11397 284 50810 70b77e2c79998a0f9d4324739596666e props: 12677 937 34 0 25e6c2f7558b7484000d4d090dea5b92 cpath: /branches/S2_6/data/civ2/nations.ruleset copyroot: 27474 /branches/S2_6 PLAIN K 11 Makefile.am V 24 file gg.5ck.r24528/30633 K 17 buildings.ruleset V 24 file gm.5ck.r26806/22217 K 14 cities.ruleset V 25 file 3c4.5ck.r26403/87048 K 15 effects.ruleset V 23 file 2wx.5qi.r27558/153 K 12 game.ruleset V 24 file u7.5qi.r27541/13093 K 19 governments.ruleset V 24 file hh.5ck.r26403/88247 K 15 nations.ruleset V 25 file 38l.5qi.r28491/33008 K 10 script.lua V 25 file 3w8.5ck.r15828/11190 K 14 styles.ruleset V 25 file zzj.5ck.r26403/87549 K 13 techs.ruleset V 24 file gn.5qi.r27881/44170 K 15 terrain.ruleset V 24 file gi.5ck.r27395/25251 K 13 units.ruleset V 24 file go.5qi.r28489/48929 END ENDREP id: ge.5qi.r28491/33896 type: dir pred: ge.5qi.r28489/49814 count: 688 text: 28491 33276 607 607 1aeeac596ebc97ae3d9bea4b2ecc318f props: 4431 13678 46 0 e473fc4bd409d833d90929dfcb3a14b8 cpath: /branches/S2_6/data/civ2 copyroot: 27474 /branches/S2_6 id: cod.5qo.r28491/34146 type: file pred: cod.5es.r26403/97086 count: 13 text: 28491 12640 157 1331 ceede18d9c46b883d765b2de6010eb08 cpath: /branches/S2_6/data/multiplayer/nations.ruleset copyroot: 17702 /trunk/data/multiplayer PLAIN K 11 Makefile.am V 23 file 8f.5qo.r28115/4197 K 17 buildings.ruleset V 21 file 8t.5es.r27061/55 K 14 cities.ruleset V 24 file jx.5es.r26403/97868 K 15 effects.ruleset V 24 file 2wy.5qo.r28115/4470 K 12 game.ruleset V 23 file u8.5qo.r27541/7375 K 19 governments.ruleset V 24 file hi.5es.r26403/96530 K 15 nations.ruleset V 25 file cod.5qo.r28491/34146 K 10 script.lua V 24 file 330.5es.r27060/1752 K 14 styles.ruleset V 25 file zzr.5es.r26403/98416 K 13 techs.ruleset V 24 file 8u.5qo.r27881/47613 K 15 terrain.ruleset V 23 file gl.5qo.r28169/3040 K 13 units.ruleset V 24 file 8v.5qo.r28489/44338 END ENDREP id: 89.5qo.r28491/34988 type: dir pred: 89.5qo.r28489/45233 count: 1026 text: 28491 34375 600 600 0d45a49d35ab876c1f8da3bdaa0b0332 props: 4431 6509 46 0 e473fc4bd409d833d90929dfcb3a14b8 cpath: /branches/S2_6/data/multiplayer copyroot: 17702 /trunk/data/multiplayer PLAIN K 10 Freeciv.in V 24 file 2ph.5qi.r27619/1012 K 11 Makefile.am V 22 file 5l.5qi.r28152/143 K 5 alien V 24 dir fav.5qi.r28491/28319 K 10 alien.serv V 23 file fbk.5ck.r22305/900 K 6 amplio V 25 dir 340.5qi.r28370/166561 K 15 amplio.tilespec V 25 file 34t.5qi.r28018/12953 K 7 amplio2 V 25 dir 4na.5qi.r28370/170789 K 16 amplio2.tilespec V 24 file 4oe.5qi.r28451/4011 K 9 buildings V 22 dir 3co.0.r12672/18420 K 10 cimpletoon V 23 dir 78f.5ck.r27310/6329 K 19 cimpletoon.tilespec V 24 file 78i.5qi.r28451/3599 K 4 civ1 V 23 dir 8l.5qi.r28491/32758 K 9 civ1.serv V 23 file 8s.5ck.r20880/5228 K 4 civ2 V 23 dir ge.5qi.r28491/33896 K 9 civ2.serv V 23 file gj.5ck.r20880/5465 K 8 civ2civ3 V 24 dir fum.5qi.r28491/29469 K 13 civ2civ3.serv V 23 file fv0.5ck.r24155/112 K 7 classic V 24 dir csx.5qi.r28491/27177 K 12 classic.serv V 23 file n1h.5ck.r22608/212 K 12 database.lua V 24 file 6l2.5ck.r25798/5719 K 7 default V 22 dir 89.5qi.r27839/1757 K 12 default.serv V 25 file 2xa.5ck.r21163/12081 K 12 experimental V 24 dir 4k5.5qi.r28491/30567 K 17 experimental.serv V 24 file 4ki.5ck.r20880/5702 K 5 flags V 25 dir 2gl.5qi.r27802/156348 K 5 fonts V 24 dir 2lv.5bk.r13978/23004 K 19 freeciv-client.icns V 24 file 3fa.0.r12705/354534 K 18 freeciv-client.png V 24 file 33s.0.r12705/351588 K 19 freeciv-server.icns V 24 file 3fc.0.r12705/355017 K 18 freeciv-server.png V 25 file 3fd.5bk.r13732/27487 K 14 freeciv.rc-2.0 V 25 file 11h.5ck.r16281/11565 K 8 graphics V 24 dir 2x2.5qi.r28479/54976 K 13 gtk_menus.xml V 25 file 4hw.5ck.r26137/21048 K 12 helpdata.txt V 22 file y.5qi.r28169/2783 K 5 hex2t V 24 dir 3dv.5ck.r25100/56861 K 14 hex2t.tilespec V 24 file 3e7.5ck.r27090/8074 K 9 hexemplio V 24 dir 1dwq.5qi.r27684/1640 K 18 hexemplio.tilespec V 25 file 1dxl.5qi.r28451/3390 K 5 icons V 24 dir 4cb.5ck.r20125/42857 K 7 isophex V 24 dir 2pl.5ck.r25100/55852 K 16 isophex.tilespec V 24 file 2pz.5ck.r27090/9000 K 10 isotrident V 25 dir 13p.5qi.r28370/168179 K 19 isotrident.tilespec V 24 file 148.5ck.r27090/9247 K 4 misc V 23 dir jl.5qi.r28479/51214 K 11 multiplayer V 23 dir 89.5qo.r28491/34988 K 16 multiplayer.serv V 24 file 2xa.5et.r17702/1849 K 6 nation V 23 dir ot.5qi.r28313/30466 K 8 override V 23 dir 14ks.5ck.r25526/900 K 9 scenarios V 22 dir io.5rr.r28174/1326 K 8 stdmusic V 23 dir 146c.5ck.r25526/607 K 18 stdmusic.musicspec V 27 file 10u1.5ck.r25054/880190 K 9 stdsounds V 23 dir 32g.5ck.r26512/8768 K 19 stdsounds.soundspec V 25 file 32y.5qi.r28399/13543 K 4 stub V 25 dir 1556.5qi.r28491/31675 K 9 stub.serv V 26 file 155p.5ck.r25199/65944 K 6 themes V 23 dir 2m6.5qi.r28037/4373 K 16 toonhex.tilespec V 25 file 1ef5.5qi.r28451/3804 K 7 trident V 24 dir eb.5qi.r28371/177188 K 16 trident.tilespec V 23 file k4.5qi.r28451/4272 K 7 wonders V 24 dir 3qc.5qi.r28479/57211 END ENDREP id: w.5qi.r28491/38045 type: dir pred: w.5qi.r28489/55100 count: 3361 text: 28491 35254 2778 2778 15799c99928ddb550bde8fd180617d15 props: 11355 32945 104 0 b8b28eed1bd4d902aad8c746f9403748 cpath: /branches/S2_6/data copyroot: 27474 /branches/S2_6 PLAIN K 9 ABOUT-NLS V 24 file fu.5ck.r27270/69307 K 7 AUTHORS V 24 file 5u.5ck.r22143/14016 K 7 COPYING V 19 file 1h.0.r9643/400 K 9 ChangeLog V 26 file 6l.5ck.r27473/7455495 K 7 INSTALL V 21 file 6.5qi.r27778/886 K 11 Makefile.am V 22 file 59.5ck.r27213/499 K 4 NEWS V 24 file 6m.5ck.r25634/30702 K 6 README V 20 file 7.0.r4421/96382 K 2 ai V 22 dir 8.5qi.r28285/55509 K 10 autogen.sh V 24 file 12o.5ck.r25794/4003 K 9 bootstrap V 23 dir 2p5.5ck.r27114/4172 K 6 client V 22 dir d.5qi.r28489/59888 K 6 common V 22 dir p.5qi.r28491/18635 K 12 configure.ac V 24 file 149.5qi.r28464/8089 K 4 data V 22 dir w.5qi.r28491/38045 K 12 dependencies V 24 dir 2yu.5qi.r28381/20478 K 3 doc V 23 dir k7.5qi.r28474/10264 K 10 fc_version V 24 file 2lo.5qj.r28399/8932 K 11 gen_headers V 24 dir 1hsw.5qi.r28269/5092 K 2 m4 V 23 dir 12p.5qi.r28447/3593 K 7 scripts V 23 dir 2yo.5ck.r27213/1366 K 6 server V 22 dir z.5qi.r28491/26023 K 5 tests V 22 dir 2g9.5ck.r27023/734 K 5 tools V 24 dir 4pj.5qp.r28491/21304 K 12 translations V 25 dir t0a.5qi.r28466/945895 K 7 utility V 22 dir 1c.5qi.r28299/3132 K 3 vms V 25 dir u9.5ck.r21528/1396085 K 5 win32 V 23 dir 2eu.5qi.r28346/1712 END ENDREP id: 3.5qi.r28491/39465 type: dir pred: 3.5qi.r28489/61307 count: 19254 text: 28491 38293 1159 1159 8d86d0f8864c10431e813d9525ad9ad3 props: 28037 14463 292 0 9e1d5de0253c723466868990c52c129f cpath: /branches/S2_6 copyroot: 27474 /branches/S2_6 PLAIN K 5 S1_14 V 21 dir 3.21.r18109/18803 K 4 S2_0 V 21 dir 3.10x.r21862/4178 K 4 S2_1 V 22 dir 3.59e.r20026/11014 K 4 S2_2 V 21 dir 3.5cy.r21861/5036 K 4 S2_3 V 21 dir 3.5f2.r24391/5183 K 4 S2_4 V 23 dir 3.5ii.r28485/117006 K 4 S2_5 V 22 dir 3.5kv.r28480/61727 K 4 S2_6 V 22 dir 3.5qi.r28491/39465 K 11 freeciv-web V 22 dir 3.5bl.r13594/14918 END ENDREP id: 1.0.r28491/40065 type: dir pred: 1.0.r28489/61907 count: 9042 text: 28491 39709 343 343 29c69fbb646fc298a08e63e525dadc26 cpath: /branches copyroot: 0 / PLAIN K 8 branches V 20 dir 1.0.r28491/40065 K 4 tags V 19 dir 2.0.r28441/6378 K 5 trunk V 21 dir 3.5ck.r28490/7465 K 7 website V 21 dir 3ge.0.r22980/2263 END ENDREP id: 0.0.r28491/40388 type: dir pred: 0.0.r28490/7857 count: 28491 text: 28491 40222 153 153 306dc68e7cf4ea07af857389e05ed449 cpath: / copyroot: 0 / 3v.5qi.t28490-1 modify true false /branches/S2_6/common/game.h i7._0.t28490-1 modify true false /branches/S2_6/data/classic/nations.ruleset os.5qi.t28490-1 modify true false /branches/S2_6/data/civ1/nations.ruleset 38l.5qi.t28490-1 modify true false /branches/S2_6/data/civ2/nations.ruleset 8w.5qi.t28490-1 modify true false /branches/S2_6/server/ruleset.c cod.5qo.t28490-1 modify true false /branches/S2_6/data/multiplayer/nations.ruleset fbf.5qi.t28490-1 modify true false /branches/S2_6/data/alien/nations.ruleset fuv.5qi.t28490-1 modify true false /branches/S2_6/data/civ2civ3/nations.ruleset thd.5qp.t28490-1 modify true false /branches/S2_6/tools/ruledit/rulesave.c 3u.5qi.t28490-1 modify true false /branches/S2_6/common/game.c cob.5qi.t28490-1 modify true false /branches/S2_6/data/experimental/nations.ruleset 155j.5qi.t28490-1 modify true false /branches/S2_6/data/stub/nations.ruleset hew.5qi.t28490-1 modify true false /branches/S2_6/server/rssanity.c 40388 40537