DELTA 21069 74385 14561
SVN  ρSνmeδtp H  H}& R~] G₯~8 T³0! JΈ: \Β=h WΝ> SΟ.F PΟ1; MΥt) HΪ~B eΰ#7 bκsa/* tolua: functions to map features
 ** Support code for Lua bindings.
 ** Written by Waldemar Celes
 ** TeCGraf/PUC-Rio
 ** Apr 2003
 ** $Id: tolua_map.c,v 1.10 2011/01/13 13:43:46 fabraham Exp $
 */

/* This code is free software; you can redistribute it and/or modify it.
 ** The software provided hereunder is on an "as is" basis, and
 ** the author has no obligation to provide maintenance, support, updates,
 ** enhancements, or modifications.
 */

#include "tolua.h"
#include "tolua_event.h"
#include "lauxlib.h"

#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int tolua_bnd_takeownership(lua_State *L);

static char toluaname[128] = "tolua.";
static const char* TOLUANAME (const char* n)  
{
  sprintf(&toluaname[6],"%.120s",n);
  return toluaname;
}

/* Create metatable
 * Create and register new metatable
 */
void tolua_newmetatable (lua_State* L, const char* name)
{
  if (luaL_newmetatable(L,TOLUANAME(name)))
  {
    lua_pushvalue(L,-1);
    lua_pushstring(L,name);
    lua_rawset(L,LUA_REGISTRYINDEX);
  }

  /* set meta events */
  tolua_classevents(L);
  lua_pop(L,1);
}

/* Get metatable
 * Access already created metatable
 */
void tolua_getmetatable (lua_State* L, const char* name)
{
  luaL_getmetatable(L,TOLUANAME(name));
}

/* Map super classes
 * It sets 'name' as being also a 'base', mapping all super classes of 'base' in 'name'
 */
{
  /* push registry.super */
  lua_pushstring(L,"tolua_super");
  lua_rawget(L,LUA_REGISTRYINDEX);    /* stack: super */
  tolua_getmetatable(L,name);          /* stack: super mt */
  lua_rawget(L,-2);                   /* stack: super table */
  if (lua_isnil(L,-1))
  {
    /* create table */
    lua_pop(L,1);
    lua_newtable(L);                    /* stack: super table */
    tolua_getmetatable(L,name);          /* stack: super table mt */
    lua_pushvalue(L,-2);                /* stack: super table mt table */
    lua_rawset(L,-4);                   /* stack: super table */
  }

  /* set base as super class */
  lua_pushstring(L,base);
  lua_pushboolean(L,1);
  lua_rawset(L,-3);                    /* stack: super table */

  /* set all super class of base as super class of name */
  lua_rawget(L,-3);                   /* stack: super table base_table */
  if (lua_istable(L,-1))
  {
    /* traverse base table */
    lua_pushnil(L);  /* first key */
    while (lua_next(L,-2) != 0)
    {
      /* stack: ... base_table key value */
      lua_pushvalue(L,-2);    /* stack: ... base_table key value key */
      lua_insert(L,-2);       /* stack: ... base_table key key value */
      lua_rawset(L,-5);       /* stack: ... base_table key */
    }
  }
  lua_pop(L,3);                       /* stack: <empty> */
}


/* Map inheritance
 */
static void mapinheritance (lua_State* L, const char* name, const char* base)
{
  /* set metatable inheritance */
  tolua_getmetatable(L,name);
  if (base && *base)
    tolua_getmetatable(L,base);
  else
    tolua_getmetatable(L,"tolua_commonclass");
  lua_setmetatable(L,-2);
  lua_pop(L,1);
}

/* Object type
 */
static int tolua_bnd_type (lua_State* L)
{
  tolua_typename(L,lua_gettop(L));
  return 1;
}

/* Take ownership
 */
int tolua_bnd_takeownership (lua_State* L)
{
  lua_CFunction func = 0;
  if (lua_isuserdata(L,1))
  {
    if (lua_getmetatable(L,1))        /* if metatable? */
    {
      void* u;
      lua_pushstring(L,".collector");
      lua_rawget(L,-2);
      func = lua_iscfunction(L,-1) ? lua_tocfunction(L,-1) : NULL; 
      lua_pop(L,2);
      u = *((void**)lua_touserdata(L,1));
      tolua_clone(L,u,func);
    }
  }
  lua_pushboolean(L,func!=0);
  return 1;
}

/* Release ownership
 */
static int tolua_bnd_releaseownership (lua_State* L)
{
  int done = 0;
  if (lua_isuserdata(L,1))
  {
    void* u = *((void**)lua_touserdata(L,1));
    lua_pushstring(L,"tolua_gc");
    lua_rawget(L,LUA_REGISTRYINDEX);
    lua_pushlightuserdata(L,u);
    lua_rawget(L,-2);
    lua_pushlightuserdata(L,u);
    lua_pushnil(L);
    lua_rawset(L,-4);
    done = 1;
  }
  lua_pushboolean(L,done!=0);
  return 1;
}

/* Type casting
 */
static int tolua_bnd_cast (lua_State* L)
{
  void* v = tolua_tousertype(L,1,NULL);
  const char* s = tolua_tostring(L,2,NULL);
  if (!v)
    lua_pushnil(L);
  else if (v && s) {
    tolua_getmetatable(L,s);             /* stack: ubox[u] super super[mt] flag mt */
    if (lua_isnil(L,-1)) {
      tolua_error(L,"Unknown 'type' for 'tolua.cast' function",NULL);
    }
    tolua_pushusertype(L,v,s);
  }
  else {
  }
  return 1;
}

/* Release
** Function to be called by a Lua code that uses a function to explicitly
** release a mapped object. This function is automatically called by all
** destructors bound by tolua and by all collected objects.
*/
static int tolua_bnd_release (lua_State* L)
{
  void* value = tolua_tousertype(L,1,NULL);
  if (value)
    tolua_release(L,value);
  return 1;
}

static void tolua_push_globals_table (lua_State* L)
{
  lua_pushvalue(L,LUA_REGISTRYINDEX); /* registry */
  lua_pushnumber(L,LUA_RIDX_GLOBALS); /* registry globalsindex */
  lua_rawget(L, -2);                  /* registry registry[globalsindex] */
  lua_remove(L, -2);                  /* registry[globalsindex] */
}

TOLUA_API void tolua_open (lua_State* L)
{
  int top = lua_gettop(L);
  lua_pushstring(L,"tolua_opened");
  lua_rawget(L,LUA_REGISTRYINDEX);
  if (!lua_isboolean(L,-1))
  {
    lua_pushstring(L,"tolua_opened"); lua_pushboolean(L,1); lua_rawset(L,LUA_REGISTRYINDEX);
    lua_pushstring(L,"tolua_ubox"); 
    lua_newtable(L); 
    lua_pushvalue(L, -1); /* metatable: for weak table */
    lua_pushstring(L, "__mode");
    lua_pushstring(L, "v");
    lua_rawset(L, -3);
    lua_setmetatable(L, -2);
    lua_rawset(L,LUA_REGISTRYINDEX);
    lua_pushstring(L,"tolua_peer"); 
    lua_newtable(L); 
    lua_pushvalue(L, -1); /* metatable: for weak table */
    lua_pushstring(L, "__mode");
    lua_pushstring(L, "k");
    lua_rawset(L, -3);
    lua_setmetatable(L, -2);
    lua_rawset(L,LUA_REGISTRYINDEX);
    lua_pushstring(L,"tolua_super"); lua_newtable(L); lua_rawset(L,LUA_REGISTRYINDEX);

    tolua_newmetatable(L,"tolua_commonclass");

    tolua_module(L,NULL,0);
    tolua_beginmodule(L,NULL);
    tolua_module(L,"tolua",0);
    tolua_beginmodule(L,"tolua");
    tolua_function(L,"type",tolua_bnd_type);
    tolua_function(L,"takeownership",tolua_bnd_takeownership);
    tolua_function(L,"releaseownership",tolua_bnd_releaseownership);
    tolua_function(L,"cast",tolua_bnd_cast);
    tolua_function(L,"release",tolua_bnd_release);
    tolua_endmodule(L);
    tolua_endmodule(L);
  }
  lua_settop(L,top);
}

/* Copy a C object
 */
{
  void* clone = (void*)malloc(size);
  if (clone)
    memcpy(clone,value,size);
  else
    tolua_error(L,"insuficient memory",NULL);
  return clone;
}


/* Release userdata from tolua
 */
TOLUA_API void tolua_release (lua_State* L, void* value)
{
  void** p;
  lua_pushstring(L,"tolua_ubox");
  lua_rawget(L,LUA_REGISTRYINDEX); /* stack: ubox */
  lua_pushlightuserdata(L,value);  /* stack: ubox u */
  /* set userdata pointer to NULL: this pointer might be reused by C/C++ */
  lua_rawget(L,-2);                /* stack: ubox ud */
  p = (void**)lua_touserdata(L,-1);
  if (p) *p = NULL;
      /* fixed bug: thanks to Ulrik Sverdrup -- it was 1 instead of -1 */
  lua_pop(L,1);                    /* stack: ubox */
  /* remove value from ubox */
  lua_pushlightuserdata(L,value);  /* stack: ubox u */
  lua_pushnil(L);
  lua_rawset(L,-3);
  lua_pop(L,1);
}

/* Do clone
 */
TOLUA_API void* tolua_clone (lua_State* L, void* value, lua_CFunction func)
{
  lua_pushstring(L,"tolua_gc");
  lua_rawget(L,LUA_REGISTRYINDEX);
  lua_pushlightuserdata(L,value);
  lua_pushcfunction(L,func);
  lua_rawset(L,-3);
  lua_pop(L,1);
  return value;
}

/* Register a usertype
 * It maps 'const type' as being also a 'type'
 */
TOLUA_API void tolua_usertype (lua_State* L, const char* type)
{
  char ctype[128] = "const ";
  strncat(ctype,type,120);

  tolua_newmetatable(L,ctype);         /* create both metatables */
  tolua_newmetatable(L,type);

  mapsuper(L,type,ctype);             /* 'type' is also a 'const type' */
}


/* Begin module
 * It pushes the module (or class) table on the stack
 */
TOLUA_API void tolua_beginmodule (lua_State* L, const char* name)
{
  if (name)
  {
    lua_pushstring(L,name);
    lua_rawget(L,-2);
  }
  else
    tolua_push_globals_table(L);
}

/* End module
 * It pops the module (or class) from the stack
 */
TOLUA_API void tolua_endmodule (lua_State* L)
{
  lua_pop(L,1);
}

/* Map module
 * It creates a new module
 */
#if 1
TOLUA_API void tolua_module (lua_State* L, const char* name, int hasvar)
{
  if (name)
  {
    /* tolua module */
    lua_pushstring(L,name);
    lua_rawget(L,-2);
    if (!lua_istable(L,-1))  /* check if module already exists */
    {
      lua_pop(L,1);
      lua_newtable(L);
      lua_pushstring(L,name);
      lua_pushvalue(L,-2);
      lua_rawset(L,-4);       /* assing module into module */
    }
  }
  else
    tolua_push_globals_table(L);
  if (hasvar)
  {
    {
      /* create metatable to get/set C/C++ variable */
      lua_newtable(L);
      tolua_moduleevents(L);
      if (lua_getmetatable(L,-2))
      lua_setmetatable(L,-2);
    }
  }
  lua_pop(L,1);               /* pop module */
}
#else
TOLUA_API void tolua_module (lua_State* L, const char* name, int hasvar)
{
  if (name)
  {
    /* tolua module */
    lua_pushstring(L,name);
    lua_newtable(L);
  }
  else
    tolua_push_globals_table(L);
  if (hasvar)
  {
    /* create metatable to get/set C/C++ variable */
    lua_newtable(L);
    tolua_moduleevents(L);
    if (lua_getmetatable(L,-2))

    lua_setmetatable(L,-2);
  }
  if (name)
    lua_rawset(L,-3);       /* assing module into module */
  else
    lua_pop(L,1);           /* pop global table */
}
#endif

/* Map C class
 */
TOLUA_API void tolua_cclass (lua_State* L, const char* lname, const char* name, const char* base, lua_CFunction col)
{
  char cname[128] = "const ";
  char cbase[128] = "const ";
  strncat(cname,name,120);
  strncat(cbase,base,120);

  mapinheritance(L,name,base);
  mapinheritance(L,cname,name);

  mapsuper(L,cname,cbase);
  mapsuper(L,name,base);

  lua_pushstring(L,lname);
  tolua_getmetatable(L,name);
  lua_pushstring(L,".collector");
  lua_pushcfunction(L,col);
  lua_rawset(L,-3);              /* store collector function into metatable */
}

/* Map function
 * It assigns a function into the current module (or class)
 */
TOLUA_API void tolua_function (lua_State* L, const char* name, lua_CFunction func)
{
  lua_pushstring(L,name);
  lua_pushcfunction(L,func);
  lua_rawset(L,-3);
}

/* Map constant number
 * It assigns a constant number into the current module (or class)
 */
TOLUA_API void tolua_constant (lua_State* L, const char* name, double value)
{
  lua_pushstring(L,name);
  tolua_pushnumber(L,value);
  lua_rawset(L,-3);
}


/* Map variable
 * It assigns a variable into the current module (or class)
 */
{
  /* get func */
  lua_pushstring(L,".get");
  lua_rawget(L,-2);
  if (!lua_istable(L,-1))
  {
    /* create .get table, leaving it at the top */
    lua_pop(L,1);
    lua_newtable(L);
    lua_pushstring(L,".get");
    lua_pushvalue(L,-2);
    lua_rawset(L,-4);
  }
  lua_pushstring(L,name);
  lua_pushcfunction(L,get);
  lua_rawset(L,-3);                  /* store variable */
  lua_pop(L,1);                      /* pop .get table */

  /* set func */
  if (set)
  {
    lua_pushstring(L,".set");
    lua_rawget(L,-2);
    if (!lua_istable(L,-1))
    {
      /* create .set table, leaving it at the top */
      lua_pop(L,1);
      lua_newtable(L);
      lua_pushstring(L,".set");
      lua_pushvalue(L,-2);
      lua_rawset(L,-4);
    }
    lua_pushstring(L,name);
    lua_pushcfunction(L,set);
    lua_rawset(L,-3);                  /* store variable */
    lua_pop(L,1);                      /* pop .set table */
  }
}

/* Access const array
 * It reports an error when trying to write into a const array
 */
static int const_array (lua_State* L)
{
  luaL_error(L,"value of const array cannot be changed");
  return 0;
}

/* Map an array
 * It assigns an array into the current module (or class)
 */
{
  lua_pushstring(L,".get");
  lua_rawget(L,-2);
  if (!lua_istable(L,-1))
  {
    /* create .get table, leaving it at the top */
    lua_pop(L,1);
    lua_newtable(L);
    lua_pushstring(L,".get");
    lua_pushvalue(L,-2);
    lua_rawset(L,-4);
  }
  lua_pushstring(L,name);

  lua_newtable(L);           /* create array metatable */
  lua_pushvalue(L,-1);
  lua_setmetatable(L,-2);    /* set the own table as metatable (for modules) */
  lua_pushstring(L,"__index");
  lua_pushcfunction(L,get);
  lua_rawset(L,-3);
  lua_pushstring(L,"__newindex");
  lua_pushcfunction(L,set?set:const_array);
  lua_rawset(L,-3);

  lua_rawset(L,-3);                  /* store variable */
  lua_pop(L,1);                      /* pop .get table */
}

ENDREP
DELTA 21069 353038 12049
SVN  ήΪ\&Χi’ H₯ J₯}b N¬< N°=G EΊ~‘/* tolua: event functions
** Support code for Lua bindings.
** Written by Waldemar Celes
** TeCGraf/PUC-Rio
** Apr 2003
** $Id: tolua_event.c,v 1.7 2011/01/13 13:43:46 fabraham Exp $
*/

/* This code is free software; you can redistribute it and/or modify it. 
** The software provided hereunder is on an "as is" basis, and 
** the author has no obligation to provide maintenance, support, updates,
** enhancements, or modifications. 
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "tolua.h"

#include "tolua_event.h"

/* Store at peer
	* It stores, creating the corresponding table if needed,
	* the pair key/value in the corresponding peer table
*/
static void storeatpeer (lua_State* L, int index)
{
	 /* stack: key value (to be stored) */
		lua_pushstring(L,"tolua_peer");
		lua_rawget(L,LUA_REGISTRYINDEX);        /* stack: k v peer */
  lua_pushvalue(L, index);
		lua_rawget(L,-2);                       /* stack: k v peer peer[u] */
		if (!lua_istable(L,-1))
		{
			lua_pop(L,1);                          /* stack: k v peer */
			lua_newtable(L);                       /* stack: k v peer table */
			lua_pushvalue(L,index);
			lua_pushvalue(L,-2);                   /* stack: k v peer table u table */
			lua_rawset(L,-4);                      /* stack: k v peer peer[u]=table */
		}
		lua_insert(L,-4);                       /* put table before k */
		lua_pop(L,1);                           /* pop peer */
		lua_rawset(L,-3);                       /* store at table */
		lua_pop(L,1);                           /* pop peer[u] */
}

/* Module index function
*/
static int module_index_event (lua_State* L)
{
	lua_pushstring(L,".get");
	lua_rawget(L,-3);
	if (lua_istable(L,-1))
	{
		lua_pushvalue(L,2);  /* key */
		lua_rawget(L,-2);
		if (lua_iscfunction(L,-1))
		{
			lua_call(L,0,1);
			return 1;
		}
		else if (lua_istable(L,-1))
			return 1;
	}
	/* call old index meta event */
	if (lua_getmetatable(L,1))
	{
		lua_pushstring(L,"__index");
		lua_rawget(L,-2);
		lua_pushvalue(L,1);
		lua_pushvalue(L,2);
		if (lua_isfunction(L,-1))
		{
			lua_call(L,2,1);
			return 1;
		}
		else if (lua_istable(L,-1))
		{
			lua_gettable(L,-3);
			return 1;
		}
	}
	lua_pushnil(L);
	return 1;
}

/* Module newindex function
*/
static int module_newindex_event (lua_State* L)
{
	lua_pushstring(L,".set");
	lua_rawget(L,-4);
	if (lua_istable(L,-1))
	{
		lua_pushvalue(L,2);  /* key */
		lua_rawget(L,-2);
		if (lua_iscfunction(L,-1))
		{
			lua_pushvalue(L,1); /* only to be compatible with non-static vars */
			lua_pushvalue(L,3); /* value */
			lua_call(L,2,0);
			return 0;
		}
	}
	/* call old newindex meta event */
	if (lua_getmetatable(L,1) && lua_getmetatable(L,-1))
	{
		lua_pushstring(L,"__newindex");
		lua_rawget(L,-2);
		if (lua_isfunction(L,-1))
		{
		 lua_pushvalue(L,1);
		 lua_pushvalue(L,2);
		 lua_pushvalue(L,3);
			lua_call(L,3,0);
		}
	}
	lua_settop(L,3);
	lua_rawset(L,-3);
	return 0;
}

/* Class index function
	* If the object is a userdata (ie, an object), it searches the field in 
	* the alternative table stored in the corresponding "peer" table.
*/
static int class_index_event (lua_State* L)
{
  int t = lua_type(L,1);
	if (t == LUA_TUSERDATA)
	{
		/* Access alternative table */
		lua_pushstring(L,"tolua_peer");
		lua_rawget(L,LUA_REGISTRYINDEX);        /* stack: obj key peer */
		lua_pushvalue(L,1);
		lua_rawget(L,-2);                       /* stack: obj key peer peer[u] */
		if (lua_istable(L,-1))
		{
			lua_pushvalue(L,2);  /* key */
			lua_rawget(L,-2);                      /* stack: obj key peer peer[u] value */
			if (!lua_isnil(L,-1))
				return 1;
		}
		lua_settop(L,2);                        /* stack: obj key */
		/* Try metatables */
		lua_pushvalue(L,1);                     /* stack: obj key obj */
		while (lua_getmetatable(L,-1))
		{                                       /* stack: obj key obj mt */
			lua_remove(L,-2);                      /* stack: obj key mt */
			if (lua_isnumber(L,2))                 /* check if key is a numeric value */
			{
				/* try operator[] */
				lua_pushstring(L,".geti");    
				lua_rawget(L,-2);                      /* stack: obj key mt func */
				if (lua_isfunction(L,-1))
				{
					lua_pushvalue(L,1);
					lua_pushvalue(L,2);
					lua_call(L,2,1);
					return 1;
				}
   }
			else
			{
			 lua_pushvalue(L,2);                    /* stack: obj key mt key */

				if (!lua_isnil(L,-1))
					return 1;
				else
					lua_pop(L,1);
				/* try C/C++ variable */
				lua_pushstring(L,".get");    
				lua_rawget(L,-2);                      /* stack: obj key mt tget */
				if (lua_istable(L,-1))
				{
					lua_pushvalue(L,2);
					if (lua_iscfunction(L,-1))
					{
						lua_pushvalue(L,1);
						lua_pushvalue(L,2); 
						lua_call(L,2,1);
						return 1;
					}
					else if (lua_istable(L,-1))
					{
						/* deal with array: create table to be returned and cache it in peer */
						void* u = *((void**)lua_touserdata(L,1));
						lua_newtable(L);                /* stack: obj key mt value table */
						lua_pushstring(L,".self");
						lua_pushlightuserdata(L,u);
						lua_rawset(L,-3);               /* store usertype in ".self" */
						lua_insert(L,-2);               /* stack: obj key mt table value */
						lua_setmetatable(L,-2);         /* set stored value as metatable */
						lua_pushvalue(L,-1);            /* stack: obj key met table table */
						lua_insert(L,-2);               /*  stack: obj key mt table key table */
						storeatpeer(L,1);               /* stack: obj key mt table */
						return 1;
					}
				}
			}
			lua_settop(L,3);
		}
		lua_pushnil(L);
		return 1;
	}
	else if (t== LUA_TTABLE)
	{
		module_index_event(L);
		return 1;
	}
	lua_pushnil(L);
	return 1;
}

/* Newindex function
	* It first searches for a C/C++ varaible to be set.
	* an object) or in the own table (that represents the class or module).
*/
static int class_newindex_event (lua_State* L)
{
 int t = lua_type(L,1);
	if (t == LUA_TUSERDATA)
	{
	 /* Try accessing a C/C++ variable to be set */
		lua_getmetatable(L,1);
		while (lua_istable(L,-1))                /* stack: t k v mt */
		{
			if (lua_isnumber(L,2))                 /* check if key is a numeric value */
			{
				/* try operator[] */
				lua_pushstring(L,".seti");    
				lua_rawget(L,-2);                      /* stack: obj key mt func */
				if (lua_isfunction(L,-1))
				{
					lua_pushvalue(L,1);
					lua_pushvalue(L,2);
					lua_pushvalue(L,3);
					lua_call(L,3,0);
					return 0;
				}
   }
			else
			{
				lua_pushstring(L,".set");
				lua_rawget(L,-2);                      /* stack: t k v mt tset */
				if (lua_istable(L,-1))
				{
					lua_pushvalue(L,2);
					lua_rawget(L,-2);                     /* stack: t k v mt tset func */
					if (lua_iscfunction(L,-1))
					{
						lua_pushvalue(L,1);
						lua_pushvalue(L,3); 
						lua_call(L,2,0);
						return 0;
					}
					lua_pop(L,1);                          /* stack: t k v mt tset */
				}
				lua_pop(L,1);                           /* stack: t k v mt */
					lua_pushnil(L);
				lua_remove(L,-2);                       /* stack: t k v mt */
			}
		}
	 lua_settop(L,3);                          /* stack: t k v */

		/* then, store as a new field */
		storeatpeer(L,1);
	}
	else if (t== LUA_TTABLE)
	{
		module_newindex_event(L);
	}
	return 0;
}

static int do_operator (lua_State* L, const char* op)
{
	if (lua_isuserdata(L,1))
	{
		/* Try metatables */
		lua_pushvalue(L,1);                     /* stack: op1 op2 */
		while (lua_getmetatable(L,-1))
		{                                       /* stack: op1 op2 op1 mt */
			lua_remove(L,-2);                      /* stack: op1 op2 mt */
			lua_pushstring(L,op);                  /* stack: op1 op2 mt key */
			lua_rawget(L,-2);                      /* stack: obj key mt func */
			if (lua_isfunction(L,-1))
			{
				lua_pushvalue(L,1);
				lua_pushvalue(L,2); 
				lua_call(L,2,1);
				return 1;
			}
			lua_settop(L,3);
		}
	}
 if (strcmp(op,".eq")==0)
 {
  lua_pushboolean(L,lua_rawequal(L,1,2));
  return 1;
 }
 else
 {
	 tolua_error(L,"Attempt to perform operation on an invalid operand",NULL);
	 return 0;
 }
}

static int class_add_event (lua_State* L)
{
	return do_operator(L,".add");
}

static int class_sub_event (lua_State* L)
{
	return do_operator(L,".sub");
}

static int class_mul_event (lua_State* L)
{
	return do_operator(L,".mul");
}

static int class_div_event (lua_State* L)
{
	return do_operator(L,".div");
}

static int class_lt_event (lua_State* L)
{
	return do_operator(L,".lt");
}

static int class_le_event (lua_State* L)
{
	return do_operator(L,".le");
}

static int class_eq_event (lua_State* L)
{
	return do_operator(L,".eq");
}

static int class_gc_event (lua_State* L)
{
  if (lua_type(L,1) == LUA_TUSERDATA)
  {
    int top = lua_gettop(L);
    void* u = *((void**)lua_touserdata(L,1));
    lua_pushstring(L,"tolua_gc");
    lua_rawget(L,LUA_REGISTRYINDEX);   /* gc */
    lua_pushlightuserdata(L,u);        /* gc u */
    lua_rawget(L,-2);                  /* gc func */
    if (!lua_isnil(L, -1))
    {
      /* remove entry from table */
      lua_pushlightuserdata(L,u);
      lua_pushnil(L);
      lua_rawset(L,-4);
      if (lua_isfunction(L,-1)) {
        /* call collect function */
        lua_pushvalue(L,1);            /* tolua_gc tolua_gc.u(func) u */
        lua_call(L,1,0);               /* tolua_gc */
      }
      else if (lua_isuserdata(L,-1) && *((void**)lua_touserdata(L,-1))==NULL) {
        /* free object */
        free(u);
        tolua_release(L,u);                /* unmap from tolua tables */
      }
    }
    lua_settop(L,top);
  }
	return 0;
}




/* Register module events
	* It expects the metatable on the top of the stack
*/
TOLUA_API void tolua_moduleevents (lua_State* L)
{
	lua_pushstring(L,"__index");
	lua_pushcfunction(L,module_index_event);
	lua_rawset(L,-3);
	lua_pushstring(L,"__newindex");
	lua_pushcfunction(L,module_newindex_event);
	lua_rawset(L,-3);
}

/* Check if the object on the top has a module metatable
*/
TOLUA_API int tolua_ismodulemetatable (lua_State* L)
{
	int r = 0;
	if (lua_getmetatable(L,-1))
	{
		lua_pushstring(L,"__index");
		lua_rawget(L,-2);
		r = (lua_tocfunction(L,-1) == module_index_event);
		lua_pop(L,2);
	}
	return r;
}

/* Register class events
	* It expects the metatable on the top of the stack
*/
TOLUA_API void tolua_classevents (lua_State* L)
{
	lua_pushstring(L,"__index");
	lua_pushcfunction(L,class_index_event);
	lua_rawset(L,-3);
	lua_pushstring(L,"__newindex");
	lua_pushcfunction(L,class_newindex_event);
	lua_rawset(L,-3);
 
	lua_pushstring(L,"__add");
	lua_pushcfunction(L,class_add_event);
	lua_rawset(L,-3);
	lua_pushstring(L,"__sub");
	lua_pushcfunction(L,class_sub_event);
	lua_rawset(L,-3);
	lua_pushstring(L,"__mul");
	lua_pushcfunction(L,class_mul_event);
	lua_rawset(L,-3);
	lua_pushstring(L,"__div");
	lua_pushcfunction(L,class_div_event);
	lua_rawset(L,-3);

	lua_pushstring(L,"__lt");
	lua_pushcfunction(L,class_lt_event);
	lua_rawset(L,-3);
	lua_pushstring(L,"__le");
	lua_pushcfunction(L,class_le_event);
	lua_rawset(L,-3);
	lua_pushstring(L,"__eq");
	lua_pushcfunction(L,class_eq_event);
	lua_rawset(L,-3);

	lua_pushstring(L,"__gc");
	lua_pushcfunction(L,class_gc_event);
	lua_rawset(L,-3);
}

ENDREP
DELTA 21069 12206 3065
SVN  kj- J7 Mw"/* tolua
** Support code for Lua bindings.
** Written by Waldemar Celes
** TeCGraf/PUC-Rio
** Aug 2003
** $Id: tolua.c,v 1.4 2009/11/24 16:45:12 fabraham Exp $
*/

/* This code is free software; you can redistribute it and/or modify it. 
** The software provided hereunder is on an "as is" basis, and 
** enhancements, or modifications. 
*/

#include "tolua.h"

#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#ifndef LUA_SOURCE
int tolua_tolua_open(lua_State *L);
#endif


static void help (void)
{
 fprintf(stderr,"\n"
         "usage: tolua [options] input_file\n"
         "\n"
         "Command line options are:\n"
         "  -v       : print version information.\n"
         "  -o  file : set output file; default is stdout.\n"
         "  -H  file : create include file.\n"
         "  -n  name : set package name; default is input file root name.\n"
         "  -p       : parse only.\n"
         "  -h       : print this message.\n"
         "Should the input file be omitted, stdin is assumed;\n"
         "in that case, the package name must be explicitly set.\n\n" 
        );
}

static void version (void)
{
 fprintf(stderr, "%s (written by W. Celes)\n",TOLUA_VERSION);
}

static void setfield (lua_State* L, int table, char* f, char* v)
{
 lua_pushstring(L,f);
 lua_pushstring(L,v);
 lua_settable(L,table);
}

static void error (char* o)
{
 fprintf(stderr,"tolua: unknown option '%s'\n",o);
 help();
 exit(1);
}

int main (int argc, char* argv[])
{
 lua_State* L = luaL_newstate();
 luaL_openlibs(L);

 lua_pushstring(L,TOLUA_VERSION); lua_setglobal(L,"TOLUA_VERSION");

 if (argc==1)
 {
  help();
  return 0;
 }
 else
 {
  int i, t;
  lua_newtable(L);
  lua_pushvalue(L,-1);
  lua_setglobal(L,"flags");
  t = lua_gettop(L);
  for (i=1; i<argc; ++i)
  {
   if (*argv[i] == '-')
   {
    switch (argv[i][1])
    {
     case 'v': version(); return 0;
     case 'h': help(); return 0;
     case 'p': setfield(L,t,"p",""); break;
     case 'P': setfield(L,t,"P",""); break;
     case 'o': setfield(L,t,"o",argv[++i]); break;
     case 'n': setfield(L,t,"n",argv[++i]); break;
     case 'H': setfield(L,t,"H",argv[++i]); break;
     default: error(argv[i]); break;
    }
   }
   else
   {
    setfield(L,t,"f",argv[i]);
    break;
   }
  }
  lua_pop(L,1);
 }

#ifndef LUA_SOURCE
 {
  tolua_tolua_open(L);
 }
#else
 {
  char* p;
  char  path[BUFSIZ];
  strcpy(path,argv[0]);
  p = strrchr(path,'/');
  if (p==NULL) p = strrchr(path,'\\');
  p = (p==NULL) ? path : p+1;
  sprintf(p,"%s","../src/bin/lua/");
  lua_pushstring(L,path); lua_setglobal(L,"path");
  strcat(path,"all.lua");
  if (luaL_dofile(L,path)) {
   printf("error loading all.lua: %s\n",lua_tostring(L,-1));
   return 1;
  }
 }
#endif
 return 0;
}
ENDREP
PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a65.5js.r26905/27283
type: file
pred: a65.5js.r26143/2821
count: 15
text: 26143 168 236 12397 f76fe555f2801dd621cec7f828b48aa5
props: 26905 27236 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpgui_qt.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vcu.5js.r26905/27581
type: file
pred: vcu.5js.r24948/9337
count: 5
text: 24948 6456 1046 1957 f59879ec1a05fbdeddfc21c910c80065
props: 26905 27534 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_tech.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 18bk.5js.r26905/27885
type: file
pred: 18bk.5js.r25650/8316
count: 1
text: 25650 2877 3388 3374 1bbeb4316e16ee162d502ca3cfb76d0a
props: 26905 27838 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_nation.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: uys.5js.r26905/28195
type: file
pred: uys.5js.r26649/1737
count: 9
text: 26649 616 895 1795 444709ed492cc60c7c71201792357ec8
props: 26905 28148 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/ruledit_qt.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vcq.5js.r26905/28499
type: file
pred: vcq.5js.r26675/6538
count: 9
text: 26675 0 6509 8471 7de74127cf3ec968a8145542e2b35164
props: 26905 28452 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_misc.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1dyi.5js.r26905/28802
type: file
pred: 1dyi.5js.r26733/3218
count: 3
text: 26733 0 1252 6371 1c20c5b1b70131a2b1d4a9974bbb7fc7
props: 26905 28755 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_building.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 18bm.5js.r26905/29111
type: file
pred: 18bm.5js.r25650/7144
count: 1
text: 25650 0 1184 1170 fb81c49ce5c29c5cb6acf9a2544fa0cb
props: 26905 29064 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_nation.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1402.5js.r26905/29416
type: file
pred: 1402.5js.r26665/14033
count: 7
text: 26665 1182 481 6324 216063b9a4262d8eccb775e883e57994
props: 26905 29369 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/validity.c
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: thd.5js.r26905/29722
type: file
pred: thd.5js.r26684/17433
count: 64
text: 26684 6291 294 75840 772d762b1ade422e8b085798bb7e2299
props: 26905 29675 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/rulesave.c
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vcs.5js.r26905/30028
type: file
pred: vcs.5js.r26632/5110
count: 6
text: 26632 4564 121 1195 cff9c6f0b1a51bf8cced6fba168239dc
props: 26905 29981 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_misc.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1dyk.5js.r26905/30331
type: file
pred: 1dyk.5js.r26605/9995
count: 2
text: 26605 1844 103 1481 c5d789d90cf28051d65208a1a53636cf
props: 26905 30284 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_building.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1404.5js.r26905/30640
type: file
pred: 1404.5js.r26665/14436
count: 3
text: 26665 7504 132 1116 50468a537a2ce39424764eb75c4fed07
props: 26905 30593 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/validity.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: thf.5js.r26905/30946
type: file
pred: thf.5js.r25650/7915
count: 3
text: 25650 1860 301 1025 c9fc194c62ef9d0ce6ba9752d0069fb0
props: 26905 30899 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/rulesave.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1ej0.5js.r26905/31249
type: file
pred: 1ej0.5js.r26733/3422
count: 3
text: 26733 1280 1359 6257 d3655d5755b344c77f93d905bcef3040
props: 26905 31202 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_unit.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1942.5js.r26905/31557
type: file
pred: 1942.5js.r25790/3689
count: 1
text: 25790 0 2468 2454 7f8f3ecad98f250fadb230c6fce519c5
props: 26905 31510 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/requirers_dlg.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: ssq.5m2.r26905/31867
type: file
pred: ssq.5m2.r26103/7729
count: 11
text: 26103 0 417 3608 3b1c8e241126f9b066cd3f87228a7145
props: 26905 31820 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/ruledit.cpp
copyroot: 23685 /trunk/tools/ruledit/ruledit.cpp

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vct.5js.r26905/32189
type: file
pred: vct.5js.r26733/3626
count: 11
text: 26733 2666 524 11642 0f20b45b17ddd66320d8b567bb97992d
props: 26905 32142 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_tech.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1ej2.5js.r26905/32496
type: file
pred: 1ej2.5js.r26665/13833
count: 2
text: 26665 7388 87 1383 348338299f5daa7b0a94d466df22829a
props: 26905 32449 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/tab_unit.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1944.5js.r26905/32801
type: file
pred: 1944.5js.r25790/3867
count: 1
text: 25790 2481 1195 1181 638da331cea7656588520b888f5ef5ee
props: 26905 32754 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/requirers_dlg.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: uyr.5js.r26905/33112
type: file
pred: uyr.5js.r26649/1537
count: 13
text: 26649 0 590 7255 fc61480ad6df2f4024a8ae3bdc532b70
props: 26905 33065 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/ruledit_qt.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: uyp.5js.r26905/33417
type: file
pred: uyp.5js.r26103/8147
count: 3
text: 26103 7408 54 807 c35b4e0bb0c76444667c66250e4714c0
props: 26905 33370 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/ruledit/ruledit.h
copyroot: 21464 /trunk/tools

PLAIN
K 11
Makefile.am
V 24
file sso.5js.r26621/8122
K 17
requirers_dlg.cpp
V 26
file 1942.5js.r26905/31557
K 15
requirers_dlg.h
V 26
file 1944.5js.r26905/32801
K 11
ruledit.cpp
V 25
file ssq.5m2.r26905/31867
K 9
ruledit.h
V 25
file uyp.5js.r26905/33417
K 14
ruledit_qt.cpp
V 25
file uyr.5js.r26905/33112
K 12
ruledit_qt.h
V 25
file uys.5js.r26905/28195
K 10
rulesave.c
V 25
file thd.5js.r26905/29722
K 10
rulesave.h
V 25
file thf.5js.r26905/30946
K 16
tab_building.cpp
V 26
file 1dyi.5js.r26905/28802
K 14
tab_building.h
V 26
file 1dyk.5js.r26905/30331
K 12
tab_misc.cpp
V 25
file vcq.5js.r26905/28499
K 10
tab_misc.h
V 25
file vcs.5js.r26905/30028
K 14
tab_nation.cpp
V 26
file 18bk.5js.r26905/27885
K 12
tab_nation.h
V 26
file 18bm.5js.r26905/29111
K 12
tab_tech.cpp
V 25
file vct.5js.r26905/32189
K 10
tab_tech.h
V 25
file vcu.5js.r26905/27581
K 12
tab_unit.cpp
V 26
file 1ej0.5js.r26905/31249
K 10
tab_unit.h
V 26
file 1ej2.5js.r26905/32496
K 10
validity.c
V 26
file 1402.5js.r26905/29416
K 10
validity.h
V 26
file 1404.5js.r26905/30640
END
ENDREP
id: ssm.5js.r26905/34723
type: dir
pred: ssm.5js.r26733/4864
count: 100
text: 26905 33670 1040 1040 0d0771cd7298acb5600b396062c331e4
props: 24238 799 125 0 7fe4abae77ea160c7595b9a9ec251e53
cpath: /trunk/tools/ruledit
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: bje.5js.r26905/35017
type: file
pred: bje.5ck.r20961/5129
count: 1
text: 20961 3520 1442 1428 0f16727278520cc36b828a3976488444
props: 26905 34970 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpdb.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a67.5js.r26905/35309
type: file
pred: a67.5js.r24225/10956
count: 6
text: 24225 4235 47 1625 d1f2eedf4dcfbcbd0a9c3f7ccc81eabf
props: 26905 35262 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpgui_qt.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: y74.5js.r26905/35604
type: file
pred: y74.5js.r26143/3015
count: 6
text: 26143 0 140 4224 854898a702108dc42ffa1c40ed7cf25f
props: 26905 35557 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpcli.c
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4pl.5js.r26905/35893
type: file
pred: 4pl.5js.r24802/49
count: 34
text: 24802 0 22 12969 c363ca014acfed4a39a04c03b3f07ce6
props: 26905 35846 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/download.c
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 73v.5js.r26905/36184
type: file
pred: 73v.5js.r24286/1008
count: 10
text: 24286 850 130 3990 100bc28ef5025b398f9c2527cdd760ca
props: 26905 36137 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpcmdline.c
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4pn.5lm.r26905/36480
type: file
pred: 4pn.5lm.r26143/3200
count: 50
text: 26143 432 309 19592 02c9d6a4b737d07a30fc361e168bf1e9
props: 26905 36433 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpgui_gtk2.c
copyroot: 23303 /trunk/tools/mpgui_gtk2.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4pn.5ln.r26905/36791
type: file
pred: 4pn.5ln.r26143/3407
count: 51
text: 26143 767 2025 19894 86e3fac703f4b521d73140825eaee194
props: 26905 36744 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpgui_gtk3.c
copyroot: 23303 /trunk/tools/mpgui_gtk3.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4pm.5js.r26905/37103
type: file
pred: 4pm.5js.r24756/10690
count: 22
text: 24756 10443 27 1976 f45d4d7371ad23b1c1e1be1fe6d5f4ca
props: 26905 37056 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/download.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: bj7.5js.r26905/37400
type: file
pred: bj7.5ck.r21139/5112
count: 3
text: 21139 1971 1382 5308 3f069e286a856f5d6f4c0690ab6de644
props: 26905 37353 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/modinst.c
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 73w.5js.r26905/37695
type: file
pred: 73w.5ck.r20760/16287
count: 2
text: 20760 14907 202 928 0a5ed85995c22a384cfe9e31ba457efa
props: 26905 37648 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpcmdline.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vuz.5js.r26905/37992
type: file
pred: vuz.5js.r23875/3825
count: 3
text: 23875 290 206 2115 20f00fe4c0821aadbc80aaf1fb7ec96f
props: 26905 37945 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpgui_qt_worker.cpp
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76i.5js.r26905/38295
type: file
pred: 76i.5js.r24986/3800
count: 10
text: 24986 3600 174 2309 cc3a4e93c3a3294937726d0418513dac
props: 26905 38248 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/modinst.h
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: bjc.5js.r26905/38590
type: file
pred: bjc.5ck.r21142/258
count: 2
text: 21142 0 232 3705 520acfb609ea75ccf472d0a0f247aff9
props: 26905 38543 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpdb.c
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vv1.5js.r26905/38877
type: file
pred: vv1.5js.r23868/2651
count: 2
text: 23868 0 99 1382 22ac05dbd05f975c5e72ea37f4e0751b
props: 26905 38830 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/tools/mpgui_qt_worker.h
copyroot: 21464 /trunk/tools

PLAIN
K 11
Makefile.am
V 24
file 4pk.5js.r25961/6125
K 11
civmanual.c
V 22
file 2m5.5jt.r26872/57
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.5js.r26905/37400
K 9
modinst.h
V 25
file 76i.5js.r26905/38295
K 7
mpcli.c
V 25
file y74.5js.r26905/35604
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 25
file 4pn.5lm.r26905/36480
K 12
mpgui_gtk3.c
V 25
file 4pn.5ln.r26905/36791
K 12
mpgui_qt.cpp
V 25
file a65.5js.r26905/27283
K 10
mpgui_qt.h
V 25
file a67.5js.r26905/35309
K 19
mpgui_qt_worker.cpp
V 25
file vuz.5js.r26905/37992
K 17
mpgui_qt_worker.h
V 25
file vv1.5js.r26905/38877
K 7
ruledit
V 24
dir ssm.5js.r26905/34723
END
ENDREP
id: 4pj.5js.r26905/39990
type: dir
pred: 4pj.5js.r26872/1160
count: 227
text: 26905 39128 849 849 d6876afa26b1753a475d2bb08bdc029c
props: 25526 0 300 0 6fd3530dab91e62ecb398957a0a66b2e
cpath: /trunk/tools
copyroot: 21464 /trunk/tools

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4uo.5ck.r26905/40272
type: file
pred: 4uo.5ck.r26786/1546
count: 7
text: 26786 935 402 4988 9c67ca1db452b3fdc98e45d345f425bc
props: 26905 40225 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/bitvector.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: agw.5ck.r26905/40563
type: file
pred: agw.5ck.r25441/4225
count: 4
text: 25441 80 99 2088 d5b260d2944db58f7f2f33f4c4201c11
props: 26905 40516 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/registry.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 7po.5ck.r26905/40851
type: file
pred: 7po.5ck.r22403/4000
count: 4
text: 22403 2703 148 1456 2e09a56c75205536b76c6b427defecf6
props: 26905 40804 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/registry.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6m8.5ck.r26905/41142
type: file
pred: 6m8.5ck.r25113/3120
count: 13
text: 25113 925 2169 8023 8184b2e99038a5a5e1b0eb67ca5032aa
props: 26905 41095 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/netfile.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hy.5ck.r26905/41433
type: file
pred: 4hy.5ck.r19259/354456
count: 7
text: 19259 313288 935 12835 35407037add1f1050ddf6f3573baeb0a
props: 26905 41386 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/string_vector.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6m9.5ck.r26905/41734
type: file
pred: 6m9.5ck.r25113/3306
count: 6
text: 25113 47 145 1789 0644c0619c829ee982c0a1690d844c2d
props: 26905 41687 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/netfile.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hz.5ck.r26905/42022
type: file
pred: 4hz.5ck.r18858/86585
count: 6
text: 18858 22917 123 2828 c76317f8d86d41ce821bb9f3b97cc3d1
props: 26905 41975 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/string_vector.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1brp.5ck.r26905/42320
type: file
pred: 1brp.5ck.r26188/18672
count: 1
text: 26188 0 9390 9376 e4c7195ef2ed35a40748977c60ec17d0
props: 26905 42273 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/specpq.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: bw9.5ck.r26905/42610
type: file
pred: bw9.5ck.r23829/16311
count: 5
text: 23829 3836 2555 6639 76bc4b7f8c3fce25c1f2455326e95b0b
props: 26905 42563 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/section_file.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: axo.5ck.r26905/42907
type: file
pred: axo.5ck.r25151/46252
count: 7
text: 25151 32836 433 3310 d395d92c3ef6dad1ec0f5f72ef9982b3
props: 26905 42860 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/section_file.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 57v.5ck.r26905/43204
type: file
pred: 57v.5ck.r25151/46444
count: 14
text: 25151 32217 355 34107 1463bd31dba5bd8fa983701545f24d42
props: 26905 43157 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/genhash.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6hv.5ck.r26905/43498
type: file
pred: 6hv.5ck.r22919/56
count: 12
text: 22919 0 29 8755 bfae5df2387ecfd191916472862a6d34
props: 26905 43451 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/fcthread.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 57w.5ck.r26905/43784
type: file
pred: 57w.5ck.r25151/46634
count: 6
text: 25151 32598 210 6004 e41d3c6f7d80fea6e3c5163face001fe
props: 26905 43737 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/genhash.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6hw.5ck.r26905/44076
type: file
pred: 6hw.5ck.r22515/1120
count: 9
text: 22515 0 1092 2007 abba09487796ba39de289044f349ecd9
props: 26905 44029 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/fcthread.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 731.5ck.r26905/44365
type: file
pred: 731.5ck.r24336/1030
count: 6
text: 24336 206 795 4406 834475126907bb65a2e8125c9b011c95
props: 26905 44318 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/fcbacktrace.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 16x3.5ck.r26905/44658
type: file
pred: 16x3.5ck.r25488/687
count: 2
text: 25488 0 505 3452 3696660a29329c143475252046a12d72
props: 26905 44611 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/registry_xml.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4h5.5ck.r26905/44951
type: file
pred: 4h5.5ck.r19259/364399
count: 3
text: 19259 346162 55 2071 8375636c6087b7bb71311e1527dc5eff
props: 26905 44904 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/iterator.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 732.5ck.r26905/45245
type: file
pred: 732.5ck.r24336/1218
count: 2
text: 24336 0 181 908 701a89c3222e52d63e2dfa329d47b926
props: 26905 45198 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/fcbacktrace.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 16x5.5ck.r26905/45535
type: file
pred: 16x5.5ck.r25488/875
count: 2
text: 25488 533 125 1051 c29665ddd5cbbefeb3f86167fb13a190
props: 26905 45488 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/registry_xml.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4f3.5ck.r26905/45830
type: file
pred: 4f3.5ck.r18858/83640
count: 5
text: 18858 215 596 4854 01bcd29517cf9ef11c866a928ed290be
props: 26905 45783 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/iterator.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ku.5ck.r26905/46121
type: file
pred: 4ku.5ck.r22171/86
count: 4
text: 22171 0 57 22803 639a9e483fc984e2e73185652b3d14a8
props: 26905 46074 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/fc_utf8.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4un.5ck.r26905/46406
type: file
pred: 4un.5ck.r26786/1362
count: 7
text: 26786 0 907 9250 217cd220d5a8ee9cc69b1810423ffb39
props: 26905 46359 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/bitvector.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4kv.5ck.r26905/46695
type: file
pred: 4kv.5ck.r18858/83826
count: 2
text: 18858 78395 158 4318 2f077751183db0024958d87e94bf41d4
props: 26905 46648 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/fc_utf8.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 57x.5ck.r26905/46987
type: file
pred: 57x.5ck.r26468/47582
count: 10
text: 26468 46934 617 31141 43aae1ec4b51c5f6f982ab5f14e8dff5
props: 26905 46940 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/utility/spechash.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 2gg.5ck.r26188/18425
K 9
astring.c
V 23
file h5.5ck.r22395/1264
K 9
astring.h
V 23
file h6.5ck.r20479/1668
K 11
bitvector.c
V 25
file 4un.5ck.r26905/46406
K 11
bitvector.h
V 25
file 4uo.5ck.r26905/40272
K 12
capability.c
V 24
file 7p.5ck.r24916/10883
K 12
capability.h
V 24
file 7q.5ck.r18858/85852
K 12
distribute.c
V 26
file 2lp.5ck.r19259/362511
K 12
distribute.h
V 25
file 2lq.5ck.r18858/87951
K 9
fc_utf8.c
V 25
file 4ku.5ck.r26905/46121
K 9
fc_utf8.h
V 25
file 4kv.5ck.r26905/46695
K 13
fcbacktrace.c
V 25
file 731.5ck.r26905/44365
K 13
fcbacktrace.h
V 25
file 732.5ck.r26905/45245
K 9
fciconv.c
V 25
file 2g7.5ck.r26800/15337
K 9
fciconv.h
V 25
file 2g8.5ck.r18858/89144
K 8
fcintl.c
V 23
file k3.5ck.r23282/1304
K 8
fcintl.h
V 24
file fw.5ck.r24144/32431
K 10
fcthread.c
V 25
file 6hv.5ck.r26905/43498
K 10
fcthread.h
V 25
file 6hw.5ck.r26905/44076
K 20
generate_specenum.py
V 24
file 4ia.5ck.r23282/1051
K 9
genhash.c
V 25
file 57v.5ck.r26905/43204
K 9
genhash.h
V 25
file 57w.5ck.r26905/43784
K 9
genlist.c
V 24
file 51.5ck.r25012/26982
K 9
genlist.h
V 24
file 52.5ck.r20422/10948
K 11
inputfile.c
V 23
file h9.5ck.r25070/3455
K 11
inputfile.h
V 24
file ha.5ck.r18858/84203
K 5
ioz.c
V 23
file uh.5ck.r25070/3698
K 5
ioz.h
V 23
file ui.5ck.r25070/3932
K 10
iterator.c
V 25
file 4h5.5ck.r26905/44951
K 10
iterator.h
V 25
file 4f3.5ck.r26905/45830
K 5
log.c
V 21
file 53.5ck.r24492/53
K 5
log.h
V 23
file 54.5ck.r25725/3789
K 5
md5.c
V 22
file 33q.5ck.r25082/54
K 5
md5.h
V 25
file 33r.5ck.r19849/16287
K 5
mem.c
V 25
file d9.5ck.r19259/362758
K 5
mem.h
V 24
file da.5ck.r20315/22211
K 9
netfile.c
V 25
file 6m8.5ck.r26905/41142
K 9
netfile.h
V 25
file 6m9.5ck.r26905/41734
K 9
netintf.c
V 22
file t6.5ck.r26611/508
K 9
netintf.h
V 22
file t7.5ck.r26628/136
K 6
rand.c
V 25
file m5.5ck.r19259/363664
K 6
rand.h
V 24
file m6.5ck.r20315/22687
K 10
registry.c
V 25
file agw.5ck.r26905/40563
K 10
registry.h
V 25
file 7po.5ck.r26905/40851
K 14
registry_ini.c
V 24
file dh.5io.r25759/95268
K 14
registry_ini.h
V 23
file di.5ip.r26114/7727
K 14
registry_xml.c
V 26
file 16x3.5ck.r26905/44658
K 14
registry_xml.h
V 26
file 16x5.5ck.r26905/45535
K 14
section_file.c
V 25
file bw9.5ck.r26905/42610
K 14
section_file.h
V 25
file axo.5ck.r26905/42907
K 8
shared.c
V 23
file 55.5ck.r25915/3086
K 8
shared.h
V 23
file 1d.5ck.r25915/3328
K 10
spechash.h
V 25
file 57x.5ck.r26905/46987
K 10
speclist.h
V 21
file gb.5ck.r23834/61
K 8
specpq.h
V 26
file 1brp.5ck.r26905/42320
K 9
specvec.h
V 21
file z9.5ck.r24658/96
K 15
string_vector.c
V 25
file 4hy.5ck.r26905/41433
K 15
string_vector.h
V 25
file 4hz.5ck.r26905/42022
K 9
support.c
V 24
file m9.5ck.r25768/38314
K 9
support.h
V 24
file ma.5ck.r25768/38072
K 8
timing.c
V 24
file el.5ck.r24200/17365
K 8
timing.h
V 24
file em.5ck.r22382/27015
END
ENDREP
id: 1c.5ck.r26905/50065
type: dir
pred: 1c.5ck.r26800/18395
count: 875
text: 26905 47235 2817 2817 e9bd68c954045584f2443abbab168a4c
props: 17175 331 84 0 5447a85ba28edec0d4a8f6120070e2b2
cpath: /trunk/utility
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 73l.5ck.r26905/50345
type: file
pred: 73l.5ck.r25382/83829
count: 7
text: 25382 26139 108 3220 381284f15f31c39b8b82f16b907670a6
props: 26905 50298 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advruleset.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4pw.5ck.r26905/50648
type: file
pred: 4pw.5ck.r25771/6680
count: 26
text: 25771 512 394 22278 89910159063957d2aee7eaf8a693a8e4
props: 26905 50601 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/infracache.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 73m.5ck.r26905/50950
type: file
pred: 73m.5ck.r20033/10280
count: 1
text: 20033 2742 606 815 a1ead887ba7a7e848ca1e1ae522919fd
props: 26905 50903 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advruleset.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4px.5ck.r26905/51251
type: file
pred: 4px.5ck.r25760/9497
count: 13
text: 25760 8581 402 2311 bf16f2d23b2e99aaab1009556d0727f8
props: 26905 51204 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/infracache.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 50r.5ck.r26905/51553
type: file
pred: 50r.5ck.r26118/10930
count: 37
text: 26118 4725 354 11379 6dcf2386d1a0d65b9f4d341701955e78
props: 26905 51506 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advbuilding.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4of.5ck.r26905/51858
type: file
pred: 4of.5ck.r25518/9472
count: 3
text: 25518 4466 54 1497 061488d4b5945cf038970cf22fe24dad
props: 26905 51811 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advtools.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 50s.5ck.r26905/52156
type: file
pred: 50s.5ck.r26118/10165
count: 5
text: 26118 50 682 1446 81a011905f8b6cfc4cfc282314cb4c83
props: 26905 52109 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advbuilding.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4og.5ck.r26905/52457
type: file
pred: 4og.5ck.r25518/9667
count: 3
text: 25518 473 321 1045 209304bbb443936ee0de7d1f749c10f1
props: 26905 52410 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advtools.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4p5.5ck.r26905/52755
type: file
pred: 4p5.5ck.r25682/437
count: 21
text: 25682 0 406 15614 994b01397a5bfbdc0eb55ae1cbb49304
props: 26905 52708 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advgoto.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6po.5ck.r26905/53051
type: file
pred: 6po.5ck.r19374/2497
count: 1
text: 19374 51 1207 1988 03f98755e95623d6106cfcd6e1fa757d
props: 26905 53004 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advcity.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4p6.5ck.r26905/53348
type: file
pred: 4p6.5ck.r19471/16710
count: 5
text: 19471 15409 1075 1897 5b4689bc97c2b2b1486d8748fd33e2fc
props: 26905 53301 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advgoto.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pp.5ck.r26905/53649
type: file
pred: 6pp.5ck.r20050/19551
count: 2
text: 20050 17789 51 868 84def990e13ae3f0efb4b980050f4334
props: 26905 53602 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/advisors/advcity.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file 4n3.5ck.r26385/4253
K 13
advbuilding.c
V 25
file 50r.5ck.r26905/51553
K 13
advbuilding.h
V 25
file 50s.5ck.r26905/52156
K 9
advcity.c
V 25
file 6po.5ck.r26905/53051
K 9
advcity.h
V 25
file 6pp.5ck.r26905/53649
K 9
advdata.c
V 25
file 15o.5eq.r26118/10649
K 9
advdata.h
V 24
file 15p.5er.r25609/4525
K 9
advgoto.c
V 25
file 4p5.5ck.r26905/52755
K 9
advgoto.h
V 25
file 4p6.5ck.r26905/53348
K 12
advruleset.c
V 25
file 73l.5ck.r26905/50345
K 12
advruleset.h
V 25
file 73m.5ck.r26905/50950
K 10
advspace.c
V 23
file f2.5p0.r26385/3983
K 10
advspace.h
V 23
file f3.5p1.r26385/4447
K 10
advtools.c
V 25
file 4of.5ck.r26905/51858
K 10
advtools.h
V 25
file 4og.5ck.r26905/52457
K 14
autoexplorer.c
V 25
file 2lj.5eo.r25468/27023
K 14
autoexplorer.h
V 24
file 2lk.5ep.r17685/7079
K 14
autosettlers.c
V 24
file 7s.5ei.r26903/40399
K 14
autosettlers.h
V 24
file 7t.5ej.r23027/63769
K 12
infracache.c
V 25
file 4pw.5ck.r26905/50648
K 12
infracache.h
V 25
file 4px.5ck.r26905/51251
END
ENDREP
id: 4n2.5ck.r26905/54914
type: dir
pred: 4n2.5ck.r26903/41695
count: 179
text: 26905 53900 1001 1001 c449ae879785e9d92cdd8af852e7445d
props: 17871 2121 53 0 a527b216afb99426b763a1e313c531be
cpath: /trunk/server/advisors
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: hew.5ck.r26905/55205
type: file
pred: hew.5ck.r26881/46862
count: 57
text: 26881 13311 1390 26903 568063d7d340afe0f13414d7a866ebf2
props: 26905 55158 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/rssanity.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: hey.5ck.r26905/55500
type: file
pred: hey.5ck.r25729/2981
count: 2
text: 25729 0 192 916 2e759ea0a35975476cf60dca67f52b40
props: 26905 55453 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/rssanity.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4gm.5ck.r26905/55786
type: file
pred: 4gm.5ck.r22318/27020
count: 33
text: 22318 16685 4922 6417 ef7d57fab05130ec86e40180f18d2441
props: 26905 55739 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/aiiface.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6mz.5ck.r26905/56079
type: file
pred: 6mz.5ck.r22267/14643
count: 7
text: 22267 2932 247 7001 348d6d0091a54c08a4fd86930c7a494f
props: 26905 56032 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/citizenshand.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4gn.5ck.r26905/56374
type: file
pred: 4gn.5ck.r20559/1295
count: 9
text: 20559 752 329 1051 f0eb0c19b2d2501a1ad349ddd6adef15
props: 26905 56327 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/aiiface.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6n0.5ck.r26905/56662
type: file
pred: 6n0.5ck.r22267/14833
count: 3
text: 22267 11214 64 964 2fdcb542cdc16efe0d99f22daf36de33
props: 26905 56615 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/citizenshand.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6l3.5ck.r26905/56956
type: file
pred: 6l3.5ck.r25473/150
count: 10
text: 25473 0 120 7058 25961fe82a96d666daa9cd7b14324191
props: 26905 56909 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/fcdb.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6l4.5ck.r26905/57239
type: file
pred: 6l4.5ck.r24496/15810
count: 3
text: 24496 10573 99 867 3fac686a61a42dda92b8274b18bf3b6b
props: 26905 57192 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/fcdb.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ex.5ck.r26905/57525
type: file
pred: 4ex.5ck.r26270/1284
count: 21
text: 26270 373 712 26310 cc43a5c4695fa4650daef4881b90cdb0
props: 26905 57478 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/voting.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4i2.5ck.r26905/57814
type: file
pred: 4i2.5ck.r26003/45201
count: 26
text: 26003 31009 829 31416 cb8c11129fc228a9152a03b14341cdec
props: 26905 57767 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/notify.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4m0.5ck.r26905/58106
type: file
pred: 4m0.5ck.r26870/4490
count: 248
text: 26870 0 4462 246025 667c3b3f05ffc360a2c337ef631f5b2d
props: 26905 58059 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/savegame2.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ey.5ck.r26905/58399
type: file
pred: 4ey.5ck.r26273/47
count: 8
text: 26273 0 19 3549 a59771ac2e7b2d7873a42e6080b0ca62
props: 26905 58352 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/voting.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4i3.5ck.r26905/58681
type: file
pred: 4i3.5ck.r26003/45388
count: 8
text: 26003 31867 451 5091 209b7e426b3ecf57150f1c229b9fc9d2
props: 26905 58634 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/notify.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4m1.5ck.r26905/58971
type: file
pred: 4m1.5ck.r21363/11592
count: 5
text: 21363 6682 45 952 4094ad7c4cd6071c90498e4c5200b9c7
props: 26905 58924 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/savegame2.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6l5.5ia.r26905/59261
type: file
pred: 6l5.5ia.r24496/14009
count: 6
text: 24496 10701 118 1262 fce02f8084eb3fe1c897f9631416b4c3
props: 26905 59214 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/api_fcdb_base.c
copyroot: 20274 /trunk/server/scripting/api_fcdb_base.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6l7.5ck.r26905/59601
type: file
pred: 6l7.5ck.r25798/211
count: 14
text: 25798 0 54 9355 ba8a6cc96d9fbcf4ccd90009edcd6908
props: 26905 59554 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/script_fcdb.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6l6.5ib.r26905/59900
type: file
pred: 6l6.5ib.r24496/14245
count: 4
text: 24496 10848 31 953 ddf3d2f32d41bfe2ad33966320059c2c
props: 26905 59853 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/api_fcdb_base.h
copyroot: 20274 /trunk/server/scripting/api_fcdb_base.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6l8.5ck.r26905/60238
type: file
pred: 6l8.5ck.r20966/1477
count: 4
text: 20966 592 46 1526 20a53b7824e2d120361624396d4f7ab6
props: 26905 60191 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/script_fcdb.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75j.5ck.r26905/60539
type: file
pred: 75j.5ck.r21606/70
count: 7
text: 21606 0 42 2762 f194f76cac8ed9de41d58310190ac123
props: 26905 60492 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/api_server_base.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75k.5ck.r26905/60840
type: file
pred: 75k.5ck.r20508/1770
count: 5
text: 20508 0 198 1158 07e6240b3a5dec96f5f558628d25bdb1
props: 26905 60793 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/api_server_base.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6la.5i8.r26905/61144
type: file
pred: 6la.5i8.r20287/99795
count: 4
text: 20287 66724 875 2660 a0b9aadc28ac643aa1f7904f8ef526af
props: 26905 61097 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/api_fcdb_auth.c
copyroot: 20274 /trunk/server/scripting/api_fcdb_auth.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6lb.5i9.r26905/61484
type: file
pred: 6lb.5i9.r20287/100537
count: 3
text: 20287 79578 470 1143 4703909a09d37253d1905db94c4bf401
props: 26905 61437 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/scripting/api_fcdb_auth.h
copyroot: 20274 /trunk/server/scripting/api_fcdb_auth.h

PLAIN
K 11
Makefile.am
V 24
file 31z.5ck.r24832/3229
K 15
api_fcdb_auth.c
V 25
file 6la.5i8.r26905/61144
K 15
api_fcdb_auth.h
V 25
file 6lb.5i9.r26905/61484
K 15
api_fcdb_base.c
V 25
file 6l5.5ia.r26905/59261
K 15
api_fcdb_base.h
V 25
file 6l6.5ib.r26905/59900
K 17
api_server_base.c
V 25
file 75j.5ck.r26905/60539
K 17
api_server_base.h
V 25
file 75k.5ck.r26905/60840
K 17
api_server_edit.c
V 23
file 32c.5ic.r26844/155
K 17
api_server_edit.h
V 25
file 32d.5id.r24672/17495
K 19
api_server_notify.c
V 25
file 325.5ie.r26003/43511
K 19
api_server_notify.h
V 26
file 326.5if.r20287/102683
K 13
script_fcdb.c
V 25
file 6l7.5ck.r26905/59601
K 13
script_fcdb.h
V 25
file 6l8.5ck.r26905/60238
K 15
script_server.c
V 25
file 328.5ig.r26491/10256
K 15
script_server.h
V 25
file 329.5ih.r24638/11163
K 14
tolua_fcdb.pkg
V 25
file 6l9.5ck.r24496/13807
K 16
tolua_server.pkg
V 25
file 74d.5ck.r24672/17291
END
ENDREP
id: 31x.5ck.r26905/62685
type: dir
pred: 31x.5ck.r26844/1349
count: 249
text: 26905 61778 894 894 e949eeb1ae54eb24fff7bc6cc648883b
props: 20297 0 141 0 0e1185e28fae1bc27fafb1dc5525bf7c
cpath: /trunk/server/scripting
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vnk.5ck.r26905/62972
type: file
pred: vnk.5ck.r26434/836
count: 8
text: 26434 0 159 4147 3d93dc9985d1464869dd289c7f3f5648
props: 26905 62925 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/animals.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: vnm.5ck.r26905/63257
type: file
pred: vnm.5ck.r23831/63475
count: 1
text: 23831 11774 810 796 218c19ea05f8105c9bd0f89d3764f429
props: 26905 63210 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/animals.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 112c.5ck.r26905/63547
type: file
pred: 112c.5ck.r25086/8260
count: 2
text: 25086 943 365 1414 c559f141b7609355f43f7a18d632dc3d
props: 26905 63500 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/mood.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: qva.5ck.r26905/63834
type: file
pred: qva.5ck.r26904/9724
count: 15
text: 26904 1272 1350 36753 e14f789254bcfacee9ddeeedf30a2efb
props: 26905 63787 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/savecompat.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 112e.5ck.r26905/64129
type: file
pred: 112e.5ck.r24653/7020
count: 1
text: 24653 298 827 813 03dfcda1ff0fe96f33400bdc26a9187b
props: 26905 64082 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/mood.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: qvc.5ck.r26905/64415
type: file
pred: qvc.5ck.r25754/11671
count: 5
text: 25754 0 573 5173 a95abb3e9c6a9f691062dd13f7cc6018
props: 26905 64368 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/savecompat.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ez.5ck.r26905/64705
type: file
pred: 4ez.5ck.r18452/115476
count: 2
text: 18452 79620 180 890 2eba4ee94da2fbf119f1df760067502b
props: 26905 64658 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/server/edithand.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 22
file 5q.5ck.r26717/190
K 8
advisors
V 24
dir 4n2.5ck.r26905/54914
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.5ck.r26863/25467
K 11
citytools.h
V 24
file 4h.5ck.r26863/25714
K 10
cityturn.c
V 24
file 4i.5ck.r26881/47053
K 10
cityturn.h
V 24
file 4j.5ck.r24742/16670
K 11
civserver.c
V 24
file 4k.5ck.r26633/90005
K 10
commands.c
V 24
file 2ly.5ck.r26555/9553
K 10
commands.h
V 24
file 2lz.5ck.r24675/8215
K 13
connecthand.c
V 24
file 2dw.5ck.r26263/1131
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.5ck.r26904/9913
K 10
diplhand.h
V 21
file 4n.0.r13421/6826
K 11
diplomats.c
V 22
file vz.5ck.r26746/235
K 11
diplomats.h
V 24
file w0.5ck.r26563/19858
K 10
edithand.c
V 24
file 3bk.5ck.r26877/2056
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 24
file 4o.5ck.r26633/90745
K 10
gamehand.h
V 24
file 4p.5ck.r26564/23149
K 9
generator
V 23
dir 2me.5ck.r26496/1923
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 23
file 13.5ck.r26735/8171
K 9
maphand.h
V 23
file 14.5ck.r24759/3742
K 6
meta.c
V 22
file 4s.5ck.r26485/714
K 6
meta.h
V 24
file 4t.5ck.r24200/20596
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 23
file 4u.5ck.r26833/1143
K 9
plrhand.h
V 24
file 4v.5ck.r26692/15506
K 8
report.c
V 24
file vi.5ck.r26564/22659
K 8
report.h
V 24
file vj.5ck.r24891/20006
K 10
rssanity.c
V 25
file hew.5ck.r26905/55205
K 10
rssanity.h
V 25
file hey.5ck.r26905/55500
K 9
ruleset.c
V 24
file 8w.5ck.r26881/46617
K 9
ruleset.h
V 24
file 8x.5ck.r26403/78772
K 13
sanitycheck.c
V 23
file wi.5ck.r26109/6020
K 13
sanitycheck.h
V 24
file wj.5ck.r20315/26296
K 12
savecompat.c
V 25
file qva.5ck.r26905/63834
K 12
savecompat.h
V 25
file qvc.5ck.r26905/64415
K 10
savegame.c
V 24
file vl.5ck.r26904/10156
K 10
savegame.h
V 24
file vm.5ck.r20758/19233
K 11
savegame2.c
V 25
file 4m0.5ck.r26905/58106
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 24
dir 31x.5ck.r26905/62685
K 8
sernet.c
V 22
file 15.5ck.r26862/328
K 8
sernet.h
V 23
file 4y.5ck.r23685/5129
K 10
settings.c
V 25
file 2m0.5ck.r26904/10400
K 10
settings.h
V 24
file 2m1.5ck.r23685/4644
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 25
file 15t.5el.r26118/12291
K 9
srv_log.h
V 25
file 15u.5em.r25274/15557
K 10
srv_main.c
V 24
file vg.5ck.r26824/10752
K 10
srv_main.h
V 24
file vh.5ck.r23878/15619
K 11
stdinhand.c
V 22
file 4z.5ck.r26831/395
K 11
stdinhand.h
V 24
file 50.5ck.r26100/15471
K 11
techtools.c
V 25
file 33n.5ck.r26806/16793
K 11
techtools.h
V 24
file 33o.5ck.r26081/6287
K 10
unithand.c
V 23
file 18.5ck.r26783/2198
K 10
unithand.h
V 24
file 19.5ck.r23027/66151
K 11
unittools.c
V 23
file 1a.5ck.r26882/1361
K 11
unittools.h
V 24
file 1b.5ck.r26848/14581
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.5ck.r26905/68812
type: dir
pred: z.5ck.r26904/14495
count: 5728
text: 26905 64950 3849 3849 35f9f2efe53490e0a18d50453ea30c6b
props: 23990 448 166 0 e5026e1cb18fe57b41417951bfac7b19
cpath: /trunk/server
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a3d.5ck.r26905/69091
type: file
pred: a3d.5ck.r20753/37736
count: 1
text: 20753 19047 827 813 34b8af9e9677ead8eb3a542d2d345399
props: 26905 69044 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui_cbsetter.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6n2.5g7.r26905/69386
type: file
pred: 6n2.5ck.r19130/7932
count: 1
text: 19130 6516 715 1073 f464c7ab88740501dadd6d3d72ef406d
props: 26905 69339 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/citizensinfo.h
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 197l.5g7.r26905/69711
type: file
pred: 197l.5g7.r25803/1672
count: 1
text: 25803 836 823 809 3c3a1bf4e3283ea144a3fc7bfdf89ca5
props: 26905 69664 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/gamedlgs.h
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pa.5g7.r26905/70032
type: file
pred: 6pa.5g7.r23312/336093
count: 14
text: 23312 296668 44 42722 b1b6df1eac12c302e71f1a15ad2f550f
props: 26905 69985 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/unitselect.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pb.5g7.r26905/70360
type: file
pred: 6pb.5g7.r20394/53658
count: 2
text: 20394 52998 32 936 eadafc73353af29764ba4a1c3557f632
props: 26905 70313 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/unitselect.h
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: cku.5g7.r26905/70683
type: file
pred: cku.5g7.r24886/83136
count: 4
text: 24886 42675 592 5240 373e4ec2449896e49644482acbed20e7
props: 26905 70636 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/soundset_dlg.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76e.5g7.r26905/71010
type: file
pred: 76e.5g7.r25807/5325
count: 12
text: 25807 360 308 16555 4bb773870e3443b47e4ab4d8e41bee12
props: 26905 70963 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/luaconsole.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76f.5g7.r26905/71334
type: file
pred: 76f.5g7.r20310/10019
count: 1
text: 20310 6453 648 927 2457a702e04d5e1c4c70cd316e66eb66
props: 26905 71287 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/luaconsole.h
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4h8.5g7.r26905/71657
type: file
pred: 4h8.5g7.r22660/1397
count: 13
text: 22660 0 1367 11149 a424c99372097110e7dc281fa2ae4c10
props: 26905 71610 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/voteinfo_bar.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4h9.5g7.r26905/71982
type: file
pred: 4h9.5ck.r17959/2670
count: 2
text: 17959 57 62 950 0623ea657944864f137faac538d90533
props: 26905 71935 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/voteinfo_bar.h
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4js.5g7.r26905/72303
type: file
pred: 4js.5g7.r26175/3544
count: 23
text: 26175 2456 206 37153 447a139f8e0bd711b572af2922678d61
props: 26905 72256 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/optiondlg.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4el.5g7.r26905/72627
type: file
pred: 4el.5g7.r26877/6374
count: 86
text: 26877 858 911 203773 b91f59b70f880e98d989c4b22a92dcb8
props: 26905 72580 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/editprop.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ej.5g7.r26905/72950
type: file
pred: 4ej.5g7.r26531/324
count: 55
text: 26531 0 296 60456 f04625a045b2eb905c183170c681040f
props: 26905 72903 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/editgui.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ek.5g7.r26905/73268
type: file
pred: 4ek.5ck.r19385/16755
count: 3
text: 19385 1386 190 2034 c3660e0e24128698659fd47b27bdc6c1
props: 26905 73221 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/editgui.h
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6n1.5g7.r26905/73589
type: file
pred: 6n1.5g7.r23656/747
count: 6
text: 23656 311 137 13130 2d3ae9d8bf02297bf51c31926f26048f
props: 26905 73542 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-3.0/citizensinfo.c
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 11
Makefile.am
V 24
file zu.5g7.r26633/76036
K 15
action_dialog.c
V 25
file 36n.5oz.r26792/10772
K 8
canvas.c
V 25
file 2y6.5g7.r24696/33694
K 8
canvas.h
V 26
file 2y7.5g7.r23312/336316
K 10
chatline.c
V 23
file zw.5g7.r26634/5227
K 10
chatline.h
V 23
file zx.5g7.r25812/5717
K 15
choice_dialog.c
V 24
file 377.5g7.r26763/2319
K 15
choice_dialog.h
V 24
file 378.5g7.r26763/2598
K 14
citizensinfo.c
V 25
file 6n1.5g7.r26905/73589
K 14
citizensinfo.h
V 25
file 6n2.5g7.r26905/69386
K 9
citydlg.c
V 24
file zy.5g7.r26903/25571
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 26
file 100.5g7.r24790/285636
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 24
file 102.5g7.r23838/6001
K 8
cma_fe.h
V 25
file 103.5g7.r22931/33451
K 8
colors.c
V 25
file 104.5g7.r21920/14125
K 8
colors.h
V 25
file 105.5g7.r21920/14399
K 12
connectdlg.c
V 25
file 106.5ck.r19683/48662
K 12
connectdlg.h
V 25
file 107.5ck.r19154/49180
K 9
dialogs.c
V 25
file 108.5g7.r26881/24851
K 9
dialogs.h
V 25
file 109.5g7.r23882/54659
K 10
diplodlg.c
V 24
file 10a.5g7.r26175/3269
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 9
editgui.c
V 25
file 4ej.5g7.r26905/72950
K 9
editgui.h
V 25
file 4ek.5g7.r26905/73268
K 10
editprop.c
V 25
file 4el.5g7.r26905/72627
K 10
editprop.h
V 25
file 3bj.5jh.r21141/57145
K 9
finddlg.c
V 23
file 10c.5g7.r24963/157
K 9
finddlg.h
V 22
file 2d0.0.r5989/22356
K 10
gamedlgs.c
V 25
file 10d.5g7.r25801/65781
K 10
gamedlgs.h
V 26
file 197l.5g7.r26905/69711
K 9
gotodlg.c
V 25
file 10e.5g7.r24412/11180
K 9
gotodlg.h
V 25
file 10f.5ck.r19505/20989
K 10
graphics.c
V 24
file 10g.5g7.r22525/6030
K 10
graphics.h
V 24
file 10h.5g7.r22525/6304
K 12
gtkpixcomm.c
V 25
file 10i.5g7.r21620/11139
K 12
gtkpixcomm.h
V 24
file 10j.5g7.r21587/1498
K 10
gui_main.c
V 25
file 10k.5g7.r26633/76598
K 10
gui_main.h
V 24
file 10l.5g7.r24708/2513
K 11
gui_stuff.c
V 26
file 10m.5g7.r24790/285071
K 11
gui_stuff.h
V 24
file 10n.5g7.r22000/3088
K 11
happiness.c
V 23
file 10o.5g7.r25222/183
K 11
happiness.h
V 23
file 10p.0.r9577/106064
K 9
helpdlg.c
V 23
file 10q.5g7.r26532/301
K 9
helpdlg.h
V 23
file 10r.0.r4313/267882
K 10
inputdlg.c
V 25
file 10s.5g7.r20464/72142
K 10
inputdlg.h
V 24
file 10t.5ck.r19651/6762
K 10
inteldlg.c
V 25
file 10u.5g7.r26176/42656
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 25
file 76e.5g7.r26905/71010
K 12
luaconsole.h
V 25
file 76f.5g7.r26905/71334
K 9
mapctrl.c
V 26
file 10v.5g7.r24790/286474
K 9
mapctrl.h
V 23
file 10w.5g7.r21978/547
K 9
mapview.c
V 24
file 10x.5g7.r26530/2937
K 9
mapview.h
V 26
file 10y.5g7.r23312/335817
K 6
menu.c
V 25
file 10z.5g7.r26137/35745
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 25
file 111.5g7.r22082/18513
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 26
file 112.5g7.r24790/287310
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 25
file 4js.5g7.r26905/72303
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 25
file 2pi.5g8.r26633/76312
K 7
pages.h
V 24
file 2pj.5g7.r24718/7150
K 8
plrdlg.c
V 26
file 115.5g7.r24790/284513
K 8
plrdlg.h
V 22
file 116.0.r10803/7069
K 10
ratesdlg.h
V 22
file 2d3.0.r5989/22018
K 10
repodlgs.c
V 23
file 118.5g7.r26321/537
K 10
repodlgs.h
V 24
file 119.5ck.r18439/2365
K 14
soundset_dlg.c
V 25
file cku.5g7.r26905/70683
K 14
spaceshipdlg.c
V 25
file 11c.5g7.r23118/40208
K 14
spaceshipdlg.h
V 23
file 11d.0.r9577/110090
K 8
sprite.c
V 24
file 2y8.5g7.r26097/7071
K 8
sprite.h
V 25
file 2y9.5g7.r20540/56680
K 11
theme_dlg.c
V 26
file 47d.5g7.r24790/286197
K 8
themes.c
V 23
file 34x.5g7.r26797/399
K 13
tileset_dlg.c
V 25
file 45i.5g7.r23642/17487
K 12
unitselect.c
V 25
file 6pa.5g7.r26905/70032
K 12
unitselect.h
V 25
file 6pb.5g7.r26905/70360
K 14
voteinfo_bar.c
V 25
file 4h8.5g7.r26905/71657
K 14
voteinfo_bar.h
V 25
file 4h9.5g7.r26905/71982
K 7
wldlg.c
V 26
file 11e.5g7.r24790/288094
K 7
wldlg.h
V 25
file 11f.5ck.r16285/86707
END
ENDREP
id: zs.5g7.r26905/77812
type: dir
pred: zs.5g7.r26903/29782
count: 1877
text: 26905 73866 3933 3933 1920fb5376a4709768baf31be81ac186
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /trunk/client/gui-gtk-3.0
copyroot: 19694 /trunk/client/gui-gtk-3.0

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ld.5ck.r26905/78125
type: file
pred: 6ld.5ck.r26640/2451
count: 37
text: 26640 1035 365 7141 dfb7669a053a38afbd00f5fc700a6a50
props: 26905 78078 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/fc_client.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ij.5ck.r26905/78424
type: file
pred: 6ij.5ck.r26355/1111
count: 4
text: 26355 493 57 1758 cd06b91d634acc2cfe289a8c28f7f820
props: 26905 78377 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/chatline.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6in.5ck.r26905/78719
type: file
pred: 6in.5ck.r19259/510209
count: 3
text: 19259 342369 372 1531 f989a7871e6e1a15b8c22e8607d8f5b0
props: 26905 78672 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/colors.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jq.5ck.r26905/79020
type: file
pred: 6jq.5ck.r26212/39083
count: 5
text: 26212 29671 6990 8698 d57233535c128c5773c1f1f54671f34d
props: 26905 78973 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/ratesdlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jw.5ck.r26905/79322
type: file
pred: 6jw.5ck.r21547/74252
count: 5
text: 21547 13740 1715 4773 f8c55c785654def51a7e384f44d31d57
props: 26905 79275 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/sprite.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6iv.5ck.r26905/79622
type: file
pred: 6iv.5ck.r19259/511192
count: 2
text: 19259 222824 24 1051 1311635ef65a96c8b64c02429cb0a40b
props: 26905 79575 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/finddlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j8.5ck.r26905/79923
type: file
pred: 6j8.5ck.r26564/30777
count: 35
text: 26564 20850 45 58763 41bc9ecfc7617b0f2a7f4c1fd1423c54
props: 26905 79876 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/mapview.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jv.5ck.r26905/80224
type: file
pred: 6jv.5ck.r25991/4492
count: 2
text: 25991 171 760 1558 ce0cab03677f2a778398d9990268de88
props: 26905 80177 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/spaceshipdlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6k2.5ck.r26905/80524
type: file
pred: 6k2.5ck.r18893/75484
count: 1
text: 18893 628 601 800 500f1aff6614e425972908e1a841b9ba
props: 26905 80477 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/wldlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j2.5ck.r26905/80817
type: file
pred: 6j2.5ck.r19259/511783
count: 3
text: 19259 273910 57 1923 f775755d7272f86c7d00124f17078fb3
props: 26905 80770 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/helpdlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jd.5ck.r26905/81118
type: file
pred: 6jd.5ck.r26237/5748
count: 2
text: 26237 0 504 1326 7c091b898676b054dc4ea97dda527f05
props: 26905 81071 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/messagedlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6iq.5ck.r26905/81414
type: file
pred: 6iq.5ck.r18893/76659
count: 1
text: 18893 4795 611 820 fdb085a559881cd4766febf0433e359f
props: 26905 81367 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/connectdlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ii.5ck.r26905/81713
type: file
pred: 6ii.5ck.r26421/1770
count: 13
text: 26421 0 1630 15319 f71ed391bec7d1c99c7b009830fe4c9e
props: 26905 81666 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/chatline.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j1.5ck.r26905/82012
type: file
pred: 6j1.5ck.r26633/67134
count: 24
text: 26633 462 61 13352 74c875b8a365acdf3ab58fc19e59566c
props: 26905 81965 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/gui_main.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6je.5ck.r26905/82312
type: file
pred: 6je.5ck.r26421/1964
count: 10
text: 26421 1660 83 16171 dcc3f57cf4c3b6581da8230c8d470f8c
props: 26905 82265 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/messagewin.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76c.5ck.r26905/82614
type: file
pred: 76c.5ck.r23072/129264
count: 2
text: 23072 0 74 2123 63d1045315bc199847bae5008c70974a
props: 26905 82567 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/luaconsole.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6iy.5ck.r26905/82913
type: file
pred: 6iy.5ck.r26359/18270
count: 2
text: 26359 10473 1184 1968 c5c2d81aeedee7c73a2244c80b724b21
props: 26905 82866 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/gotodlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: gr2.5ck.r26905/83212
type: file
pred: gr2.5ck.r26570/22676
count: 8
text: 26570 22237 215 10702 c8acf38a8c3e511e75dc3d4523210795
props: 26905 83165 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/citydlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ja.5ck.r26905/83511
type: file
pred: 6ja.5ck.r26501/8929
count: 47
text: 26501 0 7570 63035 5a81152459a18692c0530a1f82b659bb
props: 26905 83464 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/menu.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jh.5ck.r26905/83806
type: file
pred: 6jh.5ck.r22593/46398
count: 2
text: 22593 7608 1905 2738 3ab0046a293ffb7102a63e02709bc410
props: 26905 83759 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/optiondlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6k1.5ck.r26905/84106
type: file
pred: 6k1.5ck.r19259/507830
count: 2
text: 19259 285737 24 1085 f41c8757257dfdfd0a9fec2f45e08599
props: 26905 84059 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/wldlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jc.5ck.r26905/84405
type: file
pred: 6jc.5ck.r26237/6131
count: 3
text: 26237 1374 4345 5721 e143cb2b24e6f2efafd75df546c1a9fa
props: 26905 84358 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/messagedlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jx.5ck.r26905/84707
type: file
pred: 6jx.5ck.r19190/3658
count: 3
text: 19190 2956 97 859 a18b3496502307ce88ea2c048ce6b7af
props: 26905 84660 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/sprite.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j9.5ck.r26905/85000
type: file
pred: 6j9.5ck.r26507/44460
count: 13
text: 26507 43734 302 8763 5db20d919e28ae276813eee44ef30734
props: 26905 84953 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/mapview.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ih.5ck.r26905/85299
type: file
pred: 6ih.5ck.r22768/29447
count: 4
text: 22768 5506 129 1098 fe4325e6b3a227a68a6d2a9db5a67686
props: 26905 85252 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/canvas.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ir.5ck.r26905/85595
type: file
pred: 6ir.5ck.r26881/21129
count: 98
text: 26881 408 82 87811 5a11d7f095eb437acc61be210a16c16b
props: 26905 85548 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/dialogs.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jo.5ck.r26905/85894
type: file
pred: 6jo.5ck.r26633/66934
count: 16
text: 26633 14767 20 4562 303b61edebab71c9e126fd7b39518f70
props: 26905 85847 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/qtg_cxxside.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jt.5ck.r26905/86198
type: file
pred: 6jt.5ck.r23004/45260
count: 5
text: 23004 29730 3868 4983 29c3569ff937048c596c655269f34afc
props: 26905 86151 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/repodlgs.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: oxo.5ck.r26905/86498
type: file
pred: oxo.5ck.r22934/3048
count: 1
text: 22934 0 813 799 009204f940894e7dd4c15901ddfcd9c7
props: 26905 86451 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/gui_main.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6it.5ck.r26905/86791
type: file
pred: 6it.5ck.r25987/79
count: 4
text: 25987 0 48 30755 56ab27ed745c5b1283ecf3f4343e4564
props: 26905 86744 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/diplodlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jg.5ck.r26905/87085
type: file
pred: 6jg.5ck.r26211/7330
count: 8
text: 26211 568 202 25734 8bdd5a5fd68258a851da12a1988f3cfc
props: 26905 87038 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/optiondlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ik.5ck.r26905/87385
type: file
pred: 6ik.5ck.r26640/2646
count: 26
text: 26640 1428 625 104007 3787d0f70dbc542bd6242077c5d9f29f
props: 26905 87338 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/citydlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ix.5ck.r26905/87686
type: file
pred: 6ix.5ck.r26359/16907
count: 3
text: 26359 78 10268 12311 82e7e1fe46369031724cd5b6fd7e4c2c
props: 26905 87639 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/gotodlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6iz.5ck.r26905/87986
type: file
pred: 6iz.5ck.r23072/130258
count: 4
text: 23072 122583 51 1942 f23a5d71f62196890f6fa452eb8d5cd9
props: 26905 87939 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/graphics.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j6.5ck.r26905/88288
type: file
pred: 6j6.5ck.r26355/1302
count: 12
text: 26355 579 505 7814 4d6f49c71504a9c18025d8355cb38d3c
props: 26905 88241 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/mapctrl.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j4.5ck.r26905/88586
type: file
pred: 6j4.5ck.r19259/510601
count: 2
text: 19259 139494 24 1697 dd0adc6f2dbefc39457183d1f5f91542
props: 26905 88539 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/inteldlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jj.5ck.r26905/88888
type: file
pred: 6jj.5ck.r21547/73863
count: 2
text: 21547 6694 303 1067 dadc916aeae67534a83ad7611fb01261
props: 26905 88841 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/pages.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jf.5ck.r26905/89183
type: file
pred: 6jf.5ck.r26296/3462
count: 3
text: 26296 1329 1908 2767 a2eee4f46110b49f11234a91bebc284e
props: 26905 89136 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/messagewin.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jb.5ck.r26905/89483
type: file
pred: 6jb.5ck.r26501/9119
count: 21
text: 26501 7600 1300 5609 69e5f1d32a3f0454ee27fcb488b6b82e
props: 26905 89436 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/menu.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76d.5ck.r26905/89778
type: file
pred: 76d.5ck.r20309/2264
count: 1
text: 20309 1474 609 832 8fc8e86ef01176702d3b4337131fecc7
props: 26905 89731 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/luaconsole.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ig.5ck.r26905/90076
type: file
pred: 6ig.5ck.r26018/8599
count: 9
text: 26018 0 6715 10832 da03037208e23ae8f3302d93b1f50aaa
props: 26905 90029 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/canvas.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6js.5ck.r26905/90372
type: file
pred: 6js.5ck.r26642/30627
count: 25
text: 26642 23659 4208 44672 b2d808af4ecf05b3abe34d5b843d3205
props: 26905 90325 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/repodlgs.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6k0.5ck.r26905/90676
type: file
pred: 6k0.5ck.r26286/8329
count: 2
text: 26286 6899 1051 1948 84ddf58d0f51d06c720b60420d26c7ae
props: 26905 90629 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/voteinfo_bar.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6im.5ck.r26905/90978
type: file
pred: 6im.5ck.r26168/5458
count: 5
text: 26168 0 4906 5954 da30f6e69e90d858bfa43e6535e6b522
props: 26905 90931 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/cityrep.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jk.5ck.r26905/91272
type: file
pred: 6jk.5ck.r26642/30430
count: 19
text: 26642 27897 2310 24829 c21418fa13edb936ba17b7eecda6ab71
props: 26905 91225 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/plrdlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jy.5ck.r26905/91574
type: file
pred: 6jy.5ck.r20366/177
count: 3
text: 20366 0 147 2363 8e15e70e9e277bd4cd3ccaa3f8e87ca5
props: 26905 91527 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/themes.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6lc.5ck.r26905/91867
type: file
pred: 6lc.5ck.r26640/2843
count: 47
text: 26640 0 1005 22465 2d5cefe28c4f489dca0a0d9563683d00
props: 26905 91820 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/fc_client.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6is.5ck.r26905/92167
type: file
pred: 6is.5ck.r26750/11276
count: 17
text: 26750 5214 5839 6980 874dfd365aa22a61fdbc61045583bf42
props: 26905 92120 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/dialogs.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jp.5ck.r26905/92466
type: file
pred: 6jp.5ck.r26633/66738
count: 15
text: 26633 377 57 5767 b1df95dd111f94ed625d08b76e0fa6bc
props: 26905 92419 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/qtg_cxxside.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ji.5ck.r26905/92766
type: file
pred: 6ji.5ck.r26640/3039
count: 32
text: 26640 2080 344 51905 ae2bcfe906c2dac2bcbabfc7697e39a7
props: 26905 92719 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/pages.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6iu.5ck.r26905/93064
type: file
pred: 6iu.5ck.r25931/64377
count: 2
text: 25931 0 2183 3038 5156843434ba520835761828181205e3
props: 26905 93017 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/diplodlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j0.5ck.r26905/93360
type: file
pred: 6j0.5ck.r18893/68912
count: 1
text: 18893 43490 607 812 4821d432a1ee02eedcf425140a8d5955
props: 26905 93313 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/graphics.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6io.5ck.r26905/93658
type: file
pred: 6io.5ck.r19190/3276
count: 2
text: 19190 961 104 865 abab6ff02b5da4d530c9d48fd4ed2a34
props: 26905 93611 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/colors.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ju.5ck.r26905/93951
type: file
pred: 6ju.5ck.r26507/44064
count: 5
text: 26507 0 2825 5011 3f7525f44717f408e81b9e54e7574985
props: 26905 93904 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/spaceshipdlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j5.5ck.r26905/94253
type: file
pred: 6j5.5ck.r18893/69584
count: 1
text: 18893 47233 579 797 f70078782746d4e2bb393b5d4be33e3d
props: 26905 94206 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/inteldlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j7.5ck.r26905/94551
type: file
pred: 6j7.5ck.r18893/69418
count: 1
text: 18893 47825 605 808 b70bada178d14bdac2a710c08032af28
props: 26905 94504 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/mapctrl.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jr.5ck.r26905/94848
type: file
pred: 6jr.5ck.r21547/72493
count: 2
text: 21547 24069 1401 2202 ed30ec32536ddb343493376fb50f3036
props: 26905 94801 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/ratesdlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6iw.5ck.r26905/95148
type: file
pred: 6iw.5ck.r18893/70592
count: 1
text: 18893 49035 578 794 1b058bd9ca8c111553adb047a3b80599
props: 26905 95101 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/finddlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jz.5ck.r26905/95445
type: file
pred: 6jz.5ck.r26286/8717
count: 3
text: 26286 390 6165 7888 c3b36812de0f05cb4f7b6722d2c4510f
props: 26905 95398 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/voteinfo_bar.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6il.5ck.r26905/95748
type: file
pred: 6il.5ck.r26642/30237
count: 17
text: 26642 0 23629 31395 212bfec8636dd6f21030bbbaab330ec8
props: 26905 95701 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/cityrep.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ip.5ck.r26905/96048
type: file
pred: 6ip.5ck.r22313/30662
count: 5
text: 22313 20093 181 3455 eba2921a1068b023d0623753f84bc1be
props: 26905 96001 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/connectdlg.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6j3.5ck.r26905/96351
type: file
pred: 6j3.5ck.r18893/72117
count: 1
text: 18893 53252 605 808 1c0aa9df687df987b1cab9b268e8be71
props: 26905 96304 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/helpdlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jl.5ck.r26905/96648
type: file
pred: 6jl.5ck.r25979/40656
count: 5
text: 25979 1127 3983 5029 74eb3e070351f3d42af8f25878369d20
props: 26905 96601 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-qt/plrdlg.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 6if.5ck.r26359/18075
K 10
canvas.cpp
V 25
file 6ig.5ck.r26905/90076
K 8
canvas.h
V 25
file 6ih.5ck.r26905/85299
K 12
chatline.cpp
V 25
file 6ii.5ck.r26905/81713
K 10
chatline.h
V 25
file 6ij.5ck.r26905/78424
K 11
citydlg.cpp
V 25
file 6ik.5ck.r26905/87385
K 9
citydlg.h
V 25
file gr2.5ck.r26905/83212
K 11
cityrep.cpp
V 25
file 6il.5ck.r26905/95748
K 9
cityrep.h
V 25
file 6im.5ck.r26905/90978
K 10
colors.cpp
V 25
file 6in.5ck.r26905/78719
K 8
colors.h
V 25
file 6io.5ck.r26905/93658
K 14
connectdlg.cpp
V 25
file 6ip.5ck.r26905/96048
K 12
connectdlg.h
V 25
file 6iq.5ck.r26905/81414
K 11
dialogs.cpp
V 25
file 6ir.5ck.r26905/85595
K 9
dialogs.h
V 25
file 6is.5ck.r26905/92167
K 12
diplodlg.cpp
V 25
file 6it.5ck.r26905/86791
K 10
diplodlg.h
V 25
file 6iu.5ck.r26905/93064
K 13
fc_client.cpp
V 25
file 6lc.5ck.r26905/91867
K 11
fc_client.h
V 25
file 6ld.5ck.r26905/78125
K 11
finddlg.cpp
V 25
file 6iv.5ck.r26905/79622
K 9
finddlg.h
V 25
file 6iw.5ck.r26905/95148
K 11
gotodlg.cpp
V 25
file 6ix.5ck.r26905/87686
K 9
gotodlg.h
V 25
file 6iy.5ck.r26905/82913
K 12
graphics.cpp
V 25
file 6iz.5ck.r26905/87986
K 10
graphics.h
V 25
file 6j0.5ck.r26905/93360
K 12
gui_main.cpp
V 25
file 6j1.5ck.r26905/82012
K 10
gui_main.h
V 25
file oxo.5ck.r26905/86498
K 11
helpdlg.cpp
V 25
file 6j2.5ck.r26905/80817
K 9
helpdlg.h
V 25
file 6j3.5ck.r26905/96351
K 12
inteldlg.cpp
V 25
file 6j4.5ck.r26905/88586
K 10
inteldlg.h
V 25
file 6j5.5ck.r26905/94253
K 14
luaconsole.cpp
V 25
file 76c.5ck.r26905/82614
K 12
luaconsole.h
V 25
file 76d.5ck.r26905/89778
K 11
mapctrl.cpp
V 25
file 6j6.5ck.r26905/88288
K 9
mapctrl.h
V 25
file 6j7.5ck.r26905/94551
K 11
mapview.cpp
V 25
file 6j8.5ck.r26905/79923
K 9
mapview.h
V 25
file 6j9.5ck.r26905/85000
K 8
menu.cpp
V 25
file 6ja.5ck.r26905/83511
K 6
menu.h
V 25
file 6jb.5ck.r26905/89483
K 14
messagedlg.cpp
V 25
file 6jc.5ck.r26905/84405
K 12
messagedlg.h
V 25
file 6jd.5ck.r26905/81118
K 14
messagewin.cpp
V 25
file 6je.5ck.r26905/82312
K 12
messagewin.h
V 25
file 6jf.5ck.r26905/89183
K 13
optiondlg.cpp
V 25
file 6jg.5ck.r26905/87085
K 11
optiondlg.h
V 25
file 6jh.5ck.r26905/83806
K 9
pages.cpp
V 25
file 6ji.5ck.r26905/92766
K 7
pages.h
V 25
file 6jj.5ck.r26905/88888
K 10
plrdlg.cpp
V 25
file 6jk.5ck.r26905/91272
K 8
plrdlg.h
V 25
file 6jl.5ck.r26905/96648
K 15
qtg_cxxside.cpp
V 25
file 6jo.5ck.r26905/85894
K 13
qtg_cxxside.h
V 25
file 6jp.5ck.r26905/92466
K 12
ratesdlg.cpp
V 25
file 6jq.5ck.r26905/79020
K 10
ratesdlg.h
V 25
file 6jr.5ck.r26905/94848
K 12
repodlgs.cpp
V 25
file 6js.5ck.r26905/90372
K 10
repodlgs.h
V 25
file 6jt.5ck.r26905/86198
K 16
spaceshipdlg.cpp
V 25
file 6ju.5ck.r26905/93951
K 14
spaceshipdlg.h
V 25
file 6jv.5ck.r26905/80224
K 10
sprite.cpp
V 25
file 6jw.5ck.r26905/79322
K 8
sprite.h
V 25
file 6jx.5ck.r26905/84707
K 10
themes.cpp
V 25
file 6jy.5ck.r26905/91574
K 16
voteinfo_bar.cpp
V 25
file 6jz.5ck.r26905/95445
K 14
voteinfo_bar.h
V 25
file 6k0.5ck.r26905/90676
K 9
wldlg.cpp
V 25
file 6k1.5ck.r26905/84106
K 7
wldlg.h
V 25
file 6k2.5ck.r26905/80524
END
ENDREP
id: 6ie.5ck.r26905/99958
type: dir
pred: 6ie.5ck.r26881/24363
count: 249
text: 26905 96898 3047 3047 f40ad9bb2165195274ffa46237803b2d
props: 23744 11001 226 0 6f7d09eed101288d23bda49f3147d653
cpath: /trunk/client/gui-qt
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: zmc.5ck.r26905/100249
type: file
pred: zmc.5ck.r25733/768
count: 6
text: 25733 339 399 3388 9b6489c13903257655d1bef8adeb0b38
props: 26905 100202 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/music.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: zme.5ck.r26905/100536
type: file
pred: zme.5ck.r25733/950
count: 3
text: 25733 0 172 1079 a830d8e55e1acf38daed445e474156a6
props: 26905 100489 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/music.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75z.5ck.r26905/100821
type: file
pred: 75z.5ck.r24895/19951
count: 3
text: 24895 5091 40 3846 0e3cf108a949b6f114f7750d1f40c2ad
props: 26905 100774 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/luaconsole_common.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4jt.5ck.r26905/101122
type: file
pred: 4jt.5ck.r20753/27788
count: 4
text: 20753 0 95 2416 57aba03da4228a05d037aa93fc580f4f
props: 26905 101075 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-stub/optiondlg.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ju.5ck.r26905/101421
type: file
pred: 4ju.5ck.r16998/92511
count: 1
text: 16998 12241 593 802 3c70abd80e569735247bf910214d272f
props: 26905 101374 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-stub/optiondlg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76g.5ck.r26905/101724
type: file
pred: 76g.5ck.r20753/32276
count: 2
text: 20753 2346 61 2139 d4e867f6bd34f29b1cda4b02e921cf9c
props: 26905 101677 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-stub/luaconsole.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76h.5ck.r26905/102027
type: file
pred: 76h.5ck.r20311/1918
count: 1
text: 20311 1143 594 817 fb679c12bf282cc0253c4e1d9d17b61d
props: 26905 101980 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-stub/luaconsole.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hc.5ck.r26905/102329
type: file
pred: 4hc.5ck.r20753/33232
count: 3
text: 20753 6510 86 1198 f8c90f69b86fca2e9642bb125f2d01c6
props: 26905 102282 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-stub/voteinfo_bar.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hd.5ck.r26905/102634
type: file
pred: 4hd.5ck.r16063/73005
count: 1
text: 16063 22176 602 812 bcf74eebcbdf056754f89ade6c7ed9a0
props: 26905 102587 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-stub/voteinfo_bar.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a3a.5ck.r26905/102940
type: file
pred: a3a.5ck.r20753/34191
count: 1
text: 20753 6854 867 853 3a79bb31bd3287b87f814d67e5d99f44
props: 26905 102893 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-stub/gui_stub.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file mj.5ck.r25193/37544
K 8
canvas.c
V 25
file 2y0.5ck.r24696/15371
K 8
canvas.h
V 23
file 2y1.0.r10095/12720
K 10
chatline.c
V 24
file ml.5ck.r24999/43324
K 10
chatline.h
V 21
file mm.0.r5491/41569
K 9
citydlg.c
V 24
file mn.5ck.r20753/27536
K 9
citydlg.h
V 21
file mo.0.r5491/35843
K 9
cityrep.c
V 24
file mp.5ck.r20753/33432
K 9
cityrep.h
V 21
file mq.0.r5491/46587
K 8
colors.c
V 24
file mr.5ck.r20753/28236
K 8
colors.h
V 22
file ms.0.r10458/11524
K 12
connectdlg.c
V 26
file mt.5ck.r21528/1396317
K 12
connectdlg.h
V 21
file mu.0.r5491/46943
K 9
dialogs.c
V 24
file mv.5ck.r26778/26935
K 9
dialogs.h
V 20
file mw.0.r8956/1107
K 10
diplodlg.c
V 24
file mx.5ck.r20753/27036
K 10
diplodlg.h
V 21
file my.0.r5491/35128
K 9
finddlg.c
V 24
file mz.5ck.r20753/29495
K 9
finddlg.h
V 22
file 2dc.0.r5989/44093
K 9
gotodlg.c
V 24
file n0.5ck.r20753/27287
K 9
gotodlg.h
V 21
file n1.0.r5491/35486
K 10
graphics.c
V 24
file n2.5ck.r20753/27982
K 10
graphics.h
V 21
file n3.0.r5491/36199
K 10
gui_main.c
V 24
file n4.5ck.r26633/57484
K 10
gui_main.h
V 21
file n5.0.r5491/41925
K 10
gui_stub.h
V 26
file a3a.5ck.r26905/102940
K 9
helpdlg.c
V 24
file n6.5ck.r20753/30507
K 9
helpdlg.h
V 21
file n7.0.r5491/39423
K 10
inteldlg.c
V 24
file n8.5ck.r20753/28739
K 10
inteldlg.h
V 22
file 2dd.0.r5989/43421
K 12
luaconsole.c
V 26
file 76g.5ck.r26905/101724
K 12
luaconsole.h
V 26
file 76h.5ck.r26905/102027
K 9
mapctrl.c
V 24
file n9.5ck.r20753/28487
K 9
mapctrl.h
V 21
file na.0.r5491/37272
K 9
mapview.c
V 24
file nb.5ck.r26564/27564
K 9
mapview.h
V 21
file nc.0.r5491/38349
K 6
menu.c
V 24
file nd.5ck.r20753/32472
K 6
menu.h
V 21
file ne.0.r5491/43723
K 12
messagedlg.c
V 24
file nf.5ck.r20753/32977
K 12
messagedlg.h
V 22
file 2de.0.r5989/44428
K 12
messagewin.c
V 24
file ng.5ck.r20753/32022
K 12
messagewin.h
V 21
file nh.0.r5491/43363
K 11
optiondlg.c
V 26
file 4jt.5ck.r26905/101122
K 11
optiondlg.h
V 26
file 4ju.5ck.r26905/101421
K 7
pages.c
V 25
file 2qi.5ck.r20753/31770
K 7
pages.h
V 22
file 2qj.0.r8639/28697
K 8
plrdlg.c
V 24
file ni.5ck.r20753/30757
K 8
plrdlg.h
V 21
file nj.0.r5491/41213
K 10
ratesdlg.c
V 24
file nk.5ck.r20753/28990
K 10
ratesdlg.h
V 22
file 2df.0.r5989/43757
K 10
repodlgs.c
V 24
file nl.5ck.r20844/42577
K 10
repodlgs.h
V 21
file nm.0.r5491/40138
K 14
spaceshipdlg.c
V 24
file nn.5ck.r20753/32720
K 14
spaceshipdlg.h
V 21
file no.0.r5491/44796
K 8
sprite.c
V 25
file 2y2.5ck.r20753/29243
K 8
sprite.h
V 23
file 2y3.0.r10095/12384
K 8
themes.c
V 25
file 34y.5ck.r20753/31009
K 14
voteinfo_bar.c
V 26
file 4hc.5ck.r26905/102329
K 14
voteinfo_bar.h
V 26
file 4hd.5ck.r26905/102634
K 7
wldlg.c
V 25
file qj.5ck.r19259/501512
K 7
wldlg.h
V 21
file qk.0.r5491/45158
END
ENDREP
id: mh.5ck.r26905/105919
type: dir
pred: mh.5ck.r26778/29901
count: 225
text: 26905 103194 2712 2712 4a77b522c664b73441725bfa2dbd840c
props: 11108 13796 68 0 fbaef5f6348d6ae4b0cc177104ca4ad2
cpath: /trunk/client/gui-stub
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kr.5ck.r26905/106211
type: file
pred: 6kr.5ck.r18947/939
count: 1
text: 18947 0 535 733 fcc0a3f8ac7844a323122e8a872e932d
props: 26905 106164 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/dummycxx.cpp
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 760.5ck.r26905/106500
type: file
pred: 760.5ck.r20306/31022
count: 1
text: 20306 0 938 1548 ae03c223a964574fa8a9477889cb1fea
props: 26905 106453 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/luaconsole_common.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pa.5ck.r26905/106799
type: file
pred: 6pa.5ck.r23312/316705
count: 8
text: 23312 57404 38 42384 0c1843a085db42d3623dede59556363d
props: 26905 106752 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/unitselect.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pb.5ck.r26905/107108
type: file
pred: 6pb.5ck.r20393/47105
count: 2
text: 20393 46508 32 936 eadafc73353af29764ba4a1c3557f632
props: 26905 107061 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/unitselect.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4el.5ck.r26905/107414
type: file
pred: 4el.5ck.r26877/10792
count: 80
text: 26877 0 832 202305 db792ed932319f61b2ffb2b1c61137d0
props: 26905 107367 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/editprop.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75w.5ck.r26905/107719
type: file
pred: 75w.5ck.r25807/698
count: 7
text: 25807 0 334 16170 6b93257aac3d33048b3d282da0aac65e
props: 26905 107672 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/luaconsole.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6n1.5ck.r26905/108022
type: file
pred: 6n1.5ck.r19683/47673
count: 3
text: 19683 23890 436 13087 12e1671e02f128e126806197c52a55aa
props: 26905 107975 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/citizensinfo.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75x.5ck.r26905/108333
type: file
pred: 75x.5ck.r20306/31879
count: 1
text: 20306 19009 648 927 2457a702e04d5e1c4c70cd316e66eb66
props: 26905 108286 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/luaconsole.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6n2.5ck.r26905/108640
type: file
pred: 6n2.5ck.r19130/7932
count: 1
text: 19130 6516 715 1073 f464c7ab88740501dadd6d3d72ef406d
props: 26905 108593 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/citizensinfo.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 197j.5ck.r26905/108948
type: file
pred: 197j.5ck.r25803/6177
count: 1
text: 25803 0 823 809 3c3a1bf4e3283ea144a3fc7bfdf89ca5
props: 26905 108901 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/gamedlgs.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ej.5ck.r26905/109250
type: file
pred: 4ej.5ck.r23867/30726
count: 42
text: 23867 6852 108 59112 458f5f7a5ac20b925581f4f9a67d3b02
props: 26905 109203 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/editgui.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ek.5ck.r26905/109556
type: file
pred: 4ek.5ck.r19385/16755
count: 3
text: 19385 1386 190 2034 c3660e0e24128698659fd47b27bdc6c1
props: 26905 109509 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/editgui.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: kcq.5ck.r26905/109860
type: file
pred: kcq.5ck.r24886/61033
count: 3
text: 24886 41782 815 5176 ff3c563f0515bb0353befb90ad27ea31
props: 26905 109813 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/soundset_dlg.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4js.5ck.r26905/110170
type: file
pred: 4js.5ck.r23882/49066
count: 17
text: 23882 8533 31477 37026 aa0dfe16d7014cc5d0fd6891a8d7effa
props: 26905 110123 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/optiondlg.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4h8.5ck.r26905/110480
type: file
pred: 4h8.5ck.r21403/37211
count: 9
text: 21403 22384 1695 11793 d98c233ccaa7048717a36e31a3dfb7e3
props: 26905 110433 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/voteinfo_bar.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4h9.5ck.r26905/110792
type: file
pred: 4h9.5ck.r17959/2670
count: 2
text: 17959 57 62 950 0623ea657944864f137faac538d90533
props: 26905 110745 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-gtk-2.0/voteinfo_bar.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file zu.5ck.r26633/45555
K 15
action_dialog.c
V 24
file 36n.5oy.r26792/6158
K 8
canvas.c
V 24
file 2y6.5ck.r24696/4365
K 8
canvas.h
V 23
file 2y7.0.r10096/14437
K 10
chatline.c
V 22
file zw.5ck.r26634/656
K 10
chatline.h
V 24
file zx.5ck.r25812/10835
K 15
choice_dialog.c
V 24
file 377.5ck.r26763/7073
K 15
choice_dialog.h
V 24
file 378.5ck.r26763/7331
K 14
citizensinfo.c
V 26
file 6n1.5ck.r26905/108022
K 14
citizensinfo.h
V 26
file 6n2.5ck.r26905/108640
K 9
citydlg.c
V 23
file zy.5ck.r26728/4630
K 9
citydlg.h
V 20
file zz.0.r5493/6351
K 9
cityrep.c
V 26
file 100.5ck.r24790/299980
K 9
cityrep.h
V 25
file 101.5ck.r18101/91562
K 8
cma_fe.c
V 25
file 102.5ck.r19683/43590
K 8
cma_fe.h
V 25
file 103.5ck.r19385/17470
K 8
colors.c
V 23
file 104.5ck.r21441/270
K 8
colors.h
V 24
file 105.5ck.r16180/3087
K 12
connectdlg.c
V 25
file 106.5ck.r19683/48662
K 12
connectdlg.h
V 25
file 107.5ck.r19154/49180
K 9
dialogs.c
V 25
file 108.5ck.r26881/16551
K 9
dialogs.h
V 25
file 109.5ck.r23882/49527
K 10
diplodlg.c
V 26
file 10a.5ck.r25334/149655
K 10
diplodlg.h
V 23
file 10b.0.r9577/108261
K 9
editgui.c
V 26
file 4ej.5ck.r26905/109250
K 9
editgui.h
V 26
file 4ek.5ck.r26905/109556
K 10
editprop.c
V 26
file 4el.5ck.r26905/107414
K 10
editprop.h
V 25
file 3bj.5cl.r21141/52087
K 9
finddlg.c
V 25
file 10c.5ck.r20622/23806
K 9
finddlg.h
V 22
file 2d0.0.r5989/22356
K 10
gamedlgs.c
V 25
file 10d.5ck.r25801/71137
K 10
gamedlgs.h
V 27
file 197j.5ck.r26905/108948
K 9
gotodlg.c
V 24
file 10e.5ck.r24412/6564
K 9
gotodlg.h
V 25
file 10f.5ck.r19505/20989
K 10
graphics.c
V 23
file 10g.5ck.r22525/653
K 10
graphics.h
V 23
file 10h.5ck.r22525/906
K 12
gtkpixcomm.c
V 25
file 10i.5ck.r19683/48923
K 12
gtkpixcomm.h
V 24
file 10j.5ck.r19779/2644
K 10
gui_main.c
V 25
file 10k.5ck.r26633/45041
K 10
gui_main.h
V 24
file 10l.5ck.r24708/7553
K 11
gui_stuff.c
V 26
file 10m.5ck.r24790/298737
K 11
gui_stuff.h
V 25
file 10n.5ck.r20622/22320
K 11
happiness.c
V 25
file 10o.5ck.r22264/26496
K 11
happiness.h
V 23
file 10p.0.r9577/106064
K 9
helpdlg.c
V 25
file 10q.5ck.r26096/55218
K 9
helpdlg.h
V 23
file 10r.0.r4313/267882
K 10
inputdlg.c
V 25
file 10s.5ck.r19683/46961
K 10
inputdlg.h
V 24
file 10t.5ck.r19651/6762
K 10
inteldlg.c
V 25
file 10u.5ck.r26176/57194
K 10
inteldlg.h
V 23
file 2d1.0.r9577/108626
K 12
luaconsole.c
V 26
file 75w.5ck.r26905/107719
K 12
luaconsole.h
V 26
file 75x.5ck.r26905/108333
K 9
mapctrl.c
V 26
file 10v.5ck.r24790/300765
K 9
mapctrl.h
V 25
file 10w.5bk.r14157/11089
K 9
mapview.c
V 24
file 10x.5ck.r25640/5086
K 9
mapview.h
V 24
file 10y.5ck.r17351/2736
K 6
menu.c
V 25
file 10z.5ck.r26137/31061
K 6
menu.h
V 25
file 110.5ck.r16067/65085
K 12
messagedlg.c
V 24
file 111.5ck.r20767/1172
K 12
messagedlg.h
V 22
file 2d2.0.r5989/22693
K 12
messagewin.c
V 26
file 112.5ck.r24790/299258
K 12
messagewin.h
V 25
file 113.5ck.r18082/27153
K 11
optiondlg.c
V 26
file 4js.5ck.r26905/110170
K 11
optiondlg.h
V 25
file 114.5ck.r17037/29773
K 7
pages.c
V 25
file 2pi.5ck.r26633/45297
K 7
pages.h
V 24
file 2pj.5ck.r24718/1982
K 8
plrdlg.c
V 26
file 115.5ck.r24790/301022
K 8
plrdlg.h
V 22
file 116.0.r10803/7069
K 10
ratesdlg.h
V 22
file 2d3.0.r5989/22018
K 4
rc2c
V 23
file 117.0.r4313/274431
K 10
repodlgs.c
V 24
file 118.5ck.r26321/5117
K 10
repodlgs.h
V 24
file 119.5ck.r18439/2365
K 11
resources.c
V 26
file 11a.5ck.r19259/423360
K 11
resources.h
V 23
file 11b.5ck.r22128/110
K 14
soundset_dlg.c
V 26
file kcq.5ck.r26905/109860
K 14
spaceshipdlg.c
V 25
file 11c.5ck.r23118/25649
K 14
spaceshipdlg.h
V 23
file 11d.0.r9577/110090
K 8
sprite.c
V 23
file 2y8.5ck.r24399/217
K 8
sprite.h
V 23
file 2y9.0.r10141/29270
K 11
theme_dlg.c
V 26
file 47d.5ck.r24790/300506
K 8
themes.c
V 26
file 34x.5ck.r24790/298225
K 13
tileset_dlg.c
V 25
file 45i.5ck.r23642/12331
K 12
unitselect.c
V 26
file 6pa.5ck.r26905/106799
K 12
unitselect.h
V 26
file 6pb.5ck.r26905/107108
K 14
voteinfo_bar.c
V 26
file 4h8.5ck.r26905/110480
K 14
voteinfo_bar.h
V 26
file 4h9.5ck.r26905/110792
K 7
wldlg.c
V 26
file 11e.5ck.r24790/301539
K 7
wldlg.h
V 25
file 11f.5ck.r16285/86707
END
ENDREP
id: zs.5ck.r26905/115140
type: dir
pred: zs.5ck.r26881/20882
count: 1755
text: 26905 111049 4078 4078 f0d44f6c8d8fcba9dbffa17536db0705
props: 11108 11912 79 0 480bb3268560e84c2d6c8376c422c65e
cpath: /trunk/client/gui-gtk-2.0
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 763.5ck.r26905/115436
type: file
pred: 763.5ck.r20306/39359
count: 1
text: 20306 7024 852 1297 f05188ab4f9977eebd534d0e9dbf8859
props: 26905 115389 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/luascript/api_client_base.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 765.5ck.r26905/115746
type: file
pred: 765.5ck.r20306/39713
count: 1
text: 20306 13385 3029 10489 8e549a7b5425119cfc4077450f1372bf
props: 26905 115699 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/luascript/script_client.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 764.5ck.r26905/116057
type: file
pred: 764.5ck.r20306/39891
count: 1
text: 20306 16599 723 1029 0475d62f0ebf1aa796a050f3776a5a3d
props: 26905 116010 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/luascript/api_client_base.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 766.5ck.r26905/116368
type: file
pred: 766.5ck.r20306/40069
count: 1
text: 20306 19670 1047 1793 2e6b455fe1bd69c231eba1e994250ccb
props: 26905 116321 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/luascript/script_client.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file 762.5ck.r24745/7972
K 17
api_client_base.c
V 26
file 763.5ck.r26905/115436
K 17
api_client_base.h
V 26
file 764.5ck.r26905/116057
K 15
script_client.c
V 26
file 765.5ck.r26905/115746
K 15
script_client.h
V 26
file 766.5ck.r26905/116368
K 16
tolua_client.pkg
V 24
file 767.5ck.r22514/7109
END
ENDREP
id: 761.5ck.r26905/116963
type: dir
pred: 761.5ck.r24745/8494
count: 4
text: 26905 116631 319 319 47cbf0356889a85fd06ca283219b64ad
props: 20323 0 91 0 1dea2a702e202607451f6250c717eb03
cpath: /trunk/client/luascript
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76v.5ck.r26905/117249
type: file
pred: 76v.5ck.r20397/3580
count: 1
text: 20397 0 2539 7962 588502dd35ec5a110bb43c073e034a53
props: 26905 117202 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/unitselect_common.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76w.5ck.r26905/117548
type: file
pred: 76w.5ck.r25151/64474
count: 2
text: 25151 10420 77 1548 3216116d3b6a7ae954ca6cf056105d68
props: 26905 117501 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/unitselect_common.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4i6.5ck.r26905/117850
type: file
pred: 4i6.5ck.r19259/493810
count: 10
text: 19259 203790 24 15902 6556543d191cb6e2e2d83bd8e5d351be
props: 26905 117803 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/global_worklist.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76a.5ck.r26905/118154
type: file
pred: 76a.5ck.r20308/1749
count: 1
text: 20308 0 1055 2094 cd0756faefe8978a6d2e58481a645506
props: 26905 118107 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-xaw/luaconsole.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76b.5ck.r26905/118454
type: file
pred: 76b.5ck.r20308/1916
count: 1
text: 20308 1142 594 817 fb679c12bf282cc0253c4e1d9d17b61d
props: 26905 118407 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-xaw/luaconsole.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hg.5ck.r26905/118755
type: file
pred: 4hg.5ck.r19259/441928
count: 2
text: 19259 252878 24 1153 951919924425af36035f8384efe4c60d
props: 26905 118708 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-xaw/voteinfo_bar.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hh.5ck.r26905/119062
type: file
pred: 4hh.5ck.r16063/52179
count: 1
text: 16063 931 602 812 bcf74eebcbdf056754f89ade6c7ed9a0
props: 26905 119015 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-xaw/voteinfo_bar.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 23
file bq.5ck.r26408/3872
K 15
action_dialog.c
V 25
file 37p.5p2.r26778/15238
K 4
ad2c
V 22
file 9q.0.r1186/243967
K 8
canvas.c
V 25
file 9r.5ck.r19259/439408
K 8
canvas.h
V 20
file 9s.0.r4034/9073
K 9
canvasp.h
V 20
file 9t.0.r4034/8365
K 10
chatline.c
V 24
file 9u.5ck.r24999/26869
K 10
chatline.h
V 21
file 9v.0.r2187/10435
K 9
citydlg.c
V 25
file 9w.5ck.r24790/307710
K 9
citydlg.h
V 20
file 9x.0.r2187/8309
K 9
cityrep.c
V 25
file 9y.5ck.r24790/306958
K 9
cityrep.h
V 24
file g1.5ck.r18101/97080
K 8
cma_fe.c
V 26
file 2ei.5ck.r19259/441430
K 8
cma_fe.h
V 21
file 2ej.0.r6908/4433
K 8
colors.c
V 25
file a2.5ck.r19259/443412
K 8
colors.h
V 21
file a3.0.r10532/9312
K 12
connectdlg.c
V 24
file a4.5ck.r20478/41190
K 12
connectdlg.h
V 21
file a5.0.r2187/12228
K 9
dialogs.c
V 23
file a6.5ck.r26408/4125
K 9
dialogs.h
V 24
file a7.5ck.r20375/28717
K 10
diplodlg.c
V 25
file a8.5ck.r25334/120790
K 10
diplodlg.h
V 20
file a9.0.r2187/7955
K 9
finddlg.c
V 25
file aa.5ck.r19259/444677
K 9
finddlg.h
V 22
file 2dk.0.r5989/31562
K 9
gotodlg.c
V 25
file ab.5ck.r19259/437889
K 9
gotodlg.h
V 21
file ac.0.r1888/21069
K 10
graphics.c
V 25
file ad.5ck.r24790/307457
K 10
graphics.h
V 21
file ae.0.r10789/6338
K 10
gui_main.c
V 24
file bm.5ck.r26633/50387
K 10
gui_main.h
V 22
file bn.0.r11408/10219
K 11
gui_stuff.c
V 25
file bo.5ck.r19259/440420
K 11
gui_stuff.h
V 21
file bp.0.r4964/56392
K 9
helpdlg.c
V 24
file af.5ck.r26096/59906
K 9
helpdlg.h
V 21
file g2.0.r1888/23188
K 10
inputdlg.c
V 25
file ag.5ck.r19259/445437
K 10
inputdlg.h
V 20
file ah.0.r7586/2315
K 10
inteldlg.c
V 24
file ai.5ck.r26176/32570
K 10
inteldlg.h
V 23
file 2dl.0.r10108/22972
K 12
luaconsole.c
V 26
file 76a.5ck.r26905/118154
K 12
luaconsole.h
V 26
file 76b.5ck.r26905/118454
K 9
mapctrl.c
V 25
file aj.5ck.r19291/223377
K 9
mapctrl.h
V 21
file ak.0.r10532/9667
K 9
mapview.c
V 25
file al.5ck.r24790/307965
K 9
mapview.h
V 24
file am.5bk.r13912/46304
K 6
menu.c
V 22
file an.5ck.r26236/874
K 6
menu.h
V 24
file ao.5ck.r24891/32944
K 12
messagedlg.c
V 25
file ap.5ck.r19259/446444
K 12
messagedlg.h
V 22
file 2dm.0.r5989/31896
K 12
messagewin.c
V 25
file aq.5ck.r19259/440924
K 12
messagewin.h
V 24
file g3.5ck.r18082/32178
K 11
optiondlg.c
V 25
file ar.5ck.r19259/438399
K 11
optiondlg.h
V 24
file as.5ck.r16998/79026
K 7
pages.c
V 25
file 2qm.5ck.r26633/50135
K 7
pages.h
V 22
file 2qn.0.r10536/7909
K 9
pixcomm.c
V 25
file at.5ck.r19259/441680
K 9
pixcomm.h
V 20
file au.0.r4034/9777
K 10
pixcommp.h
V 25
file av.5ck.r19259/443665
K 8
plrdlg.c
V 24
file aw.5ck.r23284/23132
K 8
plrdlg.h
V 20
file g4.0.r5489/3140
K 10
ratesdlg.c
V 25
file ax.5ck.r19259/444421
K 10
ratesdlg.h
V 22
file 2dn.0.r5989/31227
K 10
repodlgs.c
V 24
file ay.5ck.r26176/32318
K 10
repodlgs.h
V 24
file az.5ck.r18076/36844
K 11
resources.c
V 25
file b0.5ck.r19259/439161
K 11
resources.h
V 21
file b1.0.r3145/14204
K 14
spaceshipdlg.c
V 24
file b2.5ck.r23118/30282
K 14
spaceshipdlg.h
V 21
file b3.0.r2187/11152
K 8
themes.c
V 26
file 350.5ck.r19259/439910
K 14
voteinfo_bar.c
V 26
file 4hg.5ck.r26905/118755
K 14
voteinfo_bar.h
V 26
file 4hh.5ck.r26905/119062
K 7
wldlg.c
V 25
file o5.5ck.r19259/446193
K 7
wldlg.h
V 24
file o6.5ck.r16285/91411
K 13
xaw_actions.c
V 24
file nt.5le.r24891/33186
K 13
xaw_actions.h
V 23
file nu.5lf.r23221/1873
END
ENDREP
id: 9o.5ck.r26905/122646
type: dir
pred: 9o.5ck.r26778/18853
count: 1128
text: 26905 119318 3315 3315 abb4fc599b89800092e842dff1bc4f36
props: 11108 12237 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /trunk/client/gui-xaw
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4jv.5ck.r26905/122938
type: file
pred: 4jv.5ck.r20720/21992
count: 3
text: 20720 8580 469 1230 9563fdd7de8c0f316a5881a64d42a3da
props: 26905 122891 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/include/optiondlg_g.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75y.5ck.r26905/123242
type: file
pred: 75y.5ck.r20720/19147
count: 2
text: 20720 3446 375 1173 2cf3d84ee231a8a7731f7d0200de7695
props: 26905 123195 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/include/luaconsole_g.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9sq.5ck.r26905/123547
type: file
pred: 9sq.5ck.r20753/24725
count: 2
text: 20753 9645 30 1024 2d6576d78f774b5916fa0d1daf44c9cd
props: 26905 123500 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/include/gui_proto_constructor.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hi.5ck.r26905/123860
type: file
pred: 4hi.5ck.r20720/20096
count: 2
text: 20720 4503 132 860 7c01747fe95bfcf9fa0a981196849590
props: 26905 123813 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/include/voteinfo_bar_g.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file dt.5ck.r26633/54459
K 10
canvas_g.h
V 25
file 2y4.5ck.r24696/12797
K 12
chatline_g.h
V 24
file en.5ck.r24999/30690
K 11
citydlg_g.h
V 24
file eo.5ck.r20720/21741
K 11
cityrep_g.h
V 24
file g5.5ck.r20720/20296
K 10
colors_g.h
V 24
file in.5ck.r20720/22443
K 14
connectdlg_g.h
V 24
file eq.5ck.r20720/20549
K 11
dialogs_g.h
V 24
file er.5ck.r26778/19096
K 12
diplodlg_g.h
V 24
file es.5ck.r20720/21245
K 11
editgui_g.h
V 25
file 3bj.5cm.r20720/18106
K 11
finddlg_g.h
V 25
file 2do.5ck.r20720/23704
K 11
gotodlg_g.h
V 24
file et.5ck.r20720/21494
K 12
graphics_g.h
V 24
file eu.5ck.r20720/22190
K 12
gui_main_g.h
V 24
file ev.5ck.r26633/54204
K 23
gui_proto_constructor.h
V 26
file 9sq.5ck.r26905/123547
K 11
helpdlg_g.h
V 24
file g6.5ck.r26096/63728
K 12
inteldlg_g.h
V 25
file 2dp.5ck.r20720/22691
K 14
luaconsole_g.h
V 26
file 75y.5ck.r26905/123242
K 11
mapctrl_g.h
V 24
file ew.5ck.r20720/22946
K 11
mapview_g.h
V 24
file ex.5ck.r20720/23954
K 8
menu_g.h
V 24
file ey.5ck.r20720/18900
K 14
messagedlg_g.h
V 25
file 2dq.5ck.r20720/19844
K 14
messagewin_g.h
V 24
file g7.5ck.r20720/18646
K 13
optiondlg_g.h
V 26
file 4jv.5ck.r26905/122938
K 9
pages_g.h
V 25
file 2pk.5ck.r26633/54709
K 10
plrdlg_g.h
V 24
file g8.5ck.r20720/17105
K 12
ratesdlg_g.h
V 25
file 2dr.5ck.r20720/23199
K 12
repodlgs_g.h
V 24
file ez.5ck.r20844/29677
K 16
spaceshipdlg_g.h
V 24
file f0.5ck.r20720/19346
K 10
sprite_g.h
V 25
file 2y5.5ck.r20720/23450
K 10
themes_g.h
V 25
file 351.5ck.r20720/17352
K 16
voteinfo_bar_g.h
V 26
file 4hi.5ck.r26905/123860
K 9
wldlg_g.h
V 24
file o7.5ck.r20720/19599
END
ENDREP
id: b8.5ck.r26905/125732
type: dir
pred: b8.5ck.r26778/20958
count: 291
text: 26905 124119 1600 1600 8d1c5d9399967df742e7e2a53cfe9a79
props: 4431 36493 46 0 e473fc4bd409d833d90929dfcb3a14b8
cpath: /trunk/client/include
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4i7.5ck.r26905/126022
type: file
pred: 4i7.5ck.r18863/22960
count: 3
text: 18863 8991 182 2691 3350fb4ea67be1b0124cf747d8dd0c3e
props: 26905 125975 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/global_worklist.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jm.5ir.r26905/126322
type: file
pred: 6jm.5ir.r26633/56809
count: 17
text: 26633 30367 7282 20938 e8acfb1004bc54874dd7e253baebaf89
props: 26905 126275 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui_interface.c
copyroot: 20572 /trunk/client/gui_interface.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 768.5l8.r26905/126647
type: file
pred: 768.5ck.r20307/1888
count: 1
text: 20307 0 1055 2094 cd0756faefe8978a6d2e58481a645506
props: 26905 126600 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl2/luaconsole.c
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 769.5l8.r26905/126964
type: file
pred: 769.5ck.r20307/2055
count: 1
text: 20307 1281 594 817 fb679c12bf282cc0253c4e1d9d17b61d
props: 26905 126917 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl2/luaconsole.h
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ha.5l8.r26905/127282
type: file
pred: 4ha.5ck.r19259/468679
count: 2
text: 19259 0 24 1153 951919924425af36035f8384efe4c60d
props: 26905 127235 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl2/voteinfo_bar.c
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hb.5l8.r26905/127601
type: file
pred: 4hb.5ck.r16063/63032
count: 1
text: 16063 41697 602 812 bcf74eebcbdf056754f89ade6c7ed9a0
props: 26905 127554 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl2/voteinfo_bar.h
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4k3.5l8.r26905/127923
type: file
pred: 4k3.5l8.r24517/42354
count: 6
text: 24517 37274 37 7709 15db0b81c7a311bc931c4e722c376f84
props: 26905 127876 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl2/widget_combo.c
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4k4.5l8.r26905/128245
type: file
pred: 4k4.5l8.r23270/56850
count: 2
text: 23270 28219 24 1354 d56a04838c434becca5d70919b234efd
props: 26905 128198 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl2/widget_combo.h
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 11
Makefile.am
V 25
file 16u.5l8.r26370/10046
K 15
action_dialog.c
V 25
file 3bn.5ox.r26778/34640
K 8
canvas.c
V 25
file 39i.5l8.r24789/29881
K 8
canvas.h
V 25
file 39j.5l8.r24789/30150
K 10
chatline.c
V 25
file 16y.5l8.r25150/47358
K 10
chatline.h
V 26
file 16z.5ck.r16199/137581
K 9
citydlg.c
V 24
file 170.5l8.r25735/6478
K 9
citydlg.h
V 23
file 171.0.r13354/55222
K 9
cityrep.c
V 25
file 172.5l8.r25150/44348
K 9
cityrep.h
V 26
file 173.5ck.r18101/104032
K 8
cma_fe.c
V 25
file 174.5l8.r25150/43808
K 8
cma_fe.h
V 23
file 175.0.r11361/43495
K 8
colors.c
V 25
file 176.5l8.r23632/22350
K 8
colors.h
V 25
file 177.5ck.r19158/41252
K 12
connectdlg.c
V 25
file 178.5l8.r25150/45998
K 12
connectdlg.h
V 23
file 179.0.r12349/45319
K 9
dialogs.c
V 25
file 17a.5l8.r26483/41198
K 9
dialogs.h
V 26
file 17b.5l8.r25858/134847
K 10
diplodlg.c
V 26
file 17c.5l8.r25334/136119
K 10
diplodlg.h
V 22
file 17d.0.r11584/2869
K 9
finddlg.c
V 25
file 17e.5l8.r23632/23376
K 9
finddlg.h
V 20
file 2d8.0.r5991/702
K 9
gotodlg.c
V 25
file 17f.5l8.r25150/47905
K 9
gotodlg.h
V 22
file 17g.0.r6515/58208
K 10
graphics.c
V 24
file 17h.5l8.r25702/2300
K 10
graphics.h
V 24
file 17i.5l8.r25702/2571
K 11
gui_iconv.c
V 24
file 17l.5l8.r25123/7739
K 11
gui_iconv.h
V 23
file 17m.0.r13354/66657
K 8
gui_id.h
V 26
file 17n.5l8.r25858/135392
K 10
gui_main.c
V 25
file 17o.5l8.r26633/70606
K 10
gui_main.h
V 25
file 17p.5l8.r24337/16108
K 11
gui_mouse.c
V 26
file 3ca.5l8.r24790/312331
K 11
gui_mouse.h
V 24
file 3cb.0.r12670/112397
K 12
gui_string.c
V 25
file 17r.5l8.r24789/34264
K 12
gui_string.h
V 23
file 17s.5l8.r24013/598
K 14
gui_tilespec.c
V 24
file 191.5l8.r25702/3109
K 14
gui_tilespec.h
V 24
file 192.5l8.r25702/3383
K 11
happiness.c
V 25
file 17x.5ck.r22264/31615
K 11
happiness.h
V 23
file 17y.0.r11361/41867
K 9
helpdlg.c
V 25
file 17z.5l8.r25249/53590
K 9
helpdlg.h
V 23
file 180.0.r11361/47416
K 10
inputdlg.c
V 26
file 181.5ck.r19259/472952
K 10
inputdlg.h
V 23
file 182.0.r5500/260641
K 10
inteldlg.c
V 25
file 183.5l8.r26176/51166
K 10
inteldlg.h
V 22
file 2d9.0.r11409/2687
K 12
luaconsole.c
V 26
file 768.5l8.r26905/126647
K 12
luaconsole.h
V 26
file 769.5l8.r26905/126964
K 9
mapctrl.c
V 24
file 184.5l8.r25997/8973
K 9
mapctrl.h
V 24
file 185.5l8.r25997/9242
K 9
mapview.c
V 25
file 186.5l8.r26564/34247
K 9
mapview.h
V 23
file 187.0.r13354/56676
K 6
menu.c
V 23
file 188.5l8.r26152/606
K 6
menu.h
V 25
file 189.5bk.r13856/57405
K 12
messagedlg.c
V 26
file 18a.5ck.r19259/474489
K 12
messagedlg.h
V 22
file 2da.0.r5989/48394
K 12
messagewin.c
V 25
file 18b.5l8.r24337/16646
K 12
messagewin.h
V 25
file 18c.5ck.r18082/39362
K 5
mmx.h
V 23
file 2e1.0.r6286/134429
K 11
optiondlg.c
V 24
file 18d.5l8.r26138/1107
K 11
optiondlg.h
V 25
file 18e.5ck.r17169/46811
K 7
pages.c
V 24
file 2qg.5l8.r26101/5576
K 7
pages.h
V 22
file 2qh.0.r8639/16416
K 8
plrdlg.c
V 25
file 18f.5l8.r24517/43114
K 8
plrdlg.h
V 22
file 18g.0.r6387/81301
K 10
ratesdlg.h
V 22
file 2db.0.r5989/47726
K 10
repodlgs.c
V 25
file 18i.5l8.r26176/51709
K 10
repodlgs.h
V 25
file 18j.5l8.r24337/15019
K 14
spaceshipdlg.c
V 25
file 18m.5l8.r24337/20453
K 14
spaceshipdlg.h
V 23
file 18n.0.r5500/263363
K 8
sprite.c
V 25
file 39k.5l8.r23632/14730
K 8
sprite.h
V 24
file 39l.5ck.r19390/3772
K 18
themebackgrounds.c
V 25
file 3ff.5l8.r23632/17175
K 18
themebackgrounds.h
V 25
file 3fg.5bk.r13794/17440
K 13
themecolors.c
V 25
file 392.5l8.r23632/20981
K 13
themecolors.h
V 25
file 393.5ck.r20963/50401
K 8
themes.c
V 24
file 38p.5l8.r25458/3219
K 11
themespec.c
V 24
file 390.5l8.r25702/2841
K 11
themespec.h
V 24
file 391.5l8.r24627/7594
K 11
unistring.c
V 25
file 18o.5l8.r23632/16358
K 11
unistring.h
V 23
file 18p.0.r13481/30205
K 14
voteinfo_bar.c
V 26
file 4ha.5l8.r26905/127282
K 14
voteinfo_bar.h
V 26
file 4hb.5l8.r26905/127601
K 8
widget.c
V 26
file 3fu.5l8.r25503/103059
K 8
widget.h
V 24
file 3fv.5l8.r25829/5319
K 15
widget_button.c
V 24
file 3fh.5l8.r24735/8635
K 15
widget_button.h
V 24
file 3g7.0.r12670/113556
K 17
widget_checkbox.c
V 25
file 3fi.5l8.r24517/44502
K 17
widget_checkbox.h
V 24
file 3g8.0.r12670/106620
K 14
widget_combo.c
V 26
file 4k3.5l8.r26905/127923
K 14
widget_combo.h
V 26
file 4k4.5l8.r26905/128245
K 13
widget_core.c
V 25
file 3fj.5l8.r25287/11538
K 13
widget_edit.c
V 24
file 3fk.5l8.r25610/5408
K 13
widget_edit.h
V 25
file 3g9.5l8.r23270/58154
K 13
widget_icon.c
V 25
file 3fl.5l8.r25287/11264
K 13
widget_icon.h
V 24
file 3ga.0.r12670/112107
K 14
widget_label.c
V 25
file 3fm.5l8.r25150/45168
K 14
widget_label.h
V 24
file 3gb.0.r12670/110079
K 10
widget_p.h
V 25
file 3fn.5l8.r23270/50099
K 18
widget_scrollbar.c
V 25
file 3fo.5lj.r24789/32052
K 18
widget_scrollbar.h
V 24
file 3gc.0.r12670/116811
K 15
widget_window.c
V 25
file 3fp.5l8.r26049/10808
K 15
widget_window.h
V 23
file 3gd.0.r12699/32533
K 7
wldlg.c
V 25
file 18q.5l8.r25372/13101
K 7
wldlg.h
V 26
file 18r.5ck.r16285/100508
END
ENDREP
id: 16t.5l8.r26905/133423
type: dir
pred: 16t.5l8.r26778/39830
count: 884
text: 26905 128520 4890 4890 f3813f91aaf940a3ea771d6a617ba5dc
props: 11108 12869 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /trunk/client/gui-sdl2
copyroot: 23136 /trunk/client/gui-sdl2

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6jn.5is.r26905/133733
type: file
pred: 6jn.5is.r26633/57028
count: 16
text: 26633 38921 20 6169 7f1b3cda7bc4a10bcc5ac674492bc88f
props: 26905 133686 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui_interface.h
copyroot: 20572 /trunk/client/gui_interface.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ha.5ck.r26905/134055
type: file
pred: 4ha.5ck.r19259/468679
count: 2
text: 19259 0 24 1153 951919924425af36035f8384efe4c60d
props: 26905 134008 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl/voteinfo_bar.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4hb.5ck.r26905/134357
type: file
pred: 4hb.5ck.r16063/63032
count: 1
text: 16063 41697 602 812 bcf74eebcbdf056754f89ade6c7ed9a0
props: 26905 134310 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl/voteinfo_bar.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4k3.5ck.r26905/134662
type: file
pred: 4k3.5ck.r19259/471979
count: 2
text: 19259 99372 24 7679 d2e556042d6711a2850050f2329aa37a
props: 26905 134615 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl/widget_combo.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4k4.5ck.r26905/134968
type: file
pred: 4k4.5ck.r17230/40775
count: 1
text: 17230 38091 842 1357 a54d45d6e0d05681293ca7ccb16716f3
props: 26905 134921 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl/widget_combo.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 768.5ck.r26905/135274
type: file
pred: 768.5ck.r20307/1888
count: 1
text: 20307 0 1055 2094 cd0756faefe8978a6d2e58481a645506
props: 26905 135227 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl/luaconsole.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 769.5ck.r26905/135574
type: file
pred: 769.5ck.r20307/2055
count: 1
text: 20307 1281 594 817 fb679c12bf282cc0253c4e1d9d17b61d
props: 26905 135527 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui-sdl/luaconsole.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 16u.5ck.r26370/16060
K 15
action_dialog.c
V 25
file 3bn.5ow.r26778/21199
K 11
alphablit.c
V 25
file 3be.5ck.r24470/15040
K 8
canvas.c
V 25
file 39i.5ck.r24696/18773
K 8
canvas.h
V 23
file 39j.0.r13354/56918
K 10
chatline.c
V 25
file 16y.5ck.r24999/33261
K 10
chatline.h
V 26
file 16z.5ck.r16199/137581
K 9
citydlg.c
V 25
file 170.5ck.r25249/38495
K 9
citydlg.h
V 23
file 171.0.r13354/55222
K 9
cityrep.c
V 25
file 172.5ck.r23144/14661
K 9
cityrep.h
V 26
file 173.5ck.r18101/104032
K 8
cma_fe.c
V 25
file 174.5ck.r20334/55463
K 8
cma_fe.h
V 23
file 175.0.r11361/43495
K 8
colors.c
V 25
file 176.5ck.r20334/56485
K 8
colors.h
V 25
file 177.5ck.r19158/41252
K 12
connectdlg.c
V 24
file 178.5ck.r20741/1737
K 12
connectdlg.h
V 23
file 179.0.r12349/45319
K 9
dialogs.c
V 25
file 17a.5ck.r26483/35448
K 9
dialogs.h
V 26
file 17b.5ck.r25858/141147
K 10
diplodlg.c
V 26
file 17c.5ck.r25334/126433
K 10
diplodlg.h
V 22
file 17d.0.r11584/2869
K 9
finddlg.c
V 25
file 17e.5ck.r21074/16515
K 9
finddlg.h
V 20
file 2d8.0.r5991/702
K 9
gotodlg.c
V 25
file 17f.5ck.r21074/14971
K 9
gotodlg.h
V 22
file 17g.0.r6515/58208
K 10
graphics.c
V 24
file 17h.5ck.r25660/7551
K 10
graphics.h
V 24
file 17i.5ck.r19390/4529
K 11
gui_iconv.c
V 25
file 17l.5ck.r25123/13271
K 11
gui_iconv.h
V 23
file 17m.0.r13354/66657
K 8
gui_id.h
V 26
file 17n.5ck.r25858/141658
K 10
gui_main.c
V 25
file 17o.5ck.r26633/60888
K 10
gui_main.h
V 25
file 17p.5ck.r17169/47828
K 11
gui_mouse.c
V 26
file 3ca.5ck.r24790/275235
K 11
gui_mouse.h
V 24
file 3cb.0.r12670/112397
K 12
gui_string.c
V 24
file 17r.5ck.r24163/5917
K 12
gui_string.h
V 24
file 17s.5ck.r24013/6502
K 14
gui_tilespec.c
V 24
file 191.5ck.r25458/8706
K 14
gui_tilespec.h
V 25
file 192.5ck.r23144/14403
K 11
happiness.c
V 25
file 17x.5ck.r22264/31615
K 11
happiness.h
V 23
file 17y.0.r11361/41867
K 9
helpdlg.c
V 25
file 17z.5ck.r25249/39512
K 9
helpdlg.h
V 23
file 180.0.r11361/47416
K 10
inputdlg.c
V 26
file 181.5ck.r19259/472952
K 10
inputdlg.h
V 23
file 182.0.r5500/260641
K 10
inteldlg.c
V 25
file 183.5ck.r26176/36637
K 10
inteldlg.h
V 22
file 2d9.0.r11409/2687
K 12
luaconsole.c
V 26
file 768.5ck.r26905/135274
K 12
luaconsole.h
V 26
file 769.5ck.r26905/135574
K 9
mapctrl.c
V 26
file 184.5ck.r24790/275493
K 9
mapctrl.h
V 23
file 185.0.r13354/63700
K 9
mapview.c
V 25
file 186.5ck.r26564/40168
K 9
mapview.h
V 23
file 187.0.r13354/56676
K 6
menu.c
V 24
file 188.5ck.r26152/6078
K 6
menu.h
V 25
file 189.5bk.r13856/57405
K 12
messagedlg.c
V 26
file 18a.5ck.r19259/474489
K 12
messagedlg.h
V 22
file 2da.0.r5989/48394
K 12
messagewin.c
V 25
file 18b.5ck.r20683/34064
K 12
messagewin.h
V 25
file 18c.5ck.r18082/39362
K 5
mmx.h
V 23
file 2e1.0.r6286/134429
K 11
optiondlg.c
V 26
file 18d.5ck.r25858/141402
K 11
optiondlg.h
V 25
file 18e.5ck.r17169/46811
K 7
pages.c
V 25
file 2qg.5ck.r26101/19564
K 7
pages.h
V 22
file 2qh.0.r8639/16416
K 8
plrdlg.c
V 25
file 18f.5ck.r23284/26946
K 8
plrdlg.h
V 22
file 18g.0.r6387/81301
K 10
ratesdlg.h
V 22
file 2db.0.r5989/47726
K 10
repodlgs.c
V 25
file 18i.5ck.r26176/37146
K 10
repodlgs.h
V 25
file 18j.5ck.r18076/43515
K 14
spaceshipdlg.c
V 25
file 18m.5ck.r23118/34340
K 14
spaceshipdlg.h
V 23
file 18n.0.r5500/263363
K 8
sprite.c
V 24
file 39k.5ck.r19390/3521
K 8
sprite.h
V 24
file 39l.5ck.r19390/3772
K 18
themebackgrounds.c
V 26
file 3ff.5ck.r19259/465848
K 18
themebackgrounds.h
V 25
file 3fg.5bk.r13794/17440
K 13
themecolors.c
V 25
file 392.5ck.r20963/49888
K 13
themecolors.h
V 25
file 393.5ck.r20963/50401
K 8
themes.c
V 26
file 38p.5ck.r24790/275748
K 11
themespec.c
V 25
file 390.5ck.r25151/70163
K 11
themespec.h
V 26
file 391.5ck.r16578/464018
K 11
unistring.c
V 26
file 18o.5ck.r19259/465075
K 11
unistring.h
V 23
file 18p.0.r13481/30205
K 14
voteinfo_bar.c
V 26
file 4ha.5ck.r26905/134055
K 14
voteinfo_bar.h
V 26
file 4hb.5ck.r26905/134357
K 8
widget.c
V 26
file 3fu.5ck.r19259/465592
K 8
widget.h
V 25
file 3fv.5ck.r18995/17029
K 15
widget_button.c
V 26
file 3fh.5ck.r19259/469137
K 15
widget_button.h
V 24
file 3g7.0.r12670/113556
K 17
widget_checkbox.c
V 26
file 3fi.5ck.r19259/475566
K 17
widget_checkbox.h
V 24
file 3g8.0.r12670/106620
K 14
widget_combo.c
V 26
file 4k3.5ck.r26905/134662
K 14
widget_combo.h
V 26
file 4k4.5ck.r26905/134968
K 13
widget_core.c
V 26
file 3fj.5ck.r19259/470438
K 13
widget_edit.c
V 24
file 3fk.5ck.r20741/1480
K 13
widget_edit.h
V 24
file 3g9.0.r12670/115595
K 13
widget_icon.c
V 26
file 3fl.5ck.r19259/467140
K 13
widget_icon.h
V 24
file 3ga.0.r12670/112107
K 14
widget_label.c
V 26
file 3fm.5ck.r19259/465330
K 14
widget_label.h
V 24
file 3gb.0.r12670/110079
K 10
widget_p.h
V 24
file 3fn.0.r12670/107197
K 18
widget_scrollbar.c
V 25
file 3fo.5df.r20683/35037
K 18
widget_scrollbar.h
V 24
file 3gc.0.r12670/116811
K 15
widget_window.c
V 24
file 3fp.5ck.r26049/5295
K 15
widget_window.h
V 23
file 3gd.0.r12699/32533
K 7
wldlg.c
V 22
file 18q.5ck.r25405/59
K 7
wldlg.h
V 26
file 18r.5ck.r16285/100508
END
ENDREP
id: 16t.5ck.r26905/140791
type: dir
pred: 16t.5ck.r26778/26446
count: 845
text: 26905 135828 4950 4950 1c54596f4dd9192c8396c58a88e0b55a
props: 11108 12869 78 0 a27c61ac5fddbd709df8c1876129f940
cpath: /trunk/client/gui-sdl
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4jw.5ck.r26905/141084
type: file
pred: 4jw.5ck.r25151/75674
count: 17
text: 25151 10526 13691 24910 6abef6635fb522f0077d9e67c113b691
props: 26905 141037 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/update_queue.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4fe.5ck.r26905/141386
type: file
pred: 4fe.5ck.r24790/281519
count: 10
text: 24790 265874 95 8890 c7b7517bd5b3661bd550d86a021c2094
props: 26905 141339 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/voteinfo.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4f9.5ck.r26905/141682
type: file
pred: 4f9.5ck.r15641/551
count: 1
text: 15641 0 538 736 030b43a2413b7f2bb372a76096a3488f
props: 26905 141635 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/dummy.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4jx.5ck.r26905/141966
type: file
pred: 4jx.5ck.r18863/22078
count: 4
text: 18863 7568 125 2887 f1645c3a68cb4f3f35160f4fa6776bcc
props: 26905 141919 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/update_queue.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ff.5ck.r26905/142263
type: file
pred: 4ff.5ck.r18863/22523
count: 3
text: 18863 8355 197 1917 dca4dafca2f4a02afc2aa5c4a43e016c
props: 26905 142216 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/voteinfo.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a3c.5ck.r26905/142556
type: file
pred: a3c.5ck.r26633/60697
count: 6
text: 26633 40322 25 4890 6fb407178ec17fd89a18d0b038cf6e41
props: 26905 142509 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/client/gui_cbsetter.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file 5f.5ck.r26633/81862
K 6
agents
V 22
dir zf.5ck.r26587/1113
K 11
attribute.c
V 24
file xh.5ck.r25151/59391
K 11
attribute.h
V 24
file xi.5ck.r18863/23649
K 7
audio.c
V 24
file 139.5ck.r25739/2093
K 7
audio.h
V 24
file 13a.5ck.r24817/7655
K 12
audio_none.c
V 25
file 13d.5ck.r24916/15731
K 12
audio_none.h
V 25
file 13e.5ck.r18863/20841
K 11
audio_sdl.c
V 25
file 13f.5ck.r24916/15487
K 11
audio_sdl.h
V 25
file 13g.5ck.r18863/23885
K 17
chatline_common.c
V 25
file 14q.5ck.r24895/20143
K 17
chatline_common.h
V 24
file 14r.5ck.r24892/5917
K 16
citydlg_common.c
V 24
file z4.5ck.r26149/21321
K 16
citydlg_common.h
V 24
file z5.5ck.r26149/21571
K 13
cityrepdata.c
V 25
file mb.5ck.r24790/282697
K 13
cityrepdata.h
V 24
file mc.5ck.r18863/19121
K 13
client_main.c
V 23
file 2f.5cp.r26714/9233
K 13
client_main.h
V 23
file hz.5cq.r26714/9499
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 23
file d5.5ck.r26796/4227
K 9
climisc.h
V 23
file i0.5ck.r26654/5011
K 8
clinet.c
V 24
file hc.5ck.r26633/57244
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 24
file 2fw.5ck.r26714/9764
K 19
connectdlg_common.h
V 25
file 2fx.5ck.r19154/53802
K 9
control.c
V 23
file gz.5ck.r26825/1015
K 9
control.h
V 24
file i2.5ck.r26324/21178
K 7
dummy.c
V 26
file 4f9.5ck.r26905/141682
K 12
dummycxx.cpp
V 26
file 6kr.5ck.r26905/106211
K 8
editor.c
V 24
file 3bg.5ck.r26198/2350
K 8
editor.h
V 24
file 3bh.5ck.r26198/2592
K 17
global_worklist.c
V 26
file 4i6.5ck.r26905/117850
K 17
global_worklist.h
V 26
file 4i7.5ck.r26905/126022
K 6
goto.c
V 23
file vu.5ck.r26558/2997
K 6
goto.h
V 24
file vv.5ck.r23027/81018
K 11
gui-gtk-2.0
V 24
dir zs.5ck.r26905/115140
K 11
gui-gtk-3.0
V 23
dir zs.5g7.r26905/77812
K 6
gui-qt
V 24
dir 6ie.5ck.r26905/99958
K 7
gui-sdl
V 25
dir 16t.5ck.r26905/140791
K 8
gui-sdl2
V 25
dir 16t.5l8.r26905/133423
K 8
gui-stub
V 24
dir mh.5ck.r26905/105919
K 7
gui-xaw
V 24
dir 9o.5ck.r26905/122646
K 14
gui_cbsetter.c
V 26
file a3c.5ck.r26905/142556
K 14
gui_cbsetter.h
V 25
file a3d.5ck.r26905/69091
K 15
gui_interface.c
V 26
file 6jm.5ir.r26905/126322
K 15
gui_interface.h
V 26
file 6jn.5is.r26905/133733
K 10
helpdata.c
V 24
file h1.5ck.r26881/29326
K 10
helpdata.h
V 24
file i3.5ck.r25494/33011
K 7
include
V 24
dir b8.5ck.r26905/125732
K 19
luaconsole_common.c
V 26
file 75z.5ck.r26905/100821
K 19
luaconsole_common.h
V 26
file 760.5ck.r26905/106500
K 9
luascript
V 25
dir 761.5ck.r26905/116963
K 16
mapctrl_common.c
V 25
file 15m.5ck.r26324/21423
K 16
mapctrl_common.h
V 25
file 15n.5ck.r19893/12504
K 16
mapview_common.c
V 22
file z2.5ck.r26343/797
K 16
mapview_common.h
V 23
file z3.5ck.r24711/3555
K 19
messagewin_common.c
V 26
file 14s.5ck.r24790/282945
K 19
messagewin_common.h
V 25
file 14t.5ck.r18863/21579
K 7
music.c
V 26
file zmc.5ck.r26905/100249
K 7
music.h
V 26
file zme.5ck.r26905/100536
K 9
options.c
V 23
file dc.5ck.r25944/2285
K 9
options.h
V 24
file i4.5ck.r26128/27514
K 17
overview_common.c
V 26
file 2yk.5ck.r24790/283201
K 17
overview_common.h
V 26
file 2yl.5ck.r24790/283707
K 10
packhand.c
V 23
file n.5ck.r26881/24607
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 25
file 2ym.5ck.r25398/35740
K 9
reqtree.h
V 24
file 2yn.5ck.r24150/6004
K 9
servers.c
V 25
file 33x.5ck.r25113/10928
K 9
servers.h
V 25
file 33y.5ck.r20478/36372
K 6
text.c
V 25
file 2g3.5ck.r26564/39676
K 6
text.h
V 25
file 2g4.5ck.r24459/13284
K 15
themes_common.c
V 22
file 352.5ck.r26465/95
K 15
themes_common.h
V 25
file 353.5ck.r18863/22710
K 10
tilespec.c
V 23
file hl.5ck.r26690/2527
K 10
tilespec.h
V 23
file i6.5ck.r26690/2769
K 19
unitselect_common.c
V 26
file 76v.5ck.r26905/117249
K 19
unitselect_common.h
V 26
file 76w.5ck.r26905/117548
K 14
update_queue.c
V 26
file 4jw.5ck.r26905/141084
K 14
update_queue.h
V 26
file 4jx.5ck.r26905/141966
K 10
voteinfo.c
V 26
file 4fe.5ck.r26905/141386
K 10
voteinfo.h
V 26
file 4ff.5ck.r26905/142263
END
ENDREP
id: d.5ck.r26905/147099
type: dir
pred: d.5ck.r26903/34308
count: 6390
text: 26905 142806 4280 4280 0e6600cd28df93ed91ebaff7b295c89f
props: 23990 857 387 0 afe872b7fe8919650a535e373916e1f7
cpath: /trunk/client
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kj.5ks.r26905/147380
type: file
pred: 6kj.5ck.r22474/19741
count: 2
text: 22474 176 1423 3140 161b470d987aee84820843d8ee5c7c47
props: 26905 147333 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/luasql.c
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kh.5ks.r26905/147708
type: file
pred: 6kh.5ck.r22474/19949
count: 3
text: 22474 1628 12407 15519 6036bf4e204fbec7dcb424f44bfcded4
props: 26905 147661 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/ls_sqlite3.c
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kd.5ks.r26905/148043
type: file
pred: 6kd.5ks.r25051/99
count: 4
text: 25051 0 69 15962 4458000cd4af517dc8bf6eb30b82cd15
props: 26905 147996 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/ls_mysql.c
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kf.5ks.r26905/148367
type: file
pred: 6kf.5ck.r22474/20379
count: 4
text: 22474 16357 2588 15248 7a3025b9496a070638e50f12eeb32ac8
props: 26905 148320 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/ls_postgres.c
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kk.5ks.r26905/148703
type: file
pred: 6kk.5ck.r22474/20593
count: 2
text: 22474 18969 572 1091 36e44ceee0e558b2b4f735aa83924fd7
props: 26905 148656 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/luasql.h
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ki.5ks.r26905/149032
type: file
pred: 6ki.5ck.r18946/35769
count: 1
text: 18946 1301 627 845 7e641452c3c637c972f240a63d09dcdb
props: 26905 148985 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/ls_sqlite3.h
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ke.5ks.r26905/149363
type: file
pred: 6ke.5ck.r18946/36136
count: 1
text: 18946 21947 623 837 7d4e1be684eaf4870e85366b15f534c0
props: 26905 149316 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/ls_mysql.h
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kg.5ks.r26905/149693
type: file
pred: 6kg.5ck.r18946/36319
count: 1
text: 18946 23790 629 849 422454f42c249a66e7e9c387eaada8e3
props: 26905 149646 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/luasql/src/ls_postgres.h
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 11
Makefile.am
V 25
file 6kc.5ks.r24832/11736
K 10
ls_mysql.c
V 26
file 6kd.5ks.r26905/148043
K 10
ls_mysql.h
V 26
file 6ke.5ks.r26905/149363
K 13
ls_postgres.c
V 26
file 6kf.5ks.r26905/148367
K 13
ls_postgres.h
V 26
file 6kg.5ks.r26905/149693
K 12
ls_sqlite3.c
V 26
file 6kh.5ks.r26905/147708
K 12
ls_sqlite3.h
V 26
file 6ki.5ks.r26905/149032
K 8
luasql.c
V 26
file 6kj.5ks.r26905/147380
K 8
luasql.h
V 26
file 6kk.5ks.r26905/148703
END
ENDREP
id: 6kb.5ks.r26905/150432
type: dir
pred: 6kb.5ks.r25051/759
count: 9
text: 26905 149979 440 440 1fe32ed3f97f987c8a1febe00eb1c3d2
props: 19010 0 53 0 1aad128f6d028f535e9ce7233326568e
cpath: /trunk/dependencies/luasql/src
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 11
Makefile.am
V 25
file 6k9.5ck.r22474/21496
K 6
README
V 25
file 6ka.5ck.r18946/37299
K 7
Version
V 25
file m7z.5ck.r22474/19570
K 3
src
V 25
dir 6kb.5ks.r26905/150432
END
ENDREP
id: 6k8.5ks.r26905/150886
type: dir
pred: 6k8.5ks.r25051/1206
count: 10
text: 26905 150697 176 176 916e4630b1888aaf2e74f44f748e06db
props: 19010 456 47 0 bf36bdb5202732a1b9a911cc1234183c
cpath: /trunk/dependencies/luasql
copyroot: 22501 /trunk/dependencies/luasql

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0s.5ck.r26905/151198
type: file
pred: a0s.5ck.r23889/32620
count: 3
text: 23889 5706 88 772 05734c0c11db1eb89a057c8f9df7c4e3
props: 26905 151151 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lundump.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zb.5ck.r26905/151506
type: file
pred: 9zb.5ck.r23889/40129
count: 2
text: 23889 28328 63 545 87a06b0eac95f44d3973173c930354f3
props: 26905 151459 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lapi.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0k.5ck.r26905/151812
type: file
pred: a0k.5ck.r23889/33022
count: 2
text: 23889 6322 63 1799 73ec23dec409019d68360eea49379a24
props: 26905 151765 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ltm.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0t.5ck.r26905/152117
type: file
pred: a0t.5ck.r23889/33629
count: 4
text: 23889 6416 67 28842 bb10591a664b677cda5f1b762d9dc590
props: 26905 152070 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lvm.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0l.5ck.r26905/152423
type: file
pred: a0l.5ck.r23889/34233
count: 2
text: 23889 7188 63 1125 e92fdc5880caccc0fbc54d3b19ecca83
props: 26905 152376 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ltm.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zm.5ck.r26905/152728
type: file
pred: 9zm.5ck.r23889/29377
count: 5
text: 23889 372 1235 16088 5627ac080f26ab7238f41eb4c0a077e2
props: 26905 152681 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ldebug.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0u.5ck.r26905/153038
type: file
pred: a0u.5ck.r23889/34635
count: 3
text: 23889 7378 96 1484 d4cf15f4c5617f92d25a3a3b027a0e2f
props: 26905 152991 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lvm.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zi.5ck.r26905/153343
type: file
pred: 9zi.5ck.r23889/29784
count: 4
text: 23889 1738 67 3575 a1711ffd73fb0c9b3d6c33746269cd7e
props: 26905 153296 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lcorolib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zt.5ck.r26905/153653
type: file
pred: 9zt.5ck.r26647/414
count: 6
text: 26647 141 51 37759 7d0378c73c5bf54611cc46c547542f92
props: 26905 153606 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lgc.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a03.5ck.r26905/153956
type: file
pred: a03.5ck.r23889/35646
count: 3
text: 23889 21984 2170 21492 b07b641ad8ff6f0752167b39025ea9df
props: 26905 153909 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/loadlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zn.5ck.r26905/154269
type: file
pred: 9zn.5ck.r23889/29988
count: 2
text: 23889 1834 65 1087 ea2bba5ff6f4e7a8fb9e6010514e5e40
props: 26905 154222 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ldebug.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zr.5ck.r26905/154577
type: file
pred: 9zr.5ck.r23889/35853
count: 4
text: 23889 24186 65 4270 8281b844429e48b9fc94b8e57ffc289f
props: 26905 154530 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lfunc.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0a.5ck.r26905/154885
type: file
pred: a0a.5ck.r23889/36261
count: 4
text: 23889 24429 71 45973 93f5f5ec60e0141b39192865e4311300
props: 26905 154838 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lparser.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zw.5ck.r26905/155196
type: file
pred: 9zw.5ck.r23889/30395
count: 3
text: 23889 2449 925 17196 ce131ca289d111022f816486a34671f2
props: 26905 155149 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/liolib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zu.5ck.r26905/155506
type: file
pred: 9zu.5ck.r23889/36873
count: 4
text: 23889 24875 63 5404 05269a49615456fb5648c6bc24104f00
props: 26905 155459 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lgc.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zs.5ck.r26905/155812
type: file
pred: 9zs.5ck.r23889/37073
count: 3
text: 23889 24967 85 1045 7a844592b1d85d7a792787b708b1e6ae
props: 26905 155765 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lfunc.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0q.5ck.r26905/156120
type: file
pred: a0q.5ck.r23889/30803
count: 2
text: 23889 3506 65 1099 0e95e9936dc1e0d69273d9e7144892e1
props: 26905 156073 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lualib.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0b.5ck.r26905/156428
type: file
pred: a0b.5ck.r23889/37688
count: 3
text: 23889 26107 139 3332 f0ca5810066fb64149aacbd22842a743
props: 26905 156381 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lparser.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zv.5ck.r26905/156739
type: file
pred: 9zv.5ck.r23889/38094
count: 2
text: 23889 26407 65 1689 9b16b44b4b4d635d10452947cb3e287b
props: 26905 156692 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/linit.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a04.5ck.r26905/157047
type: file
pred: a04.5ck.r23889/38297
count: 3
text: 23889 26600 390 7905 9ffc239495c0b7dfb317e98b6d2b7cc3
props: 26905 157000 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lobject.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zz.5ck.r26905/157358
type: file
pred: 9zz.5ck.r23889/38502
count: 4
text: 23889 26503 68 7529 d80228f47cf9974e7cbc44238fd7dfc8
props: 26905 157311 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/llimits.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0e.5ck.r26905/157668
type: file
pred: a0e.5ck.r23889/38706
count: 4
text: 23889 27021 67 4904 04d67088862decda8aa6c0c82f761b3d
props: 26905 157621 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lstring.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a09.5ck.r26905/157978
type: file
pred: a09.5ck.r23889/31812
count: 4
text: 23889 4750 66 8059 1688cca978564aa58e5c35847ed27fd5
props: 26905 157931 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/loslib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zg.5ck.r26905/158286
type: file
pred: 9zg.5ck.r23889/39314
count: 3
text: 23889 27390 159 22404 a8643cf3b1b2ad20594064f3d1d94561
props: 26905 158239 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lcode.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0m.5ck.r26905/158596
type: file
pred: a0m.5ck.r23889/39518
count: 4
text: 23889 27581 71 13602 601a48498a7bb2e43e8e3550149937b4
props: 26905 158549 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lua.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a05.5ck.r26905/158903
type: file
pred: a05.5ck.r23889/39719
count: 4
text: 23889 27681 67 14945 e62ac89439076eb5b2985afc2fd35087
props: 26905 158856 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lobject.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0f.5ck.r26905/159214
type: file
pred: a0f.5ck.r23889/39924
count: 3
text: 23889 27778 520 1272 ef3097e917bfe63517feae33bd204c14
props: 26905 159167 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lstring.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zl.5ck.r26905/159525
type: file
pred: 9zl.5ck.r23889/32417
count: 4
text: 23889 5610 67 10081 cbe57e1f5ac26dc8ea5f62ff2e2104ba
props: 26905 159478 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ldblib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a01.5ck.r26905/159834
type: file
pred: a01.5ck.r23889/32822
count: 3
text: 23889 5823 87 2650 de6ad1a6b9eea4caf2a14d138ef64791
props: 26905 159787 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lmem.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zh.5ck.r26905/160140
type: file
pred: 9zh.5ck.r23889/40330
count: 2
text: 23889 28421 65 3120 62f2be037ca2eaa14401115449e30f02
props: 26905 160093 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lcode.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0c.5ck.r26905/160448
type: file
pred: a0c.5ck.r23889/33222
count: 4
text: 23889 6039 253 7716 6373af21fd3be3bbabc63bdb092077c0
props: 26905 160401 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lstate.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a00.5ck.r26905/160757
type: file
pred: a00.5ck.r23889/33425
count: 4
text: 23889 5941 68 6586 4af29b8b06f4def48663170ae197b96e
props: 26905 160710 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lmathlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0p.5ck.r26905/161067
type: file
pred: a0p.5ck.r23889/40533
count: 6
text: 23889 0 68 15338 068a30c1789f44b647bc45c0e61c6a27
props: 26905 161020 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/luaconf.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a02.5ck.r26905/161374
type: file
pred: a02.5ck.r23889/33829
count: 3
text: 23889 6512 458 1806 8d334a6fd3610094b316f4d4f444a5f8
props: 26905 161327 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lmem.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zj.5ck.r26905/161681
type: file
pred: 9zj.5ck.r23889/34030
count: 2
text: 23889 7001 66 2299 a59da3f3f1d70d3c2c568f095c609f9f
props: 26905 161634 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lctype.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zc.5ck.r26905/161989
type: file
pred: 9zc.5ck.r23889/29174
count: 4
text: 23889 273 70 27541 59a56fd1dedfde86ffa0d42a9803a966
props: 26905 161942 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lauxlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0d.5ck.r26905/162298
type: file
pred: a0d.5ck.r23889/34433
count: 4
text: 23889 7097 66 7543 a671e105196f300fa1e1ed6fed383ff0
props: 26905 162251 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lstate.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0h.5ck.r26905/162606
type: file
pred: a0h.5ck.r23889/34834
count: 4
text: 23889 7282 69 16482 3d9cdba46ea132f681f0b9231409e868
props: 26905 162559 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ltable.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zx.5ck.r26905/162915
type: file
pred: 9zx.5ck.r23889/35037
count: 5
text: 23889 7504 1063 15341 12a31096701280bed9a1aa1ca7627fe4
props: 26905 162868 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/llex.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zd.5ck.r26905/163224
type: file
pred: 9zd.5ck.r23889/29580
count: 2
text: 23889 1639 68 7344 709ec1569ba365d2cc4fac20023c06ce
props: 26905 163177 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lauxlib.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zk.5ck.r26905/163533
type: file
pred: 9zk.5ck.r23889/35442
count: 2
text: 23889 21888 66 1841 9decc8d516843dbf17f4999da55da419
props: 26905 163486 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lctype.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a06.5ck.r26905/163842
type: file
pred: a06.5ck.r25594/387
count: 4
text: 25594 0 68 1196 0531bf38124174e0b54da1fb8e85bbee
props: 26905 163795 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/localluaconf.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a07.5ck.r26905/164151
type: file
pred: a07.5ck.r23889/36055
count: 3
text: 23889 24280 118 3076 23c6ba7a720a5924e9185f3754f3e537
props: 26905 164104 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lopcodes.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0i.5ck.r26905/164463
type: file
pred: a0i.5ck.r23889/36466
count: 2
text: 23889 24530 219 1410 4a3c7a7ee1646330f6855ea58f9bd299
props: 26905 164416 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ltable.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0j.5ck.r26905/164773
type: file
pred: a0j.5ck.r23889/30191
count: 3
text: 23889 1930 488 7677 4062d3fd6e20be1ea8078756a9e9a89c
props: 26905 164726 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ltablib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zy.5ck.r26905/165083
type: file
pred: 9zy.5ck.r23889/36671
count: 2
text: 23889 24780 64 2162 86f0e22aeffbd94ad18efdfbb97ead47
props: 26905 165036 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/llex.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0g.5ck.r26905/165390
type: file
pred: a0g.5ck.r23889/30599
count: 4
text: 23889 3406 71 28355 d21e09b90d5da7a8e5e6ecdea87168ac
props: 26905 165343 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lstrlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9ze.5ck.r26905/165700
type: file
pred: 9ze.5ck.r23889/37275
count: 5
text: 23889 25194 781 12285 bef9635b055cf4a59816a88bd5332cc5
props: 26905 165653 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lbaselib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a08.5ck.r26905/166013
type: file
pred: a08.5ck.r23889/37482
count: 2
text: 23889 26007 69 8486 a21a50d447e3bcb21e848cac62544971
props: 26905 165966 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lopcodes.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0v.5ck.r26905/166324
type: file
pred: a0v.5ck.r23889/37893
count: 3
text: 23889 26277 99 1625 565dc100f0fffa28a6a8a9de8110e168
props: 26905 166277 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lzio.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zo.5ck.r26905/166631
type: file
pred: 9zo.5ck.r23889/31006
count: 6
text: 23889 3602 568 20751 94a3c12c3ed347a2ab33d808886cf65c
props: 26905 166584 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ldo.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zq.5ck.r26905/166938
type: file
pred: 9zq.5ck.r23889/31206
count: 3
text: 23889 4198 136 3221 6e89f5428baf4bc956c58602597c0208
props: 26905 166891 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ldump.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zf.5ck.r26905/167246
type: file
pred: 9zf.5ck.r23889/31408
count: 3
text: 23889 4365 260 4374 db303cadee91312e2f365e0b8fe5998e
props: 26905 167199 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lbitlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0w.5ck.r26905/167556
type: file
pred: a0w.5ck.r23889/38910
count: 2
text: 23889 27118 64 1486 db382cb2ebced91b2c48414ffa3e7200
props: 26905 167509 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lzio.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9zp.5ck.r26905/167863
type: file
pred: 9zp.5ck.r23889/31612
count: 2
text: 23889 4656 63 1531 d9edccb767106b1b35bf68b521018548
props: 26905 167816 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/ldo.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: a0r.5ck.r26905/168168
type: file
pred: a0r.5ck.r23889/32213
count: 3
text: 23889 4926 658 5623 90a78f2c5dc4ec9164868d8ebbe074bd
props: 26905 168121 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lundump.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 9za.5ck.r26905/168478
type: file
pred: 9za.5ck.r23889/39112
count: 4
text: 23889 27293 68 29910 37737075f3e19e6b41801c07dbda3fc3
props: 26905 168431 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.2/src/lapi.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 23
file 9z8.5ck.r23968/164
K 6
lapi.c
V 26
file 9za.5ck.r26905/168478
K 6
lapi.h
V 26
file 9zb.5ck.r26905/151506
K 9
lauxlib.c
V 26
file 9zc.5ck.r26905/161989
K 9
lauxlib.h
V 26
file 9zd.5ck.r26905/163224
K 10
lbaselib.c
V 26
file 9ze.5ck.r26905/165700
K 9
lbitlib.c
V 26
file 9zf.5ck.r26905/167246
K 7
lcode.c
V 26
file 9zg.5ck.r26905/158286
K 7
lcode.h
V 26
file 9zh.5ck.r26905/160140
K 10
lcorolib.c
V 26
file 9zi.5ck.r26905/153343
K 8
lctype.c
V 26
file 9zj.5ck.r26905/161681
K 8
lctype.h
V 26
file 9zk.5ck.r26905/163533
K 8
ldblib.c
V 26
file 9zl.5ck.r26905/159525
K 8
ldebug.c
V 26
file 9zm.5ck.r26905/152728
K 8
ldebug.h
V 26
file 9zn.5ck.r26905/154269
K 5
ldo.c
V 26
file 9zo.5ck.r26905/166631
K 5
ldo.h
V 26
file 9zp.5ck.r26905/167863
K 7
ldump.c
V 26
file 9zq.5ck.r26905/166938
K 7
lfunc.c
V 26
file 9zr.5ck.r26905/154577
K 7
lfunc.h
V 26
file 9zs.5ck.r26905/155812
K 5
lgc.c
V 26
file 9zt.5ck.r26905/153653
K 5
lgc.h
V 26
file 9zu.5ck.r26905/155506
K 7
linit.c
V 26
file 9zv.5ck.r26905/156739
K 8
liolib.c
V 26
file 9zw.5ck.r26905/155196
K 6
llex.c
V 26
file 9zx.5ck.r26905/162915
K 6
llex.h
V 26
file 9zy.5ck.r26905/165083
K 9
llimits.h
V 26
file 9zz.5ck.r26905/157358
K 10
lmathlib.c
V 26
file a00.5ck.r26905/160757
K 6
lmem.c
V 26
file a01.5ck.r26905/159834
K 6
lmem.h
V 26
file a02.5ck.r26905/161374
K 9
loadlib.c
V 26
file a03.5ck.r26905/153956
K 9
lobject.c
V 26
file a04.5ck.r26905/157047
K 9
lobject.h
V 26
file a05.5ck.r26905/158903
K 14
localluaconf.h
V 26
file a06.5ck.r26905/163842
K 10
lopcodes.c
V 26
file a07.5ck.r26905/164151
K 10
lopcodes.h
V 26
file a08.5ck.r26905/166013
K 8
loslib.c
V 26
file a09.5ck.r26905/157978
K 9
lparser.c
V 26
file a0a.5ck.r26905/154885
K 9
lparser.h
V 26
file a0b.5ck.r26905/156428
K 8
lstate.c
V 26
file a0c.5ck.r26905/160448
K 8
lstate.h
V 26
file a0d.5ck.r26905/162298
K 9
lstring.c
V 26
file a0e.5ck.r26905/157668
K 9
lstring.h
V 26
file a0f.5ck.r26905/159214
K 9
lstrlib.c
V 26
file a0g.5ck.r26905/165390
K 8
ltable.c
V 26
file a0h.5ck.r26905/162606
K 8
ltable.h
V 26
file a0i.5ck.r26905/164463
K 9
ltablib.c
V 26
file a0j.5ck.r26905/164773
K 5
ltm.c
V 26
file a0k.5ck.r26905/151812
K 5
ltm.h
V 26
file a0l.5ck.r26905/152423
K 5
lua.h
V 26
file a0m.5ck.r26905/158596
K 7
lua.hpp
V 26
file a0n.5ck.r20749/551457
K 9
luaconf.h
V 26
file a0p.5ck.r26905/161067
K 8
lualib.h
V 26
file a0q.5ck.r26905/156120
K 9
lundump.c
V 26
file a0r.5ck.r26905/168168
K 9
lundump.h
V 26
file a0s.5ck.r26905/151198
K 5
lvm.c
V 26
file a0t.5ck.r26905/152117
K 5
lvm.h
V 26
file a0u.5ck.r26905/153038
K 6
lzio.c
V 26
file a0v.5ck.r26905/166324
K 6
lzio.h
V 26
file a0w.5ck.r26905/167556
END
ENDREP
id: 9z7.5ck.r26905/171400
type: dir
pred: 9z7.5ck.r26647/3211
count: 17
text: 26905 168739 2648 2648 78099d3bb1a24d92c80acd65807404fa
props: 23744 1156 53 0 1aad128f6d028f535e9ce7233326568e
cpath: /trunk/dependencies/lua-5.2/src
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 9z1.5ck.r22739/53515
K 6
README
V 25
file 9z2.5ck.r23889/43631
K 7
Version
V 23
file 9z3.5ck.r26647/222
K 3
doc
V 24
dir 9z4.5ck.r23889/28983
K 17
freeciv_lua.patch
V 25
file nr9.5ck.r22739/43689
K 3
src
V 25
dir 9z7.5ck.r26905/171400
END
ENDREP
id: 9yx.5ck.r26905/171932
type: dir
pred: 9yx.5ck.r26647/3736
count: 19
text: 26905 171653 266 266 87cd88b1bd062f92ff62765f2b6d8866
props: 23744 1749 47 0 bf36bdb5202732a1b9a911cc1234183c
cpath: /trunk/dependencies/lua-5.2
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r8.5ck.r26905/172226
type: file
pred: 19r8.5ck.r25888/617316
count: 1
text: 25888 87564 3203 3189 207d029d28bffbbbc00344aef04468e9
props: 26905 172179 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lcode.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rr.5ck.r26905/172539
type: file
pred: 19rr.5ck.r25888/617678
count: 1
text: 25888 221759 9629 9615 181629ea3f8f29d958dd15e37f8190ef
props: 26905 172492 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lmathlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s3.5ck.r26905/172856
type: file
pred: 19s3.5ck.r25888/617861
count: 1
text: 25888 213205 8541 8527 21a4358626e208eeaaf1980087c4df92
props: 26905 172809 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lstate.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sf.5ck.r26905/173171
type: file
pred: 19sf.5ck.r25888/617495
count: 1
text: 25888 90780 18731 18714 7a1fca91a1bcb9b1ba7762f282b55ad2
props: 26905 173124 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/luaconf.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rt.5ck.r26905/173488
type: file
pred: 19rt.5ck.r25888/618042
count: 1
text: 25888 534231 1816 1802 19f3f707c435506e7f668bf87b4406fc
props: 26905 173441 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lmem.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19ra.5ck.r26905/173801
type: file
pred: 19ra.5ck.r25888/618405
count: 1
text: 25888 269391 2309 2295 8308d0c0fb217e7000180bbc665947b2
props: 26905 173754 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lctype.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r3.5ck.r26905/174116
type: file
pred: 19r3.5ck.r25888/618221
count: 1
text: 25888 438850 27809 27792 b1cc7a07352455d8493706311b7521f2
props: 26905 174069 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lauxlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s4.5ck.r26905/174434
type: file
pred: 19s4.5ck.r25888/618586
count: 1
text: 25888 271713 7123 7109 d6e245cf28d52f792692944b99de4fa2
props: 26905 174387 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lstate.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s8.5ck.r26905/174749
type: file
pred: 19s8.5ck.r25888/618767
count: 1
text: 25888 538060 17780 17763 6e97a851d1be015fceec638531895560
props: 26905 174702 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ltable.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19ro.5ck.r26905/175066
type: file
pred: 19ro.5ck.r25888/618950
count: 1
text: 25888 284999 17204 17187 deb11dbd0234b3824c776505a5d77fd1
props: 26905 175019 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/llex.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rb.5ck.r26905/175381
type: file
pred: 19rb.5ck.r25888/619313
count: 1
text: 25888 302216 1851 1837 d669a2194902ae2742e2ee6399375801
props: 26905 175334 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lctype.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r4.5ck.r26905/175696
type: file
pred: 19r4.5ck.r25888/619131
count: 1
text: 25888 484314 7725 7711 87323db9d51400bafe18bb1ad3d6e2cd
props: 26905 175649 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lauxlib.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rx.5ck.r26905/176012
type: file
pred: 19rx.5ck.r25888/619494
count: 1
text: 25888 304080 1210 1196 0531bf38124174e0b54da1fb8e85bbee
props: 26905 175965 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/localluaconf.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s9.5ck.r26905/176333
type: file
pred: 19s9.5ck.r25888/619864
count: 1
text: 25888 0 1593 1579 5dd18fdbb119d7b6dd6e0c91656826b3
props: 26905 176286 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ltable.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19ry.5ck.r26905/176643
type: file
pred: 19ry.5ck.r25888/619681
count: 1
text: 25888 355266 3514 3500 70fa34bc3ffa55db2d9df0c89387679e
props: 26905 176596 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lopcodes.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rp.5ck.r26905/176960
type: file
pred: 19rp.5ck.r25888/620224
count: 1
text: 25888 358793 2276 2262 a94f2d99dafc2a051acfe07a6f71b389
props: 26905 176913 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/llex.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sa.5ck.r26905/177273
type: file
pred: 19sa.5ck.r25888/620040
count: 1
text: 25888 109524 10267 10253 a9fe616f78440a8ab431cb578a772c49
props: 26905 177226 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ltablib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s7.5ck.r26905/177591
type: file
pred: 19s7.5ck.r25888/620403
count: 1
text: 25888 139247 33999 33982 de2a601b1bea442eb20bc125d589b397
props: 26905 177544 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lstrlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r5.5ck.r26905/177909
type: file
pred: 19r5.5ck.r25888/620587
count: 1
text: 25888 6846 14610 14596 b0f3d468197c216d7f5a061137d3131f
props: 26905 177862 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lbaselib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rz.5ck.r26905/178226
type: file
pred: 19rz.5ck.r25888/620770
count: 1
text: 25888 366001 8802 8788 c0ef132ab532f547aa5b6928928334f6
props: 26905 178179 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lopcodes.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sm.5ck.r26905/178543
type: file
pred: 19sm.5ck.r25888/620953
count: 1
text: 25888 21469 1635 1621 2ca0277200adea3124d7290b809554c3
props: 26905 178496 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lzio.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rf.5ck.r26905/178855
type: file
pred: 19rf.5ck.r25888/621131
count: 1
text: 25888 498373 21992 21975 b8e970e1d74e9b565a3804fbe12b59d6
props: 26905 178808 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ldo.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rh.5ck.r26905/179169
type: file
pred: 19rh.5ck.r25888/621493
count: 1
text: 25888 520378 4423 4409 f9558e8c046fc59d75fb8ac10c29cc4f
props: 26905 179122 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ldump.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r6.5ck.r26905/179483
type: file
pred: 19r6.5ck.r25888/621311
count: 1
text: 25888 173259 4852 4838 f9312642e75701949f5c18b9679fb375
props: 26905 179436 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lbitlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sn.5ck.r26905/179799
type: file
pred: 19sn.5ck.r25888/621673
count: 1
text: 25888 29974 1547 1533 7836a67ab63b104e5a0f68efc424638f
props: 26905 179752 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lzio.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rg.5ck.r26905/180111
type: file
pred: 19rg.5ck.r25888/621851
count: 1
text: 25888 524814 1541 1527 69027f09c70ff8594ade54f6f7a75e42
props: 26905 180064 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ldo.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sh.5ck.r26905/180423
type: file
pred: 19sh.5ck.r25888/622029
count: 1
text: 25888 178124 6014 6000 928300e32b0178dca80b515b6cc82a4f
props: 26905 180376 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lundump.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r1.5ck.r26905/180739
type: file
pred: 19r1.5ck.r25888/622211
count: 1
text: 25888 31534 29673 29656 6df08e10f14f3d972ea354579ca0e20b
props: 26905 180692 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lapi.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19si.5ck.r26905/181053
type: file
pred: 19si.5ck.r25888/622569
count: 1
text: 25888 212331 861 847 9abee08dad26e53e5a6d796ec602817a
props: 26905 181006 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lundump.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r2.5ck.r26905/181367
type: file
pred: 19r2.5ck.r25888/622749
count: 1
text: 25888 87002 549 535 9249bdec80a46709081e40d90e83860c
props: 26905 181320 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lapi.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sb.5ck.r26905/181677
type: file
pred: 19sb.5ck.r25888/622925
count: 1
text: 25888 530443 3775 3761 0f4711bd062a09797ae264018a41348b
props: 26905 181630 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ltm.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sk.5ck.r26905/181989
type: file
pred: 19sk.5ck.r25888/623103
count: 1
text: 25888 231401 37977 37960 bfcf72b1abcb68b134397af842b2a104
props: 26905 181942 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lvm.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sc.5ck.r26905/182303
type: file
pred: 19sc.5ck.r25888/623283
count: 1
text: 25888 536060 1765 1751 9b33144bb2ed612439429d4b6f7deee5
props: 26905 182256 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ltm.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rd.5ck.r26905/182615
type: file
pred: 19rd.5ck.r25888/623461
count: 1
text: 25888 466672 17629 17612 4e7283c62ac2bf3c871e9921ffc6a4c3
props: 26905 182568 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ldebug.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sl.5ck.r26905/182932
type: file
pred: 19sl.5ck.r25888/623644
count: 1
text: 25888 283108 1878 1864 f0319819497c42670f8a5e7587ba64dd
props: 26905 182885 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lvm.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rk.5ck.r26905/183244
type: file
pred: 19rk.5ck.r25888/624005
count: 1
text: 25888 555853 35406 35389 79f6a72559dc5d081ea0ff67f7fc1034
props: 26905 183197 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lgc.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r9.5ck.r26905/183558
type: file
pred: 19r9.5ck.r25888/623822
count: 1
text: 25888 492052 3748 3734 024b524134ee4f001d2dfa16c4b440ee
props: 26905 183511 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lcorolib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19ru.5ck.r26905/183875
type: file
pred: 19ru.5ck.r25888/624185
count: 1
text: 25888 591272 23257 23240 12be7c45e8a0aa251a2fbc5ce3bd011c
props: 26905 183828 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/loadlib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19ri.5ck.r26905/184193
type: file
pred: 19ri.5ck.r25888/624550
count: 1
text: 25888 305303 3683 3669 cafe31a30cbdd65044c1a541df8eaade
props: 26905 184146 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lfunc.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19re.5ck.r26905/184507
type: file
pred: 19re.5ck.r25888/624369
count: 1
text: 25888 495813 1347 1333 4a75ef1a62d8295f230244132fbea34f
props: 26905 184460 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ldebug.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s1.5ck.r26905/184822
type: file
pred: 19s1.5ck.r25888/624730
count: 1
text: 25888 308999 46254 46237 4955ab6a69b4132eda22751bcec46d86
props: 26905 184775 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lparser.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rl.5ck.r26905/185140
type: file
pred: 19rl.5ck.r25888/625097
count: 1
text: 25888 2457 4376 4362 60e0925fa3f16016eb9db080e4741a5e
props: 26905 185093 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lgc.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rn.5ck.r26905/185450
type: file
pred: 19rn.5ck.r25888/624914
count: 1
text: 25888 119804 19430 19413 68fb814e2ac1ff3b6bdcbdcc57ded213
props: 26905 185403 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/liolib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rj.5ck.r26905/185767
type: file
pred: 19rj.5ck.r25888/625273
count: 1
text: 25888 361082 1517 1503 ed911a87c4aa20f025c4008105fe9092
props: 26905 185720 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lfunc.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sg.5ck.r26905/186081
type: file
pred: 19sg.5ck.r25888/625453
count: 1
text: 25888 497173 1187 1173 5dec6da1f036248bd8f28725a8263fca
props: 26905 186034 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lualib.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s2.5ck.r26905/186396
type: file
pred: 19s2.5ck.r25888/625634
count: 1
text: 25888 362612 3376 3362 78fd6a2ac7181d3dcfe84de1d794718b
props: 26905 186349 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lparser.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rm.5ck.r26905/186712
type: file
pred: 19rm.5ck.r25888/625816
count: 1
text: 25888 23117 1772 1758 8e66ead429d3763aef3a1d0ec56afc49
props: 26905 186665 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/linit.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rv.5ck.r26905/187025
type: file
pred: 19rv.5ck.r25888/625995
count: 1
text: 25888 379685 14436 14422 f22b6828f4995764568bb5f636a024d8
props: 26905 186978 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lobject.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rq.5ck.r26905/187343
type: file
pred: 19rq.5ck.r25888/626179
count: 1
text: 25888 24902 5059 5045 176e0c47d589b41c09d252dc3611a85f
props: 26905 187296 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/llimits.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s5.5ck.r26905/187658
type: file
pred: 19s5.5ck.r25888/626360
count: 1
text: 25888 375132 4540 4526 8a68eb87868dea4fd2806787a58d62ce
props: 26905 187611 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lstring.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s0.5ck.r26905/187974
type: file
pred: 19s0.5ck.r25888/626542
count: 1
text: 25888 184151 8614 8600 75dbda9a9f99d74e0764979ffada8ec2
props: 26905 187927 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/loslib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19r7.5ck.r26905/188289
type: file
pred: 19r7.5ck.r25888/626723
count: 1
text: 25888 61406 24690 24673 f1c608f57259fb2d3db4caf03a0b9566
props: 26905 188242 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lcode.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sd.5ck.r26905/188604
type: file
pred: 19sd.5ck.r25888/626904
count: 1
text: 25888 394134 14624 14610 692593bc109c275a6944d157a8f0148e
props: 26905 188557 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lua.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rw.5ck.r26905/188918
type: file
pred: 19rw.5ck.r25888/616224
count: 1
text: 25888 410081 13818 13804 519c8717e05689c728dbb54725b91af4
props: 26905 188871 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lobject.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19s6.5ck.r26905/189236
type: file
pred: 19s6.5ck.r25888/616408
count: 1
text: 25888 408771 1297 1283 3f2d8672b6e9072b45a74beb7012387b
props: 26905 189189 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lstring.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rc.5ck.r26905/189552
type: file
pred: 19rc.5ck.r25888/616771
count: 1
text: 25888 192996 12353 12339 7d11ce7c980db7caf3760e30dcaa670d
props: 26905 189505 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/ldblib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19sj.5ck.r26905/189869
type: file
pred: 19sj.5ck.r25888/616954
count: 1
text: 25888 205362 6956 6942 55965bb075f773a5bfb8972ce78e21a3
props: 26905 189822 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lutf8lib.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 19rs.5ck.r26905/190186
type: file
pred: 19rs.5ck.r25888/617137
count: 1
text: 25888 527806 2624 2610 31dde0272a322862dbfbb49b8d0ebe28
props: 26905 190139 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/lua-5.3/src/lmem.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 27
file 19qz.5ck.r25888/616590
K 6
lapi.c
V 27
file 19r1.5ck.r26905/180739
K 6
lapi.h
V 27
file 19r2.5ck.r26905/181367
K 9
lauxlib.c
V 27
file 19r3.5ck.r26905/174116
K 9
lauxlib.h
V 27
file 19r4.5ck.r26905/175696
K 10
lbaselib.c
V 27
file 19r5.5ck.r26905/177909
K 9
lbitlib.c
V 27
file 19r6.5ck.r26905/179483
K 7
lcode.c
V 27
file 19r7.5ck.r26905/188289
K 7
lcode.h
V 27
file 19r8.5ck.r26905/172226
K 10
lcorolib.c
V 27
file 19r9.5ck.r26905/183558
K 8
lctype.c
V 27
file 19ra.5ck.r26905/173801
K 8
lctype.h
V 27
file 19rb.5ck.r26905/175381
K 8
ldblib.c
V 27
file 19rc.5ck.r26905/189552
K 8
ldebug.c
V 27
file 19rd.5ck.r26905/182615
K 8
ldebug.h
V 27
file 19re.5ck.r26905/184507
K 5
ldo.c
V 27
file 19rf.5ck.r26905/178855
K 5
ldo.h
V 27
file 19rg.5ck.r26905/180111
K 7
ldump.c
V 27
file 19rh.5ck.r26905/179169
K 7
lfunc.c
V 27
file 19ri.5ck.r26905/184193
K 7
lfunc.h
V 27
file 19rj.5ck.r26905/185767
K 5
lgc.c
V 27
file 19rk.5ck.r26905/183244
K 5
lgc.h
V 27
file 19rl.5ck.r26905/185140
K 7
linit.c
V 27
file 19rm.5ck.r26905/186712
K 8
liolib.c
V 27
file 19rn.5ck.r26905/185450
K 6
llex.c
V 27
file 19ro.5ck.r26905/175066
K 6
llex.h
V 27
file 19rp.5ck.r26905/176960
K 9
llimits.h
V 27
file 19rq.5ck.r26905/187343
K 10
lmathlib.c
V 27
file 19rr.5ck.r26905/172539
K 6
lmem.c
V 27
file 19rs.5ck.r26905/190186
K 6
lmem.h
V 27
file 19rt.5ck.r26905/173488
K 9
loadlib.c
V 27
file 19ru.5ck.r26905/183875
K 9
lobject.c
V 27
file 19rv.5ck.r26905/187025
K 9
lobject.h
V 27
file 19rw.5ck.r26905/188918
K 14
localluaconf.h
V 27
file 19rx.5ck.r26905/176012
K 10
lopcodes.c
V 27
file 19ry.5ck.r26905/176643
K 10
lopcodes.h
V 27
file 19rz.5ck.r26905/178226
K 8
loslib.c
V 27
file 19s0.5ck.r26905/187974
K 9
lparser.c
V 27
file 19s1.5ck.r26905/184822
K 9
lparser.h
V 27
file 19s2.5ck.r26905/186396
K 8
lstate.c
V 27
file 19s3.5ck.r26905/172856
K 8
lstate.h
V 27
file 19s4.5ck.r26905/174434
K 9
lstring.c
V 27
file 19s5.5ck.r26905/187658
K 9
lstring.h
V 27
file 19s6.5ck.r26905/189236
K 9
lstrlib.c
V 27
file 19s7.5ck.r26905/177591
K 8
ltable.c
V 27
file 19s8.5ck.r26905/174749
K 8
ltable.h
V 27
file 19s9.5ck.r26905/176333
K 9
ltablib.c
V 27
file 19sa.5ck.r26905/177273
K 5
ltm.c
V 27
file 19sb.5ck.r26905/181677
K 5
ltm.h
V 27
file 19sc.5ck.r26905/182303
K 5
lua.h
V 27
file 19sd.5ck.r26905/188604
K 7
lua.hpp
V 27
file 19se.5ck.r25888/622391
K 9
luaconf.h
V 27
file 19sf.5ck.r26905/173171
K 8
lualib.h
V 27
file 19sg.5ck.r26905/186081
K 9
lundump.c
V 27
file 19sh.5ck.r26905/180423
K 9
lundump.h
V 27
file 19si.5ck.r26905/181053
K 10
lutf8lib.c
V 27
file 19sj.5ck.r26905/189869
K 5
lvm.c
V 27
file 19sk.5ck.r26905/181989
K 5
lvm.h
V 27
file 19sl.5ck.r26905/182932
K 6
lzio.c
V 27
file 19sm.5ck.r26905/178543
K 6
lzio.h
V 27
file 19sn.5ck.r26905/179799
END
ENDREP
id: 19qy.5ck.r26905/193224
type: dir
pred: 19qy.5ck.r25888/629856
count: 1
text: 26905 190452 2759 2759 a6de4c90e73719e880bd2fa67028320d
cpath: /trunk/dependencies/lua-5.3/src
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 27
file 19qn.5ck.r25888/630027
K 6
README
V 27
file 19qp.5ck.r25888/630205
K 7
Version
V 27
file 19qq.5ck.r25888/614542
K 3
doc
V 26
dir 19qr.5ck.r25888/616055
K 17
freeciv_lua.patch
V 27
file 19qx.5ck.r25888/630377
K 3
src
V 26
dir 19qy.5ck.r26905/193224
END
ENDREP
id: 19ql.5ck.r26905/193716
type: dir
pred: 19ql.5ck.r25888/630851
count: 1
text: 26905 193424 279 279 fa8024dd90033e118547bf6b3ea7d434
cpath: /trunk/dependencies/lua-5.3
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c7x.5ck.r26905/193957
type: file
pred: c7x.5ck.r21069/409680
count: 1
text: 21069 365100 679 665 245c408b0eaab68dab9899adfa5dce19
props: 26905 193910 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/lib/tolua_event.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c7y.5ck.r26905/194279
type: file
pred: c7y.5ck.r21069/408547
count: 1
text: 21069 61197 11996 11982 ee91068aecf4532503b0640c161dee7c
props: 26905 194232 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/lib/tolua_is.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c7z.5ck.r26905/194601
type: file
pred: c7z.5ck.r21099/287
count: 2
text: 26905 0 13029 14061 fac54087b4bcc128a9b858d3f56a7f9c
props: 26905 194554 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/lib/tolua_map.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c80.5ck.r26905/194917
type: file
pred: c80.5ck.r21069/408926
count: 1
text: 21069 7194 4342 4328 cf93fa7ac88c9948fb17add2d383cfd5
props: 26905 194870 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/lib/tolua_push.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c7w.5ck.r26905/195238
type: file
pred: c7w.5ck.r21099/495
count: 2
text: 26905 13060 11291 11612 e86e2e89c04f2b30ecad64a9e3365d3a
props: 26905 195191 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/lib/tolua_event.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c81.5ck.r26905/195560
type: file
pred: c81.5ck.r21069/409307
count: 1
text: 21069 15284 2971 2957 6fbbaa43e3afaf17a941ae783d3726d9
props: 26905 195513 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/lib/tolua_to.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file c7u.5ck.r21572/10693
K 13
tolua_event.c
V 26
file c7w.5ck.r26905/195238
K 13
tolua_event.h
V 26
file c7x.5ck.r26905/193957
K 10
tolua_is.c
V 26
file c7y.5ck.r26905/194279
K 11
tolua_map.c
V 26
file c7z.5ck.r26905/194601
K 12
tolua_push.c
V 26
file c80.5ck.r26905/194917
K 10
tolua_to.c
V 26
file c81.5ck.r26905/195560
END
ENDREP
id: c7t.5ck.r26905/196195
type: dir
pred: c7t.5ck.r23744/2118
count: 4
text: 26905 195833 349 349 9dd007364cff1010760d6a268783970f
props: 23744 2052 53 0 1aad128f6d028f535e9ce7233326568e
cpath: /trunk/dependencies/tolua-5.2/src/lib
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c7s.5ck.r26905/196498
type: file
pred: c7s.5ck.r21069/415655
count: 1
text: 21069 90611 262414 262371 2854fa4d1f22b515e6fab7a06984d72a
props: 26905 196451 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/bin/toluabind.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c7q.5ck.r26905/196823
type: file
pred: c7q.5ck.r21099/1260
count: 2
text: 26905 24383 2823 2945 919fdfc71918cec2edb86a4208bd5864
props: 26905 196776 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/src/bin/tolua.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file c71.5ck.r21872/14900
K 3
lua
V 25
dir c73.5ck.r21069/415475
K 7
tolua.c
V 26
file c7q.5ck.r26905/196823
K 9
tolua.pkg
V 26
file c7r.5ck.r21069/415847
K 11
toluabind.c
V 26
file c7s.5ck.r26905/196498
END
ENDREP
id: c70.5ck.r26905/197334
type: dir
pred: c70.5ck.r23744/2444
count: 5
text: 26905 197091 230 230 e55c9223f82a47096a6841d11f7496ed
props: 23744 2372 59 0 ff39922563c36f2419392ed34080d08b
cpath: /trunk/dependencies/tolua-5.2/src/bin
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 26
file c6y.5ck.r21069/416819
K 3
bin
V 25
dir c70.5ck.r26905/197334
K 3
lib
V 25
dir c7t.5ck.r26905/196195
END
ENDREP
id: c6x.5ck.r26905/197734
type: dir
pred: c6x.5ck.r23744/2898
count: 5
text: 26905 197590 131 131 4ccc205c32fc3fc2b6d4d2faf51a0a48
props: 23744 2838 47 0 bf36bdb5202732a1b9a911cc1234183c
cpath: /trunk/dependencies/tolua-5.2/src
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: c6v.5ck.r26905/198033
type: file
pred: c6v.5ck.r21069/408131
count: 1
text: 21069 1432 5749 5735 cc3f7ee2000a6436111e64a1b34560ba
props: 26905 197986 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/tolua-5.2/include/tolua.h
copyroot: 15280 /trunk

PLAIN
K 7
tolua.h
V 26
file c6v.5ck.r26905/198033
END
ENDREP
id: c6u.5ck.r26905/198363
type: dir
pred: c6u.5ck.r21069/408375
count: 1
text: 26905 198302 48 48 a99f91f0f1354eeaab382b2dad8bc6dd
cpath: /trunk/dependencies/tolua-5.2/include
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 23
file c6r.5ck.r22462/765
K 6
README
V 26
file c6t.5ck.r21069/417489
K 7
include
V 25
dir c6u.5ck.r26905/198363
K 3
src
V 25
dir c6x.5ck.r26905/197734
END
ENDREP
id: c6p.5ck.r26905/198751
type: dir
pred: c6p.5ck.r23744/3393
count: 6
text: 26905 198563 175 175 e5591f0ff92a6ff7464692b580b65490
props: 23744 3333 47 0 bf36bdb5202732a1b9a911cc1234183c
cpath: /trunk/dependencies/tolua-5.2
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: acy.5ck.r26905/199046
type: file
pred: acy.5ck.r22702/2904
count: 4
text: 22702 0 2879 7353 f30798bc6434af68291d9e7ef36b4eeb
props: 26905 198999 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/cvercmp/cvercmp.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: acz.5ck.r26905/199349
type: file
pred: acz.5ck.r20795/12574
count: 1
text: 20795 10752 1115 1101 38a87ab9925395c319b4d841985e98e4
props: 26905 199302 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/dependencies/cvercmp/cvercmp.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file acw.5ck.r20795/12749
K 9
cvercmp.c
V 26
file acy.5ck.r26905/199046
K 9
cvercmp.h
V 26
file acz.5ck.r26905/199349
END
ENDREP
id: acu.5ck.r26905/199767
type: dir
pred: acu.5ck.r22702/3253
count: 5
text: 26905 199610 144 144 f9f9512a6cb898d70e6be91518423f4a
props: 21042 0 53 0 a527b216afb99426b763a1e313c531be
cpath: /trunk/dependencies/cvercmp
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 23
file 31m.5ck.r22501/750
K 7
cvercmp
V 25
dir acu.5ck.r26905/199767
K 7
lua-5.2
V 25
dir 9yx.5ck.r26905/171932
K 7
lua-5.3
V 26
dir 19ql.5ck.r26905/193716
K 6
luasql
V 25
dir 6k8.5ks.r26905/150886
K 2
m4
V 23
dir 4ef.5ck.r25384/7703
K 9
tolua-5.2
V 25
dir c6p.5ck.r26905/198751
END
ENDREP
id: 2yu.5ck.r26905/200326
type: dir
pred: 2yu.5ck.r26647/4287
count: 100
text: 26905 200010 303 303 122421e91197768cc1a2756ff9f70a91
props: 14844 2808 53 0 a527b216afb99426b763a1e313c531be
cpath: /trunk/dependencies
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4go.5ck.r26905/200613
type: file
pred: 4go.5ck.r26584/573
count: 19
text: 26584 0 545 10131 14b548028ad9c4b5f192ef38f24e9934
props: 26905 200566 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/ai.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4ro.5ck.r26905/200897
type: file
pred: 4ro.5ck.r26838/2934
count: 24
text: 26838 0 1016 37930 5cf92251d551b868f821b3c266e6c156
props: 26905 200850 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/research.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4gp.5ck.r26905/201189
type: file
pred: 4gp.5ck.r26118/17936
count: 70
text: 26118 4529 20 12506 ebce6eb6c84be2a67d8e8115777c07c4
props: 26905 201142 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/ai.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4rp.5ck.r26905/201477
type: file
pred: 4rp.5ck.r26197/16828
count: 16
text: 26197 2155 43 6633 c6b0024de640f2112b4562180e4565b8
props: 26905 201430 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/research.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4up.5ck.r26905/201770
type: file
pred: 4up.5ck.r22631/8528
count: 6
text: 22631 7310 52 2202 8bb73e6daaf120247b747edebbe9c0c0
props: 26905 201723 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/fc_interface.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 7k3.5ck.r26905/202065
type: file
pred: 7k3.5ck.r24972/68348
count: 10
text: 24972 54779 181 1539 46fd135adc9137e64b317167579f98f2
props: 26905 202018 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/traits.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4uq.5ck.r26905/202358
type: file
pred: 4uq.5ck.r23325/4181
count: 6
text: 23325 884 26 1632 75150d43f175c2c2f0f7c86f70119d03
props: 26905 202311 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/fc_interface.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 104t.5ck.r26905/202652
type: file
pred: 104t.5ck.r25736/2351
count: 5
text: 25736 94 993 2281 3bc7047aa048b162e4913400695ebf1c
props: 26905 202605 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/culture.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pq.5ck.r26905/202943
type: file
pred: 6pq.5ck.r26052/76543
count: 70
text: 26052 47927 59 17150 299894a9e2aee795cc5158401c67605d
props: 26905 202896 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/road.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6mx.5ck.r26905/203234
type: file
pred: 6mx.5ck.r20853/5961
count: 3
text: 20853 0 451 7251 c03eb25366cef584de60ed319d777db4
props: 26905 203187 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/citizens.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 104v.5ck.r26905/203523
type: file
pred: 104v.5ck.r25736/2536
count: 5
text: 25736 1741 231 1099 374aaf289f575690d07d3515826b3456
props: 26905 203476 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/culture.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pr.5ck.r26905/203816
type: file
pred: 6pr.5ck.r26052/76728
count: 81
text: 26052 48536 1489 6165 48d81fde8cbf46451a1b4c4888fe9c57
props: 26905 203769 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/road.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6my.5ck.r26905/204108
type: file
pred: 6my.5ck.r20853/6145
count: 2
text: 20853 480 56 2872 53b8aa03e27517da516f06329f5cf635
props: 26905 204061 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/citizens.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: zzb.5ck.r26905/204398
type: file
pred: zzb.5ck.r25382/99147
count: 9
text: 25382 64882 2710 7760 2c4aaba44abe0110d40bf3c3bc557cd8
props: 26905 204351 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/style.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: bf8.5ck.r26905/204690
type: file
pred: bf8.5ck.r24649/19011
count: 6
text: 24649 6172 1116 11463 3b26949f16410c316e74b558f04a05ed
props: 26905 204643 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/traderoutes.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: zzd.5ck.r26905/204988
type: file
pred: zzd.5ck.r24742/9559
count: 8
text: 24742 1434 59 2822 3823782b9d42d34941ffc2ffb3a9264f
props: 26905 204941 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/style.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: bfa.5ck.r26905/205276
type: file
pred: bfa.5ck.r26603/33460
count: 7
text: 26603 6942 819 4172 540771d5035c90b75b817b2241e4e8e4
props: 26905 205229 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/traderoutes.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: o9u.5ck.r26905/205572
type: file
pred: o9u.5ck.r26903/34539
count: 55
text: 26903 0 742 23699 346412355757bcbd1f345758fc78a186
props: 26905 205525 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/extras.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: o9w.5ck.r26905/205862
type: file
pred: o9w.5ck.r26903/34723
count: 54
text: 26903 25483 60 9781 4385515c56d3e88f36449331e4c92449
props: 26905 205815 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/extras.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: siq.5ck.r26905/206154
type: file
pred: siq.5ck.r26881/34311
count: 27
text: 26881 5294 1635 19967 d47f637be592c419e96ddc93358832ec
props: 26905 206107 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/metaknowledge.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: sis.5ck.r26905/206455
type: file
pred: sis.5ck.r24569/17110
count: 4
text: 24569 2421 147 2183 e9458a1f957c221cf0f0aa221d7ad325
props: 26905 206408 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/metaknowledge.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: llw.5ck.r26905/206753
type: file
pred: llw.5ck.r22482/3617
count: 2
text: 22482 3369 36 1108 241762b2a8fffbb4ab57dc5a9920c93b
props: 26905 206706 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/workertask.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75h.5ck.r26905/207046
type: file
pred: 75h.5ck.r20287/113775
count: 1
text: 20287 97377 902 1828 38c2cbf4d5fe7ead72a26c1c5104e6d8
props: 26905 206999 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/luascript_func.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75e.5ck.r26905/207358
type: file
pred: 75e.5ck.r21803/12936
count: 2
text: 21803 199 49 4053 a45bdcb69f6ac6282065df93ca6656d2
props: 26905 207311 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/api_signal_base.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4jz.5hs.r26905/207667
type: file
pred: 4jz.5hs.r23170/5254
count: 10
text: 23170 0 45 2673 e85692297a0d1c99f7fd79526411b250
props: 26905 207620 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/api_game_effects.c
copyroot: 20274 /trunk/common/scriptcore/api_game_effects.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6gu.5hy.r26905/208012
type: file
pred: 6gu.5hy.r20287/108756
count: 4
text: 20287 41334 586 4670 a25b4053fa075715b16ba633c82c6f53
props: 26905 207965 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/api_game_specenum.c
copyroot: 20274 /trunk/common/scriptcore/api_game_specenum.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75f.5ck.r26905/208365
type: file
pred: 75f.5ck.r20287/109608
count: 1
text: 20287 8473 816 1488 bf079ee91fa29bcbb89e6fa7e8b6ac66
props: 26905 208318 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/api_signal_base.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6ky.5i0.r26905/208677
type: file
pred: 6ky.5i0.r26685/434
count: 11
text: 26685 0 407 21814 54bbe8ad0cc7f5d0263438067c66dd38
props: 26905 208630 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/luascript.c
copyroot: 20274 /trunk/common/scriptcore/luascript.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6gv.5hz.r26905/209009
type: file
pred: 6gv.5hz.r20287/110032
count: 3
text: 20287 53922 294 958 ce7ef551053efe703ae7ddbb65ed8576
props: 26905 208962 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/api_game_specenum.h
copyroot: 20274 /trunk/common/scriptcore/api_game_specenum.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4k0.5ht.r26905/209361
type: file
pred: 4k0.5ht.r20287/109787
count: 5
text: 20287 53299 595 1257 a59823d401b06526de99e56443105056
props: 26905 209314 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/api_game_effects.h
copyroot: 20274 /trunk/common/scriptcore/api_game_effects.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6kz.5i1.r26905/209712
type: file
pred: 6kz.5i1.r20315/32952
count: 5
text: 20315 2700 5299 6082 6196e1383792e8ab17428ddc29726f13
props: 26905 209665 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/luascript.h
copyroot: 20274 /trunk/common/scriptcore/luascript.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 75g.5ck.r26905/210048
type: file
pred: 75g.5ck.r26376/197
count: 3
text: 26376 0 167 9322 d926f9c9fdb7e70bd7b4009d823b7980
props: 26905 210001 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/scriptcore/luascript_func.c
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 75b.5ck.r24745/13308
K 17
api_common_intl.c
V 26
file 323.5ho.r20287/110511
K 17
api_common_intl.h
V 26
file 324.5hp.r20287/111645
K 22
api_common_utilities.c
V 25
file 32e.5hq.r21803/13140
K 22
api_common_utilities.h
V 24
file 32f.5hr.r20292/1613
K 18
api_game_effects.c
V 26
file 4jz.5hs.r26905/207667
K 18
api_game_effects.h
V 26
file 4k0.5ht.r26905/209361
K 15
api_game_find.c
V 24
file 321.5hu.r25896/7330
K 15
api_game_find.h
V 26
file 322.5hv.r20287/110812
K 18
api_game_methods.c
V 25
file 33d.5hw.r26491/16972
K 18
api_game_methods.h
V 25
file 33e.5hx.r26491/17272
K 19
api_game_specenum.c
V 26
file 6gu.5hy.r26905/208012
K 19
api_game_specenum.h
V 26
file 6gv.5hz.r26905/209009
K 17
api_signal_base.c
V 26
file 75e.5ck.r26905/207358
K 17
api_signal_base.h
V 26
file 75f.5ck.r26905/208365
K 11
luascript.c
V 26
file 6ky.5i0.r26905/208677
K 11
luascript.h
V 26
file 6kz.5i1.r26905/209712
K 16
luascript_func.c
V 26
file 75g.5ck.r26905/210048
K 16
luascript_func.h
V 26
file 75h.5ck.r26905/207046
K 18
luascript_signal.c
V 25
file 32a.5i2.r25151/81659
K 18
luascript_signal.h
V 26
file 32b.5i3.r20287/111110
K 17
luascript_types.h
V 25
file 327.5i4.r26491/17572
K 18
tolua_common_a.pkg
V 22
file 6l0.5i5.r23190/44
K 18
tolua_common_z.pkg
V 25
file 6l1.5i6.r26491/16730
K 14
tolua_game.pkg
V 25
file 320.5i7.r26491/17872
K 16
tolua_signal.pkg
V 23
file 75i.5ck.r20289/971
END
ENDREP
id: 75a.5ck.r26905/211728
type: dir
pred: 75a.5ck.r26685/2071
count: 47
text: 26905 210306 1409 1409 e905d29569df89196fa64d349587f1b2
props: 20297 4258 210 0 96ce2862a898d58fd2b950172851a0fd
cpath: /trunk/common/scriptcore
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: zj9.5ck.r26905/212022
type: file
pred: zj9.5ck.r25989/65819
count: 2
text: 25989 36867 20 5775 396b1bd52680aee90de1c526409bd6ac
props: 26905 211975 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/clientutils.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4f0.5ck.r26905/212318
type: file
pred: 4f0.5ck.r25016/63
count: 11
text: 25016 0 33 3445 28cdea3a11e580d75fd7877e651f6693
props: 26905 212271 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/borders.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: lly.5ck.r26905/212604
type: file
pred: lly.5ck.r23027/52794
count: 3
text: 23027 49594 47 1045 22087988dccbd08f987680b700238ad5
props: 26905 212557 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/workertask.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4h3.5ck.r26905/212899
type: file
pred: 4h3.5ck.r24895/9815
count: 23
text: 24895 5161 1098 38291 ba2d2530d00d9c8aa2083921a3722e89
props: 26905 212852 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/featured_text.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: zjb.5ck.r26905/213199
type: file
pred: zjb.5ck.r24459/7536
count: 1
text: 24459 5848 973 959 d7ca41ed819ffd7a1ad78f0079d88066
props: 26905 213152 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/clientutils.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4f1.5ck.r26905/213493
type: file
pred: 4f1.5ck.r18858/99721
count: 3
text: 18858 11100 391 1115 fc37c2b8f996fd1c44c051c339a2783e
props: 26905 213446 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/borders.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4h4.5ck.r26905/213786
type: file
pred: 4h4.5ck.r24895/10009
count: 17
text: 24895 6289 3410 9031 c2fbb0dfdf3ee38829d9425a44e48c8e
props: 26905 213739 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/featured_text.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 147p.5ck.r26905/214086
type: file
pred: 147p.5ck.r26596/3748
count: 5
text: 26596 2550 1170 4177 af8d6905ccaf2e72688b45b342e9cfdf
props: 26905 214039 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/calendar.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6n9.5ck.r26905/214381
type: file
pred: 6n9.5ck.r26564/50398
count: 19
text: 26564 19809 83 105045 0dcf2ca057c47f2c3a6a38102c99b90c
props: 26905 214334 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/mapimg.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: qhc.5ck.r26905/214675
type: file
pred: qhc.5ck.r26758/8291
count: 17
text: 26758 385 7540 11208 1a124aa8a57a5c7ea9ea32440090a95b
props: 26905 214628 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/achievements.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: b2m.5ck.r26905/214973
type: file
pred: b2m.5ck.r25554/6385
count: 7
text: 25554 2782 133 4527 4c4d8121d7f35e3424570c9f5b0d1118
props: 26905 214926 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/disaster.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 147r.5ck.r26905/215265
type: file
pred: 147r.5ck.r26564/50586
count: 2
text: 26564 20139 50 999 edbaeb865895bac248c0e03bdb403f2f
props: 26905 215218 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/calendar.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6na.5ck.r26905/215559
type: file
pred: 6na.5ck.r22508/1884
count: 3
text: 22508 1543 127 5054 996d04596a65b314374c2757e0ee4242
props: 26905 215512 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/mapimg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: qhe.5ck.r26905/215849
type: file
pred: qhe.5ck.r26680/25154
count: 8
text: 26680 1389 95 2614 48fc104ca1fff7c419322511264bcae2
props: 26905 215802 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/achievements.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: b2o.5ck.r26905/216145
type: file
pred: b2o.5ck.r25554/5326
count: 11
text: 25554 2944 159 3183 860c9f914b4e6d60ed39ef28524cee6b
props: 26905 216098 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/disaster.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76j.5ck.r26905/216438
type: file
pred: 76j.5ck.r20867/6570
count: 2
text: 20867 3084 29 6991 f42789f81ba6c227e2f175c3afc825d1
props: 26905 216391 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/fc_cmdhelp.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 76k.5ck.r26905/216731
type: file
pred: 76k.5ck.r23663/127
count: 2
text: 23663 0 99 1320 2ed644e1633978fce60906a3ed09a6f5
props: 26905 216684 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/fc_cmdhelp.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: qex.5ck.r26905/217020
type: file
pred: qex.5ck.r23119/2099
count: 1
text: 23119 0 1125 1111 96e4ea3d5518cfe29f04089e32d6bd00
props: 26905 216973 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/victory.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: r7a.5ck.r26905/217309
type: file
pred: r7a.5ck.r26592/94
count: 48
text: 26592 0 66 40205 4d6aa12ceb3f772b2f48352dad1b7e06
props: 26905 217262 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/actions.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4k1.5ck.r26905/217596
type: file
pred: 4k1.5ck.r25037/17771
count: 8
text: 25037 6000 71 5197 6b6dc711339d2a440fb48fa96c359dea
props: 26905 217549 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/name_translation.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: qez.5ck.r26905/217896
type: file
pred: qez.5ck.r23119/2255
count: 1
text: 23119 1138 948 934 3f40ba84a12410e07e3082daec215333
props: 26905 217849 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/victory.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: r7c.5ck.r26905/218186
type: file
pred: r7c.5ck.r26563/44560
count: 32
text: 26563 8891 95 7512 747c46fa39df80d67fbe2c67a3a5b679
props: 26905 218139 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/actions.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 197b.5ck.r26905/218478
type: file
pred: 197b.5ck.r25802/4522
count: 1
text: 25802 1658 2851 2837 4a74bd371f00f92679de28d94468e943
props: 26905 218431 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/multipliers.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6i6.5ck.r26905/218776
type: file
pred: 6i6.5ck.r21333/48710
count: 8
text: 21333 428 638 6081 7ba46da57f64fa7b375b5adb38d1b35a
props: 26905 218729 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/rgbcolor.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6i7.5ck.r26905/219068
type: file
pred: 6i7.5ck.r21333/48896
count: 4
text: 21333 1090 99 3691 ee5bc37c61018d9bc26dd88d2bdcea8c
props: 26905 219021 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/rgbcolor.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 197d.5ck.r26905/219360
type: file
pred: 197d.5ck.r25802/4686
count: 1
text: 25802 0 1645 1631 3304c0968b5c3e484cfaf861a6f07cc0
props: 26905 219313 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/common/multipliers.h
copyroot: 15280 /trunk

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 26
file r7a.5ck.r26905/217309
K 9
actions.h
V 26
file r7c.5ck.r26905/218186
K 4
ai.c
V 26
file 4go.5ck.r26905/200613
K 4
ai.h
V 26
file 4gp.5ck.r26905/201189
K 6
aicore
V 23
dir 18t.5ck.r26830/1163
K 6
base.c
V 25
file 3jw.5ck.r26052/76057
K 6
base.h
V 25
file 3jx.5ck.r26052/76300
K 9
borders.c
V 26
file 4f0.5ck.r26905/212318
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 22
file q.5ck.r26874/2673
K 6
city.h
V 23
file 3q.5ck.r26874/2910
K 13
clientutils.c
V 26
file zj9.5ck.r26905/212022
K 13
clientutils.h
V 26
file zjb.5ck.r26905/213199
K 8
combat.c
V 24
file wp.5ck.r26042/43706
K 8
combat.h
V 24
file wq.5ck.r24573/25814
K 12
connection.c
V 22
file un.5ck.r26351/538
K 12
connection.h
V 22
file uo.5ck.r26351/778
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.r26834/3593
K 8
dataio.h
V 24
file 15s.5ck.r26834/4081
K 11
diptreaty.c
V 22
file 3r.5ck.r24570/203
K 11
diptreaty.h
V 24
file 3s.5ck.r22430/33000
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 25
file 2eo.5ck.r26392/11084
K 9
effects.h
V 24
file 2ep.5ck.r26713/1078
K 8
events.c
V 25
file 33h.5ck.r26563/44746
K 8
events.h
V 24
file 3t.5ck.r26563/44988
K 8
extras.c
V 26
file o9u.5ck.r26905/205572
K 8
extras.h
V 26
file o9w.5ck.r26905/205862
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 26
file 4up.5ck.r26905/201770
K 14
fc_interface.h
V 26
file 4uq.5ck.r26905/202358
K 10
fc_types.h
V 25
file 2ll.5ck.r26881/34064
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 23
file 3u.5ck.r26904/3759
K 6
game.h
V 23
file 3v.5ck.r26904/4000
K 19
generate_packets.py
V 24
file 2f4.5ck.r26834/3342
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 23
file vb.5ck.r26605/3425
K 13
improvement.h
V 23
file vc.5ck.r26605/3666
K 5
map.c
V 23
file r.5ck.r26428/31431
K 5
map.h
V 22
file 41.5ck.r26498/228
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.5ck.r26369/89463
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 24
file im.5ck.r26881/35250
K 9
packets.c
V 24
file 43.5ck.r23778/20942
K 11
packets.def
V 25
file 2f5.5ck.r26881/34505
K 9
packets.h
V 24
file 44.5ck.r26349/10254
K 8
player.c
V 24
file 45.5ck.r26824/28754
K 8
player.h
V 24
file 46.5ck.r26824/28997
K 14
requirements.c
V 25
file 2wq.5ck.r26881/34752
K 14
requirements.h
V 25
file 2wr.5ck.r26795/18908
K 10
research.c
V 26
file 4ro.5ck.r26905/200897
K 10
research.h
V 26
file 4rp.5ck.r26905/201477
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 26
file 6pr.5ck.r26905/203816
K 10
scriptcore
V 25
dir 75a.5ck.r26905/211728
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 24
file t.5ck.r26402/120137
K 6
tech.h
V 24
file u.5ck.r26401/193881
K 9
terrain.c
V 25
file 2fp.5ck.r26684/11018
K 9
terrain.h
V 24
file qs.5ck.r26572/10955
K 6
tile.c
V 25
file 2ys.5ck.r26109/28037
K 6
tile.h
V 25
file 2yt.5ck.r26109/28279
K 13
traderoutes.c
V 26
file bf8.5ck.r26905/204690
K 13
traderoutes.h
V 26
file bfa.5ck.r26905/205276
K 8
traits.h
V 26
file 7k3.5ck.r26905/202065
K 6
unit.c
V 22
file v.5ck.r26878/4780
K 6
unit.h
V 24
file 48.5ck.r26369/89220
K 10
unitlist.c
V 25
file 39m.5ck.r26369/88735
K 10
unitlist.h
V 25
file 39n.5ck.r25929/28243
K 10
unittype.c
V 24
file v9.5ck.r26795/19158
K 10
unittype.h
V 24
file va.5ck.r26795/19405
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 26
file 4dm.5ck.r19259/404222
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 25
file o8.5ck.r19259/402799
K 10
worklist.h
V 24
file o9.5ck.r18858/98299
END
ENDREP
id: p.5ck.r26905/224950
type: dir
pred: p.5ck.r26904/9496
count: 4062
text: 26905 219608 5329 5329 bf8ccb162bee4699218eb13e08e946f0
props: 23743 0 112 0 b2bc91bf125d83375389d51f25ff2c2f
cpath: /trunk/common
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 7k2.5ck.r26905/225228
type: file
pred: 7k2.5ck.r20500/19827
count: 1
text: 20500 0 975 961 93adb703bf54ebb40f71a8cf27783291
props: 26905 225181 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/aitraits.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1b4z.5ck.r26905/225513
type: file
pred: 1b4z.5ck.r26100/14334
count: 1
text: 26100 5391 865 851 3e4c3de56689d8400f7b2bb4f2aa36b9
props: 26905 225466 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/difficulty.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: syo.5ck.r26905/225805
type: file
pred: syo.5ck.r26388/217
count: 2
text: 26388 0 187 2554 31ef3c63f7381ebeaf0ba8fa1ffb2fbf
props: 26905 225758 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/handicaps.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6i5.5fi.r26905/226090
type: file
pred: 6i5.5fi.r23546/7657
count: 8
text: 23546 1004 60 1788 33a691be11f4f13535ab2900084df7f1
props: 26905 226043 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/stub/stubai.c
copyroot: 18919 /trunk/ai/stub/stubai.c

PLAIN
K 11
Makefile.am
V 24
file 6k6.5ck.r18919/6520
K 8
stubai.c
V 26
file 6i5.5fi.r26905/226090
END
ENDREP
id: 6k5.5ck.r26905/226459
type: dir
pred: 6k5.5ck.r23546/7964
count: 8
text: 26905 226350 96 96 a8db40d620c0b8ec9ecd29754dfab82f
props: 19010 5810 53 0 1aad128f6d028f535e9ce7233326568e
cpath: /trunk/ai/stub
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: syq.5ck.r26905/226737
type: file
pred: syq.5ck.r23460/50815
count: 1
text: 23460 31622 2036 2022 1158883343de573fe1dd3003643b973f
props: 26905 226690 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/handicaps.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 7pd.5ck.r26905/227029
type: file
pred: 7pd.5ck.r21846/4353
count: 4
text: 21846 4080 54 2319 c7ddf673562b9d308177661a7bca9ad8
props: 26905 226982 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/threaded/taimsg.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: mdh.5ck.r26905/227323
type: file
pred: mdh.5ck.r26863/22933
count: 12
text: 26863 19789 122 8755 99210a5517a606d620d4a103330ad455
props: 26905 227276 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/threaded/taicity.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 78q.5ck.r26905/227622
type: file
pred: 78q.5ck.r23361/11100
count: 6
text: 23361 3016 100 1985 74912c74fb859cbbfa5cd60a46e7d03b
props: 26905 227575 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/threaded/taimsg.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pm.5ck.r26905/227918
type: file
pred: 6pm.5ck.r25598/55
count: 12
text: 25598 0 26 8723 fe7fd7b430eae0ba59327d0e26665ecf
props: 26905 227871 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/threaded/taiplayer.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pk.5ck.r26905/228211
type: file
pred: 6pk.5ck.r25922/1191
count: 22
text: 25922 863 52 22116 2560041218e8c3df33ac05040fe5007c
props: 26905 228164 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/threaded/threadedai.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: mdj.5ck.r26905/228510
type: file
pred: mdj.5ck.r22496/10362
count: 1
text: 22496 1311 946 932 c40922415e92a3c6e11a629f2afea4f2
props: 26905 228463 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/threaded/taicity.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6pn.5ck.r26905/228806
type: file
pred: 6pn.5ck.r21871/13176
count: 8
text: 21871 0 120 1839 2c15ea3ebbf24413572a8d793bf3841d
props: 26905 228759 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/threaded/taiplayer.h
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 25
file 6pj.5ck.r26863/23126
K 9
taicity.c
V 26
file mdh.5ck.r26905/227323
K 9
taicity.h
V 26
file mdj.5ck.r26905/228510
K 8
taimsg.c
V 26
file 7pd.5ck.r26905/227029
K 8
taimsg.h
V 26
file 78q.5ck.r26905/227622
K 11
taiplayer.c
V 26
file 6pm.5ck.r26905/227918
K 11
taiplayer.h
V 26
file 6pn.5ck.r26905/228806
K 12
threadedai.c
V 26
file 6pk.5ck.r26905/228211
END
ENDREP
id: 6pi.5ck.r26905/229450
type: dir
pred: 6pi.5ck.r26863/23696
count: 40
text: 26905 229055 382 382 33c6405b03691f0c0454593c2e2a967d
props: 19316 2220 53 0 a527b216afb99426b763a1e313c531be
cpath: /trunk/ai/threaded
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 7k0.5ck.r26905/229736
type: file
pred: 7k0.5ck.r26057/47
count: 8
text: 26057 0 22 2536 bff977aa11d91643fc0f3130d25e75df
props: 26905 229689 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/aitraits.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4n8.5km.r26905/230018
type: file
pred: 4n8.5km.r26863/24120
count: 65
text: 26863 402 19359 23418 a27f558b58461793f7dadf3443af2b20
props: 26905 229971 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/classic/classicai.c
copyroot: 22318 /trunk/ai/classic/classicai.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 4n9.5kn.r26905/230342
type: file
pred: 4n9.5kn.r22318/22867
count: 10
text: 20695 166 26 838 fa1edf447026377cb6fe7a2ad0993182
props: 26905 230295 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/classic/classicai.h
copyroot: 22318 /trunk/ai/classic/classicai.h

PLAIN
K 11
Makefile.am
V 25
file l55.5ck.r26863/23932
K 11
classicai.c
V 26
file 4n8.5km.r26905/230018
K 11
classicai.h
V 26
file 4n9.5kn.r26905/230342
END
ENDREP
id: l53.5ck.r26905/230777
type: dir
pred: l53.5ck.r26863/24497
count: 18
text: 26905 230614 150 150 42323c52760df2fbee1f207e5a0b32db
props: 23744 4136 53 0 1aad128f6d028f535e9ce7233326568e
cpath: /trunk/ai/classic
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 1b4x.5ck.r26905/231062
type: file
pred: 1b4x.5ck.r26712/64
count: 4
text: 26712 0 38 6185 e37aefa82c8204d0269d396360c91684
props: 26905 231015 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/difficulty.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6i4.5h2.r26905/231348
type: file
pred: 6i4.5h2.r25922/2816
count: 12
text: 25922 1073 89 2126 733db18c2712ddaf08446e953f1639de
props: 26905 231301 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/aiplayer.h
copyroot: 19757 /trunk/ai/default/aiplayer.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6mb.5gl.r26905/231666
type: file
pred: 6mb.5gl.r25988/40928
count: 28
text: 25988 556 40 13594 fd12fea06667fc772878dc6569ed2b77
props: 26905 231619 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/aidata.c
copyroot: 19757 /trunk/ai/default/aidata.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6mc.5gm.r26905/231981
type: file
pred: 6mc.5gm.r25609/1558
count: 19
text: 25609 726 132 3767 fa9d576b4da1acb039d94161c66d686b
props: 26905 231934 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/aidata.h
copyroot: 19757 /trunk/ai/default/aidata.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6p8.5gx.r26905/232295
type: file
pred: 6p8.5gx.r25518/5089
count: 16
text: 25518 2109 40 6636 60c4f1129277943806ec0724ef53c9fb
props: 26905 232248 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/ailog.c
copyroot: 19757 /trunk/ai/default/ailog.c

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 156e.5ck.r26905/232607
type: file
pred: 156e.5ck.r26881/40983
count: 19
text: 26881 0 125 22424 61ec4b404e4e01e081a10989d6fecab9
props: 26905 232560 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/daieffects.c
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6p9.5gy.r26905/232907
type: file
pred: 6p9.5gy.r25366/40692
count: 10
text: 25366 8428 244 4363 1f6c90c9c722a958c9e22c32830b566d
props: 26905 232860 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/ailog.h
copyroot: 19757 /trunk/ai/default/ailog.h

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 156g.5ck.r26905/233221
type: file
pred: 156g.5ck.r25763/1132
count: 3
text: 25763 382 265 1529 2c3f09ab64a0bdea3454e9c9ff91efe8
props: 26905 233174 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/daieffects.h
copyroot: 15280 /trunk

PLAIN
K 13
svn:eol-style
V 6
native
END
ENDREP
id: 6i3.5h1.r26905/233520
type: file
pred: 6i3.5h1.r25964/6766
count: 20
text: 25964 2070 250 5691 43761d073be940608d09b645c4a8f064
props: 26905 233473 34 0 25e6c2f7558b7484000d4d090dea5b92
cpath: /trunk/ai/default/aiplayer.c
copyroot: 19757 /trunk/ai/default/aiplayer.c

PLAIN
K 11
Makefile.am
V 24
file 6k4.5ck.r26385/1025
K 14
advdiplomacy.c
V 26
file 2ek.5g9.r26401/199622
K 14
advdiplomacy.h
V 25
file 2el.5ga.r21819/30478
K 13
advdomestic.c
V 22
file 1m.5gb.r25565/188
K 13
advdomestic.h
V 24
file 1n.5gc.r21819/29385
K 13
advmilitary.c
V 23
file 1u.5gd.r26476/2024
K 13
advmilitary.h
V 24
file 1v.5ge.r26118/24119
K 7
aiair.c
V 25
file 15y.5gh.r25618/11812
K 7
aiair.h
V 25
file 15z.5gi.r21819/33076
K 8
aicity.c
V 24
file 20.5gj.r26563/50714
K 8
aicity.h
V 24
file 21.5gk.r26118/23854
K 8
aidata.c
V 26
file 6mb.5gl.r26905/231666
K 8
aidata.h
V 26
file 6mc.5gm.r26905/231981
K 12
aidiplomat.c
V 25
file 16r.5gn.r26563/50978
K 12
aidiplomat.h
V 25
file 16s.5go.r21819/32802
K 9
aiferry.c
V 25
file 2iw.5gp.r26334/17965
K 9
aiferry.h
V 24
file 2ix.5gq.r25299/3783
K 9
aiguard.c
V 25
file 335.5gr.r21830/20422
K 9
aiguard.h
V 25
file 336.5gs.r21830/20693
K 8
aihand.c
V 24
file 22.5gt.r26403/72867
K 8
aihand.h
V 24
file 23.5gu.r21810/35768
K 8
aihunt.c
V 25
file 2gc.5gv.r25988/40662
K 8
aihunt.h
V 25
file 2gd.5gw.r21819/35411
K 7
ailog.c
V 26
file 6p8.5gx.r26905/232295
K 7
ailog.h
V 26
file 6p9.5gy.r26905/232907
K 15
aiparatrooper.c
V 25
file 36o.5gz.r25697/34657
K 15
aiparatrooper.h
V 25
file 36p.5h0.r25366/42160
K 10
aiplayer.c
V 26
file 6i3.5h1.r26905/233520
K 10
aiplayer.h
V 26
file 6i4.5h2.r26905/231348
K 11
aisettler.c
V 25
file 2lh.5h3.r26109/34007
K 11
aisettler.h
V 25
file 2li.5h4.r22374/17958
K 8
aitech.c
V 24
file 24.5h5.r26176/24077
K 8
aitech.h
V 23
file 25.5h6.r25452/2151
K 9
aitools.c
V 21
file 9.5h7.r25563/342
K 9
aitools.h
V 23
file a.5h8.r25366/39676
K 8
aiunit.c
V 22
file b.5h9.r26664/6533
K 8
aiunit.h
V 23
file c.5ha.r25301/24032
K 12
daieffects.c
V 27
file 156e.5ck.r26905/232607
K 12
daieffects.h
V 27
file 156g.5ck.r26905/233221
END
ENDREP
id: 6k3.5ck.r26905/235603
type: dir
pred: 6k3.5ck.r26881/42974
count: 307
text: 26905 233792 1798 1798 ee0aa94573fa48471ce2851bfdd6e446
props: 19010 5510 53 0 1aad128f6d028f535e9ce7233326568e
cpath: /trunk/ai/default
copyroot: 15280 /trunk

PLAIN
K 11
Makefile.am
V 24
file 5d.5ck.r26100/14492
K 10
aitraits.c
V 26
file 7k0.5ck.r26905/229736
K 10
aitraits.h
V 26
file 7k2.5ck.r26905/225228
K 7
classic
V 25
dir l53.5ck.r26905/230777
K 7
default
V 25
dir 6k3.5ck.r26905/235603
K 12
difficulty.c
V 27
file 1b4x.5ck.r26905/231062
K 12
difficulty.h
V 27
file 1b4z.5ck.r26905/225513
K 11
handicaps.c
V 26
file syo.5ck.r26905/225805
K 11
handicaps.h
V 26
file syq.5ck.r26905/226737
K 4
stub
V 25
dir 6k5.5ck.r26905/226459
K 8
threaded
V 25
dir 6pi.5ck.r26905/229450
END
ENDREP
id: 8.5ck.r26905/236374
type: dir
pred: 8.5ck.r26881/43723
count: 1737
text: 26905 235844 517 517 5fb5a90dab38f57c5bd57fde5e016c2b
props: 11108 11315 64 0 abac628483ea4fdfa3bea3a3a56e0532
cpath: /trunk/ai
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.r26104/4084
K 11
Makefile.am
V 23
file 59.5ck.r26717/4500
K 4
NEWS
V 24
file 6m.5ck.r25634/30702
K 6
README
V 20
file 7.0.r4421/96382
K 2
ai
V 23
dir 8.5ck.r26905/236374
K 10
autogen.sh
V 24
file 12o.5ck.r25794/4003
K 9
bootstrap
V 23
dir 2p5.5ck.r26519/2055
K 6
client
V 23
dir d.5ck.r26905/147099
K 6
common
V 23
dir p.5ck.r26905/224950
K 12
configure.ac
V 24
file 149.5ck.r26797/9352
K 4
data
V 21
dir w.5ck.r26902/3999
K 12
dependencies
V 25
dir 2yu.5ck.r26905/200326
K 11
diff_ignore
V 23
file qq.5ck.r24665/2850
K 3
doc
V 23
dir k7.5ck.r26881/46389
K 10
fc_version
V 25
file 2lo.5en.r26881/43950
K 2
m4
V 23
dir 12p.5ck.r26897/3234
K 7
scripts
V 23
dir 2yo.5ck.r26112/1112
K 6
server
V 22
dir z.5ck.r26905/68812
K 5
tests
V 22
dir 2g9.5ck.r26668/853
K 5
tools
V 24
dir 4pj.5js.r26905/39990
K 12
translations
V 23
dir t0a.5ck.r26801/8722
K 7
utility
V 23
dir 1c.5ck.r26905/50065
K 3
vms
V 25
dir u9.5ck.r21528/1396085
K 5
win32
V 23
dir 2eu.5ck.r26864/3095
END
ENDREP
id: 3.5ck.r26905/237779
type: dir
pred: 3.5ck.r26904/15896
count: 18535
text: 26905 236603 1163 1163 8b0c6e55c0ed6fa7321f7e1e2600e874
props: 23244 4830 282 0 e4bb46e81629a60eef613b169b23a9ea
cpath: /trunk
copyroot: 15280 /trunk

PLAIN
K 8
branches
V 19
dir 1.0.r26901/6978
K 4
tags
V 19
dir 2.0.r25885/6524
K 5
trunk
V 23
dir 3.5ck.r26905/237779
K 7
website
V 21
dir 3ge.0.r22980/2263
END
ENDREP
id: 0.0.r26905/238175
type: dir
pred: 0.0.r26904/16289
count: 26905
text: 26905 238008 154 154 7fab9563cc7cfc3450a937f117b20474
cpath: /
copyroot: 0 /

4k1.5ck.t26904-1 modify false true /trunk/common/name_translation.h

766.5ck.t26904-1 modify false true /trunk/client/luascript/script_client.h

6n2.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/citizensinfo.h

a0c.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lstate.c

4gn.5ck.t26904-1 modify false true /trunk/server/aiiface.h

zzd.5ck.t26904-1 modify false true /trunk/common/style.h

bfa.5ck.t26904-1 modify false true /trunk/common/traderoutes.h

a0d.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lstate.h

6js.5ck.t26904-1 modify false true /trunk/client/gui-qt/repodlgs.cpp

6ir.5ck.t26904-1 modify false true /trunk/client/gui-qt/dialogs.cpp

6jo.5ck.t26904-1 modify false true /trunk/client/gui-qt/qtg_cxxside.cpp

4el.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/editprop.c

agw.5ck.t26904-1 modify false true /trunk/utility/registry.c

siq.5ck.t26904-1 modify false true /trunk/common/metaknowledge.c

7po.5ck.t26904-1 modify false true /trunk/utility/registry.h

4go.5ck.t26904-1 modify false true /trunk/common/ai.c

sis.5ck.t26904-1 modify false true /trunk/common/metaknowledge.h

6ik.5ck.t26904-1 modify false true /trunk/client/gui-qt/citydlg.cpp

9za.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lapi.c

4gp.5ck.t26904-1 modify false true /trunk/common/ai.h

6n1.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/citizensinfo.c

9zb.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lapi.h

19sj.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lutf8lib.c

4h3.5ck.t26904-1 modify false true /trunk/common/featured_text.c

6n2.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/citizensinfo.h

a3c.5ck.t26904-1 modify false true /trunk/client/gui_cbsetter.c

19rr.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lmathlib.c

c7q.5ck.t26904-1 modify true true /trunk/dependencies/tolua-5.2/src/bin/tolua.c

4h4.5ck.t26904-1 modify false true /trunk/common/featured_text.h

6jz.5ck.t26904-1 modify false true /trunk/client/gui-qt/voteinfo_bar.cpp

19ra.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lctype.c

a3d.5ck.t26904-1 modify false true /trunk/client/gui_cbsetter.h

1brp.5ck.t26904-1 modify false true /trunk/utility/specpq.h

19rb.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lctype.h

19ru.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/loadlib.c

a0a.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lparser.c

a0b.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lparser.h

a0q.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lualib.h

6kj.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/luasql.c

19rm.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/linit.c

57v.5ck.t26904-1 modify false true /trunk/utility/genhash.c

oxo.5ck.t26904-1 modify false true /trunk/client/gui-qt/gui_main.h

19rq.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/llimits.h

6kk.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/luasql.h

763.5ck.t26904-1 modify false true /trunk/client/luascript/api_client_base.c

57w.5ck.t26904-1 modify false true /trunk/utility/genhash.h

18bk.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_nation.cpp

r7a.5ck.t26904-1 modify false true /trunk/common/actions.c

6iy.5ck.t26904-1 modify false true /trunk/client/gui-qt/gotodlg.h

764.5ck.t26904-1 modify false true /trunk/client/luascript/api_client_base.h

a00.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lmathlib.c

c80.5ck.t26904-1 modify false true /trunk/dependencies/tolua-5.2/src/lib/tolua_push.c

r7c.5ck.t26904-1 modify false true /trunk/common/actions.h

zmc.5ck.t26904-1 modify false true /trunk/client/music.c

6ig.5ck.t26904-1 modify false true /trunk/client/gui-qt/canvas.cpp

6pa.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/unitselect.c

zme.5ck.t26904-1 modify false true /trunk/client/music.h

a0h.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ltable.c

19rd.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ldebug.c

6pb.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/unitselect.h

a06.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/localluaconf.h

a0i.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ltable.h

19re.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ldebug.h

4pn.5lm.t26904-1 modify false true /trunk/tools/mpgui_gtk2.c

6jy.5ck.t26904-1 modify false true /trunk/client/gui-qt/themes.cpp

1ej0.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_unit.cpp

9zo.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ldo.c

9zp.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ldo.h

llw.5ck.t26904-1 modify false true /trunk/common/workertask.c

lly.5ck.t26904-1 modify false true /trunk/common/workertask.h

6l5.5ia.t26904-1 modify false true /trunk/server/scripting/api_fcdb_base.c

6l7.5ck.t26904-1 modify false true /trunk/server/scripting/script_fcdb.c

19rs.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lmem.c

6j8.5ck.t26904-1 modify false true /trunk/client/gui-qt/mapview.cpp

6l6.5ib.t26904-1 modify false true /trunk/server/scripting/api_fcdb_base.h

6l8.5ck.t26904-1 modify false true /trunk/server/scripting/script_fcdb.h

19rt.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lmem.h

147p.5ck.t26904-1 modify false true /trunk/common/calendar.c

6pa.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/unitselect.c

6ih.5ck.t26904-1 modify false true /trunk/client/gui-qt/canvas.h

6ip.5ck.t26904-1 modify false true /trunk/client/gui-qt/connectdlg.cpp

6l3.5ck.t26904-1 modify false true /trunk/server/fcdb.c

9zt.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lgc.c

a03.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/loadlib.c

147r.5ck.t26904-1 modify false true /trunk/common/calendar.h

6pb.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/unitselect.h

4el.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/editprop.c

6l4.5ck.t26904-1 modify false true /trunk/server/fcdb.h

9zu.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lgc.h

6lc.5ck.t26904-1 modify false true /trunk/client/gui-qt/fc_client.cpp

6is.5ck.t26904-1 modify false true /trunk/client/gui-qt/dialogs.h

6jp.5ck.t26904-1 modify false true /trunk/client/gui-qt/qtg_cxxside.h

19r5.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lbaselib.c

6ij.5ck.t26904-1 modify false true /trunk/client/gui-qt/chatline.h

9zz.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/llimits.h

6ji.5ck.t26904-1 modify false true /trunk/client/gui-qt/pages.cpp

19s5.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lstring.c

4k3.5ck.t26904-1 modify false true /trunk/client/gui-sdl/widget_combo.c

a65.5js.t26904-1 modify false true /trunk/tools/mpgui_qt.cpp

vcu.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_tech.h

19sd.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lua.h

19s6.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lstring.h

4k4.5ck.t26904-1 modify false true /trunk/client/gui-sdl/widget_combo.h

16x3.5ck.t26904-1 modify false true /trunk/utility/registry_xml.c

6jv.5ck.t26904-1 modify false true /trunk/client/gui-qt/spaceshipdlg.h

9zj.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lctype.c

6iw.5ck.t26904-1 modify false true /trunk/client/gui-qt/finddlg.h

16x5.5ck.t26904-1 modify false true /trunk/utility/registry_xml.h

4jw.5ck.t26904-1 modify false true /trunk/client/update_queue.c

9zk.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lctype.h

4pl.5js.t26904-1 modify false true /trunk/tools/download.c

6p8.5gx.t26904-1 modify false true /trunk/ai/default/ailog.c

4jx.5ck.t26904-1 modify false true /trunk/client/update_queue.h

4pn.5ln.t26904-1 modify false true /trunk/tools/mpgui_gtk3.c

6ky.5i0.t26904-1 modify false true /trunk/common/scriptcore/luascript.c

4pm.5js.t26904-1 modify false true /trunk/tools/download.h

9ze.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lbaselib.c

6p9.5gy.t26904-1 modify false true /trunk/ai/default/ailog.h

6kz.5i1.t26904-1 modify false true /trunk/common/scriptcore/luascript.h

4ha.5l8.t26904-1 modify false true /trunk/client/gui-sdl2/voteinfo_bar.c

4ro.5ck.t26904-1 modify false true /trunk/common/research.c

19s0.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/loslib.c

4hb.5l8.t26904-1 modify false true /trunk/client/gui-sdl2/voteinfo_bar.h

6j6.5ck.t26904-1 modify false true /trunk/client/gui-qt/mapctrl.cpp

4rp.5ck.t26904-1 modify false true /trunk/common/research.h

6io.5ck.t26904-1 modify false true /trunk/client/gui-qt/colors.h

18bm.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_nation.h

6i5.5fi.t26904-1 modify false true /trunk/ai/stub/stubai.c

a0t.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lvm.c

6kh.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/ls_sqlite3.c

1dyk.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_building.h

9zm.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ldebug.c

a0u.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lvm.h

6po.5ck.t26904-1 modify false true /trunk/server/advisors/advcity.c

19ro.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/llex.c

6ki.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/ls_sqlite3.h

9zn.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ldebug.h

19rx.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/localluaconf.h

6pp.5ck.t26904-1 modify false true /trunk/server/advisors/advcity.h

19rp.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/llex.h

197l.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/gamedlgs.h

4jt.5ck.t26904-1 modify false true /trunk/client/gui-stub/optiondlg.c

6jl.5ck.t26904-1 modify false true /trunk/client/gui-qt/plrdlg.h

9zv.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/linit.c

4m0.5ck.t26904-1 modify false true /trunk/server/savegame2.c

4ju.5ck.t26904-1 modify false true /trunk/client/gui-stub/optiondlg.h

a0e.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lstring.c

6kf.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/ls_postgres.c

6i3.5h1.t26904-1 modify false true /trunk/ai/default/aiplayer.c

4m1.5ck.t26904-1 modify false true /trunk/server/savegame2.h

a0f.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lstring.h

6kg.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/ls_postgres.h

6i4.5h2.t26904-1 modify false true /trunk/ai/default/aiplayer.h

uys.5js.t26904-1 modify false true /trunk/tools/ruledit/ruledit_qt.h

731.5ck.t26904-1 modify false true /trunk/utility/fcbacktrace.c

6jb.5ck.t26904-1 modify false true /trunk/client/gui-qt/menu.h

732.5ck.t26904-1 modify false true /trunk/utility/fcbacktrace.h

4ku.5ck.t26904-1 modify false true /trunk/utility/fc_utf8.c

6il.5ck.t26904-1 modify false true /trunk/client/gui-qt/cityrep.cpp

4kv.5ck.t26904-1 modify false true /trunk/utility/fc_utf8.h

6jk.5ck.t26904-1 modify false true /trunk/client/gui-qt/plrdlg.cpp

19s7.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lstrlib.c

75y.5ck.t26904-1 modify false true /trunk/client/include/luaconsole_g.h

vct.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_tech.cpp

19r6.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lbitlib.c

19sh.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lundump.c

76e.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/luaconsole.c

6iu.5ck.t26904-1 modify false true /trunk/client/gui-qt/diplodlg.h

6ja.5ck.t26904-1 modify false true /trunk/client/gui-qt/menu.cpp

6j0.5ck.t26904-1 modify false true /trunk/client/gui-qt/graphics.h

75z.5ck.t26904-1 modify false true /trunk/client/luaconsole_common.c

4hc.5ck.t26904-1 modify false true /trunk/client/gui-stub/voteinfo_bar.c

19si.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lundump.h

76f.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/luaconsole.h

7pd.5ck.t26904-1 modify false true /trunk/ai/threaded/taimsg.c

vcs.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_misc.h

760.5ck.t26904-1 modify false true /trunk/client/luaconsole_common.h

4hd.5ck.t26904-1 modify false true /trunk/client/gui-stub/voteinfo_bar.h

78q.5ck.t26904-1 modify false true /trunk/ai/threaded/taimsg.h

73v.5js.t26904-1 modify false true /trunk/tools/mpcmdline.c

4i6.5ck.t26904-1 modify false true /trunk/client/global_worklist.c

4ex.5ck.t26904-1 modify false true /trunk/server/voting.c

73w.5js.t26904-1 modify false true /trunk/tools/mpcmdline.h

19sm.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lzio.c

1942.5js.t26904-1 modify false true /trunk/tools/ruledit/requirers_dlg.cpp

6la.5i8.t26904-1 modify false true /trunk/server/scripting/api_fcdb_auth.c

4i7.5ck.t26904-1 modify false true /trunk/client/global_worklist.h

4ey.5ck.t26904-1 modify false true /trunk/server/voting.h

4js.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/optiondlg.c

bjc.5js.t26904-1 modify false true /trunk/tools/mpdb.c

1ej2.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_unit.h

19sn.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lzio.h

a09.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/loslib.c

6lb.5i9.t26904-1 modify false true /trunk/server/scripting/api_fcdb_auth.h

75w.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/luaconsole.c

bje.5js.t26904-1 modify false true /trunk/tools/mpdb.h

6jh.5ck.t26904-1 modify false true /trunk/client/gui-qt/optiondlg.h

a01.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lmem.c

c7z.5ck.t26904-1 modify true true /trunk/dependencies/tolua-5.2/src/lib/tolua_map.c

75x.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/luaconsole.h

6j7.5ck.t26904-1 modify false true /trunk/client/gui-qt/mapctrl.h

76d.5ck.t26904-1 modify false true /trunk/client/gui-qt/luaconsole.h

a02.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lmem.h

c81.5ck.t26904-1 modify false true /trunk/dependencies/tolua-5.2/src/lib/tolua_to.c

6i6.5ck.t26904-1 modify false true /trunk/common/rgbcolor.c

6pm.5ck.t26904-1 modify false true /trunk/ai/threaded/taiplayer.c

6gu.5hy.t26904-1 modify false true /trunk/common/scriptcore/api_game_specenum.c

6i7.5ck.t26904-1 modify false true /trunk/common/rgbcolor.h

4fe.5ck.t26904-1 modify false true /trunk/client/voteinfo.c

6pn.5ck.t26904-1 modify false true /trunk/ai/threaded/taiplayer.h

6j3.5ck.t26904-1 modify false true /trunk/client/gui-qt/helpdlg.h

qva.5ck.t26904-1 modify false true /trunk/server/savecompat.c

197j.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/gamedlgs.h

6gv.5hz.t26904-1 modify false true /trunk/common/scriptcore/api_game_specenum.h

a0g.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lstrlib.c

4ff.5ck.t26904-1 modify false true /trunk/client/voteinfo.h

4ej.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/editgui.c

qvc.5ck.t26904-1 modify false true /trunk/server/savecompat.h

vuz.5js.t26904-1 modify false true /trunk/tools/mpgui_qt_worker.cpp

9zf.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lbitlib.c

4ek.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/editgui.h

19rh.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ldump.c

6ix.5ck.t26904-1 modify false true /trunk/client/gui-qt/gotodlg.cpp

a0r.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lundump.c

1944.5js.t26904-1 modify false true /trunk/tools/ruledit/requirers_dlg.h

uyp.5js.t26904-1 modify false true /trunk/tools/ruledit/ruledit.h

6je.5ck.t26904-1 modify false true /trunk/client/gui-qt/messagewin.cpp

zj9.5ck.t26904-1 modify false true /trunk/common/clientutils.c

76c.5ck.t26904-1 modify false true /trunk/client/gui-qt/luaconsole.cpp

4hi.5ck.t26904-1 modify false true /trunk/client/include/voteinfo_bar_g.h

a0s.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lundump.h

6m8.5ck.t26904-1 modify false true /trunk/utility/netfile.c

6ju.5ck.t26904-1 modify false true /trunk/client/gui-qt/spaceshipdlg.cpp

a67.5js.t26904-1 modify false true /trunk/tools/mpgui_qt.h

zjb.5ck.t26904-1 modify false true /trunk/common/clientutils.h

19sb.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ltm.c

6m9.5ck.t26904-1 modify false true /trunk/utility/netfile.h

6jc.5ck.t26904-1 modify false true /trunk/client/gui-qt/messagedlg.cpp

75j.5ck.t26904-1 modify false true /trunk/server/scripting/api_server_base.c

19sc.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ltm.h

7k3.5ck.t26904-1 modify false true /trunk/common/traits.h

4k3.5l8.t26904-1 modify false true /trunk/client/gui-sdl2/widget_combo.c

75k.5ck.t26904-1 modify false true /trunk/server/scripting/api_server_base.h

6jt.5ck.t26904-1 modify false true /trunk/client/gui-qt/repodlgs.h

4k4.5l8.t26904-1 modify false true /trunk/client/gui-sdl2/widget_combo.h

4hg.5ck.t26904-1 modify false true /trunk/client/gui-xaw/voteinfo_bar.c

6pq.5ck.t26904-1 modify false true /trunk/common/road.c

bj7.5js.t26904-1 modify false true /trunk/tools/modinst.c

ssq.5m2.t26904-1 modify false true /trunk/tools/ruledit/ruledit.cpp

4hh.5ck.t26904-1 modify false true /trunk/client/gui-xaw/voteinfo_bar.h

4js.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/optiondlg.c

6pr.5ck.t26904-1 modify false true /trunk/common/road.h

hew.5ck.t26904-1 modify false true /trunk/server/rssanity.c

76i.5js.t26904-1 modify false true /trunk/tools/modinst.h

6hv.5ck.t26904-1 modify false true /trunk/utility/fcthread.c

a0m.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lua.h

19r7.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lcode.c

hey.5ck.t26904-1 modify false true /trunk/server/rssanity.h

gr2.5ck.t26904-1 modify false true /trunk/client/gui-qt/citydlg.h

50r.5ck.t26904-1 modify false true /trunk/server/advisors/advbuilding.c

6hw.5ck.t26904-1 modify false true /trunk/utility/fcthread.h

6mz.5ck.t26904-1 modify false true /trunk/server/citizenshand.c

vcq.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_misc.cpp

19r8.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lcode.h

c7s.5ck.t26904-1 modify false true /trunk/dependencies/tolua-5.2/src/bin/toluabind.c

6k1.5ck.t26904-1 modify false true /trunk/client/gui-qt/wldlg.cpp

19sf.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/luaconf.h

50s.5ck.t26904-1 modify false true /trunk/server/advisors/advbuilding.h

c7w.5ck.t26904-1 modify true true /trunk/dependencies/tolua-5.2/src/lib/tolua_event.c

6n0.5ck.t26904-1 modify false true /trunk/server/citizenshand.h

4h8.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/voteinfo_bar.c

197b.5ck.t26904-1 modify false true /trunk/common/multipliers.c

6j9.5ck.t26904-1 modify false true /trunk/client/gui-qt/mapview.h

c7x.5ck.t26904-1 modify false true /trunk/dependencies/tolua-5.2/src/lib/tolua_event.h

9zx.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/llex.c

4h9.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/voteinfo_bar.h

6jd.5ck.t26904-1 modify false true /trunk/client/gui-qt/messagedlg.h

197d.5ck.t26904-1 modify false true /trunk/common/multipliers.h

19r9.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lcorolib.c

9zy.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/llex.h

6iq.5ck.t26904-1 modify false true /trunk/client/gui-qt/connectdlg.h

156e.5ck.t26904-1 modify false true /trunk/ai/default/daieffects.c

19sa.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ltablib.c

6ii.5ck.t26904-1 modify false true /trunk/client/gui-qt/chatline.cpp

6j1.5ck.t26904-1 modify false true /trunk/client/gui-qt/gui_main.cpp

156g.5ck.t26904-1 modify false true /trunk/ai/default/daieffects.h

mdh.5ck.t26904-1 modify false true /trunk/ai/threaded/taicity.c

mdj.5ck.t26904-1 modify false true /trunk/ai/threaded/taicity.h

c6v.5ck.t26904-1 modify false true /trunk/dependencies/tolua-5.2/include/tolua.h

6iv.5ck.t26904-1 modify false true /trunk/client/gui-qt/finddlg.cpp

4hy.5ck.t26904-1 modify false true /trunk/utility/string_vector.c

6kr.5ck.t26904-1 modify false true /trunk/client/dummycxx.cpp

6jr.5ck.t26904-1 modify false true /trunk/client/gui-qt/ratesdlg.h

thd.5js.t26904-1 modify false true /trunk/tools/ruledit/rulesave.c

6jx.5ck.t26904-1 modify false true /trunk/client/gui-qt/sprite.h

4h8.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/voteinfo_bar.c

4hz.5ck.t26904-1 modify false true /trunk/utility/string_vector.h

thf.5js.t26904-1 modify false true /trunk/tools/ruledit/rulesave.h

9zi.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lcorolib.c

4h9.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/voteinfo_bar.h

b2m.5ck.t26904-1 modify false true /trunk/common/disaster.c

19ri.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lfunc.c

b2o.5ck.t26904-1 modify false true /trunk/common/disaster.h

19rj.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lfunc.h

4i2.5ck.t26904-1 modify false true /trunk/server/notify.c

6kd.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/ls_mysql.c

9sq.5ck.t26904-1 modify false true /trunk/client/include/gui_proto_constructor.h

6it.5ck.t26904-1 modify false true /trunk/client/gui-qt/diplodlg.cpp

syo.5ck.t26904-1 modify false true /trunk/ai/handicaps.c

19rv.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lobject.c

4i3.5ck.t26904-1 modify false true /trunk/server/notify.h

vv1.5js.t26904-1 modify false true /trunk/tools/mpgui_qt_worker.h

75g.5ck.t26904-1 modify false true /trunk/common/scriptcore/luascript_func.c

6j4.5ck.t26904-1 modify false true /trunk/client/gui-qt/inteldlg.cpp

19r1.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lapi.c

6ke.5ks.t26904-1 modify false true /trunk/dependencies/luasql/src/ls_mysql.h

syq.5ck.t26904-1 modify false true /trunk/ai/handicaps.h

19rw.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lobject.h

75h.5ck.t26904-1 modify false true /trunk/common/scriptcore/luascript_func.h

1b4x.5ck.t26904-1 modify false true /trunk/ai/difficulty.c

6jf.5ck.t26904-1 modify false true /trunk/client/gui-qt/messagewin.h

19r2.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lapi.h

1dyi.5js.t26904-1 modify false true /trunk/tools/ruledit/tab_building.cpp

a0p.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/luaconf.h

1b4z.5ck.t26904-1 modify false true /trunk/ai/difficulty.h

6mb.5gl.t26904-1 modify false true /trunk/ai/default/aidata.c

19r3.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lauxlib.c

6pk.5ck.t26904-1 modify false true /trunk/ai/threaded/threadedai.c

112c.5ck.t26904-1 modify false true /trunk/server/mood.c

6mc.5gm.t26904-1 modify false true /trunk/ai/default/aidata.h

19r4.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lauxlib.h

57x.5ck.t26904-1 modify false true /trunk/utility/spechash.h

4f9.5ck.t26904-1 modify false true /trunk/client/dummy.c

a0j.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ltablib.c

112e.5ck.t26904-1 modify false true /trunk/server/mood.h

19rn.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/liolib.c

4ej.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/editgui.c

a0v.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lzio.c

19rf.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ldo.c

9zq.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ldump.c

4ek.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/editgui.h

a0w.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lzio.h

acy.5ck.t26904-1 modify false true /trunk/dependencies/cvercmp/cvercmp.c

19rg.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ldo.h

768.5ck.t26904-1 modify false true /trunk/client/gui-sdl/luaconsole.c

4f0.5ck.t26904-1 modify false true /trunk/common/borders.c

6jj.5ck.t26904-1 modify false true /trunk/client/gui-qt/pages.h

acz.5ck.t26904-1 modify false true /trunk/dependencies/cvercmp/cvercmp.h

19rc.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ldblib.c

769.5ck.t26904-1 modify false true /trunk/client/gui-sdl/luaconsole.h

4ez.5ck.t26904-1 modify false true /trunk/server/edithand.h

4f1.5ck.t26904-1 modify false true /trunk/common/borders.h

19s3.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lstate.c

4up.5ck.t26904-1 modify false true /trunk/common/fc_interface.c

19s4.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lstate.h

76a.5ck.t26904-1 modify false true /trunk/client/gui-xaw/luaconsole.c

a3a.5ck.t26904-1 modify false true /trunk/client/gui-stub/gui_stub.h

4p5.5ck.t26904-1 modify false true /trunk/server/advisors/advgoto.c

y74.5js.t26904-1 modify false true /trunk/tools/mpcli.c

4uq.5ck.t26904-1 modify false true /trunk/common/fc_interface.h

4jz.5hs.t26904-1 modify false true /trunk/common/scriptcore/api_game_effects.c

19rk.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lgc.c

bw9.5ck.t26904-1 modify false true /trunk/utility/section_file.c

76b.5ck.t26904-1 modify false true /trunk/client/gui-xaw/luaconsole.h

4p6.5ck.t26904-1 modify false true /trunk/server/advisors/advgoto.h

7k0.5ck.t26904-1 modify false true /trunk/ai/aitraits.c

19ry.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lopcodes.c

4k0.5ht.t26904-1 modify false true /trunk/common/scriptcore/api_game_effects.h

19rl.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lgc.h

axo.5ck.t26904-1 modify false true /trunk/utility/section_file.h

kcq.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/soundset_dlg.c

7k2.5ck.t26904-1 modify false true /trunk/ai/aitraits.h

19rz.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lopcodes.h

6mx.5ck.t26904-1 modify false true /trunk/common/citizens.c

a04.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lobject.c

6my.5ck.t26904-1 modify false true /trunk/common/citizens.h

9zg.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lcode.c

a05.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lobject.h

qex.5ck.t26904-1 modify false true /trunk/common/victory.c

6jq.5ck.t26904-1 modify false true /trunk/client/gui-qt/ratesdlg.cpp

vnk.5ck.t26904-1 modify false true /trunk/server/animals.c

9zh.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lcode.h

qez.5ck.t26904-1 modify false true /trunk/common/victory.h

4h5.5ck.t26904-1 modify false true /trunk/utility/iterator.c

1402.5js.t26904-1 modify false true /trunk/tools/ruledit/validity.c

o9u.5ck.t26904-1 modify false true /trunk/common/extras.c

vnm.5ck.t26904-1 modify false true /trunk/server/animals.h

9zc.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lauxlib.c

4f3.5ck.t26904-1 modify false true /trunk/utility/iterator.h

1404.5js.t26904-1 modify false true /trunk/tools/ruledit/validity.h

o9w.5ck.t26904-1 modify false true /trunk/common/extras.h

4un.5ck.t26904-1 modify false true /trunk/utility/bitvector.c

9zd.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lauxlib.h

4n8.5km.t26904-1 modify false true /trunk/ai/classic/classicai.c

6k0.5ck.t26904-1 modify false true /trunk/client/gui-qt/voteinfo_bar.h

768.5l8.t26904-1 modify false true /trunk/client/gui-sdl2/luaconsole.c

a07.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lopcodes.c

4uo.5ck.t26904-1 modify false true /trunk/utility/bitvector.h

4n9.5kn.t26904-1 modify false true /trunk/ai/classic/classicai.h

cku.5g7.t26904-1 modify false true /trunk/client/gui-gtk-3.0/soundset_dlg.c

769.5l8.t26904-1 modify false true /trunk/client/gui-sdl2/luaconsole.h

a08.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lopcodes.h

19sg.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lualib.h

6ld.5ck.t26904-1 modify false true /trunk/client/gui-qt/fc_client.h

76g.5ck.t26904-1 modify false true /trunk/client/gui-stub/luaconsole.c

6jg.5ck.t26904-1 modify false true /trunk/client/gui-qt/optiondlg.cpp

4pw.5ck.t26904-1 modify false true /trunk/server/advisors/infracache.c

uyr.5js.t26904-1 modify false true /trunk/tools/ruledit/ruledit_qt.cpp

76h.5ck.t26904-1 modify false true /trunk/client/gui-stub/luaconsole.h

c7y.5ck.t26904-1 modify false true /trunk/dependencies/tolua-5.2/src/lib/tolua_is.c

4px.5ck.t26904-1 modify false true /trunk/server/advisors/infracache.h

6j5.5ck.t26904-1 modify false true /trunk/client/gui-qt/inteldlg.h

4of.5ck.t26904-1 modify false true /trunk/server/advisors/advtools.c

a0k.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ltm.c

4ha.5ck.t26904-1 modify false true /trunk/client/gui-sdl/voteinfo_bar.c

19sk.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lvm.c

4og.5ck.t26904-1 modify false true /trunk/server/advisors/advtools.h

a0l.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ltm.h

6n9.5ck.t26904-1 modify false true /trunk/common/mapimg.c

6k2.5ck.t26904-1 modify false true /trunk/client/gui-qt/wldlg.h

qhc.5ck.t26904-1 modify false true /trunk/common/achievements.c

6j2.5ck.t26904-1 modify false true /trunk/client/gui-qt/helpdlg.cpp

4hb.5ck.t26904-1 modify false true /trunk/client/gui-sdl/voteinfo_bar.h

19s8.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ltable.c

19sl.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lvm.h

75e.5ck.t26904-1 modify false true /trunk/common/scriptcore/api_signal_base.c

76v.5ck.t26904-1 modify false true /trunk/client/unitselect_common.c

9zr.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lfunc.c

6na.5ck.t26904-1 modify false true /trunk/common/mapimg.h

qhe.5ck.t26904-1 modify false true /trunk/common/achievements.h

6im.5ck.t26904-1 modify false true /trunk/client/gui-qt/cityrep.h

19s1.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lparser.c

19s9.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/ltable.h

9zw.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/liolib.c

75f.5ck.t26904-1 modify false true /trunk/common/scriptcore/api_signal_base.h

76w.5ck.t26904-1 modify false true /trunk/client/unitselect_common.h

104t.5ck.t26904-1 modify false true /trunk/common/culture.c

4jv.5ck.t26904-1 modify false true /trunk/client/include/optiondlg_g.h

9zs.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/lfunc.h

76j.5ck.t26904-1 modify false true /trunk/common/fc_cmdhelp.c

19s2.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.3/src/lparser.h

73l.5ck.t26904-1 modify false true /trunk/server/advisors/advruleset.c

104v.5ck.t26904-1 modify false true /trunk/common/culture.h

76k.5ck.t26904-1 modify false true /trunk/common/fc_cmdhelp.h

6jm.5ir.t26904-1 modify false true /trunk/client/gui_interface.c

73m.5ck.t26904-1 modify false true /trunk/server/advisors/advruleset.h

6iz.5ck.t26904-1 modify false true /trunk/client/gui-qt/graphics.cpp

6in.5ck.t26904-1 modify false true /trunk/client/gui-qt/colors.cpp

765.5ck.t26904-1 modify false true /trunk/client/luascript/script_client.c

6n1.5ck.t26904-1 modify false true /trunk/client/gui-gtk-2.0/citizensinfo.c

6jn.5is.t26904-1 modify false true /trunk/client/gui_interface.h

4gm.5ck.t26904-1 modify false true /trunk/server/aiiface.c

9zl.5ck.t26904-1 modify false true /trunk/dependencies/lua-5.2/src/ldblib.c

zzb.5ck.t26904-1 modify false true /trunk/common/style.c

bf8.5ck.t26904-1 modify false true /trunk/common/traderoutes.c

6jw.5ck.t26904-1 modify false true /trunk/client/gui-qt/sprite.cpp


238175 238327
