All the other rich countries have found financing mechanisms that cover everybody and they still spend much less than we do. We've ignored those foreign models, partly because of "American exceptionalism" -the notion that the United States has nothing to learn from the rest of the world. In health care, at least, that old mindset is clearly losing its sway. Americans are coming to realize that the other rich countries are getting more and better medicine, for less money, than we do.
"Professor Uwe Reinhardt, the economist at Princeton University and global leader in the field of health care economics, argues that U.S. policy makers have deliberately avoided the moral question. 'Typically,' Reinhardt says, 'the opponents of universal health insurance cloak their sentiments in actuarial technicalities or in the mellifluous language of the standard economic theory of markets, thereby avoiding a debate on ideology that truly might engage the American public."
Before you can set up a health care system for any country, Hsiao told me, you have to know that country's basic ethical values. The first question is: Do people in your country have a right to health care? If the people believe that medical care is a basic right, you design a system that means anybody who is sick can see a doctor. If a society considers medical care to be an economic commodity, then you set up a system that distributes health care based on the ability to pay. And then the poor, pretty much, are left out.
In the search app you add Keywords to the Flatpage model as inlines. If you are using the latest django trunk, the code in the book will not work with NFA.
I used this code:
from django.contrib import admin
from django.contrib.flatpages.models import FlatPage
from cms.search.models import SearchKeyword
class SearchKeywordInline(admin.StackedInline):
model = SearchKeyword
extra = 3
class SearchKeywordAdmin(admin.ModelAdmin):
pass
class FlatPageAdmin(admin.ModelAdmin):
inlines = [
SearchKeywordInline
]
admin.site.unregister(FlatPage)
admin.site.register(FlatPage, FlatPageAdmin)
admin.site.register(SearchKeyword, SearchKeywordAdmin)
googlegroups.com/msg55668.html">Credit goes to this thread.
I had some issues getting Akismet working.
Instead of this line:
akismet_api = Akismet(key=settings.AKISMET_API_KEY, blog_url="http:/%s/" % Site.objects.get_current().domain)
I had to use a special method after the object instance was called:
akismet_api = Akismet()
akismet_api.setAPIKey(key=settings.AKISMET_API_KEY, blog_url='http://%s/' % Site.objects.get_current().domain)
Setting the API key and blog_url this way allowed verify_key() to return True.