#176 closed enhancement (fixed)
Source code should display on individual pages
Reported by: | samuelsidler | Owned by: | coffee2code |
---|---|---|---|
Milestone: | Priority: | high | |
Component: | Developer Hub | Keywords: | has-patch needs-testing |
Cc: |
Description (last modified by )
Individual pages should display the source code.
This will be similar to the approach that Rarst has taken on Query Posts: http://queryposts.com/function/get_bloginfo/
Attachments (4)
Change History (21)
#4
in reply to:
↑ 3
@
11 years ago
Replying to Rarst:
Are we link to external source viewer or inline (QP style)?
I'd say whatever's easiest right now (probably a link to core trac viewer), with a new ticket on file to see if we should do it inline in the future.
#5
@
10 years ago
- Description modified (diff)
- Owner set to Rarst
- Priority changed from low to high
- Status changed from new to assigned
- Summary changed from Ability to view source of function from code reference to Source code should display on individual pages
I'm changing this priority to high and assigning to Rarst. The source code should be visible on individual pages
#7
@
10 years ago
- Cc timmermansanton@… added
176.diff adds a naive implementation of source code displaying on individual pages.
What should at least be added:
- Syntax highlighting, I tried to add this but the syntax-highlighter plugin (that is used in the handbook) doesn't have any filters to add the script, neither does it use wp_register_script, it is also impossible to modify the object because they create it in the file itself and don't assign it. A possible solution would be a different plugin (but no compat with the handbooks) or including the script ourselves on the correct pages (If the plugin moves the script the syntax highlighting breaks)
- Partial showing of code, right now the whole piece of code is shown. On page load you should see a short version and with a button you should be able to see all the text, preferably with a nice javascript animation.
#8
follow-up:
↓ 9
@
10 years ago
- Keywords has-patch needs-testing added
176.2.diff adds syntax highlighting and showing only 200px and expanding after.
I don't know how you compile the scss to css so I put the style inline for now.
For the syntax highlighting you need to install and activate the Syntax Highlighter MT plugin, I am guessing it is the same plugin as the handbooks. The plugin I used before isn't updated in 2 years so I guess that is not the one used on the handbooks.
#9
in reply to:
↑ 8
@
10 years ago
Replying to atimmer:
For the syntax highlighting you need to install and activate the Syntax Highlighter MT plugin, I am guessing it is the same plugin as the handbooks. The plugin I used before isn't updated in 2 years so I guess that is not the one used on the handbooks.
All of the handbooks and Make sites use the SyntaxHighlighter Evolved plugin: http://wordpress.org/plugins/syntaxhighlighter/
Will your patch work with that plugin?
#10
@
10 years ago
This new patch 176.3.diff works with the SyntaxHighlighter Evolved plugin. It also adds the styles to the scss and css files. This assumes #477 is fixed.
#11
@
10 years ago
Great work and I like how it looks and operates on the front-end.
However, we need to be mindful of performance. We can't do full file, in-memory loading of source files on every request. Ideally the source code would be parsed and stored by the parser (maybe as postmeta or a special comment). On-the-fly isn't the way to go with this, especially without caching the results. Naturally since the parser doesn't currently do this, this general approach was necessary.
Regarding 176.3.diff and putting aside how the function source code is obtained, here are some things I noted:
- If the full, un-syntax highlighted source is shown (JS disabled, SyntaxHightlighter not enabled, etc), the "Show complete source code" link appears. That link should be hidden by default and shown via JS since the non-JS view (rightly) shows the full source code anyhow.
- For short functions, e.g.
__return_false()
, things don't act as desired:- The "Show complete source code" link appears even though the function is fully visible.
- The source code div is given a height of 186px, which is more space than needed for some short functions. The height should ideally be shorter in such cases.
- When the link is clicked, the full display of the function does not include the ending line (the function's closing brace). For short functions already fully shown, that line gets removed from the view.
- Regarding the link text "Show complete source code":
- Instead of "complete", I'd recommend "full" or "entire". Using "complete" has the connotation that what is being viewed currently is in-progress and unfinished.
- The 'New in' widget at /reference uses "View all…". If we want to consider keeping the syntax for the two similar, maybe this string should be "View full source code…" or "View entire source code…".
- With relative ease you can extend support to wp-parser-method as well.
I have an idea to adapt get_source_code()
to use stored data, and to prime the storage of that data. While the parser could do it (which we'll eventually file a ticket for) it can be made to work even if the parser doesn't help. I'll follow up shortly. Addressing the things I noted above in the meantime would be great though, just leave get_source_code()
as-is and I'll adapt that.
#12
@
10 years ago
FYI: As @samuelsidler suggested earlier, there exists #447 as an intermediate solution that can be more easily implemented: a simple link to core.trac to the relevant function. Though as Rarst does on QP, we would still likely link to core.trac even with in-line source.
#13
@
10 years ago
Added 176.4.diff with the changes you suggested. In the end I liked "View full source code…" the best.
Are we link to external source viewer or inline (QP style)?