forked from hans/lwt
-
Notifications
You must be signed in to change notification settings - Fork 9
/
info.htm
3357 lines (2972 loc) · 175 KB
/
info.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- ***********************************************************
"Learning with Texts" (LWT) is free and unencumbered software
released into the PUBLIC DOMAIN.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a
compiled binary, for any purpose, commercial or non-commercial,
and by any means.
In jurisdictions that recognize copyright laws, the author or
authors of this software dedicate any and all copyright
interest in the software to the public domain. We make this
dedication for the benefit of the public at large and to the
detriment of our heirs and successors. We intend this
dedication to be an overt act of relinquishment in perpetuity
of all present and future rights to this software under
copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
For more information, please refer to [http://unlicense.org/].
************************************************************ -->
<!-- ***********************************************************
LWT Information / Help
************************************************************ -->
<meta http-equiv="content-language" content="en-US" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta name="keywords" content="Language Learning Texts LWT Software Freeware LingQ Alternative AJATT Khatzumoto MCD MCDs Massive Context Cloze Deletion Cards Tool Stephen Krashen Second Language Acquisition Steve Kaufmann" />
<meta name="description" content="Learning with Texts (LWT) is a tool for Language Learning, inspired by Stephen Krashen's principles in Second Language Acquisition, Steve Kaufmann's LingQ System and ideas (e. g. Massive-Context Cloze Deletion Cards = MCDs) from Khatzumoto, published at AJATT - All Japanese All The Time. It is an Alternative to LingQ, 100 % free, Open Source, and in the Public Domain." />
<meta name="revisit-after" content="2 days" />
<meta name="viewport" content="width=1280, user-scalable=yes" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="apple-touch-icon" href="img/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png" />
<link rel="apple-touch-startup-image" href="img/apple-touch-startup.png" />
<style type="text/css">
@import url(css/styles.css);
</style>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/floating.js"></script>
<script type="text/javascript">
$.ajax({type: 'POST',url:'ajax_get_theme.php',async: false, data: { file:'css/styles.css' }, success:function (data) {if(data.match(/styles.css$/g))$('style').text( "@import url(" + data + ");" );
}});
</script>
<title>
Learning with Texts :: Help/Information
</title>
</head>
<body>
<div id="floatdiv" style="position:absolute; width:auto; height:auto; top:10px; right:10px; padding:5px; z-index:100; font-size: 10pt; text-align:center;">
<a href="#">↑ TOP ↑</a><br /><br />
<a href="#preface">Preface</a><br />
<a href="#current">Curr.Version </a><br />
<a href="#links">Links</a><br />
<a href="#abstract">Abstract</a><br />
<a href="#features">Features</a><br />
<a href="#new_features">New Features</a><br />
<a href="#screencasts">Screencasts</a><br />
<a href="#license">(Un-) License</a><br />
<a href="#disclaimer">Disclaimer</a><br /><br />
<a href="#installwin">Install. Win</a><br />
<a href="#upgradewin">Upgrade Win</a><br />
<a href="#installmac">Install. Mac</a><br />
<a href="#upgrademac">Upgrade Mac</a><br />
<a href="#installlnx">Install. Linux</a><br />
<a href="#upgradelnx">Upgrade Linux</a><br />
<a href="#installhoster">Webhoster</a><br /><br />
<a href="#learn">How to learn</a><br /><br />
<a href="#howto">How to use</a><br /><br />
<a href="#faq">Q & A</a><br />
<a href="#ipad">Setup for iPad®</a><br />
<a href="#langsetup">Lang. Setup</a><br />
<a href="#termscores">Term Scores</a><br />
<a href="#keybind">Key Bindings</a><br />
<a href="#wp">WP Integration</a><br /><br />
<a href="#database">DB Structure</a><br />
<a href="#history">Changelog</a>
</div>
<script type="text/javascript">
//<![CDATA[
$(document).ready( function() {
$('#floatdiv').addFloating( {
targetRight: 10,
targetTop: 10,
snap: true
} );
});
//]]>
</script>
<div style="margin-right:100px;">
<h4>
<a href="index.php" target="_top"><img class="lwtlogoright" alt="" />Learning with Texts</a>
<br />
<br />
<span class="bigger">Help/Information</span>
</h4>
<script type="text/javascript">
$.ajax({type: 'POST',url:'ajax_get_theme.php', data: { file:'img/lwt_icon_big.png' }, success:function (data) {
if(data.match(/lwt_icon_big.png$/g))$('.lwtlogoright').attr( "src", data );}});
if(!$('.lwtlogoright[src]').length){$('.lwtlogoright').attr( "src", 'img/lwt_icon_big.png' );}
</script>
<p class="inline">
Jump to topic:
<span class="wrap_select"><select id="topicjump" onchange="{var qm = document.getElementById('topicjump'); var val=qm.options[qm.selectedIndex].value; qm.selectedIndex=0; if (val != '') { location.href = '#' + val;}}">
<option value="" selected="selected">
[Select...]
</option>
<option value="preface">
Preface
</option>
<option value="current">
Current Version
</option>
<option value="links">
Links
</option>
<option value="abstract">
Abstract
</option>
<option value="features">
Features
</option>
<option value="new_features">
New in this Version
</option>
<option value="screencasts">
Screencasts
</option>
<option value="license">
(Un-) License
</option>
<option value="disclaimer">
Disclaimer
</option>
<option value="installwin">
Installation Windows
</option>
<option value="upgradewin">
Upgrade Windows
</option>
<option value="installmac">
Installation Mac OS X
</option>
<option value="upgrademac">
Upgrade Mac OS X
</option>
<option value="installlnx">
Installation Linux
</option>
<option value="upgradelnx">
Upgrade Linux
</option>
<option value="installhoster">
Installation @ Webhoster
</option>
<option value="learn">
How to learn
</option>
<option value="howto">
How to use
</option>
<option value="faq">
Questions and Answers
</option>
<option value="ipad">
Setup for iPad® etc.
</option>
<option value="langsetup">
Language Setup
</option>
<option value="termscores">
Term Scores
</option>
<option value="keybind">
Key Bindings
</option>
<option value="wp">
WordPress Integration
</option>
<option value="database">
Database Structure
</option>
<option value="history">
Changelog
</option>
</select></span>
</p>
<dl>
<dt>
▶ <b><a name="preface" id="preface">Preface</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li><b><strong>THIS IS A THIRD PARTY VERSION -
IT DIFFERS IN MANY RESPECTS FROM THE OFFICIAL LWT-VERSION (more <a href="#new_features">here</a>)</strong></b>
</li>
<li>I started this software application in 2010 as a hobby project for my personal learning (reading & listening to foreign texts, saving & reviewing new words and expressions).
</li>
<li>In June 2011, I decided to publish the software in the hope that it will be useful to other language learners around the world.
</li>
<li>The software is 100 % free, open source, and in the public domain. You may do with it what you like: use it, improve it, change it, publish an improved version, even use it within a commercial product.
</li>
<li>English is not my mother tongue - so please forgive me any mistakes.
</li>
<li>A piece of software will be never completely free of "bugs" - please inform me of any problem you will encounter. Your feedback and ideas are always welcome.</li>
<li>My programming style is quite chaotic, and my software is mostly undocumented. This will annoy people with much better programming habits than mine, but please bear in mind that LWT is a one-man hobby project and completely free.
</li>
<li>Thank you for your attention. I hope you will enjoy this application as I do every day.
</li>
</ul>
</dd>
<dt>
▶ <b><a name="current" id="current">Current Version</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>The current version is <b>1.6.31 (October 03 2016)</b>.
</li>
<li>
<a href="#history">View the Changelog.</a>
</li>
</ul>
</dd>
<dt>
▶ <b><a name="links" id="links">Important Links</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>
<a href="http://sourceforge.net/projects/lwt/" target="_blank"><b>Project Page</b> @ Sourceforge</a>
</li>
<li>
<a href="https://github.com/andreask7/lwt/releases/latest" target="_blank"><b>Download Page (THIS VERSION)</b> @ GitHub</a>
</li>
<li>
<a href="http://sourceforge.net/projects/lwt/files/" target="_blank"><b>Download Page (OFFICIAL LWT)</b> @ Sourceforge</a>
</li>
<li>
<a href="http://sourceforge.net/p/lwt/discussion/1813497" target="_blank"><b>Help Forum</b> @ Sourceforge</a>
</li>
<li>
<a href="https://github.com/andreask7/lwt" target="_blank"><b>Source Code (THIS VERSION)</b> @ GitHub</a>
</li>
<li>
<a href="https://github.com/lwt-project/lwt" target="_blank"><b>Source Code (OFFICIAL LWT)</b> @ GitHub</a>
</li>
<li>
<a href="http://lwt.uservoice.com" target="_blank"><b>Ideas & Suggestions</b> @ Uservoice</a>
<br />
<br />
</li>
<li>
<a href="http://twitter.com/LWT_Project" target="_blank"><b>Twitter</b></a>
<ul>
<li><a href="http://twitter.com/LWT_Project" class="twitter-follow-button">Follow @LWT_Project</a>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script></li>
<li><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://lwt.sourceforge.net/" data-text="Learning With Texts - #Freeware for better #Language #Learning -" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></li>
</ul>
<br />
</li>
<li>
<b>LWT Online Demos</b> - <b>try it out:</b>
<ul>
<li><b>General Hints:</b>
<ul>
<li>Please do not use for productive work.</li>
<li>Your data may be deleted at any time by other users!</li>
<li>Only one LWT table set is available - the multiple table set feature has been deactivated.</li>
<li>You may "reset" the demo by going to "Backup/Restore", and by clicking on "Install LWT Demo Database".</li>
</ul>
<li><a href="http://lwtexp.allalla.com" target="_blank"><b>START ONLINE DEMO #1 (THIS VERSION)</b></a> (at 1freehosting.com, User ID = <b>lwt</b>, Password = <b>pw4lwt</b>)
</li>
<li><a href="http://lwt.allalla.com" target="_blank"><b>START ONLINE DEMO #2 (OFFICIAL LWT)</b></a> (at 1freehosting.com, quite fast, User ID = <b>lwt</b>, Password = <b>pw4lwt</b>)
</li>
<li><a href="http://lwt.sourceforge.net/testdb/" target="_blank"><b>START ONLINE DEMO #3 (OFFICIAL LWT)</b></a> (at sourceforge.net, quite slow sometimes, User ID = <b>lwt</b>, Password = <b>lwt</b>)
</li>
</ul>
<br />
</li>
<li>
<b>LWT Reviews and Blog Posts</b>
<ul>
<li>
<a href="http://www.mezzoguild.com/2012/07/04/how-to-install-learning-with-texts-lwt" target="_blank">The Mezzofanti Guild: How To Install Learning With Texts On Your Own Computer</a>
</li>
<li>
Street-Smart Language Learning™: Using Learning with Texts with Anki 2 (in five parts):<br />
Part <a href="http://www.streetsmartlanguagelearning.com/2012/12/using-learning-with-texts-with-anki-2.html" target="_blank">1</a> / <a href="http://www.streetsmartlanguagelearning.com/2013/01/using-learning-with-texts-with-anki-2.html" target="_blank">2</a> / <a href="http://www.streetsmartlanguagelearning.com/2013/01/using-learning-with-texts-with-anki-2_8.html" target="_blank">3</a> / <a href="http://www.streetsmartlanguagelearning.com/2013/01/using-learning-with-texts-with-anki-2_15.html" target="_blank">4</a> / <a href="http://www.streetsmartlanguagelearning.com/2013/01/using-learning-with-texts-with-anki-2_21.html" target="_blank">5</a>
</li>
<li>
<a href="http://www.thefineapps.com/2011/08/03/learning-with-texts-lwt-detailed-review/" target="_blank">The Path to Fluency: Detailed review of LWT</a>
</li>
<li>
<a href="http://www.jeremysimonson.com/japanese-language/2011/10/learning-with-texts/" target="_blank">Jeremy Simonson: (Japanese) Learning with Texts</a>
</li>
<li>
<a href="http://chicagoseoul.wordpress.com/2011/07/19/learning-with-texts/" target="_blank">Chicagoseoul's Blog: Learning with Texts</a>
</li>
<li>
<a href="http://mikotoneko.wordpress.com/2012/03/09/lwtp1/" target="_blank">Mikoto's Adventures in Japanese: LWT - Learning With Text Introduction</a>
</li>
<li>
<a href="http://mikotoneko.wordpress.com/2012/03/13/lwt-a-guide-to-setting-up-for-japanese-learning/" target="_blank">Mikoto's Adventures in Japanese: LWT - A Guide to Setting up for Japanese Learning</a>
</li>
<li>
<a href="http://mikotoneko.wordpress.com/2012/04/06/lwt-tricks-of-the-trade/" target="_blank">Mikoto's Adventures in Japanese: LWT - Tricks of the Trade</a>
</li>
<li>
<a href="http://mikotoneko.wordpress.com/2012/04/17/lwt-daniels-guide-for-japanese-useage/" target="_blank">Mikoto's Adventures in Japanese: LWT - Daniel’s Guide for Japanese Usage</a>
</li>
<li>
<a href="http://www.fluentin3months.com/learning-with-texts/" target="_blank">Fluent In 3 Months: Introducing LWT</a>, with <a target="_blank" href="http://lwtfi3m.co/">Benny's own (free) version of LWT</a>.<br />
</li>
</ul>
<br />
</li>
<li>
<b>LWT Forum Threads</b>
<ul>
<li>
<a href="http://how-to-learn-any-language.com/forum/forum_posts.asp?TID=28312&PN=1&TPN=1" target="_blank">How-To-Learn-Any-Language Forum Thread about LWT</a>
</li>
<li>
<a href="http://forum.koohii.com/viewtopic.php?id=8603" target="_blank">forum.koohii.com: "Learning With Texts" software + Japanese?</a>
</li><br />
</ul>
<li>
<b>Additional Resources</b>
<ul>
<li>
Similar software or services
<ul>
<li>
<a href="http://code.google.com/p/fltr/" target="_blank">FLTR - Foreign Language Text Reader</a> (Open Source Java Desktop Application).
</li>
<li>
<a href="http://lingq.com" target="_blank">LingQ.com</a> (Web based service with tutoring. An account costs US$ 10 per month).
</li>
<li>
<a href="http://lingro.com/" target="_blank">lingro.com</a> (An on-line environment that allows anyone learning a language to quickly look up and learn the vocabulary).
</li>
<li>
<a href="http://readlang.com//" target="_blank">readlang.com</a> (An on-line service where you can import articles, read and translate them, and learn new words.).
</li>
</ul>
</li>
<li>
Resources for various languages
<ul>
<li>
<a href="http://tinyurl.com/cbpndlt" target="_blank">GoogleDocs Spreadsheet</a> with recommendations for LWT Language Settings ("Templates")<br/><b>Important:</b> Please be careful when making additions or corrections!
</li>
</ul>
</li>
<li>
For learners of Japanese
<ul>
<li>
<a href="http://mecab.googlecode.com/svn/trunk/mecab/doc/index.html" target="_blank">MeCab - Yet Another Part-of-Speech and Morphological Analyzer</a>
</li>
<li>
<a href="http://nihongo.dpwright.com/spaces/index.php" target="_blank">Japanese Space Inserter</a>
</li>
</ul>
</li>
<li>
LWT Tutorials in other languages
<ul>
<li>
<a href="http://rightstuff.luminousspice.com/2013/07/how_to_lwt_install/" target="_blank">LWT installation tutorial for <b>Japanese</b> Users</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</dd>
<dt>
▶ <b><a name="abstract" id="abstract">Abstract</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>
<a href="http://sourceforge.net/projects/lwt/" target="_blank"><i>Learning with Texts</i> (LWT)</a> is a tool for Language Learning, inspired by:
<ul>
<li>
<a href="http://sdkrashen.com" target="_blank">Stephen Krashen's</a> principles in Second Language Acquisition,
</li>
<li>Steve Kaufmann's <a href="http://lingq.com" target="_blank">LingQ</a> System and
</li>
<li>ideas from Khatzumoto, published at <a href="http://www.alljapaneseallthetime.com" target="_blank">"AJATT - All Japanese All The Time"</a>.
</li>
</ul>
</li>
<li>You define languages you want to learn and import texts you want to use for learning.
</li>
<li>While listening to the audio (optional), you read the text, save, review and test "terms" (words or multi word expressions, 2 to 9 words).
</li>
<li>In new texts all your previously saved words and expressions are displayed according to their current learn statuses, tooltips show translations and romanizations (readings), editing, changing the status, dictionary lookup, etc. is just a click away.
</li>
<li>Import of terms in TSV/CSV format, export in TSV format, and export to <a href="http://ankisrs.net" target="_blank">Anki</a> (prepared for cloze tests), are also possible.<br /><br />
</li>
<li><b><u>MOST IMPORTANT:</u><br /><br /> To run LWT, you'll need: </b><br /><br />
<b>(1) A modern web browser.</b><br />I recommend (in this order) <ul><li><a href="http://www.google.com/chrome/" target="_blank">Chrome</a>, </li><li><a href="http://www.mozilla.org/firefox/" target="_blank">Firefox</a>, </li><li><a href="http://www.apple.com/safari/" target="_blank">Safari</a>, or </li><li><a href="http://windows.microsoft.com/en-us/internet-explorer/download-ie" target="_blank">Internet Explorer 11+</a>.</li></ul>If MP3 audio playback doesn't work, install Adobe Flash, or consider switching to a different browser. MP3 playback on some Firefox editions (like the one for Mac OS X) does not seem to work, and playback via Adobe Flash does not seem to work either if the audio is on a different domain (due to security reasons within Flash).<br />Firefox needs the <a href="https://addons.mozilla.org/de/firefox/addon/html-ruby/" target="_blank">HTML Ruby Add-On</a> to display ruby markup (i. e. to display annotations above a text) properly.<br /><br />
<b>(2) A local web server.</b><br />An easy way to install a local web server are preconfigured packages like<ul><li><a href="http://www.easyphp.org/" target="_blank">EasyPHP</a> (Windows), or </li><li><a href="http://mamp.info/en/index.html" target="_blank">MAMP</a> (Mac OS X), or</li><li>a <a href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29" target="_blank">LAMP (Linux-Apache-MySQL-PHP) server</a> (Linux).</li></ul><br />
<b>(3) The LWT Application.</b><br />The ZIP Archive can be downloaded <a href="http://sourceforge.net/projects/lwt/files/" target="_blank">here</a>.<br />The installation is explained<ul><li><a href="#installwin">here (Windows)</a>,</li><li><a href="#installmac">here (Mac OS X)</a> and</li><li><a href="#installlnx">here (Ubuntu, LinuxMint, etc.)</a>.</li></ul>
<br />
</li>
</ul>
</dd>
<dt>
▶ <b><a name="features" id="features">Features</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>You define languages you want to learn.
</li>
<li>You define the web dictionaries you want to use.
</li>
<li>You define how sentences and words in the language will be split up.
</li>
<li>You upload texts, and they are automatically split into sentences and words! Later re-parsing is possible.
</li>
<li>Optional: Assign the URL of an mp3 audio file of the text (Dropbox, local server, ...) in order to listen while reading the text.
</li>
<li>You read the text while listening to the audio, and you see immediately the status of every word (unknown, learning, learned, well-known, ignored).
</li>
<li>You click on words, and you use the external dictionaries to find out their meanings.
</li>
<li>You save words or expressions (2..9 words) with optional romanization (for asiatic languages), translations and example sentence, you change its status, you edit them whenever needed (like in LingQ).
</li>
<li>You test your understanding of words and expressions within or without sentence context.
</li>
<li>MCD (Massive-Context Cloze Deletion) testing, as proposed by Khatzumoto @ AJATT, built-in!
</li>
<li>See your progress on the statistics page.
</li>
<li>You may export the words and expressions and use them in Anki or other programs.
</li>
<li>You may upload words and expressions into LWT (from LingQ or other sources, CSV/TSV) - they are immediately available in all texts!
</li>
<li><b>New since Version 1.5.0:</b> Create and edit an improved annotated text version (a <a target="_blank" href="http://learnanylanguage.wikia.com/wiki/Hyperliteral_translations">hyperliteral translation</a> as <a target="_blank" href="http://en.wikipedia.org/wiki/Interlinear_gloss">interlinear text</a>) for online or offline learning. Read more <a href="#il">here</a>.
</li>
<li>The application is 100 % free, open source, and in the Public Domain. Do with it what you like!
</li>
<li>Prerequisites: a local webserver (Apache, PHP, mySQL), e.g. EasyPHP (Windows), MAMP (OS X), or a LAMP server (Linux).
</li>
<li>Enjoy your language learning!
</li>
</ul>
</dd>
<dt>
▶ <b><a name="new_features" id="new_features">New in this Version (not available in the OFFICIAL LWT)</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>Database improvements (db size is much smaller now)
</li>
<li>Automatically import texts from RSS feeds (for more info see: <a href="#feed_imp">Newsfeed Import</a>)
</li>
<li>Support for different themes
</li>
<li>Longer (>9) expressions can now be saved (up to 250 characters)
</li>
<li>Display translations of terms with status(es) in the reading frame
</li>
<li>Save text/audio position in the reading frame
</li>
<li>Multiwords selection (click and hold on a word -> move to another word -> release mouse button)
</li>
<li>Key bindings work when you hover over a word
</li>
<li>Bulk translate new words in the reading frame
</li>
<li>Google api (use 'ggl.php' instead of '*http://translate.google.com' for Google Translate)
</li>
<li>Text to speech support (only words)
</li>
<li>Optional "ignore all" button in read texts
</li>
<li>New key bindings in the reading frame:
<ul><li>T (translate sentence),</li>
<li>P (pronounce term),</li>
<li>G (edit term with Google Translate)</li>
</ul>
</li>
<li>Ability to change audio playback speed (doesn't work when using the flash plugin)
</li>
<li>Improved Search/Query for Words/Texts
</li>
<li>Selecting terms according to a text tag
</li>
<li>Term import with more options (i.e.: combine translations, multiple tag import,...)
</li>
<li>Two database backup modes (new or old structure)
</li>
</ul>
</dd>
<dt>
▶ <b><a name="screencasts" id="screencasts">Screencasts/Videos</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>
<a href="http://www.youtube.com/watch?v=TkcVJ6SpK2Q" target="_blank">01 - Starting with French</a> (created with version 1.0.2)
<br />
Finding learning material, importing a text with audio, saving words and expressions, changing the status, printing.
<br /><br />
<iframe width="640" height="510" src="http://www.youtube.com/embed/TkcVJ6SpK2Q" frameborder="0" allowfullscreen></iframe>
<br /><br />
Mentioned websites in this screencast:
<ul>
<li><a href="http://lingq.com" target="_blank">LingQ - Library</a></li>
<li><a href="http://fluentin3months.com/learning-materials/" target="_blank">Fluent in 3 months - Learning materials</a></li>
<li><a href="http://ielanguages.com/french1.html" target="_blank">ieLanguages - French I Tutorial</a></li>
</ul>
<br />
</li>
<li>
A <a target="_blank" href="http://www.youtube.com/watch?v=QSLPOATWAU4">video</a> from <a target="_blank" href="http://www.youtube.com/user/FluentCzech">FluentCzech</a>:
<br /><br />
<iframe width="640" height="360" src="http://www.youtube.com/embed/QSLPOATWAU4" frameborder="0" allowfullscreen></iframe>
<br /><br />
Please have a look at the other great videos of <a target="_blank" href="http://www.youtube.com/user/FluentCzech">FluentCzech</a> that contain many good ideas for language learning! <br />
<a target="_blank" href="http://www.anthonylauder.com">Website of FluentCzech (anthonylauder.com)</a>
<br /><br />
</li>
<li>
A <a target="_blank" href="http://www.youtube.com/watch?v=QnGG-_urLKk">video</a> from <a target="_blank" href="http://www.youtube.com/user/irishpolyglot">Benny the Irish polyglot</a>:
<br /><br />
<iframe width="640" height="360" src="http://www.youtube.com/embed/QnGG-_urLKk" frameborder="0" allowfullscreen></iframe>
<br /><br />
<a href="http://www.fluentin3months.com/learning-with-texts/" target="_blank">Fluent In 3 Months: Introducing LWT</a>, with <a target="_blank" href="http://lwtfi3m.co/">Benny's own (free) version of LWT</a>.<br />
</li>
</ul>
</dd>
<dt>
▶ <b><a name="license" id="license">(Un-) License</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>
<a href="http://sourceforge.net/projects/lwt/" target="_blank"><i>"Learning with Texts"</i> (LWT)</a>
is free and unencumbered software
released into the PUBLIC DOMAIN.
<br />
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a
compiled binary, for any purpose, commercial or non-commercial,
and by any means.
<br />
In jurisdictions that recognize copyright laws, the author or
authors of this software dedicate any and all copyright
interest in the software to the public domain. We make this
dedication for the benefit of the public at large and to the
detriment of our heirs and successors. We intend this
dedication to be an overt act of relinquishment in perpetuity
of all present and future rights to this software under
copyright law.
<br />
Please read also the <a href="#disclaimer">disclaimer</a>.
<br />
For more information, please refer to <a href="http://unlicense.org/" target="_blank">http://unlicense.org/</a>.
<br />
<br />
</li>
<li>The following software packages, bundled within the LWT software, have different licenses:
<ul>
<li>
jQuery, jQueryUI - Copyright © John Resig et.al., <a href="http://jquery.org/license" target="_blank">http://jquery.org/license</a> (js/jquery.js, js/jquery-ui.min.js)
</li>
<li>
jQuery.ScrollTo - Copyright © Ariel Flesler, <a href="http://flesler.blogspot.com" target="_blank">http://flesler.blogspot.com</a> (js/jquery.scrollTo.min.js)
</li>
<li>
Jeditable - jQuery in-place edit plugin - Copyright © Mika Tuupola, Dylan Verheul, <a href="http://www.appelsiini.net/projects/jeditable" target="_blank">http://www.appelsiini.net/projects/jeditable</a> (js/jquery.jeditable.mini.js)
</li>
<li>
jQueryUI Tag-it! - Copyright © Levy Carneiro Jr., <a href="http://aehlke.github.com/tag-it/" target="_blank">http://aehlke.github.com/tag-it/</a> (js/tag-it.js)
</li>
<li>
оverLIB 4.22 - Copyright © Erik Bоsrup, <a href="http://www.bosrup.com/" target="_blank">http://www.bosrup.com/</a> (js/overlib/...)
</li>
<li>
sorttable - Copyright © Stuart Langridge, <a href="http://www.kryogenix.org/code/browser/sorttable/" target="_blank">http://www.kryogenix.org/code/browser/sorttable/</a> (js/sorttable/...)
</li>
<li>
CountUp - Copyright © Praveen Lobo, <a href="http://PraveenLobo.com/techblog/javascript-countup-timer/" target="_blank">http://PraveenLobo.com/techblog/javascript-countup-timer/</a> (js/countuptimer.js)
</li>
<li>
jPlayer - Copyright © Happyworm Ltd, <a href="http://www.jplayer.org/about/" target="_blank">http://www.jplayer.org/about/</a> (js/jquery.jplayer.min.js, js/Jplayer.swf, css/jplayer_skin/...)
</li>
<li>
Floating Menu - Copyright © JTricks.com, <a href="http://www.jtricks.com/licensing.html" target="_blank">http://www.jtricks.com/licensing.html</a> (js/floating.js)
</li>
<li>
mobiledetect - Copyright © Șerban Ghiță & Victor Stanciu, <a href="http://mobiledetect.net/" target="_blank">http://mobiledetect.net</a> (php-mobile-detect/Mobile_Detect.php)
</li>
<li>
iUI - Copyright © iUI, <a href="http://www.iui-js.org/" target="_blank">http://www.iui-js.org/</a> (iui)
</li>
<li>
Query.Xpath - Copyright © Sergey Ilinsky, <a href="https://github.com/ilinsky/jquery-xpath" target="_blank">https://github.com/ilinsky/jquery-xpath</a> (js/jquery.xpath.js)
</li>
<li>
hoverIntent - Copyright © Brian Cherne, <a href="http://cherne.net/brian/resources/jquery.hoverIntent.html" target="_blank">http://cherne.net/brian/resources/jquery.hoverIntent.html</a> (js/jquery.hoverIntent.js)
</li>
</ul>
<br />
</li>
<li>
The icons in the "icn" subdirectory are Copyright © <a href="http://p.yusukekamiyamane.com/" target="_blank">Yusuke Kamiyamane</a>. All rights reserved. Licensed under a <a href="http://creativecommons.org/licenses/by/3.0/" target="_blank">Creative Commons Attribution 3.0 license</a>. The wizard icon "wizard.png" is the "Free Wizard Icon", free for commercial use, from <a href="http://www.icojam.com/blog/?p=159" target="_blank">icojam.com</a> (Author: <a href="http://www.icojam.com" target="_blank">IcoJam / Andrew Zhebrakov</a>).
<br />
<br />
</li>
<li>
The following examples, supplied within the LWT download package, have the following licenses:
<ul>
<li>Chinese: The Man and the Dog -
Copyright © Praxis Language LLC, <a href="http://chinesepod.com/lessons/the-man-and-the-dog" target="_blank">Source</a>, MP3 licensed under a <a href="http://creativecommons.org/licenses/by/3.0/" target="_blank">Creative Commons 3.0 Unported license</a>.
</li>
<li>German: Die Leiden des jungen Werther by Johann Wolfgang von Goethe -
in the <a href="http://www.gutenberg.org/wiki/Gutenberg:The_Project_Gutenberg_License" target="_blank">Public Domain</a>, Source: <a href="http://www.gutenberg.org/ebooks/2407" target="_blank">Text</a>, <a href="http://www.gutenberg.org/ebooks/19794" target="_blank">Audio</a>.
</li>
<li>French: Mon premier don du sang -
Copyright © France Bienvenue, <a href="http://francebienvenue1.wordpress.com/2011/06/18/generosite/" target="_blank">Source</a>. License: "Bien sûr, les enseignants de FLE peuvent utiliser nos enregistrements et nos transcriptions pour leurs cours. Merci de mentionner notre site !".
</li>
<li>Korean, Japanese, Thai, Hebrew - own creations from different sources.
</li>
</ul>
</li>
</ul>
</dd>
<dt>
▶ <b><a name="disclaimer" id="disclaimer">Disclaimer</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</li>
</ul>
</dd>
<dt>
▶ <b><a name="installwin" id="installwin">Installation on MS Windows</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>Are you upgrading? See section <a href="#upgradewin">"Upgrade on MS Windows"</a>!
<br />
<br />
</li>
<li><a href="http://www.easyphp.org/easyphp-devserver.php" target="_blank"><img src="img/easyphp.png" /></a><br /><br />
</li>
<li>Step 1: Go to <a href="http://www.easyphp.org/easyphp-devserver.php" target="_blank">http://www.easyphp.org/easyphp-devserver.php</a>.
</li>
<li>Step 2: Download the "EasyPHP DevServer <b>for Windows XP to Windows 8</b>" (currently EasyPHP 14.1 VC9).
</li>
<li>Step 3: Open your Downloads folder and run the downloaded <i>EasyPHP-DevServer-14.1VC9-install.exe</i> into <i>C:\Program Files (x86)\EasyPHP-...</i> .
</li>
<li>Step 4: Go to <a href="http://sourceforge.net/projects/lwt" target="_blank">http://sourceforge.net/projects/lwt</a> and download the latest zip archive <i>lwt_v_x_y.zip</i>.
</li>
<li>Step 5: Copy the downloaded zip archive <i>lwt_v_x_y.zip</i> into the directory <i>data\localweb</i> below the EasyPHP installation directory, i.e. <i>C:\Program Files (x86)\EasyPHP-...\data\localweb</i>.
</li>
<li>Step 6: Now right-click on the zip archive and select "Extract all", and unzip everything into a new folder <i>C:\Program Files (x86)\EasyPHP-...\data\localweb\lwt_v_x_y</i>. Rename the folder <i>lwt_v_x_y</i> to <i>lwt</i>.
</li>
<li>Step 7: The zip archive <i>C:\Program Files (x86)\EasyPHP-...\data\localweb\lwt_v_x_y.zip</i> may be deleted.
</li>
<li>Step 8: Now go into <i>C:\Program Files (x86)\EasyPHP-...\data\localweb\lwt</i>. Rename the file <i>connect_easyphp.inc.php</i> to <i>connect.inc.php</i>. (Sometimes the "php" extension is hidden, so be careful! You can display file extensions via the Windows Explorer settings and check it.)
</li>
<li>Step 9: Start EasyPHP via the Windows Start Menu. In the Task Bar near the clock appears the EasyPHP app icon (it may be hidden!).
</li>
<li>Step 10: LWT can now be started. Right-Click on the EasyPHP icon in the taskbar, choose "Local Web", and click on "lwt" in the webpage. You may also bookmark the LWT home page: <a href="http://127.0.0.1/lwt" target="_blank">http://127.0.0.1/lwt</a>.
</li>
<li>Step 11: You may now install the LWT demo database, or define the first language you want to learn.
<br />
<br />
</li>
<li>If you want to use LWT again, just do step 9 and 10. Via "EasyPHP icon - Configuration - EasyPHP" you may start EasyPHP automatically when starting Windows. Now step 9 is no longer needed.
</li>
<li>The local webserver will be stopped by clicking on "Stop" in EasyPHP menu (see icon near the clock). You can now exit EasyPHP.
<br />
<br />
</li>
<li>Watch the video: <a href="http://www.youtube.com/watch?v=9RveJXGPSJU" target="_blank"> Installation of "Learning With Texts" on MS Windows</a>
<br />
<iframe width="640" height="360" src="http://www.youtube.com/embed/9RveJXGPSJU" frameborder="0" allowfullscreen></iframe>
<br /><br />
</li>
<li>Uninstall: Just run the EasyPHP Uninstaller, afterwards delete the EasyPHP directory below <i>C:\Program Files (x86)</i>.
</li>
<li>You have questions about EasyPHP: Try the <a href="http://www.easyphp.org/introduction.php" target="_blank">»EasyPHP Introduction«</a>, or the <a href="http://www.easyphp.org/faq.php" target="_blank">»EasyPHP FAQ«</a>, or the <a href="http://www.easyphp.org/forums/" target="_blank">»EasyPHP Forum«</a>.
</li>
</ul>
</dd>
<dt>
▶ <b><a name="upgradewin" id="upgradewin">Upgrade on MS Windows</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>Step 1: Backup (Copy or ZIP) the directory <i>C:\Program Files (x86)\EasyPHP-...\www\lwt</i>. Backup your database (within LWT).
</li>
<li>Step 2: Unpack the downloaded ZIP archive <i>lwt_v_x_y.zip</i> in a directory of your choice.
</li>
<li>Step 3: Copy everything (incl. sub-directories) you unpacked to <i>C:\Program Files (x86)\EasyPHP-...\www\lwt</i>.
<br />
You must keep (those are <b>not</b> included in the distributed package):
<ul>
<li>the database connection parameters <i>C:\Program Files (x86)\EasyPHP-...\www\lwt\connect.inc.php</i> (you created this by renaming, see installation) and</li>
<li>the whole media sub-directory <i>C:\Program Files (x86)\EasyPHP-...\www\lwt\media</i> (contains your MP3 audio files).</li>
</ul>
</li>
<li>Step 4: Clear the web browser cache and start EasyPHP and LWT as usual.
</li>
</ul>
</dd>
<dt>
▶ <b><a name="installmac" id="installmac">Installation on Mac OS X</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>Are you upgrading? See section <a href="#upgrademac">"Upgrade on Mac OS X"</a>!
<br />
<br />
</li>
<li><a href="http://www.mamp.info/en/downloads/" target="_blank"><img src="img/mamp.png" /></a><br /><br />
</li>
<li>Step 1: Go to <a href="http://www.mamp.info/en/downloads/" target="_blank">http://www.mamp.info/en/downloads/</a>.
</li>
<li>Step 2: Download "MAMP & MAMP PRO" (currently MAMP_MAMP_PRO_3.0.5.pkg).
</li>
<li>Step 3: Double-click on the downloaded installation package MAMP_MAMP_PRO_3.0.5.pkg, accept the license, click on "Install for all users..." and on "Continue", on the next panel titled "Standard Install on Macintosh HD" click on "Customize", deselect "MAMP PRO", and click Install. You must enter your password. After this step MAMP is installed within a folder named "MAMP" in the Applications folder.
</li>
<li>Step 4: Go to <a href="http://sourceforge.net/projects/lwt" target="_blank">http://sourceforge.net/projects/lwt</a> and download the latest zip archive <i>lwt_v_x_y.zip</i>.
</li>
<li>Step 5: Copy the downloaded zip archive <i>lwt_v_x_y.zip</i> into the directory <i>htdocs</i> below the MAMP directory, i.e. <i>/Applications/MAMP/htdocs</i>. Doubleclick on the zip archive to unzip; a new folder <i>lwt_v_x_y</i> will be created in <i>htdocs</i>.
</li>
<li>Step 6: Rename the new folder <i>lwt_v_x_y</i> to <i>lwt</i>. The zip archive <i>lwt_v_x_y.zip</i> may be deleted.
</li>
<li>Step 7: Go to <i>/Applications/MAMP/htdocs/lwt</i>. Rename the file <i>connect_mamp.inc.php</i> to <i>connect.inc.php</i>.
</li>
<li>Step 8: Open <i>MAMP.app</i> in <i>/Applications/MAMP</i>. Accept the messages from the firewall. Apache and MySQL start automatically.
</li>
<li>Step 9: LWT can now be started in your web browser, go to: <a href="http://localhost:8888/lwt" target="_blank">http://localhost:8888/lwt</a>.
</li>
<li>Step 10: You may install the LWT demo database, or define the first language you want to learn.
<br />
<br />
</li>
<li>If you want to use LWT again, just do step 8 and 9.
</li>
<li>The local webserver (MAMP) will be automatically stopped by quitting the MAMP application.
<br />
<br />
</li>
<li>Watch the video: <a href="http://www.youtube.com/watch?v=uIwCEAQWyVY" target="_blank"> Installation of "Learning With Texts" on Mac OS X</a>
<br />
<iframe width="640" height="360" src="http://www.youtube.com/embed/uIwCEAQWyVY" frameborder="0" allowfullscreen></iframe>
<br /><br />
</li>
<li>Uninstall: Just delete the folder <i>/Applications/MAMP</i>.
</li>
<li>You have questions about MAMP: Try the <a href="http://www.mamp.info/en/documentation/" target="_blank">MAMP Help & Documentation</a>.
<br />
<br />
</li>
</ul>
</dd>
<dt>
▶ <b><a name="upgrademac" id="upgrademac">Upgrade on Mac OS X</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>Step 1: Backup (Copy or ZIP) the directory <i>/Applications/MAMP/htdocs/lwt</i>. Backup your database (within LWT).
</li>
<li>Step 2: Unpack the downloaded ZIP archive <i>lwt_v_x_y.zip</i> in a directory of your choice.
</li>
<li>Step 3: Copy everything (incl. sub-directories) you unpacked to <i>/Applications/MAMP/htdocs/lwt</i>.
<br />
You must keep (those are <b>not</b> included in the distributed package):
<ul>
<li>the database connection parameters <i>/Applications/MAMP/htdocs/lwt/connect.inc.php</i> (you created this by renaming, see installation) and</li>
<li>the whole media sub-directory <i>/Applications/MAMP/htdocs/lwt/media</i> (contains your MP3 audio files).</li>
</ul>
</li>
<li>Step 4: Clear the web browser cache and start MAMP and LWT as usual.
<br />
<br />
</li>
</ul>
</dd>
<dt>
▶ <b><a name="installlnx" id="installlnx">Installation on Linux (Ubuntu, LinuxMint, etc.)</a></b> - <a href="#">[↑]</a>
</dt>
<dd>
<ul>
<li>Are you upgrading? See section <a href="#upgradelnx">"Upgrade on Linux (Ubuntu, LinuxMint, etc.)"</a>!
<br />
<br />
</li>
<li><a href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29" target="_blank"><img src="img/lamp.png" /></a></li>
<li>The following installation procedure of LAMP "Linux-Apache-MySQL-PHP" and LWT is for newer Ubuntu, LinuxMint, and similar Linux systems. </li>
<li><b>For other Linux systems, see the external links <a href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29#External_links" target="_blank">here</a></b>.
<br /><br />
</li>
<li>Step 1: Open a Terminal and type and execute the following commands:
<ul>
<li>sudo apt-get update</li>
<li>sudo apt-get install lamp-server^</li>
</ul>
After the first command you must enter your password.<br/>
Mind the caret (^) at the end of the second command.<br/>
During the second command you must confirm once with Y. You are also asked several times for a MySQL password for user "root". Just press [Return] in all these cases.
</li>
<li>Step 2: Open a browser and go to <a href="http://sourceforge.net/projects/lwt" target="_blank">http://sourceforge.net/projects/lwt</a> and download the latest zip archive <i>lwt_v_x_y.zip</i>. It will be normally placed in <i>/home/[your userid]/Downloads</i>.
</li>
<li>Step 3: Open a file explorer, go to <i>/home/[your userid]/Downloads</i> and extract the LWT zip archive.
</li>
<li>Step 4: Rename the new directory <i>lwt_v_x_y</i> to <i>lwt</i>. The zip archive <i>lwt_v_x_y.zip</i> may be deleted.
</li>
<li>Step 5: Rename the file <i>connect_xampp.inc.php</i> in <i>/home/[your userid]/Downloads/lwt</i> to <i>connect.inc.php</i>.