Version at: 06/04/2014, 17:35 vs. version at: 06/04/2014, 17:36 | ||
---|---|---|
1 | 1 | #Admin logs |
2 | 2 | |
3 | 3 | Please post a description here every time you do a modification on tatoeba.org. |
4 | 4 | |
5 | 5 | ### 6th April 2014 19:00 France time |
6 | 6 | |
7 | 7 | * who: Trang |
8 | 8 | * what: |
9 | ||
10 | git update-index --assume-unchanged on some files: | |
9 | 11 | |
10 | 12 | git update-index --assume-unchanged app/app_controller.php |
11 | 13 | git update-index --assume-unchanged app/config/core.php |
12 | 14 | git update-index --assume-unchanged app/config/database.php |
13 | 15 | git update-index --assume-unchanged app/controllers/components/mailer.php |
14 | 16 | |
15 | 17 | |
16 | 18 | * why: to avoid commiting files with passwords and stuff. |
17 | 19 | |
18 | 20 | ### 29th March 2014 22:00 Eastern U.S. time |
19 | 21 | |
20 | 22 | * who: alanf, guided by Trang |
21 | 23 | * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) |
22 | 24 | |
23 | 25 | ### 25th March 2014 22:00 Eastern U.S. time |
24 | 26 | |
25 | 27 | * who: alanf |
26 | 28 | * why: add audio |
27 | 29 | * what: |
28 | 30 | * sync up to most recent commit |
29 | 31 | |
30 | 32 | * i18n-ized "edited" word |
31 | 33 | |
32 | 34 | * German UI rework (extensive) |
33 | 35 | |
34 | 36 | * added audio: |
35 | 37 | |
36 | 38 | * several dozen sentences by CK |
37 | 39 | |
38 | 40 | * three sentences by LR |
39 | 41 | |
40 | 42 | ### 23rd March 2014 17:30 France time |
41 | 43 | |
42 | 44 | * who: alanf, guided by Trang |
43 | 45 | * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) |
44 | 46 | * what: https://gist.github.com/trang/baccdee9bea32808f871 |
45 | 47 | |
46 | 48 | ### 23rd February 2014 15AM China time |
47 | 49 | |
48 | 50 | * who: sysko |
49 | 51 | * why: wiki: fixed redirect problem after login and added reset password feature |
50 | 52 | * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 |
51 | 53 | |
52 | 54 | |
53 | 55 | ### 11nd February 2014 01AM China time |
54 | 56 | |
55 | 57 | * who: sysko |
56 | 58 | * why: restored transliteration for most languages |
57 | 59 | * what: linked nihongoparserd with tatoeba php code mostly |
58 | 60 | * how: |
59 | 61 | |
60 | 62 | I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` |
61 | 63 | |
62 | 64 | also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) |
63 | 65 | |
64 | 66 | also commented temporaly all call to `sinoparserd` as it's not yet restored |
65 | 67 | |
66 | 68 | |
67 | 69 | ### 10nd February 2014 11PM China time |
68 | 70 | |
69 | 71 | * who: sysko |
70 | 72 | * why: installed nihongoparserd (service to generate japanese reading) |
71 | 73 | * what: compiled source and installed service |
72 | 74 | * how: |
73 | 75 | |
74 | 76 | installed: |
75 | 77 | |
76 | 78 | apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 |
77 | 79 | |
78 | 80 | |
79 | 81 | executed |
80 | 82 | |
81 | 83 | git clone https://github.com/allan-simon/nihongoparserd.igt |
82 | 84 | cd nihongoparserd |
83 | 85 | mkdir build ; cd build ; cmake .. ; make |
84 | 86 | sudo cp nihongoparserd /usr/local/bin |
85 | 87 | cd .. |
86 | 88 | sudo cp conf/nihongoparserd /etc/init.d/ |
87 | 89 | sudo chmod +x /etc/init.d/nihongoparserd |
88 | 90 | sudo cp conf/default /etc/default/nihongoparserd |
89 | 91 | sudo useradd -r nihongoparserd |
90 | 92 | |
91 | 93 | start the service |
92 | 94 | |
93 | 95 | /etc/init.d/nihongoparserd |
94 | 96 | |
95 | 97 | |
96 | 98 | |
97 | 99 | ### 9nd February 2014 10AM China time |
98 | 100 | |
99 | 101 | |
100 | 102 | * who: sysko |
101 | 103 | * why: reinstall suggestd (service powering tag autocompletion) |
102 | 104 | * what: compiled source and installed service |
103 | 105 | * how: |
104 | 106 | |
105 | 107 | |
106 | 108 | installed |
107 | 109 | |
108 | 110 | apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev |
109 | 111 | |
110 | 112 | |
111 | 113 | compiled suggestd0.9 |
112 | 114 | |
113 | 115 | aclocal |
114 | 116 | autoconf |
115 | 117 | automake --add-missing |
116 | 118 | |
117 | 119 | ./configure |
118 | 120 | make |
119 | 121 | make install |
120 | 122 | |
121 | 123 | |
122 | 124 | after created init script in |
123 | 125 | |
124 | 126 | /etc/init.d/suggestd |
125 | 127 | |
126 | 128 | and configuration file in |
127 | 129 | |
128 | 130 | |
129 | 131 | /etc/suggestd.xml |
130 | 132 | |
131 | 133 | and default file in |
132 | 134 | |
133 | 135 | /etc/default/suggestd |
134 | 136 | |
135 | 137 | then create a suggestd user |
136 | 138 | |
137 | 139 | useradd -r suggestd |
138 | 140 | |
139 | 141 | then finally starting it |
140 | 142 | |
141 | 143 | |
142 | 144 | /etc/init.d/suggestd start |
143 | 145 | |
144 | 146 | |
145 | 147 | ###2nd February 2014 5AM China time |
146 | 148 | |
147 | 149 | * who: sysko |
148 | 150 | * why: resolve login problems |
149 | 151 | * what: used memcache instead of sqlite for storing session |
150 | 152 | * how: |
151 | 153 | |
152 | 154 | installed: |
153 | 155 | |
154 | 156 | apt-get install memcached php5-memcache |
155 | 157 | |
156 | 158 | modified: `/etc/php5/apache2/php.ini` |
157 | 159 | |
158 | 160 | ``` |
159 | 161 | [Session] |
160 | 162 | session.save_handler = memcache |
161 | 163 | session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" |
162 | 164 | ``` |
163 | 165 | |
164 | 166 | |
165 | 167 | |
diff view generated by jsdifflib |
Version at: 06/04/2014, 17:35
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 6th April 2014 19:00 France time * who: Trang * what: git update-index --assume-unchanged app/app_controller.php git update-index --assume-unchanged app/config/core.php git update-index --assume-unchanged app/config/database.php git update-index --assume-unchanged app/controllers/components/mailer.php * why: to avoid commiting files with passwords and stuff. ### 29th March 2014 22:00 Eastern U.S. time * who: alanf, guided by Trang * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) ### 25th March 2014 22:00 Eastern U.S. time * who: alanf * why: add audio * what: * sync up to most recent commit * i18n-ized "edited" word * German UI rework (extensive) * added audio: * several dozen sentences by CK * three sentences by LR ### 23rd March 2014 17:30 France time * who: alanf, guided by Trang * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) * what: https://gist.github.com/trang/baccdee9bea32808f871 ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```
version at: 06/04/2014, 17:36
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 6th April 2014 19:00 France time * who: Trang * what: git update-index --assume-unchanged on some files: git update-index --assume-unchanged app/app_controller.php git update-index --assume-unchanged app/config/core.php git update-index --assume-unchanged app/config/database.php git update-index --assume-unchanged app/controllers/components/mailer.php * why: to avoid commiting files with passwords and stuff. ### 29th March 2014 22:00 Eastern U.S. time * who: alanf, guided by Trang * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) ### 25th March 2014 22:00 Eastern U.S. time * who: alanf * why: add audio * what: * sync up to most recent commit * i18n-ized "edited" word * German UI rework (extensive) * added audio: * several dozen sentences by CK * three sentences by LR ### 23rd March 2014 17:30 France time * who: alanf, guided by Trang * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) * what: https://gist.github.com/trang/baccdee9bea32808f871 ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```