Changeset 3291
- Timestamp:
- 06/18/08 12:27:12 (7 months ago)
- Files:
-
- trunk/projects/bos/payment-website/templates/de/dictionary.xml (modified) (1 diff)
- trunk/projects/bos/web/bos.web.asd (modified) (1 diff)
- trunk/projects/bos/web/kml-handlers.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/projects/bos/payment-website/templates/de/dictionary.xml
r3289 r3291 17 17 </value> 18 18 </entry> 19 <!-- country names --> 20 <entry><key>Bulgaria</key><value>Bulgarien</value></entry> 19 21 </dictionary> trunk/projects/bos/web/bos.web.asd
r3288 r3291 38 38 (:file "sat-tree" :depends-on ("quad-tree" "contract-tree")) 39 39 (:file "countries" :depends-on ("packages")) 40 (:file "kml-handlers" :depends-on ("packages" "web-macros" "countries" ))40 (:file "kml-handlers" :depends-on ("packages" "web-macros" "countries" "dictionary")) 41 41 (:file "sponsor-handlers" :depends-on ("web-utils")) 42 42 (:file "news-handlers" :depends-on ("web-utils")) trunk/projects/bos/web/kml-handlers.lisp
r3261 r3291 150 150 <p>In total, they have contributed ~d m².</p><br>" 151 151 (length contracts) 152 (second (assoc (make-keyword-from-string (car country-contracts)) *country-english-names*)) 152 (dictionary-entry 153 (second (assoc (make-keyword-from-string (car country-contracts)) *country-english-names*)) lang) 153 154 (reduce #'+ contracts :key #'contract-area)))) 154 155 (with-element "Point"
