Jan

3

Software Design Paralysis

Friends, I have come to an impasse.

I have an awesome concept for embedding images into these blog posts. The idea is this:

  • Use an Attachment model with a generic foreign key to allow images to be attached to blog posts
  • Use a markdown extension to allow attached files to be referenced inside the blog post's body

Here's the syntax I wanted to support in markdown:



This isn't that impossible a task, and in fact, I have done it, but there are some wrinkles. The main issue is that I really want to limit my markdown extension's file lookup to only those files actually attached to the blog post. The second issue is that I would like to be able to specify a template to use for rendering each attachment, and I'd like to be able to specify different templates in different contexts. Both problems revolve around how I should do the actual conversion from markdown syntax to HTML.

I implemented my solution as a markdown extension because I wanted to continue to use the markdown template filter. I'm already using it with the pygments extension I discussed earlier:

{{ blogpost.body|markdown:"pygments" }}

I was imagining that I could implement my attachments extension and then just change the code like so:

{{ blogpost.body|markdown:"pygments,attachments" }}

That's nice and tidy, right? But how will the attachments extension know which blogpost it's operating on? Attachments have generic foreign keys. How will it even know it's operating on a blogpost? And what about specifying a template for rendering those attachments? Blast! We will have to complicate the solution.

It turns out that markdown.py's extension system supports the passing of config parameters. If I pass three variables: the content type id, the object id, and the template, then I'll be able to identify which blog post to use, and which template to use. This is how that would look in markdown's extension config param syntax:

{{ blogpost.body|markdown:"pygments,attachments(ct=5,id=3,template=blog/attach.html" }}

Problem the first: the content type and id values are hard-coded in there. I can't drop variables into a string that's being passed to a template filter. Problem the second: django splits this big string argument into a list of extensions to pass to markdown by splitting on ',', so my config params are interpreted as extension boundaries. There are other mysteries nestled within markdown.py's extension param handling system, but I'll talk about those in another post of I ever come out with a final draft for this dang thing.

So, I can only specify one parameter per extension if I'm passing it in through the template filter. I can't pass in the blogpost identifying data there anyway, so this works out: I'd just pass in the name of the template I want it to use for rendering the attachments. But that still leaves the problem of identifying the blog post to the attachments extension. Without that information, the extension will be looking up the specified filename in the set of all attachments in the system. The larger the site, the greater the risk of namespace collisions.

I think there are three solutions to this problem, and I don't like any of them all that much:

  1. Implement a method on BlogPost that converts its body text from markdown to html, applying the appropriate markdown extensions, taking one optional parameter: the template to use for the attachments. If I wanted to do this, I'd have to figure out some way of invoking the method with a template argument from within a template. Here's the least awful hack I can think of for that:

    {{ blogpost|render_body:"blog/attach.html" }}

    That template filter could just invoke the method on the blogpost object, passing that variable. It works, but it's ugly, and it replaces a standard template filter (markdown) with a custom template filter that depends on a custom method.

  2. Write a template tag for rendering the body of a blogpost. That would look like this:

    {% render_body blogpost "blog/attach.html" %}

    That's less of a hack than the first option, and I can keep all the markdown invocations inside the template tag, which spares the BlogPost model from having to deal with it. It's still a custom template tag replacing a standard template filter.

    This wouldn't be so bad except that inside the template tag I'm still invoking the markdown by passing it a list of extension names. My attachments extension has to be live in the special markdown extension format of a file called mdx_attachments.py that lives in the root dir of some place in the python path. If I peel back the layers of markdown even further I could pass in my extension object directly without this mdx file, but it feels silly to put all this effort into disabling the handy extension loading functionality that I'm getting for free from markdown.py

  3. The last option is to try and stay compatible with markdown and the markdown template filter. I could pass the object identifying information via a template tag provided by the attachments app. It would look like this:

    {{ blogpost.body|annotate:blogpost|markdown:"pygments,attachments(template=blog/attach.html)" }}

    This makes for verbose, less legible template code, but it keeps my interference in the markdown system to a minimum. The additional problem is how the annotation would work. Other than doing something crazy like subclassing str and adding the variables there, I think the only way would be to add a line to the top of the text that looked something like this:

    [attach_object:5,3]

    The arguments here are the content type id and the object id. With this, the attachment extension could identify the object first, before it began handling the elements.

    I think I like this solution best. Is this crazy?

The solution I have now is #2, but I think I might rewrite it to #3. Before I introduce more churn into my code, I'm hoping I can get some feedback from other developers.

Why not turn autoescaping off and stick in an img tag?

I kind of don't understand. Not just your mission, here, but the whole fear of storing (X)HTML in the database. First of all, this is your blog, right? You can trust yourself to enter clean HTML, can't you? You're not going to try to hijack your own page with Javascript, I trust?

And even if it's not just content you're creating yourself, it seems to me much easier to restrict someone to a subset of HTML than to extend Markdown to do accommodate particular use cases. As you're showing here.

Bottom line: I say it's way preferable to make HTML more Markdown-like than to make Markdown more HTML-like.

— Hank Sims (January 03, 2009 at 1:39 a.m.)

I too must be missing something. Why not store you original blog post (assumedly in mardown) and the html version both in the database? You edit the markdown version and serve up the html version, which is generated when you save.

— Jason Christa (January 03, 2009 at 9:32 a.m.)

Why do you need the generic foreign key association at all? If your attachments have unique names, and you refer to them by name in your custom Markdown syntax, what's the FK actually buy you? An extra bit of repetitive work for every attachment to every blog post?

— Carl M (January 04, 2009 at 4:31 p.m.)

While I agree with others here that you're probably over-engineering this for a personal blog app, this is a real problem that I have given limited thought to.

The fact is, the way Django filters work, the markdown filter cannot take custom config options. I've always figured that this could be handled either in the model or view level. But you provide an interesting edge case; passing in something defined in the template.

I'm assuming that you want the template author to be able to define the template used, therefore you want the setting for which template to use also defined in a template. Remember, if you hardcode the template name, the template author can still create/edit a template of the same name which will replace/override the default. In fact, this is generally how third party apps allow template overrides in my experience anyway. So, yeah, even with your edge case, it's still over-engineered. Just hardcode the template name and if it's really important, make it a setting in settings.py that falls back on a default if undefined.

As a side point: I notice you have some issues/concerns with the way Markdown's config options work. Could you please pass those on (email them either to me or the python-markdown list) so we can address them before we release 2.0 (happening soonish) and lock in the API. As one of the core devs, I understand how they work intimately, so I may not always see how others may view the API. Being that we've never received any comments about it before (that I'm aware of), I'm curious what your issues/concerns/difficulties were.

Waylan (January 04, 2009 at 4:57 p.m.)

The [HTML_REMOVED]New combination[HTML_REMOVED] Room or NCR as it is known in College, was refurbished at the start of 2008 with atmospheric lighting and beautifully restored wooden floor boards. The NCR can seat up to 38 guests boardroom style or 50 guests in a U-shape. It is a perfect room for pre dinner drinks and for numbers over 80 it can be used in conjunction with the Old Combination Room, it leads guests easily into the Hall afterwards for dinner.

Blackdanhil (April 02, 2009 at 2:51 p.m.)

Russian sks rifles for sale [HTML_REMOVED]sex offenders in my area[HTML_REMOVED] Russian sks rifles for sale. super rifles [HTML_REMOVED]free church wedding[HTML_REMOVED] Church wedding decoration [HTML_REMOVED]church wedding[HTML_REMOVED]. For wedding [HTML_REMOVED]Church wedding decoration[HTML_REMOVED]

EddyStoun (April 03, 2009 at 8:17 a.m.)

Mr Chavez expelled the US [HTML_REMOVED]envoy[HTML_REMOVED] to Caracas in September in "solidarity" with Bolivia. The US reciprocated. In response, the US [HTML_REMOVED]state[HTML_REMOVED] department says it "will now work" toward returning its ambassador to Venezuela. The announcements came at a Summit of the Americas in Trinidad, where US [HTML_REMOVED]President[HTML_REMOVED] Barack Obama received a warm welcome from Latin American leaders. Last Sepmteber's diplomatic dispute arose over an alleged US plot against Bolivian President Evo Morales. [HTML_REMOVED]Mr Chavez[HTML_REMOVED] was a fierce critic of the United States under former President George W Bush, accusing Washington of plotting to assassinate him. But in a sign of warming ties, [HTML_REMOVED]Mr Obama[HTML_REMOVED] shook hands with President Chavez at the summit, and accepted a book from the Venezuelan leader.

michaelsanders (April 19, 2009 at 5:11 a.m.)

Alleged Nazi war criminal [HTML_REMOVED]John Demjanjuk[HTML_REMOVED] is in jail in Munich, facing charges of being an accessory to the deaths of 29,000 Jews in World War II. The frail 89-year-old arrived in [HTML_REMOVED]Germany[HTML_REMOVED] on Tuesday morning after being deported from the US. He is now in [HTML_REMOVED]Stadelheim[HTML_REMOVED] prison, say prosecutors, where he will [HTML_REMOVED]undergo[HTML_REMOVED] a medical check and then have his pages-long arrest warrant read out to him. He denies [HTML_REMOVED]accusations[HTML_REMOVED] that he worked as a guard in the Sobibor Nazi death camp. Mr Demjanjuk, who [HTML_REMOVED]settled[HTML_REMOVED] in the US in 1952, says he was captured by the Germans in his native Ukraine during the war and kept as a prisoner of war.

blackstarX (May 14, 2009 at 11:57 p.m.)

That was an inspiring post,

This is avery helpful most, some great advice,

Keep up the good work,

Thanks for writing, most people don't bother.

geeks (October 26, 2009 at 7:43 a.m.)

trispiral tomography http://wiki.answers.com/Q/User:Med-helper buy clomid officinal [HTML_REMOVED]generic clomid [HTML_REMOVED] perineuritis http://wiki.answers.com/Q/User:Med-helper - generic clomid

bwguvu (January 27, 2010 at 7:10 a.m.)

But in the present climate I suffer with draw nigh to believe that the total people is an mystery, a harmless mystery that is made terrible by our own fervent bid to spell out it as however it had an underlying truth.

Omega Planet Ocean (April 30, 2010 at 6:37 p.m.)

To be a upright charitable being is to from a kind of openness to the in the seventh heaven, an cleverness to guardianship uncertain things beyond your own control, that can govern you to be shattered in unequivocally exceptionally circumstances as which you were not to blame. That says something very weighty relating to the get of the righteous life: that it is based on a corporation in the uncertain and on a willingness to be exposed; it's based on being more like a weed than like a jewel, something fairly feeble, but whose mere precise attractiveness is inseparable from that fragility.

Geneva Watch Bands (June 22, 2010 at 9:30 a.m.)

To be a adroit lenient being is to from a kind of openness to the in the seventh heaven, an gift to trusteeship unsure things beyond your own control, that can govern you to be shattered in uncommonly outermost circumstances pro which you were not to blame. That says something remarkably impressive about the fettle of the honest autobiography: that it is based on a trust in the fitful and on a willingness to be exposed; it's based on being more like a shop than like a treasure, something fairly dainty, but whose extremely item handsomeness is inseparable from that fragility.

Jaeger Lecoultre Watches (June 22, 2010 at 11:57 a.m.)

To be a adroit human being is to from a kind of openness to the in the seventh heaven, an ability to guardianship undeterminable things beyond your own control, that can take you to be shattered in uncommonly exceptionally circumstances on which you were not to blame. That says something uncommonly outstanding thither the get of the righteous compulsion: that it is based on a trustworthiness in the uncertain and on a willingness to be exposed; it's based on being more like a shop than like a prize, something rather dainty, but whose acutely item beauty is inseparable from that fragility.

Dell 1720 Cartridge (July 04, 2010 at 4:11 a.m.)

I woke up this morning depressed but after reading this article my mood got better.

Gadgets (July 06, 2010 at 1:11 a.m.)

[HTML_REMOVED]free download sex videos.3gp[HTML_REMOVED] http://groups.google.com/group/itali-porno/web/disney-jasmine-nude-clip - free amateur arab porn http://groups.google.com/group/itali-porno/web/disney-jasmine-nude-clip

attaltguife (July 15, 2010 at 12:46 p.m.)

[HTML_REMOVED]Commander cialis[HTML_REMOVED] en ligne sans ordonnance. Pharmacie en ligne - prix bas, livraison en Europe rapide, medicamentss generiques de qualite. Cialis est le concurrent de la celebre pilule bleue, Viagra sildenafil de Pifizer. [HTML_REMOVED]Commander Cialis en ligne[HTML_REMOVED] sur notre site, c’est la garantie de vous procurer rapidement un medicament generique en toute discretion et en toute securite.

commander cialis (August 04, 2010 at 10:51 p.m.)

Serwis posiada bezplatne obrazy i filmy z serii [url=http://www.amatorsko.com]amatorki[/url]. Galerie erotyczne przeznaczone wylacznie dla widzow doroslych. Codzienna aktualizacja tresci. Zobacz juz dzis!

agomburbgom (September 03, 2010 at 11:05 p.m.)

Sildenafil citrate, sold as Viagra, Revatio and under various other m‚tier names, is a medicament utilized to scrutinize erectile dysfunction and pulmonary arterial hypertension (PAH). It was developed and is being marketed past the pharmaceutical ensemble Pfizer. It acts nigh inhibiting cGMP individual phosphodiesterase variety 5, an enzyme that regulates blood spout in the penis. Since becoming available in 1998, sildenafil has been the prime treatment recompense erectile dysfunction; its primary competitors on the market are tadalafil (Cialis) and vardenafil (Levitra).

Levitra (September 15, 2010 at 2:59 p.m.)

Be not fuming that you cannot make others as you wish them to be, since you cannot make yourself as you hope to be

Step Machine (September 21, 2010 at 7:35 a.m.)

Be not fuming that you cannot win others as you desire them to be, since you cannot make yourself as you long to be

Step Machine (September 21, 2010 at 11:44 a.m.)

[HTML_REMOVED]Buy Acomplia Uk[HTML_REMOVED] priligy news [HTML_REMOVED]Buy Priligy In Usa[HTML_REMOVED] priligy generic [HTML_REMOVED]Buy Priligy Usa[HTML_REMOVED] priligy trials [HTML_REMOVED]Order Priligy[HTML_REMOVED] priligy dapoxetine hydrochloride

rewrrewerw (October 05, 2010 at 5:51 a.m.)

great forum lots of lovely people just what i need

hopefully this is just what im looking for looks like i have a lot to read.

P.s I wanna have fun as well as learn

[HTML_REMOVED]sports massage[HTML_REMOVED]

meseertiecy (October 31, 2010 at 11:05 a.m.)

I store more content material, does not require a fast rate, as long as the flow does not restrict you can, of course , if there is to know pals can tell us. Service providers do not want to waste area I would recommend, for those who have used the same, please let me know. Thank you.

SonCheece (March 26, 2011 at 8:07 a.m.)

Unknown message

SimoneDerti (April 04, 2011 at 6:51 p.m.)

British Prime Man David Cameron's operation is bit by bit being defined by the riots that sooner a be wearing blazed across the U.K. — and he is obstinate to be portrayed as the toughest hombre in community, the bloke to antiseptic up the anarchical inner cities during any means necessary.

Gone is "Hug-a-Hoodie" Cameron — a label stuck to him [HTML_REMOVED]biznes karta[HTML_REMOVED] after a speech in July 2006 in which he said antisocial youngsters habitually needed to think more love — and in its burden is "Remain 'Em High" Cameron, who has authorized the privilege consumption of unreservedly urinate cannons and inexperienced bullets to combat the rioters, even nevertheless it has emerged that the supervise do not believe they call for those things. (Appreciate "London Riots: Why the Violence Is Spreading Across England.")

On Tuesday, the Prime Missionary, in purport, gave himself 48 hours to intent the rioting and attract peace sponsor to the streets of Britain's cities. To that close, he trebled to 16,000 the reckon of protect convenient in London and promised to update a recalled Parliament on Thursday on the success, or differently, of his fight back.

Alaniedaje (August 14, 2011 at 4:19 p.m.)

[HTML_REMOVED]http://siteworld.pl/_/ook.gif[HTML_REMOVED]

railacuatenue (August 16, 2011 at 5:37 a.m.)

[color=green][size=12]It will block any websites that contains inappropriate content, such as pornography and violence.[/size][/color]
• Firewall – This particular tool is your defense against hackers. [url=http://www.christydena.com/upload/microsoft-works-vista.php]microsoft works vista[/url] With all these features, you will be able to protect yourself and your family from being a victim of serious crimes going around the internet today. [url=http://www.christydena.com/upload/cyberlink-powerdvd-powerdvd.php]cyberlink powerdvd powerdvd[/url]
I am skilled in relational database design, object oriented design, and user interface design. [url=http://www.christydena.com/upload/software-cyberlink-youcam.php]software cyberlink youcam[/url] Michelangelo's panels have low coupling; they are all selfcontained; there are no instances of figures reaching from one panel into the next, for instance.
If we desire to maintain a variety of specialties, which one should be emphasized, if any? [url=http://www.christydena.com/upload/atomix-virtual-dj-v5.php]atomix virtual dj v5[/url] Most developers cultivate not just one specialty, but rather a combination of specialties that cut across all of these differentiating factors. [url=http://www.christydena.com/upload/latest-avast-professional.php]latest avast professional[/url]
By working through the owner’s manual in this way, you will find it isn’t so overwhelming. [url=http://www.christydena.com/upload/adobe-captivate-1.php]adobe captivate 1[/url] After toiling for weeks and weeks on a moderately complex piece of software, Matthew (not his real name) proudly announced the Code Was Done.

anniedowkinz (September 04, 2011 at 6:28 a.m.)

Expressing files is normally considered a way of engaging yourself or sharing information with colleagues at your workplace. But you can produce sharing files your full time "job" for advantage of Pay For every Install opportunities. A select few people are already taken advantage of it and there incomes substantial amounts. It's not uncommon so as to have $300+ dollar a short time. Of course it takes a little bit of time to get there but anybody can do it with the suitable training and a modest amount of work.

And because of the way that it works you don't are related anything that your in no way already doing. So it is easy to go about your world wide web surfing and file showing as normal and earn movie performing it. Pay Per Install has become the only true ways so that you can earn money online and never have to really veer from normal online activities once you don't have to promote a site or products to earn money with it. So you don't have to spend your time online engaging within promotional efforts.

So holding a job sharing files is your best option of "employment" for anybody trying to earn money online who doesn't want or possess the time to learn advanced internet promotion techniques. All you have to do is a little bit of work and keep a couple programs running and one can have a 24 hour business running within the background of your computer continually. And you only want to do a little weekly maintenance every now and then to keep it planning.

[HTML_REMOVED]Make Cash sharing files[HTML_REMOVED] with ShareRUN. com.

Dusexpelizize (October 05, 2011 at 10:26 p.m.)

Qlhhdyyw

EgUNmDTV (October 08, 2011 at 6:02 a.m.)

[HTML_REMOVED]cosmote incarcare cartela[HTML_REMOVED]|

— Valido336 (October 30, 2011 at 2:04 p.m.)

I rather encourage you to learn about the flexibility of forms, fields and widgets and how it’s used in the automatic Admin interface.

outdoor lighting manufacturers usa (November 23, 2011 at 2:49 a.m.)

[HTML_REMOVED]Slendertone[HTML_REMOVED] uses clinically proven, patent-pending C.S.I. (Concentrated [HTML_REMOVED]Slendertone[HTML_REMOVED] Innervation) technology to firm, tone and strengthen your entire midsection with patented medical-grade muscle stimulation technology. [HTML_REMOVED]Slendertone[HTML_REMOVED] Boottom Toner This System Mini accessory kit is for use with your existing [HTML_REMOVED]Slendertone[HTML_REMOVED] interchangeable system hand-held controller (available separately). http://www.slendertonessystem.com/
If have [HTML_REMOVED]Slendertone[HTML_REMOVED] System , you can have healthy bodies in response to high pressure working condition and to meet the good life.http://www.slendertonessystem.com/ [HTML_REMOVED]Slendertone[HTML_REMOVED]

Slendertonejzb (December 01, 2011 at 6:05 p.m.)

Some really interesting details you have written on www.pocketuniverse.ca .Aided me a lot, just what I was searching for :D .

anabolics online (December 02, 2011 at 6:40 a.m.)

for with confident with confident

— chorkyu (December 11, 2011 at 7:24 a.m.)
  • eal Visitors.
nighthat (December 17, 2011 at 8:05 a.m.)

Sometimes things are not working as forecasted, thats life....

bye,
Elli

Elli.H (December 17, 2011 at 9:04 a.m.)

It's appropriate time to make some plans for the future and it's time to be happy. I've read this post and if I could I wish to suggest you few interesting things or tips. Perhaps you can write next articles referring to this article. I want to read even more things about it![HTML_REMOVED]cheap nfl jerseys on sale[HTML_REMOVED]

pcqpkott (December 26, 2011 at 9:09 p.m.)

I suggest you to put facebook likes button.

Carlton Markð¯ (January 05, 2012 at 10:57 p.m.)

I know how dangerous that is to browse the Internet today, so visit http://www.chaseonline.eu to find out what to do.
[HTML_REMOVED]http://www.chaseonline.eu[HTML_REMOVED]

intastypets (January 19, 2012 at 12:49 p.m.)