View | Details | Raw Unified | Return to bug 90369
Collapse All | Expand All

(-)games/hattrickorganizer-136/Makefile (-2 / +3 lines)
Lines 6-14 Link Here
6
#
6
#
7
7
8
PORTNAME=	hattrickorganizer
8
PORTNAME=	hattrickorganizer
9
PORTVERSION=	1.35
9
PORTVERSION=	1.36
10
CATEGORIES=	games java
10
CATEGORIES=	games java
11
MASTER_SITES=	http://www.wow-auctions.net/ho/download/
11
MASTER_SITES=	http://www.wow-auctions.net/ho/download/ \
12
		http://www.bsd-geek.de/FreeBSD/distfiles/
12
DISTNAME=	ho_${PORTVERSION:S/.//g}
13
DISTNAME=	ho_${PORTVERSION:S/.//g}
13
14
14
MAINTAINER=	lars.engels@0x20.net
15
MAINTAINER=	lars.engels@0x20.net
(-)games/hattrickorganizer-136/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (ho_135.zip) = 6fcab1f6225d566255689efd59a7ca1c
1
MD5 (ho_136.zip) = b79026fba1fb9c596d70b23cd1119ebd
2
SIZE (ho_135.zip) = 3904639
2
SIZE (ho_136.zip) = 4166641
(-)games/hattrickorganizer-136/files/hattrickorganizer.sh.in (-11 / +70 lines)
Lines 27-33 Link Here
27
#  - edit the HODIR variable to this new directory (without the ``)    #
27
#  - edit the HODIR variable to this new directory (without the ``)    #
28
#     and HOHOME to any user writable directory!                       #
28
#     and HOHOME to any user writable directory!                       #
29
#                                                                      #
29
#                                                                      #
30
#  - start HO! out of a terminal via e.g. 'ho'		                   #
30
#  - start HO! out of a terminal via e.g. 'hattrickorganizer'          #
31
#                                                                      #
31
#                                                                      #
32
#  - manage your team :)                                               #
32
#  - manage your team :)                                               #
33
#                                                                      #
33
#                                                                      #
Lines 107-112 Link Here
107
SPRACHDIR=$HOHOME/sprache
107
SPRACHDIR=$HOHOME/sprache
108
108
109
            
109
            
110
# required java version
111
112
JAVAVERREQ=1.4.1
113
114
# Which database files and name of backup file?
115
110
# Which database files and name of backup file?
116
# Which database files and name of backup file?
111
117
112
BACKUPLIST="database.data database.script database.backup database.properties"
118
BACKUPLIST="database.data database.script database.backup database.properties"
Lines 151-157 Link Here
151
	Options:
157
	Options:
152
          -h  --help         This help text
158
          -h  --help         This help text
153
          -v  --version      Show HO! version
159
          -v  --version      Show HO! version
160
          -f  --force        Start without checking java-version
154
          -nb --nobackup     Start without backup
161
          -nb --nobackup     Start without backup
162
          -j  --java <path>  Use this java
155
          -r  --restore      Restore the last backup-file
163
          -r  --restore      Restore the last backup-file
156
          -rd --restoredate  <date>
164
          -rd --restoredate  <date>
157
                             Restore the backup-file from <date>
165
                             Restore the backup-file from <date>
Lines 167-184 Link Here
167
	cd $HOHOME
175
	cd $HOHOME
168
	JAVA_VERSION="%%JAVA_VERSION%%" "${JAVA}" -jar $HODIR/hocoded.jar
176
	JAVA_VERSION="%%JAVA_VERSION%%" "${JAVA}" -jar $HODIR/hocoded.jar
169
177
170
	# check database and print warning
178
          # check database and print warning
171
	if [ `grep modified $DATABASEDIR/database.properties | \
179
	  if [ `grep modified $DATABASEDIR/database.properties | \
172
			cut -d= -f2` = "no" ] 
180
			cut -d= -f2` = "no" ] 
173
	then
181
	  then
174
		echo "Database OK!"      
182
		echo "Database OK!"      
175
	else
183
	  else
176
		cat <<-EOF >&2
184
		cat <<-EOF >&2
177
			Database was not relased correctly!
185
			Database was not relased correctly!
178
			Probably next time you will have problems starting HO...
186
			Probably next time you will have problems starting HO...
179
			... but you can restore a backup with switches -r or -rd. :-)
187
			... but you can restore a backup with switches -r or -rd. :-)
180
		EOF
188
		EOF
181
	fi
189
	  fi
182
}
190
}
183
191
184
# Backup 
192
# Backup 
Lines 235-242 Link Here
235
		if [ -r "$BACKUPDIR/$PREFIX-$RESTOREDATE.tgz" ]
243
		if [ -r "$BACKUPDIR/$PREFIX-$RESTOREDATE.tgz" ]
236
		then
244
		then
237
			gunzip -c "$BACKUPDIR/$PREFIX-$RESTOREDATE.tgz" | tar -xf - 
245
			gunzip -c "$BACKUPDIR/$PREFIX-$RESTOREDATE.tgz" | tar -xf - 
238
			echo "Restored database from $BACKUPDIR/ \
246
			echo "Restored database from $BACKUPDIR/$PREFIX-$RESTOREDATE.tgz"
239
			$PREFIX-$RESTOREDATE.tgz"
240
		else
247
		else
241
			echo "Error reading backup file $BACKUPDIR/$PREFIX-$RESTOREDATE.tgz!" >&2
248
			echo "Error reading backup file $BACKUPDIR/$PREFIX-$RESTOREDATE.tgz!" >&2
242
			exit 2
249
			exit 2
Lines 244-249 Link Here
244
	fi
251
	fi
245
}
252
}
246
253
254
# Check java -version
255
256
checkjava(){
257
	test -x "$JAVA" || { echo "Can't find java!" ; exit 1 ; }
258
	JAVAVER=`$JAVA -version 2>&1 | head -n 1 | \
259
	         awk -F\" '{print $2}' | sed s/[^0-9\.].*//g`
260
	JAVAMAJ=`echo $JAVAVER | awk -F. '{print $1}'`
261
	JAVAMIN=`echo $JAVAVER | awk -F. '{print $2}'`
262
	JAVAMINMIN=`echo $JAVAVER | awk -F. '{print $3}'`
263
	JAVAMAJREQ=`echo $JAVAVERREQ | awk -F. '{print $1}'`
264
	JAVAMINREQ=`echo $JAVAVERREQ | awk -F. '{print $2}'`
265
	JAVAMINMINREQ=`echo $JAVAVERREQ | awk -F. '{print $3}'`
266
        if ( [ $JAVAMAJ = "" ] || [ $JAVAMIN = "" ] \
267
				|| [ $JAVAMINMIN = "" ] ) ; then
268
          echo -e "Couldn't check java version! \n
269
		  Try '$HONAME -f' to override the version check" >&2
270
          exit 3
271
        fi
272
	if ( [ $JAVAMAJ -lt $JAVAMAJREQ ] || \
273
	    ( [ $JAVAMAJ -eq $JAVAMAJREQ ] && \
274
		[ $JAVAMIN -lt $JAVAMINREQ ] ) || \
275
	    ( [ $JAVAMAJ -eq $JAVAMAJREQ ] && \
276
		[ $JAVAMIN -eq $JAVAMINREQ ] && \
277
		[ $JAVAMINMIN -lt $JAVAMINMINREQ ] ) ) 
278
	then
279
        cat <<-EOF >&2
280
		  	The default Java version is too old!
281
	        You could try another one: '$HONAME -j <path>'
282
		EOF
283
		exit 3
284
	fi
285
}
286
247
### MAIN
287
### MAIN
248
288
249
# Run throuh the params
289
# Run throuh the params
Lines 251-256 Link Here
251
until [ -z "$1" ]
291
until [ -z "$1" ]
252
do
292
do
253
	case "$1" in
293
	case "$1" in
294
		-j|--java)   
295
			JAVA=$2;
296
			if [ -z $JAVA ]
297
			then
298
				echo "Option j or java needs a parameter!" >&2
299
				exit 1
300
			fi
301
			shift
302
			;;
254
		-v|--version)
303
		-v|--version)
255
			echo "This is HO! version $HOVERSION";
304
			echo "This is HO! version $HOVERSION";
256
			exit 0
305
			exit 0
Lines 299-304 Link Here
299
done
348
done
300
349
301
350
351
# Check for java -version (if called without `force')
352
353
`$CHECK`   && checkjava
354
302
# Check if all needed directories exist
355
# Check if all needed directories exist
303
356
304
if [ ! -d $HOHOME ]
357
if [ ! -d $HOHOME ]
Lines 309-321 Link Here
309
362
310
if [ ! -d $PLUGINSDIR ]
363
if [ ! -d $PLUGINSDIR ]
311
then
364
then
312
	echo "creating $PLUGINSDIR"
365
        if [ ! -d $HODIR/hoplugins ]
313
	cp -r $HODIR/hoplugins $HOHOME
366
        then
367
          echo "creating $HODIR/hoplugins"
368
          mkdir $HOHOME/hoplugins
369
        else
370
  	  echo "copying $PLUGINSDIR"
371
	  cp -r $HODIR/hoplugins $HOHOME
372
        fi
314
fi
373
fi
315
374
316
if [ ! -d $SPRACHDIR ]
375
if [ ! -d $SPRACHDIR ]
317
then
376
then
318
	echo "creating $SPRACHDIR"
377
	echo "copying $SPRACHDIR"
319
	cp -r $HODIR/sprache $HOHOME	
378
	cp -r $HODIR/sprache $HOHOME	
320
fi
379
fi
321
380
(-)games/hattrickorganizer-136/pkg-plist (-14 / +34 lines)
Lines 1-8 Link Here
1
bin/hattrickorganizer
1
bin/hattrickorganizer
2
%%DATADIR%%/HO.bat
2
%%DATADIR%%/HO.bat
3
%%DATADIR%%/HO.sh
3
%%DATADIR%%/HO.sh
4
%%DATADIR%%/HOLauncher.class
5
%%DATADIR%%/LICENSELGPL.txt
4
%%DATADIR%%/Logo.ico
6
%%DATADIR%%/Logo.ico
7
%%DATADIR%%/README_JL.txt
5
%%DATADIR%%/defaults.xml
8
%%DATADIR%%/defaults.xml
9
%%DATADIR%%/epv.dat
6
%%DATADIR%%/flags/100flag.png
10
%%DATADIR%%/flags/100flag.png
7
%%DATADIR%%/flags/101flag.png
11
%%DATADIR%%/flags/101flag.png
8
%%DATADIR%%/flags/102flag.png
12
%%DATADIR%%/flags/102flag.png
Lines 116-121 Link Here
116
%%DATADIR%%/hoplugins/TrainingExperience.class
120
%%DATADIR%%/hoplugins/TrainingExperience.class
117
%%DATADIR%%/hoplugins/Transfers.class
121
%%DATADIR%%/hoplugins/Transfers.class
118
%%DATADIR%%/hoplugins/commons/plugin.xml
122
%%DATADIR%%/hoplugins/commons/plugin.xml
123
%%DATADIR%%/hoplugins/commons/sprache/LanguageCodes.properties
124
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Argentina.properties
119
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Catalan.properties
125
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Catalan.properties
120
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Czech.properties
126
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Czech.properties
121
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Danish.properties
127
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Danish.properties
Lines 130-135 Link Here
130
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Romanian.properties
136
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Romanian.properties
131
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Slovak.properties
137
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Slovak.properties
132
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Spanish.properties
138
%%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer/Spanish.properties
139
%%DATADIR%%/hoplugins/commons/sprache/TeamPlanner/English.properties
140
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Argentina.properties
133
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Catalan.properties
141
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Catalan.properties
134
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Deutsch.properties
142
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Deutsch.properties
135
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/English.properties
143
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/English.properties
Lines 142-147 Link Here
142
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Slovak.properties
150
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Slovak.properties
143
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Spanish.properties
151
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/Spanish.properties
144
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/svenska.properties
152
%%DATADIR%%/hoplugins/commons/sprache/TrainingExperience/svenska.properties
153
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Argentina.properties
145
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Catalan.properties
154
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Catalan.properties
146
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Deutsch.properties
155
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Deutsch.properties
147
%%DATADIR%%/hoplugins/commons/sprache/Transfers/English.properties
156
%%DATADIR%%/hoplugins/commons/sprache/Transfers/English.properties
Lines 152-157 Link Here
152
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Polish.properties
161
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Polish.properties
153
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Portugues.properties
162
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Portugues.properties
154
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Spanish.properties
163
%%DATADIR%%/hoplugins/commons/sprache/Transfers/Spanish.properties
164
%%DATADIR%%/hoplugins/commons/sprache/shared/Argentina.properties
155
%%DATADIR%%/hoplugins/commons/sprache/shared/Catalan.properties
165
%%DATADIR%%/hoplugins/commons/sprache/shared/Catalan.properties
156
%%DATADIR%%/hoplugins/commons/sprache/shared/Czech.properties
166
%%DATADIR%%/hoplugins/commons/sprache/shared/Czech.properties
157
%%DATADIR%%/hoplugins/commons/sprache/shared/Danish.properties
167
%%DATADIR%%/hoplugins/commons/sprache/shared/Danish.properties
Lines 169-174 Link Here
169
%%DATADIR%%/hoplugins/commons/sprache/shared/Svenska.properties
179
%%DATADIR%%/hoplugins/commons/sprache/shared/Svenska.properties
170
%%DATADIR%%/hoplugins/commons/ui/BaseTableModel.class
180
%%DATADIR%%/hoplugins/commons/ui/BaseTableModel.class
171
%%DATADIR%%/hoplugins/commons/ui/CompositeIcon.class
181
%%DATADIR%%/hoplugins/commons/ui/CompositeIcon.class
182
%%DATADIR%%/hoplugins/commons/ui/DebugWindow.class
172
%%DATADIR%%/hoplugins/commons/ui/DefaultTableSorter.class
183
%%DATADIR%%/hoplugins/commons/ui/DefaultTableSorter.class
173
%%DATADIR%%/hoplugins/commons/ui/InfoPanel.class
184
%%DATADIR%%/hoplugins/commons/ui/InfoPanel.class
174
%%DATADIR%%/hoplugins/commons/ui/NumberTextField$DecimalFieldDocument.class
185
%%DATADIR%%/hoplugins/commons/ui/NumberTextField$DecimalFieldDocument.class
Lines 189-200 Link Here
189
%%DATADIR%%/hoplugins/commons/ui/sorter/SortableHeaderRenderer.class
200
%%DATADIR%%/hoplugins/commons/ui/sorter/SortableHeaderRenderer.class
190
%%DATADIR%%/hoplugins/commons/ui/sorter/TableModelHandler.class
201
%%DATADIR%%/hoplugins/commons/ui/sorter/TableModelHandler.class
191
%%DATADIR%%/hoplugins/commons/utils/DateUtil.class
202
%%DATADIR%%/hoplugins/commons/utils/DateUtil.class
203
%%DATADIR%%/hoplugins/commons/utils/Debug.class
192
%%DATADIR%%/hoplugins/commons/utils/HTCalendar.class
204
%%DATADIR%%/hoplugins/commons/utils/HTCalendar.class
193
%%DATADIR%%/hoplugins/commons/utils/HTCalendarFactory.class
205
%%DATADIR%%/hoplugins/commons/utils/HTCalendarFactory.class
194
%%DATADIR%%/hoplugins/commons/utils/ListUtil.class
206
%%DATADIR%%/hoplugins/commons/utils/ListUtil.class
195
%%DATADIR%%/hoplugins/commons/utils/MathUtil.class
207
%%DATADIR%%/hoplugins/commons/utils/MathUtil.class
196
%%DATADIR%%/hoplugins/commons/utils/PluginProperty.class
208
%%DATADIR%%/hoplugins/commons/utils/PluginProperty.class
197
%%DATADIR%%/hoplugins/commons/utils/RatingUtil.class
209
%%DATADIR%%/hoplugins/commons/utils/RatingUtil.class
210
%%DATADIR%%/hoplugins/commons/utils/SeriesUtil.class
198
%%DATADIR%%/hoplugins/commons/vo/MatchRating.class
211
%%DATADIR%%/hoplugins/commons/vo/MatchRating.class
199
%%DATADIR%%/hoplugins/teamAnalyzer/SystemManager.class
212
%%DATADIR%%/hoplugins/teamAnalyzer/SystemManager.class
200
%%DATADIR%%/hoplugins/teamAnalyzer/comparator/AppearanceComparator.class
213
%%DATADIR%%/hoplugins/teamAnalyzer/comparator/AppearanceComparator.class
Lines 239-244 Link Here
239
%%DATADIR%%/hoplugins/teamAnalyzer/ui/ManualFilterPanel$1.class
252
%%DATADIR%%/hoplugins/teamAnalyzer/ui/ManualFilterPanel$1.class
240
%%DATADIR%%/hoplugins/teamAnalyzer/ui/ManualFilterPanel.class
253
%%DATADIR%%/hoplugins/teamAnalyzer/ui/ManualFilterPanel.class
241
%%DATADIR%%/hoplugins/teamAnalyzer/ui/ManualFilterTableRenderer.class
254
%%DATADIR%%/hoplugins/teamAnalyzer/ui/ManualFilterTableRenderer.class
255
%%DATADIR%%/hoplugins/teamAnalyzer/ui/PlayerInfoPanel.class
242
%%DATADIR%%/hoplugins/teamAnalyzer/ui/PlayerPanel.class
256
%%DATADIR%%/hoplugins/teamAnalyzer/ui/PlayerPanel.class
243
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RatingBox.class
257
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RatingBox.class
244
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RatingPanel.class
258
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RatingPanel.class
Lines 250-258 Link Here
250
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RecapTableSorter$3.class
264
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RecapTableSorter$3.class
251
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RecapTableSorter$4.class
265
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RecapTableSorter$4.class
252
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RecapTableSorter.class
266
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RecapTableSorter.class
253
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RosterPanel$1.class
254
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RosterPanel$2.class
255
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RosterPanel$3.class
256
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RosterPanel.class
267
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RosterPanel.class
257
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RosterTableRenderer.class
268
%%DATADIR%%/hoplugins/teamAnalyzer/ui/RosterTableRenderer.class
258
%%DATADIR%%/hoplugins/teamAnalyzer/ui/TacticPanel.class
269
%%DATADIR%%/hoplugins/teamAnalyzer/ui/TacticPanel.class
Lines 274-279 Link Here
274
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/JokePanel.class
285
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/JokePanel.class
275
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$1.class
286
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$1.class
276
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$10.class
287
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$10.class
288
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$11.class
289
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$12.class
290
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$13.class
277
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$2.class
291
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$2.class
278
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$3.class
292
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$3.class
279
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$4.class
293
%%DATADIR%%/hoplugins/teamAnalyzer/ui/component/SettingPanel$4.class
Lines 288-293 Link Here
288
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/DownloadItemListener.class
302
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/DownloadItemListener.class
289
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/FavoriteItemListener.class
303
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/FavoriteItemListener.class
290
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/HelpItemListener.class
304
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/HelpItemListener.class
305
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/ImportItemListener.class
291
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/SimButtonListener.class
306
%%DATADIR%%/hoplugins/teamAnalyzer/ui/controller/SimButtonListener.class
292
%%DATADIR%%/hoplugins/teamAnalyzer/ui/lineup/FormationPanel.class
307
%%DATADIR%%/hoplugins/teamAnalyzer/ui/lineup/FormationPanel.class
293
%%DATADIR%%/hoplugins/teamAnalyzer/ui/lineup/LineupStylePanel.class
308
%%DATADIR%%/hoplugins/teamAnalyzer/ui/lineup/LineupStylePanel.class
Lines 312-318 Link Here
312
%%DATADIR%%/hoplugins/teamAnalyzer/vo/Team.class
327
%%DATADIR%%/hoplugins/teamAnalyzer/vo/Team.class
313
%%DATADIR%%/hoplugins/teamAnalyzer/vo/TeamLineup.class
328
%%DATADIR%%/hoplugins/teamAnalyzer/vo/TeamLineup.class
314
%%DATADIR%%/hoplugins/teamAnalyzer/vo/UserTeamSpotLineup.class
329
%%DATADIR%%/hoplugins/teamAnalyzer/vo/UserTeamSpotLineup.class
315
%%DATADIR%%/hoplugins/trainingExperience/FutureTrainingManager.class
330
%%DATADIR%%/hoplugins/trainingExperience/OldTrainingManager$1.class
316
%%DATADIR%%/hoplugins/trainingExperience/OldTrainingManager$SkillupComperator.class
331
%%DATADIR%%/hoplugins/trainingExperience/OldTrainingManager$SkillupComperator.class
317
%%DATADIR%%/hoplugins/trainingExperience/OldTrainingManager.class
332
%%DATADIR%%/hoplugins/trainingExperience/OldTrainingManager.class
318
%%DATADIR%%/hoplugins/trainingExperience/constants/Skills.class
333
%%DATADIR%%/hoplugins/trainingExperience/constants/Skills.class
Lines 320-355 Link Here
320
%%DATADIR%%/hoplugins/trainingExperience/dao/DividerDAO.class
335
%%DATADIR%%/hoplugins/trainingExperience/dao/DividerDAO.class
321
%%DATADIR%%/hoplugins/trainingExperience/dao/EffectDAO$1.class
336
%%DATADIR%%/hoplugins/trainingExperience/dao/EffectDAO$1.class
322
%%DATADIR%%/hoplugins/trainingExperience/dao/EffectDAO.class
337
%%DATADIR%%/hoplugins/trainingExperience/dao/EffectDAO.class
323
%%DATADIR%%/hoplugins/trainingExperience/dao/TrainingDAO.class
324
%%DATADIR%%/hoplugins/trainingExperience/plugin.xml
338
%%DATADIR%%/hoplugins/trainingExperience/plugin.xml
325
%%DATADIR%%/hoplugins/trainingExperience/ui/AnalyzerPanel$1.class
339
%%DATADIR%%/hoplugins/trainingExperience/ui/AnalyzerPanel$1.class
326
%%DATADIR%%/hoplugins/trainingExperience/ui/AnalyzerPanel.class
340
%%DATADIR%%/hoplugins/trainingExperience/ui/AnalyzerPanel.class
327
%%DATADIR%%/hoplugins/trainingExperience/ui/ChangeTableRenderer.class
328
%%DATADIR%%/hoplugins/trainingExperience/ui/EffectPanel.class
341
%%DATADIR%%/hoplugins/trainingExperience/ui/EffectPanel.class
329
%%DATADIR%%/hoplugins/trainingExperience/ui/MainPanel.class
342
%%DATADIR%%/hoplugins/trainingExperience/ui/MainPanel.class
330
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputPanel$1.class
343
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputPanel$1.class
331
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputPanel$2.class
344
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputPanel$2.class
332
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputPanel$3.class
333
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputPanel.class
345
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputPanel.class
334
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputTable.class
346
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputTable.class
335
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputTableRenderer.class
336
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputTableSorter$1.class
347
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputTableSorter$1.class
337
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputTableSorter.class
348
%%DATADIR%%/hoplugins/trainingExperience/ui/OutputTableSorter.class
338
%%DATADIR%%/hoplugins/trainingExperience/ui/PlayerDetailPanel.class
349
%%DATADIR%%/hoplugins/trainingExperience/ui/PlayerDetailPanel.class
350
%%DATADIR%%/hoplugins/trainingExperience/ui/PlayerSelectionListener.class
339
%%DATADIR%%/hoplugins/trainingExperience/ui/SkillupPanel.class
351
%%DATADIR%%/hoplugins/trainingExperience/ui/SkillupPanel.class
340
%%DATADIR%%/hoplugins/trainingExperience/ui/SkillupTable.class
352
%%DATADIR%%/hoplugins/trainingExperience/ui/SkillupTable.class
341
%%DATADIR%%/hoplugins/trainingExperience/ui/SkillupTableRenderer.class
342
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel$1.class
353
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel$1.class
343
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel$2.class
354
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel$2.class
344
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel$3.class
355
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel$3.class
345
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel.class
356
%%DATADIR%%/hoplugins/trainingExperience/ui/StaffPanel.class
346
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingComparator.class
357
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingComparator.class
358
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingLegendPanel$ColorReplaceFilter.class
359
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingLegendPanel.class
347
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingPanel$1.class
360
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingPanel$1.class
348
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingPanel.class
361
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingPanel.class
349
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingRecapPanel$1.class
350
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingRecapPanel$2.class
351
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingRecapPanel.class
362
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingRecapPanel.class
352
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingRecapRenderer.class
353
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingRecapTable.class
363
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingRecapTable.class
354
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingTable.class
364
%%DATADIR%%/hoplugins/trainingExperience/ui/TrainingTable.class
355
%%DATADIR%%/hoplugins/trainingExperience/ui/bar/ColorModus.class
365
%%DATADIR%%/hoplugins/trainingExperience/ui/bar/ColorModus.class
Lines 366-375 Link Here
366
%%DATADIR%%/hoplugins/trainingExperience/ui/model/FutureTrainingsTableModel.class
376
%%DATADIR%%/hoplugins/trainingExperience/ui/model/FutureTrainingsTableModel.class
367
%%DATADIR%%/hoplugins/trainingExperience/ui/model/OutputTableModel.class
377
%%DATADIR%%/hoplugins/trainingExperience/ui/model/OutputTableModel.class
368
%%DATADIR%%/hoplugins/trainingExperience/ui/model/PastTrainingsTableModel.class
378
%%DATADIR%%/hoplugins/trainingExperience/ui/model/PastTrainingsTableModel.class
369
%%DATADIR%%/hoplugins/trainingExperience/vo/HattrickTrainingWeek.class
379
%%DATADIR%%/hoplugins/trainingExperience/ui/renderer/ChangeTableRenderer.class
380
%%DATADIR%%/hoplugins/trainingExperience/ui/renderer/OutputTableRenderer.class
381
%%DATADIR%%/hoplugins/trainingExperience/ui/renderer/SkillupTableRenderer.class
382
%%DATADIR%%/hoplugins/trainingExperience/ui/renderer/SkillupTypeTableCellRenderer.class
383
%%DATADIR%%/hoplugins/trainingExperience/ui/renderer/SkillupsTableCellRenderer.class
384
%%DATADIR%%/hoplugins/trainingExperience/ui/renderer/TrainingRecapRenderer.class
385
%%DATADIR%%/hoplugins/trainingExperience/vo/FutureTrainingWeek.class
386
%%DATADIR%%/hoplugins/trainingExperience/vo/PastSkillup.class
370
%%DATADIR%%/hoplugins/trainingExperience/vo/PlayerValues.class
387
%%DATADIR%%/hoplugins/trainingExperience/vo/PlayerValues.class
371
%%DATADIR%%/hoplugins/trainingExperience/vo/SkillChange.class
388
%%DATADIR%%/hoplugins/trainingExperience/vo/SkillChange.class
372
%%DATADIR%%/hoplugins/trainingExperience/vo/Skillup.class
373
%%DATADIR%%/hoplugins/trainingExperience/vo/TrainWeekEffect.class
389
%%DATADIR%%/hoplugins/trainingExperience/vo/TrainWeekEffect.class
374
%%DATADIR%%/hoplugins/transfers/constants/TransferTypes.class
390
%%DATADIR%%/hoplugins/transfers/constants/TransferTypes.class
375
%%DATADIR%%/hoplugins/transfers/dao/BookmarkDAO.class
391
%%DATADIR%%/hoplugins/transfers/dao/BookmarkDAO.class
Lines 422-428 Link Here
422
%%DATADIR%%/hoplugins/transfers/vo/TransferredPlayer.class
438
%%DATADIR%%/hoplugins/transfers/vo/TransferredPlayer.class
423
%%DATADIR%%/hsqldb.jar
439
%%DATADIR%%/hsqldb.jar
424
%%DATADIR%%/hsqldb_lic.txt
440
%%DATADIR%%/hsqldb_lic.txt
441
%%DATADIR%%/jl1.0.jar
425
%%DATADIR%%/lizenz.txt
442
%%DATADIR%%/lizenz.txt
443
%%DATADIR%%/ratings.dat
426
%%DATADIR%%/sprache/Argentina.properties
444
%%DATADIR%%/sprache/Argentina.properties
427
%%DATADIR%%/sprache/Bulgarian.properties
445
%%DATADIR%%/sprache/Bulgarian.properties
428
%%DATADIR%%/sprache/Catalan.properties
446
%%DATADIR%%/sprache/Catalan.properties
Lines 461-466 Link Here
461
@dirrm %%DATADIR%%/hoplugins/transfers/constants
479
@dirrm %%DATADIR%%/hoplugins/transfers/constants
462
@dirrm %%DATADIR%%/hoplugins/transfers
480
@dirrm %%DATADIR%%/hoplugins/transfers
463
@dirrm %%DATADIR%%/hoplugins/trainingExperience/vo
481
@dirrm %%DATADIR%%/hoplugins/trainingExperience/vo
482
@dirrm %%DATADIR%%/hoplugins/trainingExperience/ui/renderer
464
@dirrm %%DATADIR%%/hoplugins/trainingExperience/ui/model
483
@dirrm %%DATADIR%%/hoplugins/trainingExperience/ui/model
465
@dirrm %%DATADIR%%/hoplugins/trainingExperience/ui/component
484
@dirrm %%DATADIR%%/hoplugins/trainingExperience/ui/component
466
@dirrm %%DATADIR%%/hoplugins/trainingExperience/ui/bar
485
@dirrm %%DATADIR%%/hoplugins/trainingExperience/ui/bar
Lines 494-499 Link Here
494
@dirrm %%DATADIR%%/hoplugins/commons/sprache/shared
513
@dirrm %%DATADIR%%/hoplugins/commons/sprache/shared
495
@dirrm %%DATADIR%%/hoplugins/commons/sprache/Transfers
514
@dirrm %%DATADIR%%/hoplugins/commons/sprache/Transfers
496
@dirrm %%DATADIR%%/hoplugins/commons/sprache/TrainingExperience
515
@dirrm %%DATADIR%%/hoplugins/commons/sprache/TrainingExperience
516
@dirrm %%DATADIR%%/hoplugins/commons/sprache/TeamPlanner
497
@dirrm %%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer
517
@dirrm %%DATADIR%%/hoplugins/commons/sprache/TeamAnalyzer
498
@dirrm %%DATADIR%%/hoplugins/commons/sprache
518
@dirrm %%DATADIR%%/hoplugins/commons/sprache
499
@dirrm %%DATADIR%%/hoplugins/commons
519
@dirrm %%DATADIR%%/hoplugins/commons

Return to bug 90369