├── askbot ├── version.py ├── bin │ ├── __init__.py │ ├── rmpyc │ ├── show_profile_stats.py │ ├── dos2unix.sh │ └── test_permission_assertions ├── importers │ ├── __init__.py │ └── stackexchange │ │ ├── __init__.py │ │ └── management │ │ └── commands │ │ └── __init__.py ├── search │ ├── __init__.py │ ├── README │ └── sphinx │ │ └── README ├── skins │ ├── __init__.py │ └── default │ │ ├── media │ │ ├── images │ │ │ ├── anon.png │ │ │ ├── dash.gif │ │ │ ├── dot-g.gif │ │ │ ├── edit.png │ │ │ ├── logo.gif │ │ │ ├── logo.png │ │ │ ├── logo1.png │ │ │ ├── logo2.png │ │ │ ├── new.gif │ │ │ ├── wiki.png │ │ │ ├── cc-wiki.png │ │ │ ├── favicon.gif │ │ │ ├── grippie.png │ │ │ ├── medala.gif │ │ │ ├── nophoto.png │ │ │ ├── openid.gif │ │ │ ├── sprite.png │ │ │ ├── box-arrow.gif │ │ │ ├── cc-88x31.png │ │ │ ├── dot-list.gif │ │ │ ├── flags │ │ │ │ ├── ad.gif │ │ │ │ ├── ae.gif │ │ │ │ ├── af.gif │ │ │ │ ├── ag.gif │ │ │ │ ├── ai.gif │ │ │ │ ├── al.gif │ │ │ │ ├── am.gif │ │ │ │ ├── an.gif │ │ │ │ ├── ao.gif │ │ │ │ ├── ar.gif │ │ │ │ ├── as.gif │ │ │ │ ├── at.gif │ │ │ │ ├── au.gif │ │ │ │ ├── aw.gif │ │ │ │ ├── ax.gif │ │ │ │ ├── az.gif │ │ │ │ ├── ba.gif │ │ │ │ ├── bb.gif │ │ │ │ ├── bd.gif │ │ │ │ ├── be.gif │ │ │ │ ├── bf.gif │ │ │ │ ├── bg.gif │ │ │ │ ├── bh.gif │ │ │ │ ├── bi.gif │ │ │ │ ├── bj.gif │ │ │ │ ├── bm.gif │ │ │ │ ├── bn.gif │ │ │ │ ├── bo.gif │ │ │ │ ├── br.gif │ │ │ │ ├── bs.gif │ │ │ │ ├── bt.gif │ │ │ │ ├── bv.gif │ │ │ │ ├── bw.gif │ │ │ │ ├── by.gif │ │ │ │ ├── bz.gif │ │ │ │ ├── ca.gif │ │ │ │ ├── cc.gif │ │ │ │ ├── cd.gif │ │ │ │ ├── cf.gif │ │ │ │ ├── cg.gif │ │ │ │ ├── ch.gif │ │ │ │ ├── ci.gif │ │ │ │ ├── ck.gif │ │ │ │ ├── cl.gif │ │ │ │ ├── cm.gif │ │ │ │ ├── cn.gif │ │ │ │ ├── co.gif │ │ │ │ ├── cr.gif │ │ │ │ ├── cs.gif │ │ │ │ ├── cu.gif │ │ │ │ ├── cv.gif │ │ │ │ ├── cx.gif │ │ │ │ ├── cy.gif │ │ │ │ ├── cz.gif │ │ │ │ ├── de.gif │ │ │ │ ├── dj.gif │ │ │ │ ├── dk.gif │ │ │ │ ├── dm.gif │ │ │ │ ├── do.gif │ │ │ │ ├── dz.gif │ │ │ │ ├── ec.gif │ │ │ │ ├── ee.gif │ │ │ │ ├── eg.gif │ │ │ │ ├── eh.gif │ │ │ │ ├── er.gif │ │ │ │ ├── es.gif │ │ │ │ ├── et.gif │ │ │ │ ├── fam.gif │ │ │ │ ├── fi.gif │ │ │ │ ├── fj.gif │ │ │ │ ├── fk.gif │ │ │ │ ├── fm.gif │ │ │ │ ├── fo.gif │ │ │ │ ├── fr.gif │ │ │ │ ├── ga.gif │ │ │ │ ├── gb.gif │ │ │ │ ├── gd.gif │ │ │ │ ├── ge.gif │ │ │ │ ├── gf.gif │ │ │ │ ├── gh.gif │ │ │ │ ├── gi.gif │ │ │ │ ├── gl.gif │ │ │ │ ├── gm.gif │ │ │ │ ├── gn.gif │ │ │ │ ├── gp.gif │ │ │ │ ├── gq.gif │ │ │ │ ├── gr.gif │ │ │ │ ├── gs.gif │ │ │ │ ├── gt.gif │ │ │ │ ├── gu.gif │ │ │ │ ├── gw.gif │ │ │ │ ├── gy.gif │ │ │ │ ├── hk.gif │ │ │ │ ├── hm.gif │ │ │ │ ├── hn.gif │ │ │ │ ├── hr.gif │ │ │ │ ├── ht.gif │ │ │ │ ├── hu.gif │ │ │ │ ├── id.gif │ │ │ │ ├── ie.gif │ │ │ │ ├── il.gif │ │ │ │ ├── in.gif │ │ │ │ ├── io.gif │ │ │ │ ├── iq.gif │ │ │ │ ├── ir.gif │ │ │ │ ├── is.gif │ │ │ │ ├── it.gif │ │ │ │ ├── jm.gif │ │ │ │ ├── jo.gif │ │ │ │ ├── jp.gif │ │ │ │ ├── ke.gif │ │ │ │ ├── kg.gif │ │ │ │ ├── kh.gif │ │ │ │ ├── ki.gif │ │ │ │ ├── km.gif │ │ │ │ ├── kn.gif │ │ │ │ ├── kp.gif │ │ │ │ ├── kr.gif │ │ │ │ ├── kw.gif │ │ │ │ ├── ky.gif │ │ │ │ ├── kz.gif │ │ │ │ ├── la.gif │ │ │ │ ├── lb.gif │ │ │ │ ├── lc.gif │ │ │ │ ├── li.gif │ │ │ │ ├── lk.gif │ │ │ │ ├── lr.gif │ │ │ │ ├── ls.gif │ │ │ │ ├── lt.gif │ │ │ │ ├── lu.gif │ │ │ │ ├── lv.gif │ │ │ │ ├── ly.gif │ │ │ │ ├── ma.gif │ │ │ │ ├── mc.gif │ │ │ │ ├── md.gif │ │ │ │ ├── me.gif │ │ │ │ ├── mg.gif │ │ │ │ ├── mh.gif │ │ │ │ ├── mk.gif │ │ │ │ ├── ml.gif │ │ │ │ ├── mm.gif │ │ │ │ ├── mn.gif │ │ │ │ ├── mo.gif │ │ │ │ ├── mp.gif │ │ │ │ ├── mq.gif │ │ │ │ ├── mr.gif │ │ │ │ ├── ms.gif │ │ │ │ ├── mt.gif │ │ │ │ ├── mu.gif │ │ │ │ ├── mv.gif │ │ │ │ ├── mw.gif │ │ │ │ ├── mx.gif │ │ │ │ ├── my.gif │ │ │ │ ├── mz.gif │ │ │ │ ├── na.gif │ │ │ │ ├── nc.gif │ │ │ │ ├── ne.gif │ │ │ │ ├── nf.gif │ │ │ │ ├── ng.gif │ │ │ │ ├── ni.gif │ │ │ │ ├── nl.gif │ │ │ │ ├── no.gif │ │ │ │ ├── np.gif │ │ │ │ ├── nr.gif │ │ │ │ ├── nu.gif │ │ │ │ ├── nz.gif │ │ │ │ ├── om.gif │ │ │ │ ├── pa.gif │ │ │ │ ├── pe.gif │ │ │ │ ├── pf.gif │ │ │ │ ├── pg.gif │ │ │ │ ├── ph.gif │ │ │ │ ├── pk.gif │ │ │ │ ├── pl.gif │ │ │ │ ├── pm.gif │ │ │ │ ├── pn.gif │ │ │ │ ├── pr.gif │ │ │ │ ├── ps.gif │ │ │ │ ├── pt.gif │ │ │ │ ├── pw.gif │ │ │ │ ├── py.gif │ │ │ │ ├── qa.gif │ │ │ │ ├── re.gif │ │ │ │ ├── ro.gif │ │ │ │ ├── rs.gif │ │ │ │ ├── ru.gif │ │ │ │ ├── rw.gif │ │ │ │ ├── sa.gif │ │ │ │ ├── sb.gif │ │ │ │ ├── sc.gif │ │ │ │ ├── sd.gif │ │ │ │ ├── se.gif │ │ │ │ ├── sg.gif │ │ │ │ ├── sh.gif │ │ │ │ ├── si.gif │ │ │ │ ├── sj.gif │ │ │ │ ├── sk.gif │ │ │ │ ├── sl.gif │ │ │ │ ├── sm.gif │ │ │ │ ├── sn.gif │ │ │ │ ├── so.gif │ │ │ │ ├── sr.gif │ │ │ │ ├── st.gif │ │ │ │ ├── sv.gif │ │ │ │ ├── sy.gif │ │ │ │ ├── sz.gif │ │ │ │ ├── tc.gif │ │ │ │ ├── td.gif │ │ │ │ ├── tf.gif │ │ │ │ ├── tg.gif │ │ │ │ ├── th.gif │ │ │ │ ├── tj.gif │ │ │ │ ├── tk.gif │ │ │ │ ├── tl.gif │ │ │ │ ├── tm.gif │ │ │ │ ├── tn.gif │ │ │ │ ├── to.gif │ │ │ │ ├── tr.gif │ │ │ │ ├── tt.gif │ │ │ │ ├── tv.gif │ │ │ │ ├── tw.gif │ │ │ │ ├── tz.gif │ │ │ │ ├── ua.gif │ │ │ │ ├── ug.gif │ │ │ │ ├── um.gif │ │ │ │ ├── us.gif │ │ │ │ ├── uy.gif │ │ │ │ ├── uz.gif │ │ │ │ ├── va.gif │ │ │ │ ├── vc.gif │ │ │ │ ├── ve.gif │ │ │ │ ├── vg.gif │ │ │ │ ├── vi.gif │ │ │ │ ├── vn.gif │ │ │ │ ├── vu.gif │ │ │ │ ├── wf.gif │ │ │ │ ├── ws.gif │ │ │ │ ├── ye.gif │ │ │ │ ├── yt.gif │ │ │ │ ├── za.gif │ │ │ │ ├── zm.gif │ │ │ │ ├── zw.gif │ │ │ │ ├── .DS_Store │ │ │ │ ├── wales.gif │ │ │ │ ├── catalonia.gif │ │ │ │ ├── england.gif │ │ │ │ ├── scotland.gif │ │ │ │ └── europeanunion.gif │ │ │ ├── indicator.gif │ │ │ ├── medala_on.gif │ │ │ ├── openid │ │ │ │ ├── aol.gif │ │ │ │ ├── yahoo.gif │ │ │ │ ├── blogger.ico │ │ │ │ ├── claimid.ico │ │ │ │ ├── facebook.gif │ │ │ │ ├── flickr.ico │ │ │ │ ├── google.gif │ │ │ │ ├── myopenid.ico │ │ │ │ ├── openid.gif │ │ │ │ ├── twitter.png │ │ │ │ ├── verisign.ico │ │ │ │ ├── vidoop.ico │ │ │ │ ├── technorati.ico │ │ │ │ ├── wordpress.ico │ │ │ │ ├── livejournal.ico │ │ │ │ └── openid-inputicon.gif │ │ │ ├── pw-login.gif │ │ │ ├── quest-bg.gif │ │ │ ├── tag-left.png │ │ │ ├── tag-right.png │ │ │ ├── bullet_green.gif │ │ │ ├── close-small.png │ │ │ ├── dialog-warning.png │ │ │ ├── feed-icon-small.png │ │ │ ├── vote-accepted.png │ │ │ ├── vote-arrow-down.png │ │ │ ├── vote-arrow-up.png │ │ │ ├── close-small-dark.png │ │ │ ├── close-small-hover.png │ │ │ ├── vote-accepted-on.png │ │ │ ├── vote-arrow-up-on.png │ │ │ ├── vote-favorite-off.png │ │ │ ├── vote-favorite-on.png │ │ │ ├── blue-up-arrow-h18px.png │ │ │ ├── dialog-warning-off.png │ │ │ ├── expander-arrow-hide.gif │ │ │ ├── expander-arrow-show.gif │ │ │ ├── gray-up-arrow-h18px.png │ │ │ ├── mail-envelope-empty.png │ │ │ ├── mail-envelope-full.png │ │ │ ├── vote-arrow-down-on.png │ │ │ └── djangomade124x25_grey.gif │ │ ├── js │ │ │ ├── flot-build.bat │ │ │ ├── jquery.validate.pack.js │ │ │ ├── yuicompressor-2.4.2.jar │ │ │ ├── wmd │ │ │ │ └── images │ │ │ │ │ └── wmd-buttons.png │ │ │ └── compress.bat │ │ ├── jquery-openid │ │ │ └── images │ │ │ │ ├── aol.gif │ │ │ │ ├── flickr.ico │ │ │ │ ├── flickr.png │ │ │ │ ├── google.gif │ │ │ │ ├── openid.gif │ │ │ │ ├── vidoop.ico │ │ │ │ ├── vidoop.png │ │ │ │ ├── yahoo.gif │ │ │ │ ├── blogger.ico │ │ │ │ ├── claimid.ico │ │ │ │ ├── facebook.gif │ │ │ │ ├── linkedin.gif │ │ │ │ ├── myopenid.ico │ │ │ │ ├── twitter.gif │ │ │ │ ├── verisign.ico │ │ │ │ ├── blogger-1.png │ │ │ │ ├── claimid-0.png │ │ │ │ ├── livejournal.ico │ │ │ │ ├── myopenid-2.png │ │ │ │ ├── openidico.png │ │ │ │ ├── openidico16.png │ │ │ │ ├── technorati.ico │ │ │ │ ├── verisign-2.png │ │ │ │ ├── wordpress.ico │ │ │ │ ├── wordpress.png │ │ │ │ ├── livejournal-1.png │ │ │ │ ├── technorati-1.png │ │ │ │ └── openid-inputicon.gif │ │ └── style │ │ │ └── menu_theme │ │ │ ├── images │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ └── jquery.ui.autocomplete.css │ │ └── templates │ │ ├── blocks │ │ ├── README │ │ ├── paginator.html │ │ ├── system_messages.html │ │ └── forum_body.html │ │ ├── 500.html │ │ ├── 404.html │ │ ├── categories.html │ │ ├── one_column_body.html │ │ ├── main_page │ │ └── paginator.html │ │ ├── privacy.html │ │ ├── user_profile │ │ └── user_favorites.html │ │ ├── two_column_body.html │ │ ├── authopenid │ │ ├── confirm_email.txt │ │ └── email_validation.txt │ │ └── about.html ├── utils │ └── __init__.py ├── middleware │ └── __init__.py ├── migrations │ └── __init__.py ├── templatetags │ └── __init__.py ├── deps │ ├── openid │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── test_etxrd │ │ │ │ │ ├── not-xrds.xml │ │ │ │ │ ├── no-xrd.xml │ │ │ │ │ ├── status222.xrds │ │ │ │ │ └── README │ │ │ │ ├── openid-1.2-consumer-sqlitestore.db │ │ │ │ ├── test_discover │ │ │ │ │ ├── yadis_no_delegate.xml │ │ │ │ │ ├── openid_no_delegate.html │ │ │ │ │ ├── openid2_xrds_no_local_id.xml │ │ │ │ │ ├── yadis_0entries.xml │ │ │ │ │ ├── yadis_idp.xml │ │ │ │ │ ├── openid2_xrds.xml │ │ │ │ │ ├── openid.html │ │ │ │ │ ├── openid2.html │ │ │ │ │ ├── openid_1_and_2.html │ │ │ │ │ ├── yadis_idp_delegate.xml │ │ │ │ │ ├── yadis_another_delegate.xml │ │ │ │ │ ├── openid_and_yadis.html │ │ │ │ │ └── yadis_2_bad_local_id.xml │ │ │ │ └── example-xrds.xml │ │ │ └── test_pape.py │ │ ├── extensions │ │ │ ├── draft │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── consumer │ │ │ └── __init__.py │ │ ├── server │ │ │ └── __init__.py │ │ ├── sreg.py │ │ ├── store │ │ │ └── __init__.py │ │ └── yadis │ │ │ ├── constants.py │ │ │ └── __init__.py │ ├── recaptcha_django │ │ ├── .svn │ │ │ ├── format │ │ │ ├── all-wcprops │ │ │ └── text-base │ │ │ │ └── middleware.py.svn-base │ │ ├── docs │ │ │ ├── .svn │ │ │ │ ├── format │ │ │ │ ├── text-base │ │ │ │ │ └── overview.txt.svn-base │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ └── overview.txt │ │ └── middleware.py │ ├── django_authopenid │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── README │ │ └── admin.py │ ├── livesettings │ │ ├── templatetags │ │ │ └── __init__.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.mo │ │ │ └── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── templates │ │ │ └── livesettings │ │ │ │ ├── text.txt │ │ │ │ └── _admin_site_views.html │ │ ├── signals.py │ │ ├── README │ │ ├── urls.py │ │ └── __init__.py │ └── README ├── management │ └── commands │ │ ├── __init__.py │ │ ├── sample_command.py │ │ ├── make_docs.py │ │ └── message_to_everyone.py ├── setup_templates │ ├── __init__.py │ ├── upfiles │ │ └── README │ ├── log │ │ └── README │ ├── django.wsgi │ └── manage.py ├── doc │ ├── askbot-docs.zip │ ├── source │ │ ├── connect-aol.png │ │ ├── pw-register.png │ │ ├── change-password.png │ │ ├── manage-logins1.png │ │ ├── password-signin.png │ │ ├── recover-account.png │ │ ├── signin-with-aol.png │ │ ├── askbot │ │ │ ├── theme.conf │ │ │ └── layout.html │ │ ├── download.rst │ │ ├── devel │ │ │ ├── askbot.auth.rst │ │ │ ├── askbot.feed.rst │ │ │ ├── askbot.urls.rst │ │ │ ├── askbot.admin.rst │ │ │ ├── askbot.forms.rst │ │ │ ├── askbot.tests.rst │ │ │ ├── askbot.context.rst │ │ │ ├── askbot.sitemap.rst │ │ │ ├── askbot.conf.email.rst │ │ │ ├── askbot.models.tag.rst │ │ │ ├── askbot.utils.diff.rst │ │ │ ├── askbot.utils.html.rst │ │ │ ├── askbot.views.meta.rst │ │ │ ├── askbot.models.base.rst │ │ │ ├── askbot.models.meta.rst │ │ │ ├── askbot.models.user.rst │ │ │ ├── askbot.skins.utils.rst │ │ │ ├── askbot.utils.cache.rst │ │ │ ├── askbot.utils.email.rst │ │ │ ├── askbot.utils.forms.rst │ │ │ ├── askbot.utils.lists.rst │ │ │ ├── askbot.views.users.rst │ │ │ ├── askbot.utils.colors.rst │ │ │ ├── askbot.utils.markup.rst │ │ │ ├── askbot.models.answer.rst │ │ │ ├── askbot.models.repute.rst │ │ │ ├── askbot.skins.loaders.rst │ │ │ ├── askbot.views.readers.rst │ │ │ ├── askbot.views.writers.rst │ │ │ ├── askbot.conf.flatpages.rst │ │ │ ├── askbot.models.content.rst │ │ │ ├── askbot.models.signals.rst │ │ │ ├── askbot.search.indexer.rst │ │ │ ├── askbot.views.commands.rst │ │ │ ├── askbot.conf.vote_rules.rst │ │ │ ├── askbot.deps.grapefruit.rst │ │ │ ├── askbot.doc.source.conf.rst │ │ │ ├── askbot.models.question.rst │ │ │ ├── askbot.utils.functions.rst │ │ │ ├── askbot.utils.decorators.rst │ │ │ ├── askbot.middleware.cancel.rst │ │ │ ├── askbot.conf.external_keys.rst │ │ │ ├── askbot.conf.site_settings.rst │ │ │ ├── askbot.conf.user_settings.rst │ │ │ ├── askbot.const.message_keys.rst │ │ │ ├── askbot.deployment.dialogs.rst │ │ │ ├── askbot.deployment.messages.rst │ │ │ ├── askbot.middleware.pagesize.rst │ │ │ ├── askbot.middleware.view_log.rst │ │ │ ├── askbot.bin.generate_modules.rst │ │ │ ├── askbot.middleware.anon_user.rst │ │ │ ├── askbot.middleware.spaceless.rst │ │ │ ├── askbot.search.state_manager.rst │ │ │ ├── askbot.setup_templates.urls.rst │ │ │ ├── askbot.conf.forum_data_rules.rst │ │ │ ├── askbot.conf.settings_wrapper.rst │ │ │ ├── askbot.deployment.path_utils.rst │ │ │ ├── askbot.templatetags.smart_if.rst │ │ │ ├── askbot.bin.show_profile_stats.rst │ │ │ ├── askbot.setup_templates.manage.rst │ │ │ ├── askbot.conf.minimum_reputation.rst │ │ │ ├── askbot.conf.reputation_changes.rst │ │ │ ├── askbot.migrations.0001_initial.rst │ │ │ ├── askbot.templatetags.extra_tags.rst │ │ │ ├── askbot.setup_templates.settings.rst │ │ │ ├── askbot.conf.skin_counter_settings.rst │ │ │ ├── askbot.conf.skin_general_settings.rst │ │ │ ├── askbot.templatetags.extra_filters.rst │ │ │ ├── askbot.const.rst │ │ │ ├── askbot.management.commands.add_admin.rst │ │ │ ├── askbot.importers.stackexchange.models.rst │ │ │ ├── askbot.migrations.0005_install_badges.rst │ │ │ ├── askbot.management.commands.base_command.rst │ │ │ ├── askbot.management.commands.remove_admin.rst │ │ │ ├── askbot.user_messages.context_processors.rst │ │ │ ├── askbot.management.commands.sample_command.rst │ │ │ ├── askbot.skins.rst │ │ │ ├── askbot.bin.rst │ │ │ ├── askbot.management.commands.pg_base_command.rst │ │ │ ├── askbot.importers.stackexchange.parse_models.rst │ │ │ ├── askbot.management.commands.once_award_badges.rst │ │ │ ├── askbot.management.commands.send_email_alerts.rst │ │ │ ├── askbot.migrations.0017_add_group__moderators.rst │ │ │ ├── askbot.search.rst │ │ │ ├── askbot.management.commands.clean_award_badges.rst │ │ │ ├── askbot.management.commands.multi_award_badges.rst │ │ │ ├── askbot.management.commands.subscribe_everyone.rst │ │ │ ├── askbot.migrations.0007_install_mentions_model.rst │ │ │ ├── askbot.management.commands.message_to_everyone.rst │ │ │ ├── askbot.user_messages.rst │ │ │ ├── askbot.management.commands.pg_once_award_badges.rst │ │ │ ├── askbot.migrations.0016_auto__del_validationhash.rst │ │ │ ├── askbot.management.commands.pg_clean_award_badges.rst │ │ │ ├── askbot.management.commands.pg_multi_award_badges.rst │ │ │ ├── askbot.migrations.0012_delete_some_unused_models.rst │ │ │ ├── askbot.migrations.0008_add_html_field_to_comments.rst │ │ │ ├── askbot.migrations.0013_add_response_count__to_user.rst │ │ │ ├── askbot.migrations.0011_merge_mentions_into_activity.rst │ │ │ ├── askbot.importers.rst │ │ │ ├── askbot.management.rst │ │ │ ├── askbot.migrations.0009_calculate_html_field_for_comments.rst │ │ │ ├── askbot.deployment.rst │ │ │ ├── askbot.migrations.0014_rename_schema_from_forum_to_askbot.rst │ │ │ ├── askbot.migrations.0004_install_full_text_indexes_for_mysql.rst │ │ │ ├── askbot.migrations.0015_rename_forum_contenttypes_to_askbot.rst │ │ │ ├── askbot.migrations.0010_add_receiving_user_to_activity_model.rst │ │ │ ├── askbot.templatetags.rst │ │ │ ├── askbot.views.rst │ │ │ ├── askbot.setup_templates.rst │ │ │ ├── askbot.importers.stackexchange.management.commands.load_stackexchange.rst │ │ │ ├── askbot.middleware.rst │ │ │ ├── askbot.migrations.0006_add_subscription_setting_for_comments_and_mentions.rst │ │ │ ├── askbot.migrations.0003_copy_denorm_text_record_to_posts_for_fulltext_search.rst │ │ │ ├── modules.rst │ │ │ ├── askbot.deps.rst │ │ │ ├── askbot.importers.stackexchange.management.commands.rst │ │ │ ├── askbot.importers.stackexchange.management.rst │ │ │ ├── askbot.models.rst │ │ │ ├── askbot.migrations.0002_auto__add_field_answer_text__chg_field_answer_html__add_field_question.rst │ │ │ ├── askbot.importers.stackexchange.rst │ │ │ └── askbot.utils.rst │ │ └── about.rst │ └── old │ │ ├── README │ │ └── askbot-requirements.txt ├── tests │ ├── images │ │ └── logo.gif │ └── __init__.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── it │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── kr │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── djangojs.mo │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── vi │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── zh-tw │ │ └── LC_MESSAGES │ │ │ └── django.mo │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── django.mo ├── upfiles │ └── README ├── conf │ └── README ├── cron │ ├── README │ └── askbot_cron_job ├── migrations_api │ └── __init__.py ├── sitemap.py └── views │ ├── __init__.py │ └── README ├── tox.ini ├── MANIFEST.in ├── .pydevproject └── README.rst /askbot/version.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/importers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/skins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/setup_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/importers/stackexchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/bin/rmpyc: -------------------------------------------------------------------------------- 1 | rm `find . -name '*.pyc'` 2 | -------------------------------------------------------------------------------- /askbot/deps/openid/extensions/draft/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /askbot/deps/django_authopenid/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/docs/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/importers/stackexchange/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/docs/overview.txt: -------------------------------------------------------------------------------- 1 | TODO: add docs 2 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/templates/livesettings/text.txt: -------------------------------------------------------------------------------- 1 | {{ text|safe }} -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/docs/.svn/text-base/overview.txt.svn-base: -------------------------------------------------------------------------------- 1 | TODO: add docs 2 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | envlist=py26,py25,py27 3 | [testenv] 4 | commands=python manage.py test askbot 5 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_etxrd/not-xrds.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /askbot/doc/askbot-docs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/askbot-docs.zip -------------------------------------------------------------------------------- /askbot/tests/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/tests/images/logo.gif -------------------------------------------------------------------------------- /askbot/doc/source/connect-aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/source/connect-aol.png -------------------------------------------------------------------------------- /askbot/doc/source/pw-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/source/pw-register.png -------------------------------------------------------------------------------- /askbot/deps/livesettings/signals.py: -------------------------------------------------------------------------------- 1 | import django.dispatch 2 | 3 | configuration_value_changed = django.dispatch.Signal() 4 | -------------------------------------------------------------------------------- /askbot/deps/README: -------------------------------------------------------------------------------- 1 | any python modules that are not accessible 2 | through easy_install, but are necessary for the askbot forum 3 | -------------------------------------------------------------------------------- /askbot/doc/source/change-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/source/change-password.png -------------------------------------------------------------------------------- /askbot/doc/source/manage-logins1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/source/manage-logins1.png -------------------------------------------------------------------------------- /askbot/doc/source/password-signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/source/password-signin.png -------------------------------------------------------------------------------- /askbot/doc/source/recover-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/source/recover-account.png -------------------------------------------------------------------------------- /askbot/doc/source/signin-with-aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/doc/source/signin-with-aol.png -------------------------------------------------------------------------------- /askbot/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/kr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/kr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/doc/source/askbot/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = traditional 3 | stylesheet = traditional.css 4 | pygments_style = sphinx 5 | -------------------------------------------------------------------------------- /askbot/locale/ru/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/ru/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /askbot/doc/old/README: -------------------------------------------------------------------------------- 1 | This directory contains old bits of documentation 2 | for possible future use or deletion. Not practically useful. 3 | -------------------------------------------------------------------------------- /askbot/locale/zh-tw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/zh-tw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/setup_templates/upfiles/README: -------------------------------------------------------------------------------- 1 | This directory is to contain uploaded images and other files 2 | must be writable by the webserver 3 | -------------------------------------------------------------------------------- /askbot/skins/default/media/images/anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/anon.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/dash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/dash.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/dot-g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/dot-g.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/edit.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/logo.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/logo.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/logo1.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/logo2.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/new.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/wiki.png -------------------------------------------------------------------------------- /askbot/skins/default/templates/blocks/README: -------------------------------------------------------------------------------- 1 | this directory should contain block templates that 2 | are included within other templates 3 | -------------------------------------------------------------------------------- /askbot/skins/default/media/images/cc-wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/cc-wiki.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/favicon.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/grippie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/grippie.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/medala.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/medala.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/nophoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/nophoto.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/sprite.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/box-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/box-arrow.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/cc-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/cc-88x31.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/dot-list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/dot-list.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ad.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ae.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ae.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/af.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/af.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ag.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ai.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/al.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/al.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/am.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/am.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/an.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/an.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ao.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ao.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ar.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/as.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/as.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/at.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/at.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/au.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/au.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/aw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/aw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ax.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/az.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/az.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ba.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bb.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bd.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/be.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/be.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bf.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bh.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bi.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bj.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bo.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/br.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bs.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bt.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bv.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/by.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/by.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/bz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/bz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ca.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cc.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cd.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cf.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ch.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ci.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ci.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ck.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cl.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/co.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cs.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cu.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cv.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cx.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cy.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/cz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/de.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/dj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/dj.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/dk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/dk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/dm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/dm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/do.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/do.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/dz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/dz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ec.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ee.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/eg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/eg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/eh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/eh.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/er.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/er.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/es.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/et.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/et.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/fam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/fam.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/fi.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/fj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/fj.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/fk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/fk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/fm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/fm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/fo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/fo.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/fr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ga.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ga.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gb.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gd.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ge.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gf.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gh.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gi.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gl.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gp.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gq.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gs.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gt.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gu.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/gy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/gy.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/hk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/hk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/hm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/hm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/hn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/hn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/hr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ht.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ht.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/hu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/hu.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/id.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ie.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/il.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/il.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/in.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/io.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/io.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/iq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/iq.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ir.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/is.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/is.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/it.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/jm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/jm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/jo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/jo.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/jp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/jp.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ke.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/kg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/kg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/kh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/kh.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ki.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ki.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/km.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/km.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/kn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/kn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/kp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/kp.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/kr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/kr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/kw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/kw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ky.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/kz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/kz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/la.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/la.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/lb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/lb.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/lc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/lc.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/li.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/li.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/lk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/lk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/lr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/lr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ls.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/lt.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/lu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/lu.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/lv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/lv.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ly.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ma.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mc.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/md.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/md.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/me.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/me.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mh.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ml.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mo.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mp.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mq.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ms.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mt.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mu.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mv.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mx.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/my.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/my.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/mz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/mz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/na.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/nc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/nc.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ne.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/nf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/nf.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ng.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ni.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ni.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/nl.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/no.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/np.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/np.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/nr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/nr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/nu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/nu.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/nz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/nz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/om.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/om.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pa.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pe.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pf.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ph.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pl.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ps.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pt.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/pw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/pw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/py.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/py.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/qa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/qa.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/re.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/re.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ro.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/rs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/rs.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ru.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/rw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/rw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sa.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sb.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sc.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sd.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/se.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sh.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/si.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/si.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sj.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sl.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/so.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/so.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/st.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/st.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sv.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sy.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/sz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/sz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tc.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/td.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/td.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tf.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/th.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/th.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tj.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tk.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tl.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/to.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/to.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tr.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tt.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tv.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/tz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/tz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ua.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ua.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ug.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/um.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/um.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/us.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/uy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/uy.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/uz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/uz.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/va.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/va.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/vc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/vc.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ve.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/vg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/vg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/vi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/vi.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/vn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/vn.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/vu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/vu.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/wf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/wf.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ws.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ws.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/ye.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/ye.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/yt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/yt.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/za.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/za.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/zm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/zm.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/zw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/zw.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/indicator.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/medala_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/medala_on.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/aol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/aol.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/pw-login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/pw-login.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/quest-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/quest-bg.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/tag-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/tag-left.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/tag-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/tag-right.png -------------------------------------------------------------------------------- /askbot/upfiles/README: -------------------------------------------------------------------------------- 1 | this directory is empty 2 | it is copied at deployment time to some other 3 | location where it will hold user uploaded files 4 | -------------------------------------------------------------------------------- /askbot/skins/default/media/images/bullet_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/bullet_green.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/close-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/close-small.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/.DS_Store -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/wales.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/wales.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/yahoo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/yahoo.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/dialog-warning.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/feed-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/feed-icon-small.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/catalonia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/catalonia.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/england.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/england.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/scotland.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/scotland.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/blogger.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/blogger.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/claimid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/claimid.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/facebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/facebook.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/flickr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/flickr.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/google.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/myopenid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/myopenid.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/openid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/openid.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/twitter.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/verisign.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/verisign.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/vidoop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/vidoop.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-accepted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-accepted.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-arrow-down.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-arrow-up.png -------------------------------------------------------------------------------- /askbot/skins/default/media/js/flot-build.bat: -------------------------------------------------------------------------------- 1 | java -jar yuicompressor-2.4.2.jar --type js --charset utf-8 jquery.flot.js -o jquery.flot.pack.js 2 | 3 | pause 4 | -------------------------------------------------------------------------------- /askbot/skins/default/media/js/jquery.validate.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/js/jquery.validate.pack.js -------------------------------------------------------------------------------- /askbot/skins/default/media/js/yuicompressor-2.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/js/yuicompressor-2.4.2.jar -------------------------------------------------------------------------------- /askbot/skins/default/media/images/close-small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/close-small-dark.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/close-small-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/close-small-hover.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/technorati.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/technorati.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/wordpress.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/wordpress.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-accepted-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-accepted-on.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-arrow-up-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-arrow-up-on.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-favorite-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-favorite-off.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-favorite-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-favorite-on.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/aol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/aol.gif -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/skins/default/media/images/blue-up-arrow-h18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/blue-up-arrow-h18px.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/dialog-warning-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/dialog-warning-off.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/expander-arrow-hide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/expander-arrow-hide.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/expander-arrow-show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/expander-arrow-show.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/flags/europeanunion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/flags/europeanunion.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/images/gray-up-arrow-h18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/gray-up-arrow-h18px.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/mail-envelope-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/mail-envelope-empty.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/mail-envelope-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/mail-envelope-full.png -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/livejournal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/livejournal.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/images/vote-arrow-down-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/vote-arrow-down-on.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/flickr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/flickr.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/flickr.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/google.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/openid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/openid.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/vidoop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/vidoop.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/vidoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/vidoop.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/yahoo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/yahoo.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/js/wmd/images/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/js/wmd/images/wmd-buttons.png -------------------------------------------------------------------------------- /askbot/conf/README: -------------------------------------------------------------------------------- 1 | this directory contains 2 | forum site configurations for livesettings 3 | 4 | they need to be imported in models so made this a part of 5 | models module 6 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/livesettings/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /askbot/skins/default/media/images/djangomade124x25_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/djangomade124x25_grey.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/blogger.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/blogger.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/claimid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/claimid.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/facebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/facebook.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/linkedin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/linkedin.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/myopenid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/myopenid.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/twitter.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/verisign.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/verisign.ico -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/openid-1.2-consumer-sqlitestore.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/deps/openid/test/data/openid-1.2-consumer-sqlitestore.db -------------------------------------------------------------------------------- /askbot/skins/default/media/images/openid/openid-inputicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/images/openid/openid-inputicon.gif -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/blogger-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/blogger-1.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/claimid-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/claimid-0.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/livejournal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/livejournal.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/myopenid-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/myopenid-2.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/openidico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/openidico.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/openidico16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/openidico16.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/technorati.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/technorati.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/verisign-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/verisign-2.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/wordpress.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/wordpress.ico -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/wordpress.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/livejournal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/livejournal-1.png -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/technorati-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/technorati-1.png -------------------------------------------------------------------------------- /askbot/deps/openid/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | """OpenID Extension modules.""" 2 | 3 | __all__ = ['ax', 'pape', 'sreg'] 4 | 5 | from askbot.deps.openid.extensions.draft import pape5 as pape 6 | -------------------------------------------------------------------------------- /askbot/skins/default/media/jquery-openid/images/openid-inputicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/jquery-openid/images/openid-inputicon.gif -------------------------------------------------------------------------------- /askbot/skins/default/templates/blocks/paginator.html: -------------------------------------------------------------------------------- 1 | 2 | {% import "macros.html" as macros %} 3 | {{ macros.paginator(paginator_context)}} 4 | 5 | -------------------------------------------------------------------------------- /askbot/doc/source/download.rst: -------------------------------------------------------------------------------- 1 | =============== 2 | Download Askbot 3 | =============== 4 | 5 | The entire source code for the Askbot Q & A forum can be downloaded 6 | at the Python Package index 7 | -------------------------------------------------------------------------------- /askbot/search/README: -------------------------------------------------------------------------------- 1 | module dealing with search functions 2 | at this time only question and answer search 3 | 4 | that among other things contains 5 | available full text search implementations 6 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/README: -------------------------------------------------------------------------------- 1 | this is very slightly forked version of django-livesettings 2 | for use in the askbot forum project 3 | 4 | will attempt to re-merge into the original django-livesettings 5 | -------------------------------------------------------------------------------- /askbot/deps/openid/consumer/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | This package contains the portions of the library used only when 3 | implementing an OpenID consumer. 4 | """ 5 | 6 | __all__ = ['consumer', 'discover'] 7 | -------------------------------------------------------------------------------- /askbot/setup_templates/log/README: -------------------------------------------------------------------------------- 1 | this is a placeholder directory 2 | for the django log file 3 | 4 | README file is added so that git would accept empty directory 5 | into the repo - do not remove this file 6 | -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /askbot/cron/README: -------------------------------------------------------------------------------- 1 | this directory contains sample commands to be executed 2 | by cron 3 | 4 | files with names ending "virtuanenv" should work under Python virtualenv system 5 | other files - with standard unix setup 6 | -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.auth.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.auth: 2 | 3 | :mod:`askbot.auth` 4 | =========== 5 | 6 | .. automodule:: askbot.auth 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.feed.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.feed: 2 | 3 | :mod:`askbot.feed` 4 | =========== 5 | 6 | .. automodule:: askbot.feed 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.urls.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.urls: 2 | 3 | :mod:`askbot.urls` 4 | =========== 5 | 6 | .. automodule:: askbot.urls 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/500.html: -------------------------------------------------------------------------------- 1 | {% load extra_tags %} 2 | {% include_jinja "500.jinja.html" request %} 3 | {% comment %}this template must be django 4 | because of the use of default handler500 5 | {% endcomment %} 6 | -------------------------------------------------------------------------------- /askbot/deps/openid/server/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | This package contains the portions of the library used only when 3 | implementing an OpenID server. See L{openid.server.server}. 4 | """ 5 | 6 | __all__ = ['server', 'trustroot'] 7 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.admin.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.admin: 2 | 3 | :mod:`askbot.admin` 4 | ============ 5 | 6 | .. automodule:: askbot.admin 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.forms.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.forms: 2 | 3 | :mod:`askbot.forms` 4 | ============ 5 | 6 | .. automodule:: askbot.forms 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.tests.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.tests: 2 | 3 | :mod:`askbot.tests` 4 | ============ 5 | 6 | .. automodule:: askbot.tests 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/404.html: -------------------------------------------------------------------------------- 1 | {% load extra_tags %} 2 | {% include_jinja "404.jinja.html" request %} 3 | {% comment %} 4 | this one has to be a django template because of use of default hander404 5 | {% endcomment %} 6 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.context.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.context: 2 | 3 | :mod:`askbot.context` 4 | ============== 5 | 6 | .. automodule:: askbot.context 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.sitemap.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.sitemap: 2 | 3 | :mod:`askbot.sitemap` 4 | ============== 5 | 6 | .. automodule:: askbot.sitemap 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/search/sphinx/README: -------------------------------------------------------------------------------- 1 | This directory contains sample configuration for sphinx search 2 | 3 | Sphinx is a full text search engine for MySQL (only) with full 4 | word stemming in English and Russion (other languages are not supported) 5 | -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/askbot-devel/master/askbot/skins/default/media/style/menu_theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /askbot/deps/django_authopenid/README: -------------------------------------------------------------------------------- 1 | this is a forked version of django-authopenid module 2 | specifically for askbot forum project. 3 | 4 | most likely it is not useful for anything else and 5 | in fact will be phased out in askbot as well 6 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.email.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.email: 2 | 3 | :mod:`askbot.conf.email` 4 | ================= 5 | 6 | .. automodule:: askbot.conf.email 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.tag.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.tag: 2 | 3 | :mod:`askbot.models.tag` 4 | ================= 5 | 6 | .. automodule:: askbot.models.tag 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.diff.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.diff: 2 | 3 | :mod:`askbot.utils.diff` 4 | ================= 5 | 6 | .. automodule:: askbot.utils.diff 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.html.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.html: 2 | 3 | :mod:`askbot.utils.html` 4 | ================= 5 | 6 | .. automodule:: askbot.utils.html 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.views.meta.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.views.meta: 2 | 3 | :mod:`askbot.views.meta` 4 | ================= 5 | 6 | .. automodule:: askbot.views.meta 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/openid/sreg.py: -------------------------------------------------------------------------------- 1 | """moved to L{openid.extensions.sreg}""" 2 | 3 | import warnings 4 | warnings.warn("openid.sreg has moved to openid.extensions.sreg", 5 | DeprecationWarning) 6 | 7 | from askbot.deps.openid.extensions.sreg import * 8 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.base.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.base: 2 | 3 | :mod:`askbot.models.base` 4 | ================== 5 | 6 | .. automodule:: askbot.models.base 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.meta.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.meta: 2 | 3 | :mod:`askbot.models.meta` 4 | ================== 5 | 6 | .. automodule:: askbot.models.meta 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.user.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.user: 2 | 3 | :mod:`askbot.models.user` 4 | ================== 5 | 6 | .. automodule:: askbot.models.user 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.skins.utils.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.skins.utils: 2 | 3 | :mod:`askbot.skins.utils` 4 | ================== 5 | 6 | .. automodule:: askbot.skins.utils 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.cache.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.cache: 2 | 3 | :mod:`askbot.utils.cache` 4 | ================== 5 | 6 | .. automodule:: askbot.utils.cache 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.email.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.email: 2 | 3 | :mod:`askbot.utils.email` 4 | ================== 5 | 6 | .. automodule:: askbot.utils.email 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.forms.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.forms: 2 | 3 | :mod:`askbot.utils.forms` 4 | ================== 5 | 6 | .. automodule:: askbot.utils.forms 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.lists.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.lists: 2 | 3 | :mod:`askbot.utils.lists` 4 | ================== 5 | 6 | .. automodule:: askbot.utils.lists 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.views.users.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.views.users: 2 | 3 | :mod:`askbot.views.users` 4 | ================== 5 | 6 | .. automodule:: askbot.views.users 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/docs/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 26 4 | /svn/!svn/ver/2/trunk/docs 5 | END 6 | overview.txt 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 39 10 | /svn/!svn/ver/2/trunk/docs/overview.txt 11 | END 12 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.colors.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.colors: 2 | 3 | :mod:`askbot.utils.colors` 4 | =================== 5 | 6 | .. automodule:: askbot.utils.colors 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.markup.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.markup: 2 | 3 | :mod:`askbot.utils.markup` 4 | =================== 5 | 6 | .. automodule:: askbot.utils.markup 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.answer.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.answer: 2 | 3 | :mod:`askbot.models.answer` 4 | ==================== 5 | 6 | .. automodule:: askbot.models.answer 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.repute.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.repute: 2 | 3 | :mod:`askbot.models.repute` 4 | ==================== 5 | 6 | .. automodule:: askbot.models.repute 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.skins.loaders.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.skins.loaders: 2 | 3 | :mod:`askbot.skins.loaders` 4 | ==================== 5 | 6 | .. automodule:: askbot.skins.loaders 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.views.readers.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.views.readers: 2 | 3 | :mod:`askbot.views.readers` 4 | ==================== 5 | 6 | .. automodule:: askbot.views.readers 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.views.writers.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.views.writers: 2 | 3 | :mod:`askbot.views.writers` 4 | ==================== 5 | 6 | .. automodule:: askbot.views.writers 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/about.rst: -------------------------------------------------------------------------------- 1 | .. _about: 2 | ======================== 3 | Basic facts about Askbot 4 | ======================== 5 | 6 | * Askbot is Question and Answer (Q&A) forum. 7 | * Open source GPL3 license 8 | * Written in Python using Django framework 9 | 10 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.flatpages.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.flatpages: 2 | 3 | :mod:`askbot.conf.flatpages` 4 | ===================== 5 | 6 | .. automodule:: askbot.conf.flatpages 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.content.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.content: 2 | 3 | :mod:`askbot.models.content` 4 | ===================== 5 | 6 | .. automodule:: askbot.models.content 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.signals.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.signals: 2 | 3 | :mod:`askbot.models.signals` 4 | ===================== 5 | 6 | .. automodule:: askbot.models.signals 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.search.indexer.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.search.indexer: 2 | 3 | :mod:`askbot.search.indexer` 4 | ===================== 5 | 6 | .. automodule:: askbot.search.indexer 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.views.commands.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.views.commands: 2 | 3 | :mod:`askbot.views.commands` 4 | ===================== 5 | 6 | .. automodule:: askbot.views.commands 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/openid/store/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | This package contains the modules related to this library's use of 3 | persistent storage. 4 | 5 | @sort: interface, filestore, sqlstore, memstore 6 | """ 7 | 8 | __all__ = ['interface', 'filestore', 'sqlstore', 'memstore', 'nonce'] 9 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.vote_rules.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.vote_rules: 2 | 3 | :mod:`askbot.conf.vote_rules` 4 | ====================== 5 | 6 | .. automodule:: askbot.conf.vote_rules 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.deps.grapefruit.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.deps.grapefruit: 2 | 3 | :mod:`askbot.deps.grapefruit` 4 | ====================== 5 | 6 | .. automodule:: askbot.deps.grapefruit 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.doc.source.conf.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.doc.source.conf: 2 | 3 | :mod:`askbot.doc.source.conf` 4 | ====================== 5 | 6 | .. automodule:: askbot.doc.source.conf 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.question.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models.question: 2 | 3 | :mod:`askbot.models.question` 4 | ====================== 5 | 6 | .. automodule:: askbot.models.question 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.functions.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.functions: 2 | 3 | :mod:`askbot.utils.functions` 4 | ====================== 5 | 6 | .. automodule:: askbot.utils.functions 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/management/commands/sample_command.py: -------------------------------------------------------------------------------- 1 | from django.core.management.base import NoArgsCommand 2 | from askbot.models import Comment 3 | 4 | class Command(NoArgsCommand): 5 | def handle_noargs(self, **options): 6 | objs = Comment.objects.all() 7 | print objs -------------------------------------------------------------------------------- /askbot/skins/default/templates/categories.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block forestyle %} 3 | 6 | {% endblock %} 7 | {% block body %} 8 | 9 |
Everything
10 | 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.decorators.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils.decorators: 2 | 3 | :mod:`askbot.utils.decorators` 4 | ======================= 5 | 6 | .. automodule:: askbot.utils.decorators 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.middleware.cancel.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.middleware.cancel: 2 | 3 | :mod:`askbot.middleware.cancel` 4 | ======================== 5 | 6 | .. automodule:: askbot.middleware.cancel 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.external_keys.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.external_keys: 2 | 3 | :mod:`askbot.conf.external_keys` 4 | ========================= 5 | 6 | .. automodule:: askbot.conf.external_keys 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.site_settings.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.site_settings: 2 | 3 | :mod:`askbot.conf.site_settings` 4 | ========================= 5 | 6 | .. automodule:: askbot.conf.site_settings 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.user_settings.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.user_settings: 2 | 3 | :mod:`askbot.conf.user_settings` 4 | ========================= 5 | 6 | .. automodule:: askbot.conf.user_settings 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.const.message_keys.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.const.message_keys: 2 | 3 | :mod:`askbot.const.message_keys` 4 | ========================= 5 | 6 | .. automodule:: askbot.const.message_keys 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.deployment.dialogs.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.deployment.dialogs: 2 | 3 | :mod:`askbot.deployment.dialogs` 4 | ========================= 5 | 6 | .. automodule:: askbot.deployment.dialogs 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_etxrd/no-xrd.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.deployment.messages.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.deployment.messages: 2 | 3 | :mod:`askbot.deployment.messages` 4 | ========================== 5 | 6 | .. automodule:: askbot.deployment.messages 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.middleware.pagesize.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.middleware.pagesize: 2 | 3 | :mod:`askbot.middleware.pagesize` 4 | ========================== 5 | 6 | .. automodule:: askbot.middleware.pagesize 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.middleware.view_log.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.middleware.view_log: 2 | 3 | :mod:`askbot.middleware.view_log` 4 | ========================== 5 | 6 | .. automodule:: askbot.middleware.view_log 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.bin.generate_modules.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.bin.generate_modules: 2 | 3 | :mod:`askbot.bin.generate_modules` 4 | =========================== 5 | 6 | .. automodule:: askbot.bin.generate_modules 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.middleware.anon_user.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.middleware.anon_user: 2 | 3 | :mod:`askbot.middleware.anon_user` 4 | =========================== 5 | 6 | .. automodule:: askbot.middleware.anon_user 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.middleware.spaceless.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.middleware.spaceless: 2 | 3 | :mod:`askbot.middleware.spaceless` 4 | =========================== 5 | 6 | .. automodule:: askbot.middleware.spaceless 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.search.state_manager.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.search.state_manager: 2 | 3 | :mod:`askbot.search.state_manager` 4 | =========================== 5 | 6 | .. automodule:: askbot.search.state_manager 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.setup_templates.urls.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.setup_templates.urls: 2 | 3 | :mod:`askbot.setup_templates.urls` 4 | =========================== 5 | 6 | .. automodule:: askbot.setup_templates.urls 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/one_column_body.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block body_class %}one-col{% endblock %} 3 | {% block body %} 4 |
5 | {% include "blocks/input_bar.html" %} 6 | {% block content%} 7 | {% endblock%} 8 |
9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.forum_data_rules.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.forum_data_rules: 2 | 3 | :mod:`askbot.conf.forum_data_rules` 4 | ============================ 5 | 6 | .. automodule:: askbot.conf.forum_data_rules 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.settings_wrapper.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.settings_wrapper: 2 | 3 | :mod:`askbot.conf.settings_wrapper` 4 | ============================ 5 | 6 | .. automodule:: askbot.conf.settings_wrapper 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.deployment.path_utils.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.deployment.path_utils: 2 | 3 | :mod:`askbot.deployment.path_utils` 4 | ============================ 5 | 6 | .. automodule:: askbot.deployment.path_utils 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.templatetags.smart_if.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.templatetags.smart_if: 2 | 3 | :mod:`askbot.templatetags.smart_if` 4 | ============================ 5 | 6 | .. automodule:: askbot.templatetags.smart_if 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.bin.show_profile_stats.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.bin.show_profile_stats: 2 | 3 | :mod:`askbot.bin.show_profile_stats` 4 | ============================= 5 | 6 | .. automodule:: askbot.bin.show_profile_stats 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.setup_templates.manage.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.setup_templates.manage: 2 | 3 | :mod:`askbot.setup_templates.manage` 4 | ============================= 5 | 6 | .. automodule:: askbot.setup_templates.manage 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/test_pape.py: -------------------------------------------------------------------------------- 1 | 2 | from askbot.deps.openid.extensions import pape 3 | 4 | import unittest 5 | 6 | class PapeImportTestCase(unittest.TestCase): 7 | def test_version(self): 8 | from askbot.deps.openid.extensions.draft import pape5 9 | self.assert_(pape is pape5) 10 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.minimum_reputation.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.minimum_reputation: 2 | 3 | :mod:`askbot.conf.minimum_reputation` 4 | ============================== 5 | 6 | .. automodule:: askbot.conf.minimum_reputation 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.reputation_changes.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.reputation_changes: 2 | 3 | :mod:`askbot.conf.reputation_changes` 4 | ============================== 5 | 6 | .. automodule:: askbot.conf.reputation_changes 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0001_initial.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0001_initial: 2 | 3 | :mod:`askbot.migrations.0001_initial` 4 | ============================== 5 | 6 | .. automodule:: askbot.migrations.0001_initial 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.templatetags.extra_tags.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.templatetags.extra_tags: 2 | 3 | :mod:`askbot.templatetags.extra_tags` 4 | ============================== 5 | 6 | .. automodule:: askbot.templatetags.extra_tags 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.setup_templates.settings.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.setup_templates.settings: 2 | 3 | :mod:`askbot.setup_templates.settings` 4 | =============================== 5 | 6 | .. automodule:: askbot.setup_templates.settings 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/django_authopenid/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from django.contrib import admin 4 | from askbot.deps.django_authopenid.models import UserAssociation 5 | 6 | 7 | class UserAssociationAdmin(admin.ModelAdmin): 8 | """User association admin class""" 9 | admin.site.register(UserAssociation, UserAssociationAdmin) -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.skin_counter_settings.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.skin_counter_settings: 2 | 3 | :mod:`askbot.conf.skin_counter_settings` 4 | ================================= 5 | 6 | .. automodule:: askbot.conf.skin_counter_settings 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.conf.skin_general_settings.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.conf.skin_general_settings: 2 | 3 | :mod:`askbot.conf.skin_general_settings` 4 | ================================= 5 | 6 | .. automodule:: askbot.conf.skin_general_settings 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.templatetags.extra_filters.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.templatetags.extra_filters: 2 | 3 | :mod:`askbot.templatetags.extra_filters` 4 | ================================= 5 | 6 | .. automodule:: askbot.templatetags.extra_filters 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.const.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.const: 2 | 3 | :mod:`askbot.const` 4 | ============ 5 | 6 | .. automodule:: askbot.const 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.const.message_keys` 18 | 19 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.add_admin.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.add_admin: 2 | 3 | :mod:`askbot.management.commands.add_admin` 4 | ==================================== 5 | 6 | .. automodule:: askbot.management.commands.add_admin 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.importers.stackexchange.models.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.importers.stackexchange.models: 2 | 3 | :mod:`askbot.importers.stackexchange.models` 4 | ===================================== 5 | 6 | .. automodule:: askbot.importers.stackexchange.models 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0005_install_badges.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0005_install_badges: 2 | 3 | :mod:`askbot.migrations.0005_install_badges` 4 | ===================================== 5 | 6 | .. automodule:: askbot.migrations.0005_install_badges 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/blocks/system_messages.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls.defaults import * 2 | 3 | urlpatterns = patterns('askbot.deps.livesettings.views', 4 | url(r'^$', 'site_settings', {}, name='site_settings'), 5 | url(r'^export/$', 'export_as_python', {}, name='settings_export'), 6 | url(r'^(?P[^/]+)/$', 'group_settings', name='group_settings'), 7 | ) 8 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.base_command.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.base_command: 2 | 3 | :mod:`askbot.management.commands.base_command` 4 | ======================================= 5 | 6 | .. automodule:: askbot.management.commands.base_command 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.remove_admin.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.remove_admin: 2 | 3 | :mod:`askbot.management.commands.remove_admin` 4 | ======================================= 5 | 6 | .. automodule:: askbot.management.commands.remove_admin 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.user_messages.context_processors.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.user_messages.context_processors: 2 | 3 | :mod:`askbot.user_messages.context_processors` 4 | ======================================= 5 | 6 | .. automodule:: askbot.user_messages.context_processors 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_etxrd/status222.xrds: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | *x 5 | The subsegment does not exist 6 | 2006-08-18T00:02:35.000Z 7 | xri://= 8 | 9 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.sample_command.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.sample_command: 2 | 3 | :mod:`askbot.management.commands.sample_command` 4 | ========================================= 5 | 6 | .. automodule:: askbot.management.commands.sample_command 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.skins.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.skins: 2 | 3 | :mod:`askbot.skins` 4 | ============ 5 | 6 | .. automodule:: askbot.skins 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.skins.loaders` 18 | * :ref:`askbot.skins.utils` 19 | 20 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/main_page/paginator.html: -------------------------------------------------------------------------------- 1 | {% import "macros.html" as macros %} 2 | {% if questions_count > 10 %}{# todo: remove magic number #} 3 |
4 | {{ macros.paginator(context|setup_paginator, position='left') }} 5 | {{ macros.pagesize_switch(context, position='right') }} 6 |
7 | {% endif %} 8 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/privacy.html: -------------------------------------------------------------------------------- 1 | {% extends "one_column_body.html" %} 2 | 3 | {% block title %}{% spaceless %}{% trans %}Privacy policy{% endtrans %}{% endspaceless %}{% endblock %} 4 | {% block content %} 5 |

{% trans %}Privacy policy{% endtrans %}

6 | {{settings.FORUM_PRIVACY}} 7 | {% endblock %} 8 | 9 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.bin.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.bin: 2 | 3 | :mod:`askbot.bin` 4 | ========== 5 | 6 | .. automodule:: askbot.bin 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.bin.generate_modules` 18 | * :ref:`askbot.bin.show_profile_stats` 19 | 20 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.pg_base_command.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.pg_base_command: 2 | 3 | :mod:`askbot.management.commands.pg_base_command` 4 | ========================================== 5 | 6 | .. automodule:: askbot.management.commands.pg_base_command 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/user_profile/user_favorites.html: -------------------------------------------------------------------------------- 1 | {% extends "user_profile/user.html" %} 2 | 3 | {% block profilesection %} 4 | {% trans %}favorites{% endtrans %} 5 | {% endblock %} 6 | {% block usercontent %} 7 | {% include "user_profile/users_questions.html" %} 8 | {% endblock %} 9 | 10 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.importers.stackexchange.parse_models.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.importers.stackexchange.parse_models: 2 | 3 | :mod:`askbot.importers.stackexchange.parse_models` 4 | =========================================== 5 | 6 | .. automodule:: askbot.importers.stackexchange.parse_models 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/management/commands/make_docs.py: -------------------------------------------------------------------------------- 1 | import subprocess, os 2 | from django.core.management.base import NoArgsCommand 3 | import askbot 4 | 5 | DOC_DIR = os.path.join(askbot.get_install_directory(), 'doc') 6 | 7 | class Command(NoArgsCommand): 8 | def handle_noargs(self, **options): 9 | os.chdir(DOC_DIR) 10 | subprocess.call(['make', 'html']) 11 | 12 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.once_award_badges.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.once_award_badges: 2 | 3 | :mod:`askbot.management.commands.once_award_badges` 4 | ============================================ 5 | 6 | .. automodule:: askbot.management.commands.once_award_badges 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.send_email_alerts.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.send_email_alerts: 2 | 3 | :mod:`askbot.management.commands.send_email_alerts` 4 | ============================================ 5 | 6 | .. automodule:: askbot.management.commands.send_email_alerts 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0017_add_group__moderators.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0017_add_group__moderators: 2 | 3 | :mod:`askbot.migrations.0017_add_group__moderators` 4 | ============================================ 5 | 6 | .. automodule:: askbot.migrations.0017_add_group__moderators 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.search.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.search: 2 | 3 | :mod:`askbot.search` 4 | ============= 5 | 6 | .. automodule:: askbot.search 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.search.indexer` 18 | * :ref:`askbot.search.state_manager` 19 | 20 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.clean_award_badges.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.clean_award_badges: 2 | 3 | :mod:`askbot.management.commands.clean_award_badges` 4 | ============================================= 5 | 6 | .. automodule:: askbot.management.commands.clean_award_badges 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.multi_award_badges.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.multi_award_badges: 2 | 3 | :mod:`askbot.management.commands.multi_award_badges` 4 | ============================================= 5 | 6 | .. automodule:: askbot.management.commands.multi_award_badges 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.subscribe_everyone.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.subscribe_everyone: 2 | 3 | :mod:`askbot.management.commands.subscribe_everyone` 4 | ============================================= 5 | 6 | .. automodule:: askbot.management.commands.subscribe_everyone 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0007_install_mentions_model.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0007_install_mentions_model: 2 | 3 | :mod:`askbot.migrations.0007_install_mentions_model` 4 | ============================================= 5 | 6 | .. automodule:: askbot.migrations.0007_install_mentions_model 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/two_column_body.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block body_class %}two-col{% endblock %} 3 | {% block body %} 4 |
5 | {% include "blocks/input_bar.html" %} 6 | {% block content%} 7 | {% endblock%} 8 |
9 |
10 | {% block sidebar%} 11 | {% endblock%} 12 |
13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.message_to_everyone.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.message_to_everyone: 2 | 3 | :mod:`askbot.management.commands.message_to_everyone` 4 | ============================================== 5 | 6 | .. automodule:: askbot.management.commands.message_to_everyone 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.user_messages.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.user_messages: 2 | 3 | :mod:`askbot.user_messages` 4 | ==================== 5 | 6 | .. automodule:: askbot.user_messages 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.user_messages.context_processors` 18 | 19 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.pg_once_award_badges.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.pg_once_award_badges: 2 | 3 | :mod:`askbot.management.commands.pg_once_award_badges` 4 | =============================================== 5 | 6 | .. automodule:: askbot.management.commands.pg_once_award_badges 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0016_auto__del_validationhash.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0016_auto__del_validationhash: 2 | 3 | :mod:`askbot.migrations.0016_auto__del_validationhash` 4 | =============================================== 5 | 6 | .. automodule:: askbot.migrations.0016_auto__del_validationhash 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.pg_clean_award_badges.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.pg_clean_award_badges: 2 | 3 | :mod:`askbot.management.commands.pg_clean_award_badges` 4 | ================================================ 5 | 6 | .. automodule:: askbot.management.commands.pg_clean_award_badges 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.commands.pg_multi_award_badges.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management.commands.pg_multi_award_badges: 2 | 3 | :mod:`askbot.management.commands.pg_multi_award_badges` 4 | ================================================ 5 | 6 | .. automodule:: askbot.management.commands.pg_multi_award_badges 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0012_delete_some_unused_models.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0012_delete_some_unused_models: 2 | 3 | :mod:`askbot.migrations.0012_delete_some_unused_models` 4 | ================================================ 5 | 6 | .. automodule:: askbot.migrations.0012_delete_some_unused_models 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework @VERSION 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/yadis_no_delegate.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | http://openid.net/signon/1.0 8 | http://www.myopenid.com/server 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0008_add_html_field_to_comments.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0008_add_html_field_to_comments: 2 | 3 | :mod:`askbot.migrations.0008_add_html_field_to_comments` 4 | ================================================= 5 | 6 | .. automodule:: askbot.migrations.0008_add_html_field_to_comments 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/migrations_api/__init__.py: -------------------------------------------------------------------------------- 1 | """this module serves as a helper for the South orm 2 | by mitigating absence of access to the django model api 3 | 4 | since models change with time, this api is implemented in different 5 | versions. Different versions do not need to have all the same functions. 6 | """ 7 | 8 | class BaseAPI(object): 9 | def __init__(self, orm): 10 | self.orm = orm 11 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/example-xrds.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | http://example.com/ 10 | http://www.openidenabled.com/ 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/openid_no_delegate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Identity Page for Smoker 5 | 6 | 7 | 8 |

foo

9 | 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 38 4 | /svn/!svn/ver/6/trunk/recaptcha_django 5 | END 6 | middleware.py 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 52 10 | /svn/!svn/ver/2/trunk/recaptcha_django/middleware.py 11 | END 12 | __init__.py 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 50 16 | /svn/!svn/ver/6/trunk/recaptcha_django/__init__.py 17 | END 18 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0013_add_response_count__to_user.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0013_add_response_count__to_user: 2 | 3 | :mod:`askbot.migrations.0013_add_response_count__to_user` 4 | ================================================== 5 | 6 | .. automodule:: askbot.migrations.0013_add_response_count__to_user 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0011_merge_mentions_into_activity.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0011_merge_mentions_into_activity: 2 | 3 | :mod:`askbot.migrations.0011_merge_mentions_into_activity` 4 | =================================================== 5 | 6 | .. automodule:: askbot.migrations.0011_merge_mentions_into_activity 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/openid2_xrds_no_local_id.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | http://specs.openid.net/auth/2.0/signon 8 | http://www.myopenid.com/server 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /askbot/bin/show_profile_stats.py: -------------------------------------------------------------------------------- 1 | #!python 2 | """script for digesting profiling output 3 | to profile functions, wrap them into decorator @profile('file_name.prof') 4 | 5 | source: http://code.djangoproject.com/wiki/ProfilingDjango 6 | """ 7 | 8 | import hotshot.stats 9 | import sys 10 | 11 | stats = hotshot.stats.load(sys.argv[1]) 12 | #stats.strip_dirs() 13 | stats.sort_stats('time', 'calls') 14 | stats.print_stats(20) 15 | -------------------------------------------------------------------------------- /askbot/skins/default/media/js/compress.bat: -------------------------------------------------------------------------------- 1 | #java -jar yuicompressor-2.4.2.jar --type js --charset utf-8 wmd\wmd.js -o wmd\wmd-min.js 2 | #java -jar yuicompressor-2.4.2.jar --type js --charset utf-8 wmd\showdown.js -o wmd\showdown-min.js 3 | #java -jar yuicompressor-2.4.2.jar --type js --charset utf-8 post.js -o post.pack.js 4 | java -jar yuicompressor-2.4.2.jar --type js --charset utf-8 se_hilite_src.js -o se_hilite.js 5 | pause 6 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include ez_setup.py 2 | include tox.ini 3 | recursive-include askbot * 4 | recursive-exclude askbot *.pyc 5 | recursive-exclude .git 6 | prune dist 7 | prune tmp 8 | prune build 9 | exclude settings.py 10 | exclude manage.py 11 | exclude __init__.py 12 | exclude urls.py 13 | exclude askbot/upfiles/*.* 14 | recursive-exclude avatar * 15 | recursive-exclude adzone * 16 | recursive-exclude env 17 | recursive-exclude .tox 18 | -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable @VERSION 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.importers.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.importers: 2 | 3 | :mod:`askbot.importers` 4 | ================ 5 | 6 | .. automodule:: askbot.importers 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | 18 | .. _packages:: 19 | 20 | :mod:`Subpackages` 21 | ----------- 22 | 23 | 24 | * :ref:`askbot.importers.stackexchange` 25 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.management.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.management: 2 | 3 | :mod:`askbot.management` 4 | ================= 5 | 6 | .. automodule:: askbot.management 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | 18 | .. _packages:: 19 | 20 | :mod:`Subpackages` 21 | ----------- 22 | 23 | 24 | * :ref:`askbot.management.commands` 25 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0009_calculate_html_field_for_comments.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0009_calculate_html_field_for_comments: 2 | 3 | :mod:`askbot.migrations.0009_calculate_html_field_for_comments` 4 | ======================================================== 5 | 6 | .. automodule:: askbot.migrations.0009_calculate_html_field_for_comments 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/sitemap.py: -------------------------------------------------------------------------------- 1 | from django.contrib.sitemaps import Sitemap 2 | from askbot.models import Question 3 | 4 | class QuestionsSitemap(Sitemap): 5 | changefreq = 'daily' 6 | priority = 0.5 7 | def items(self): 8 | return Question.objects.exclude(deleted=True) 9 | 10 | def lastmod(self, obj): 11 | return obj.last_activity_at 12 | 13 | def location(self, obj): 14 | return obj.get_absolute_url() 15 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/yadis_0entries.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | http://is-not-openid.unittest/ 9 | http://noffing.unittest./ 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.deployment.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.deployment: 2 | 3 | :mod:`askbot.deployment` 4 | ================= 5 | 6 | .. automodule:: askbot.deployment 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.deployment.dialogs` 18 | * :ref:`askbot.deployment.messages` 19 | * :ref:`askbot.deployment.path_utils` 20 | 21 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0014_rename_schema_from_forum_to_askbot.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0014_rename_schema_from_forum_to_askbot: 2 | 3 | :mod:`askbot.migrations.0014_rename_schema_from_forum_to_askbot` 4 | ========================================================= 5 | 6 | .. automodule:: askbot.migrations.0014_rename_schema_from_forum_to_askbot 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/views/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | :synopsis: django view functions for the askbot project 3 | """ 4 | from askbot.views import readers 5 | from askbot.views import writers 6 | from askbot.views import commands 7 | from askbot.views import users 8 | from askbot.views import meta 9 | from askbot.views import cats 10 | from django.conf import settings 11 | if 'avatar' in settings.INSTALLED_APPS: 12 | from askbot.views import avatar_views 13 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0004_install_full_text_indexes_for_mysql.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0004_install_full_text_indexes_for_mysql: 2 | 3 | :mod:`askbot.migrations.0004_install_full_text_indexes_for_mysql` 4 | ========================================================== 5 | 6 | .. automodule:: askbot.migrations.0004_install_full_text_indexes_for_mysql 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0015_rename_forum_contenttypes_to_askbot.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0015_rename_forum_contenttypes_to_askbot: 2 | 3 | :mod:`askbot.migrations.0015_rename_forum_contenttypes_to_askbot` 4 | ========================================================== 5 | 6 | .. automodule:: askbot.migrations.0015_rename_forum_contenttypes_to_askbot 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/authopenid/confirm_email.txt: -------------------------------------------------------------------------------- 1 | {% trans %}Thank you for registering at our Q&A forum!{% endtrans %} 2 | 3 | {% trans %}Your account details are:{% endtrans %} 4 | 5 | {% trans %}Username:{% endtrans %} {{ username }} 6 | {% trans %}Password:{% endtrans %} {{ password }} 7 | 8 | {% trans %}Please sign in here:{% endtrans %} 9 | {{signup_url}} 10 | 11 | {% trans %}Sincerely, 12 | Forum Administrator{% endtrans %} 13 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0010_add_receiving_user_to_activity_model.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0010_add_receiving_user_to_activity_model: 2 | 3 | :mod:`askbot.migrations.0010_add_receiving_user_to_activity_model` 4 | =========================================================== 5 | 6 | .. automodule:: askbot.migrations.0010_add_receiving_user_to_activity_model 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Default 6 | python 2.6 7 | 8 | /askbot 9 | 10 | 11 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/templates/livesettings/_admin_site_views.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 16 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/yadis_idp.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | http://specs.openid.net/auth/2.0/server 9 | http://www.myopenid.com/server 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.templatetags.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.templatetags: 2 | 3 | :mod:`askbot.templatetags` 4 | =================== 5 | 6 | .. automodule:: askbot.templatetags 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.templatetags.extra_filters` 18 | * :ref:`askbot.templatetags.extra_tags` 19 | * :ref:`askbot.templatetags.smart_if` 20 | 21 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.views.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.views: 2 | 3 | :mod:`askbot.views` 4 | ============ 5 | 6 | .. automodule:: askbot.views 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.views.commands` 18 | * :ref:`askbot.views.meta` 19 | * :ref:`askbot.views.readers` 20 | * :ref:`askbot.views.users` 21 | * :ref:`askbot.views.writers` 22 | 23 | -------------------------------------------------------------------------------- /askbot/bin/dos2unix.sh: -------------------------------------------------------------------------------- 1 | #please take care not to dos2unix anything in your .git directory 2 | #because that will probably break your repo 3 | dos2unix `find . -name '*.py'` 4 | dos2unix `find . -name '*.po'` 5 | dos2unix `find . -name '*.js'` 6 | dos2unix `find . -name '*.css'` 7 | dos2unix `find . -name '*.txt'` 8 | dos2unix `find ./sphinx -type f` 9 | dos2unix `find ./cron -type f` 10 | dos2unix settings_local.py.dist 11 | dos2unix README 12 | dos2unix INSTALL 13 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/openid2_xrds.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | http://specs.openid.net/auth/2.0/signon 8 | http://www.myopenid.com/server 9 | http://smoker.myopenid.com/ 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar @VERSION 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/openid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Identity Page for Smoker 5 | 6 | 7 | 8 | 9 |

foo

10 | 11 | 12 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/openid2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Identity Page for Smoker 5 | 6 | 7 | 8 | 9 |

foo

10 | 11 | 12 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.setup_templates.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.setup_templates: 2 | 3 | :mod:`askbot.setup_templates` 4 | ====================== 5 | 6 | .. automodule:: askbot.setup_templates 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.setup_templates.manage` 18 | * :ref:`askbot.setup_templates.settings` 19 | * :ref:`askbot.setup_templates.urls` 20 | 21 | -------------------------------------------------------------------------------- /askbot/setup_templates/django.wsgi: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | current_directory = os.path.dirname(__file__) 5 | parent_directory = os.path.dirname(current_directory) 6 | module_name = os.path.basename(current_directory) 7 | 8 | sys.path.append(parent_directory) 9 | sys.path.append(current_directory) 10 | os.environ['DJANGO_SETTINGS_MODULE'] = '%s.settings' % module_name 11 | import django.core.handlers.wsgi 12 | application = django.core.handlers.wsgi.WSGIHandler() 13 | -------------------------------------------------------------------------------- /askbot/bin/test_permission_assertions: -------------------------------------------------------------------------------- 1 | python manage.py test askbot.SeeOffensiveFlagsPermissionAssertionTests \ 2 | askbot.DeleteAnswerPermissionAssertionTests \ 3 | askbot.DeleteQuestionPermissionAssertionTests \ 4 | askbot.CloseQuestionPermissionAssertionTests \ 5 | askbot.ReopenQuestionPermissionAssertionTests \ 6 | askbot.FlagOffensivePermissionAssertionTests \ 7 | askbot.CommentPermissionAssertionTests \ 8 | askbot.VotePermissionAssertionTests \ 9 | askbot.UploadPermissionAssertionTests 10 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.importers.stackexchange.management.commands.load_stackexchange.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.importers.stackexchange.management.commands.load_stackexchange: 2 | 3 | :mod:`askbot.importers.stackexchange.management.commands.load_stackexchange` 4 | ===================================================================== 5 | 6 | .. automodule:: askbot.importers.stackexchange.management.commands.load_stackexchange 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/about.html: -------------------------------------------------------------------------------- 1 | {% extends "two_column_body.html" %} 2 | 3 | {% block title %}{% spaceless %}{% trans site_name=settings.APP_SHORT_NAME %}About {{site_name}}{% endtrans %}{% endspaceless %}{% endblock %} 4 | {% block content %} 5 |

{% trans site_name=settings.APP_SHORT_NAME %}About {{site_name}}{% endtrans %}

6 |
7 | {{settings.FORUM_ABOUT}} 8 |
9 | {% endblock %} 10 | 11 | -------------------------------------------------------------------------------- /askbot/views/README: -------------------------------------------------------------------------------- 1 | readers.py - views strictly reading main content: questions, answers, tags and comments 2 | 3 | writers.py - views that write main content, with possible reading 4 | note: deletion counts as writing in this case 5 | 6 | commands.py - data status changing commands, votes, question close/reopen 7 | 8 | users.py - user views - user listing and profiles 9 | 10 | meta.py - privacy, about, faq, feedback, logout, badges 11 | 12 | auth.py - Authentication related views 13 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/openid_1_and_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Identity Page for Smoker 5 | 6 | 7 | 8 | 9 |

foo

10 | 11 | 12 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/blocks/forum_body.html: -------------------------------------------------------------------------------- 1 | 9 | {% include "header.html" %} 10 | {% block body %} 11 | {% endblock %} 12 | {% if settings.SHOW_FOOTER %} 13 | {% include "footer.html" %} 14 | {% endif %} 15 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | =================== 2 | Askbot - Q&A forum 3 | =================== 4 | 5 | This is Askbot project - open source Q&A system, like StackOverflow, Yahoo Answers and some others 6 | 7 | Demo site is http://askbot.org 8 | 9 | All documentation is in the directory askbot/doc 10 | 11 | askbot-devel repository is open to anyone who wants to help develop Askbot - just drop us a note 12 | 13 | Askbot is based on code of CNPROG, originally created by Mike Chen 14 | and Sailing Cai and some code written for OSQA 15 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.middleware.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.middleware: 2 | 3 | :mod:`askbot.middleware` 4 | ================= 5 | 6 | .. automodule:: askbot.middleware 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.middleware.anon_user` 18 | * :ref:`askbot.middleware.cancel` 19 | * :ref:`askbot.middleware.pagesize` 20 | * :ref:`askbot.middleware.spaceless` 21 | * :ref:`askbot.middleware.view_log` 22 | 23 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0006_add_subscription_setting_for_comments_and_mentions.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0006_add_subscription_setting_for_comments_and_mentions: 2 | 3 | :mod:`askbot.migrations.0006_add_subscription_setting_for_comments_and_mentions` 4 | ========================================================================= 5 | 6 | .. automodule:: askbot.migrations.0006_add_subscription_setting_for_comments_and_mentions 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/management/commands/message_to_everyone.py: -------------------------------------------------------------------------------- 1 | from django.core.management.base import NoArgsCommand 2 | from django.contrib.auth.models import User 3 | import sys 4 | 5 | class Command(NoArgsCommand): 6 | def handle_noargs(self, **options): 7 | msg = None 8 | if msg == None: 9 | print 'to run this command, please first edit the file %s' % __file__ 10 | sys.exit(1) 11 | for u in User.objects.all(): 12 | u.message_set.create(message = msg % u.username) 13 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/yadis_idp_delegate.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | http://specs.openid.net/auth/2.0/server 9 | http://www.myopenid.com/server 10 | http://smoker.myopenid.com/ 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0003_copy_denorm_text_record_to_posts_for_fulltext_search.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0003_copy_denorm_text_record_to_posts_for_fulltext_search: 2 | 3 | :mod:`askbot.migrations.0003_copy_denorm_text_record_to_posts_for_fulltext_search` 4 | =========================================================================== 5 | 6 | .. automodule:: askbot.migrations.0003_copy_denorm_text_record_to_posts_for_fulltext_search 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/skins/default/media/style/menu_theme/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Autocomplete @VERSION 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/yadis_another_delegate.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | http://openid.net/signon/1.0 10 | http://vroom.unittest/server 11 | http://smoker.myopenid.com/ 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/modules.rst: -------------------------------------------------------------------------------- 1 | .. _Project: 2 | 3 | :mod:`Project` 4 | ======= 5 | 6 | :mod:`Modules:` 7 | -------- 8 | 9 | .. toctree:: 10 | :maxdepth: 4 11 | 12 | askbot 13 | bin 14 | commands 15 | commands 16 | conf 17 | const 18 | deployment 19 | deps 20 | importers 21 | management 22 | management 23 | middleware 24 | migrations 25 | models 26 | search 27 | setup_templates 28 | skins 29 | stackexchange 30 | templatetags 31 | user_messages 32 | utils 33 | views 34 | -------------------------------------------------------------------------------- /askbot/deps/livesettings/__init__.py: -------------------------------------------------------------------------------- 1 | """Database persistent administrative settings with defaults. 2 | 3 | This code is a large fork of the excellent "dbsettings" code found at 4 | http://code.google.com/p/django-values/ 5 | 6 | The items set here are intended to be changeable during runtime, and do not require a 7 | programmer to test or install. 8 | 9 | Appropriate: Your google code for adwords. 10 | Inappropriate: The keyedcache timeout for the store. 11 | 12 | """ 13 | 14 | from functions import * 15 | from models import * 16 | from values import * -------------------------------------------------------------------------------- /askbot/doc/old/askbot-requirements.txt: -------------------------------------------------------------------------------- 1 | django>=1.1 # Note: email subscription sender job requires Django 1.1, everything else works with 1.0 2 | #mysql-python # Can't use with pip, see http://groups.google.com/group/python-virtualenv/msg/ea988085951c92b3 3 | python-openid 4 | html5lib 5 | markdown2 6 | git+git://github.com/robhudson/django-debug-toolbar.git 7 | git+git://github.com/dcramer/django-sphinx.git 8 | svn+http://recaptcha-django.googlecode.com/svn/trunk/ 9 | svn+http://recaptcha.googlecode.com/svn/trunk/recaptcha-plugins/python/ 10 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/middleware.py: -------------------------------------------------------------------------------- 1 | class ReCaptchaMiddleware(object): 2 | """ 3 | A tiny middleware to automatically add IP address to ReCaptcha 4 | POST requests 5 | """ 6 | def process_request(self, request): 7 | if request.method == 'POST' and \ 8 | 'recaptcha_challenge_field' in request.POST and \ 9 | 'recaptcha_ip_field' not in request.POST: 10 | data = request.POST.copy() 11 | data['recaptcha_ip_field'] = request.META['REMOTE_ADDR'] 12 | request.POST = data 13 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.deps.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.deps: 2 | 3 | :mod:`askbot.deps` 4 | =========== 5 | 6 | .. automodule:: askbot.deps 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.deps.grapefruit` 18 | 19 | .. _packages:: 20 | 21 | :mod:`Subpackages` 22 | ----------- 23 | 24 | 25 | * :ref:`askbot.deps.django_authopenid` 26 | * :ref:`askbot.deps.livesettings` 27 | * :ref:`askbot.deps.openid` 28 | * :ref:`askbot.deps.recaptcha_django` 29 | -------------------------------------------------------------------------------- /askbot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from askbot.tests.email_alert_tests import * 2 | from askbot.tests.on_screen_notification_tests import * 3 | from askbot.tests.page_load_tests import * 4 | from askbot.tests.permission_assertion_tests import * 5 | from askbot.tests.db_api_tests import * 6 | from askbot.tests.skin_tests import * 7 | from askbot.tests.badge_tests import * 8 | from askbot.tests.management_command_tests import * 9 | from askbot.tests.search_state_tests import * 10 | from askbot.tests.form_tests import * 11 | from askbot.tests.categories_tests import * 12 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/openid_and_yadis.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Identity Page for Smoker 5 | 6 | 7 | 8 | 9 | 10 |

foo

11 | 12 | 13 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.importers.stackexchange.management.commands.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.importers.stackexchange.management.commands: 2 | 3 | :mod:`askbot.importers.stackexchange.management.commands` 4 | ================================================== 5 | 6 | .. automodule:: askbot.importers.stackexchange.management.commands 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.importers.stackexchange.management.commands.load_stackexchange` 18 | 19 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.importers.stackexchange.management.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.importers.stackexchange.management: 2 | 3 | :mod:`askbot.importers.stackexchange.management` 4 | ========================================= 5 | 6 | .. automodule:: askbot.importers.stackexchange.management 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | 18 | .. _packages:: 19 | 20 | :mod:`Subpackages` 21 | ----------- 22 | 23 | 24 | * :ref:`askbot.importers.stackexchange.management.commands` 25 | -------------------------------------------------------------------------------- /askbot/deps/openid/yadis/constants.py: -------------------------------------------------------------------------------- 1 | __all__ = ['YADIS_HEADER_NAME', 'YADIS_CONTENT_TYPE', 'YADIS_ACCEPT_HEADER'] 2 | from askbot.deps.openid.yadis.accept import generateAcceptHeader 3 | 4 | YADIS_HEADER_NAME = 'X-XRDS-Location' 5 | YADIS_CONTENT_TYPE = 'application/xrds+xml' 6 | 7 | # A value suitable for using as an accept header when performing YADIS 8 | # discovery, unless the application has special requirements 9 | YADIS_ACCEPT_HEADER = generateAcceptHeader( 10 | ('text/html', 0.3), 11 | ('application/xhtml+xml', 0.5), 12 | (YADIS_CONTENT_TYPE, 1.0), 13 | ) 14 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/.svn/text-base/middleware.py.svn-base: -------------------------------------------------------------------------------- 1 | class ReCaptchaMiddleware(object): 2 | """ 3 | A tiny middleware to automatically add IP address to ReCaptcha 4 | POST requests 5 | """ 6 | def process_request(self, request): 7 | if request.method == 'POST' and \ 8 | 'recaptcha_challenge_field' in request.POST and \ 9 | 'recaptcha_ip_field' not in request.POST: 10 | data = request.POST.copy() 11 | data['recaptcha_ip_field'] = request.META['REMOTE_ADDR'] 12 | request.POST = data 13 | -------------------------------------------------------------------------------- /askbot/deps/recaptcha_django/docs/.svn/entries: -------------------------------------------------------------------------------- 1 | 8 2 | 3 | dir 4 | 6 5 | http://recaptcha-django.googlecode.com/svn/trunk/docs 6 | http://recaptcha-django.googlecode.com/svn 7 | 8 | 9 | 10 | 2008-12-14T15:07:18.967792Z 11 | 2 12 | xdissent 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | af963488-c9ea-11dd-a8b6-f5aca7b582bb 28 | 29 | overview.txt 30 | file 31 | 32 | 33 | 34 | 35 | 2010-06-13T21:04:19.000000Z 36 | c99e6eadb3fe754f0fdfd181b80ffbe4 37 | 2008-12-14T15:07:18.967792Z 38 | 2 39 | xdissent 40 | 41 | -------------------------------------------------------------------------------- /askbot/skins/default/templates/authopenid/email_validation.txt: -------------------------------------------------------------------------------- 1 | {% trans %}Greetings from the Q&A forum{% endtrans %}, 2 | 3 | {% trans %}To make use of the Forum, please follow the link below:{% endtrans %} 4 | 5 | {{validation_link}} 6 | 7 | {% trans %}Following the link above will help us verify your email address.{% endtrans %} 8 | 9 | {% trans %}If you beleive that this message was sent in mistake - 10 | no further action is needed. Just ingore this email, we apologize 11 | for any inconvenience{% endtrans %} 12 | 13 | {% trans %}Sincerely, 14 | Forum Administrator{% endtrans %} 15 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_discover/yadis_2_bad_local_id.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | http://specs.openid.net/auth/2.0/signon 10 | http://www.myopenid.com/server 11 | http://smoker.myopenid.com/ 12 | http://localid.mismatch.invalid/ 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.models.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.models: 2 | 3 | :mod:`askbot.models` 4 | ============= 5 | 6 | .. automodule:: askbot.models 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.models.answer` 18 | * :ref:`askbot.models.base` 19 | * :ref:`askbot.models.content` 20 | * :ref:`askbot.models.meta` 21 | * :ref:`askbot.models.question` 22 | * :ref:`askbot.models.repute` 23 | * :ref:`askbot.models.signals` 24 | * :ref:`askbot.models.tag` 25 | * :ref:`askbot.models.user` 26 | 27 | -------------------------------------------------------------------------------- /askbot/doc/source/askbot/layout.html: -------------------------------------------------------------------------------- 1 | {% extends "basic/layout.html" %} 2 | {% block relbar1 %} 3 |
4 | 14 |
15 | {% endblock %} 16 | {% block relbar2 %} 17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.migrations.0002_auto__add_field_answer_text__chg_field_answer_html__add_field_question.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.migrations.0002_auto__add_field_answer_text__chg_field_answer_html__add_field_question: 2 | 3 | :mod:`askbot.migrations.0002_auto__add_field_answer_text__chg_field_answer_html__add_field_question` 4 | ============================================================================================= 5 | 6 | .. automodule:: askbot.migrations.0002_auto__add_field_answer_text__chg_field_answer_html__add_field_question 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | -------------------------------------------------------------------------------- /askbot/setup_templates/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | from django.core.management import execute_manager 3 | try: 4 | import settings # Assumed to be in the same directory. 5 | except ImportError: 6 | import sys 7 | sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__) 8 | sys.exit(1) 9 | 10 | if __name__ == "__main__": 11 | execute_manager(settings) 12 | -------------------------------------------------------------------------------- /askbot/cron/askbot_cron_job: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # this is a cron job for askbot that includes all 3 | # commands that need to be run periodically 4 | # please find introduction to cron here: 5 | # http://www.unixgeeks.org/security/newbie/unix/cron-1.html 6 | # 7 | # if you prefer, you can split this file into several 8 | 9 | PROJECT_PARENT_DIR=/path/to/dir_containing_askbot_site 10 | PROJECT_DIR_NAME=askbot_site 11 | 12 | export PYTHONPATH=$PROJECT_PARENT_DIR:$PYTHONPATH 13 | PROJECT_ROOT=$PYTHONPATH/$PROJECT_NAME 14 | 15 | #these are actual commands that are to be run 16 | python $PROJECT_ROOT/manage.py send_email_alerts 17 | -------------------------------------------------------------------------------- /askbot/deps/openid/test/data/test_etxrd/README: -------------------------------------------------------------------------------- 1 | delegated-20060809.xrds - results from proxy.xri.net, determined by 2 | Drummond and Kevin to be incorrect. 3 | delegated-20060809-r1.xrds - Drummond's 1st correction 4 | delegated-20060809-r2.xrds - Drummond's 2nd correction 5 | 6 | spoofs: keturn's (=!E4)'s attempts to log in with Drummond's i-number (=!D2) 7 | spoof1.xrds 8 | spoof2.xrds 9 | spoof3.xrds - attempt to steal @!C0!D2 by having "at least one" CanonicalID 10 | match the $res service ProviderID. 11 | 12 | ref.xrds - resolving @ootao*test.ref, which refers to a neustar XRI. 13 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.importers.stackexchange.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.importers.stackexchange: 2 | 3 | :mod:`askbot.importers.stackexchange` 4 | ============================== 5 | 6 | .. automodule:: askbot.importers.stackexchange 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.importers.stackexchange.models` 18 | * :ref:`askbot.importers.stackexchange.parse_models` 19 | 20 | .. _packages:: 21 | 22 | :mod:`Subpackages` 23 | ----------- 24 | 25 | 26 | * :ref:`askbot.importers.stackexchange.management` 27 | -------------------------------------------------------------------------------- /askbot/deps/openid/yadis/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | __all__ = [ 4 | 'constants', 5 | 'discover', 6 | 'etxrd', 7 | 'filters', 8 | 'manager', 9 | 'parsehtml', 10 | 'services', 11 | 'xri', 12 | 'xrires', 13 | ] 14 | 15 | __version__ = '[library version:1.1.0-rc1]'[17:-1] 16 | 17 | # Parse the version info 18 | try: 19 | version_info = map(int, __version__.split('.')) 20 | except ValueError: 21 | version_info = (None, None, None) 22 | else: 23 | if len(version_info) != 3: 24 | version_info = (None, None, None) 25 | else: 26 | version_info = tuple(version_info) 27 | -------------------------------------------------------------------------------- /askbot/doc/source/devel/askbot.utils.rst: -------------------------------------------------------------------------------- 1 | .. _askbot.utils: 2 | 3 | :mod:`askbot.utils` 4 | ============ 5 | 6 | .. automodule:: askbot.utils 7 | :members: 8 | :undoc-members: 9 | :show-inheritance: 10 | 11 | .. _modules:: 12 | 13 | :mod:`Modules` 14 | ------- 15 | 16 | 17 | * :ref:`askbot.utils.cache` 18 | * :ref:`askbot.utils.colors` 19 | * :ref:`askbot.utils.decorators` 20 | * :ref:`askbot.utils.diff` 21 | * :ref:`askbot.utils.email` 22 | * :ref:`askbot.utils.forms` 23 | * :ref:`askbot.utils.functions` 24 | * :ref:`askbot.utils.html` 25 | * :ref:`askbot.utils.lists` 26 | * :ref:`askbot.utils.markup` 27 | 28 | --------------------------------------------------------------------------------