-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/better project page #138
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
429baff
Refactor some naming around files in the project data object.
jimCresswell e51d621
Make feature file and markdown file processed data structures availab…
jimCresswell 02754e6
Get rid of unused renderingOptions object.
jimCresswell 6c19704
Catch feature file parsing errors in the project and feature view and…
jimCresswell 608a28c
Move the clone options.
jimCresswell cb9a792
Put the project page error handling in the right place and tidy up th…
jimCresswell 9c94e2f
Record fetch bug and associated GitHub ticket.
jimCresswell e09d79e
Fix the link to the plain versions of files given on parse error.
jimCresswell 67b83b5
Add a test empty feature file
jimCresswell 819e427
Style empty files in the project file list.
jimCresswell 931c860
Consolidate use of variable names filePath and fileName.
jimCresswell b945eaa
Create a partial and styling for project file list. Demark files whic…
jimCresswell 07689b2
Prune local list of remote refs on update.
jimCresswell 8223c72
Simpligy HTML on the project page and styling.
jimCresswell d6874c8
Add feature name and abbreviated feature description on project page.
jimCresswell a64aa23
Make the whole file description a click target. Styling.
jimCresswell f4b8bef
Code climate.
jimCresswell 97b62b5
Linting.
jimCresswell ba179dc
Stop long file names and long file paths from breaking out of the fil…
jimCresswell 217f2ca
Docs.
jimCresswell b74f737
Version
jimCresswell c8e5599
Layout tweaks.
jimCresswell 0fa0f48
Fix misleading function name.
jimCresswell 665b21a
Move file list data decoration to a single location. Handle some erro…
jimCresswell 47977ad
Move the definition of which files are of interest to the config module.
jimCresswell 59b8bba
Docs.
jimCresswell 7daeb40
Change a forEach to a map so we don't rely on side effects. Store the…
jimCresswell 345db15
Create an example of generating a file tree data structure from the f…
jimCresswell 2e47c61
Create resuable list of file extensions the app is interested in.
jimCresswell 093c909
Keep the file content in the list of files and link to that from the …
jimCresswell 56083e8
Use the tree of files to generate list of files keyed by containing d…
jimCresswell 9a68834
Toggle showing files in a given directory.
jimCresswell 228a364
Tweaking patch number so pull request will notice there are new commi…
jimCresswell aba86a4
Move all project page javascript to a script file. Add an expand/coll…
jimCresswell 21b8ad8
Linting.
jimCresswell 47c8283
Use different partials for features files, markdown and generic files.
jimCresswell 6875692
Fix passing through currentBranchName in new context and some styling.
jimCresswell 20c0232
Collapse files on first click of expand/collapse all button.
jimCresswell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# This file contains no feature. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
if (!String.prototype.endsWith) { | ||
String.prototype.endsWith = function(searchString, position) { | ||
var subjectString = this.toString(); | ||
if (typeof position !== 'number' || !isFinite(position) || Math.floor(position) !== position || position > subjectString.length) { | ||
position = subjectString.length; | ||
} | ||
position -= searchString.length; | ||
var lastIndex = subjectString.indexOf(searchString, position); | ||
return lastIndex !== -1 && lastIndex === position; | ||
}; | ||
} | ||
|
||
module.exports = 'done'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we move file filtering into project.js rather at low level inside please?