The Text Encoding Initiative (TEI) is a consortium that developed the standard for the representation of digital texts. The standard is widely spread, and currently in use by publishers, libraries and museums. Like a lot of standards for texts, TEI is also in XML. The TEI provides XML Schema’s for validating documents. It is very important to produce valid documents. Only when all organizations use the same XML Schema, the documents will be interoperal between [...]
Today, Apple will release version 5 of iOS for iPhone. This topic has been trending on Twitter all day. According to the last rumor the update will be available at 9pm in The Netherlands. Be sure to install iTunes 10.5 first! I am very curious for the new functions like the Notification Centre and iMessage. iMessage is the iPhone version of Blackberry Ping.
Put all conditions in a kwargs dictionary: kwargs = {} kwargs[‘price__gt’] = 20 kwargs[‘category’] = ‘televisions’ kwargs[‘language’] = ‘NL/nl’ records = Product.objects.all().filter(**kwargs).select_related().order_by(‘order’) Does the following: Select all instances of de Product-model with a price higher then 20, in the category ‘televisions’ and language ‘NL/nl’.