Subversion Repositories general

Compare Revisions

Regard whitespace Rev 1085 → Rev 1086

/kickup/trunk/src/ak/kickup/core/model/Event.java
151,7 → 151,7
 
/**
*
* @hibernate.property
* @hibernate.property column="estart"
*/
public Date getStart()
{
165,7 → 165,7
 
/**
*
* @hibernate.property
* @hibernate.property column="estop"
*/
public Date getStop()
{
/kickup/trunk/bin/dos2unix.sh
1,4 → 1,4
#!/bin/sh
 
find . -not -path '*/.svn/*' \( -name '*.java' -or -name '*.jsp' -or -name '*.tld' -or -name '*.xml' -or -name '*.sample' \) -exec sh -c 'tr -d "\r" < {} > tmp; mv tmp {}' \;
find . -not -path '*/.svn/*' \( -name '*.java' -or -name '*.jsp' -or -name '*.tld' -or -name '*.xml' -or -name '*.sample' -or -name '*.sql' \) -exec sh -c 'tr -d "\r" < {} > tmp; mv tmp {}' \;
 
/kickup/trunk/sql/00.tables.sql
55,8 → 55,8
place varchar(255),
address text,
transport_desc text,
start date,
stop date,
estart date,
estop date,
last_register date,
last_unregister date,
price decimal,
171,3 → 171,4
constraint participant_acts_participant foreign key (participant) references participants(id),
constraint participant_acts_act foreign key (act) references acts(id)
);