summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2011-08-25Docs: ignore emits_changed on immutable propertiesWill Thompson1-0/+2
If you mark a whole interface with emits_changed, but have immutable properties, we don't want the immutable properties to have the note about the changed signal.
2011-08-15Fix template for EMITS_CHANGED_NONEOlivier Le Thanh Duong1-1/+1
Remove the errorneous </div> in EMITS_CHANGED_NONE template code in interface.html which prevented Player_Node.html from rendering correctly
2011-06-24Merge branch 'css-trivia'Danielle Madeley1-1/+2
2011-06-23Add a favicon to the generated HTML spec (#38594)Guillaume Desmottes7-0/+6
2011-06-21Fix CSS for anchors in WebKitDanielle Madeley1-1/+2
WebKit was ignoring the CSS to adjust the position of anchors for the fixed title bar. The fix is to make the anchor a block element.
2011-05-09Correct DBus_Property-parameter boilerplate.Will Thompson1-1/+1
Simon pointed out that the boilerplate claimed that the name of the parameter should be just the interface name, rather than the fully-qualified name of the property. Fixes: <https://bugs.freedesktop.org/show_bug.cgi?id=37005> Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
2011-04-15Style tables in docstrings more pleasinglyWill Thompson1-0/+20
The colours and styles are designed to match the summary at the start of each interface page. The tr:nth-child(even) rule styles every other row with a slightly darker background, which makes it easier to read the only two tables we have (the well-known status identifiers, and the many states of Call channels). :nth-child is from CSS3. It looks fine without it, but better with it. border-collapse: collapse; is like cellspacing='0'.
2011-03-15Correct em dash HTML entities in page titles.Will Thompson2-2/+2
2010-12-16Merge remote branch 'randomguy3/optional-pages'Simon McVittie3-0/+24
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=32442 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
2010-12-16Make the generation of the generic-types and errors pages dependent onAlex Merry3-0/+24
there being content for them.
2010-12-16Use .is_deprecated, rather than .deprecated in the templates.Alex Merry7-19/+19
This ensures that items marked as deprecated using the D-Bus annotation (and not the telepathy annotation) will be presented correctly.
2010-12-14Move some HTML from specparser.py into the templateAlex Merry1-2/+23
See http://bugs.freedesktop.org/show_bug.cgi?id=32353#c1
2010-12-13Make a note of annotations when parsing the spec.Alex Merry2-0/+11
2010-12-03Produce two devhelp index entries for each symbolSimon McVittie1-1/+3
The first is what we always used to produce, and contains the full name. The second is inspired by Python's documentation index, e.g. "gethostname() (in module socket)", and *starts* with the name of the symbol itself. Some examples include: Interface org....Connection.Interface.Contacts Connection.Interface.Contacts (Interface in org....) Mapping String_Variant_Map String_Variant_Map (Mapping in org...) Property org...StorageRestrictions StorageRestrictions (Property in Account.Interface.Storage)
2010-12-01add missing full stopSimon McVittie1-2/+2
2010-12-01Add support for properties being sometimes-immutableSimon McVittie1-1/+13
2010-12-01Add a Base.get_anchor() method, to be used in HTML anchors.Danielle Madeley3-10/+10
Update get_url() to use get_anchor(). This removes the duplicate construction of anchors, once in the templates and once in the get_url() method and move it into one place. This allows us to easily change the way anchors are constructed for a given type. The way anchors are constructed has been changed to include the type name at the beginning, i.e. Type-Name:Short_Name, to prevent potential namespace collisions between client interests and capability tokens.
2010-11-30Add parser support for <tp:client-interest>Danielle Madeley2-0/+38
2010-11-18Enclose legal information in a subtle box.Will Thompson2-8/+16
This helps to visually distinguish between this meta-data and the overview of the specification, which is particularly important in the MPRIS spec. since they have actual documentation in the introduction. Hey maybe we should do that too.
2010-11-09Merge branch 'pruning'Simon McVittie6-2716/+0
Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-11-09Don't generate transitional spec.html any moreSimon McVittie1-11/+0
We don't use rsync --delete, so all locations that have had it in the past will continue to do so.
2010-11-09Remove dispatch.txt, request.txt, open-issues.txtSimon McVittie3-421/+0
I've filed bugs for all the remaining useful information.
2010-11-09Remove dis20, bug 31328 filedSimon McVittie1-14/+0
2010-11-09Remove uncontroversial cases from dispatch.txtSimon McVittie1-822/+0
2010-11-09doc/request.txt: remove uncontroversial casesSimon McVittie1-1217/+0
2010-11-09Remove doc/cmcaps.txtSimon McVittie1-182/+0
The ideas sketched there were implemented as part of Requests.
2010-11-09Remove clientcaps.txtSimon McVittie1-49/+0
The design sketched there was implemented as ContactCapabilities.
2010-11-08Fix wording in [sometimes] requestable templatesWill Thompson1-7/+7
The sometimes template said "this property requestable which" where it meant "this property may be requestable, which". Also, both templates said "such as in the\nthe". Also "Fixed_Properties or Allowed_Properties lists" suggested that both those struct fields are lists, whereas the former is a hash. So I binned the "lists".
2010-11-05specparser: add markup for sometimes-requestable propertiesWill Thompson1-1/+15
2010-10-22specparser: add support for tp:xor-requiresJonny Lamb1-1/+7
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-12interface: give a different message for channel propertiesJonny Lamb1-3/+8
So now we can use tp:immutable on non-channel properties and it won't talk about the channel being created and blah blah blah. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-07interface.html: reference not only CreateChannel() but EC() on Requests and CDJonny Lamb1-5/+10
For completeness! Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-07interface.html: add note about adding to RCCs for requestable propertiesJonny Lamb1-1/+4
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-07style.css: update immutable and requestable coloursJonny Lamb1-2/+2
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-07specparser: add tp:immutable and tp:requestable attributesJonny Lamb2-0/+26
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-01Whoops, add a missing link to Account.Will Thompson1-2/+2
2010-09-30Add a tp:is-connection-parameter property annotationWill Thompson2-1/+26
We have an increasing number of standard connection properties which are also connection parameters with the DBus_Property flag. They all tend to have some copy-pasta blurb explaining that clients should basically ignore the property and frob the parameter on the Account instead; I think it's time to add some markup for this.
2010-09-30Genericise added/changed/deprecated CSSWill Thompson2-12/+13
2010-09-30Linkify references to DBus.Properties and Telepathy.PropertiesWill Thompson1-2/+6
2010-07-06Always omit top margin on first parasWill Thompson1-1/+1
2010-07-06Make the rationale border looks nicer.Will Thompson1-3/+4
The massive grey margin is a bit clunky and didn't go well with the expandy triangle thing. So let's replace it with a thinner grey border around the whole thing, with rounded corners on modern browsers
2010-06-30Add unminified snapshot of jQuery.Will Thompson1-0/+6240
jquery.min.js is not in the preferred form for modification, etc. etc.
2010-06-30Make the animation fasterWill Thompson1-1/+1
2010-06-30Add expander triangles besides rationale headers.Will Thompson3-6/+61
2010-06-30Make rationale blocks collapsible.Will Thompson4-0/+55
If the user's browser doesn't support Javascript, nothing changes. If they do, rationales grow a clickable header; clicking the header expands or collapses the text of the rationale. They're all collapsed by default.
2010-06-22Improve margins around <p>.Will Thompson1-0/+19
2010-06-08Make page titles fit in browser tabs.Will Thompson1-2/+2
2010-05-25Remove trailing whitespace throughoutSimon McVittie1-6/+6
2010-05-06Merge branch 'tools'Simon McVittie2-3/+7
Reviewed-by: Will Thompson <will.thompson@collabora.co.uk>
2010-05-06Display the errors section's introduction in the HTMLSimon McVittie1-0/+4