-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i #313 Added Notebook for Syntax Extraction
- Documented current syntax extraction functions - Overview on syntax extraction and XPath - Placeholder for syntax.yml config file Signed-off-by: Dao McGill <[email protected]>
- Loading branch information
Showing
4 changed files
with
384 additions
and
8 deletions.
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
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,71 @@ | ||
# -*- yaml -*- | ||
# https://github.com/sailuh/kaiaulu | ||
# | ||
# Copying and distribution of this file, with or without modification, | ||
# are permitted in any medium without royalty provided the copyright | ||
# notice and this notice are preserved. This file is offered as-is, | ||
# without any warranty. | ||
|
||
# Project Configuration File # | ||
# | ||
# To perform analysis on open source projects, you need to manually | ||
# collect some information from the project's website. As there is | ||
# no standardized website format, this file serves to distill | ||
# important data source information so it can be reused by others | ||
# and understood by Kaiaulu. | ||
# | ||
# Please check https://github.com/sailuh/kaiaulu/tree/master/conf to | ||
# see if a project configuration file already exists. Otherwise, we | ||
# would appreciate if you share your curated file with us by sending a | ||
# Pull Request: https://github.com/sailuh/kaiaulu/pulls | ||
# | ||
# Note, you do NOT need to specify this entire file to conduct analysis. | ||
# Each R Notebook uses a different portion of this file. To know what | ||
# information is used, see the project configuration file section at | ||
# the start of each R Notebook. | ||
# | ||
# Please comment unused parameters instead of deleting them for clarity. | ||
# If you have questions, please open a discussion: | ||
# https://github.com/sailuh/kaiaulu/discussions | ||
|
||
project: | ||
website: https://github.com/junit-team/junit5/ | ||
#openhub: https://www.openhub.net/p/apache_portable_runtime | ||
|
||
version_control: | ||
# Where is the git log located locally? | ||
# This is the path to the .git of the project repository you are analyzing. | ||
# The .git is hidden, so you can see it using `ls -a` | ||
log: ../rawdata/git_repo/junit5/.git | ||
# From where the git log was downloaded? | ||
log_url: https://github.com/junit-team/junit5/ | ||
# List of branches used for analysis | ||
branch: | ||
- main | ||
|
||
filter: | ||
keep_filepaths_ending_with: | ||
- cpp | ||
- c | ||
- h | ||
- java | ||
- js | ||
- py | ||
- cc | ||
remove_filepaths_containing: | ||
- test | ||
- java_code_examples | ||
|
||
tool: | ||
# srcML allow to parse src code as text (e.g. identifiers) | ||
srcml: | ||
# The file path to where you wish to store the srcml output of the project | ||
srcml_path: ../analysis/depends/srcml_depends.xml | ||
# Analysis Configuration # | ||
analysis: | ||
# A list of topic and keywords (see src_text_showcase.Rmd). | ||
topics: | ||
topic_1: | ||
- model | ||
- view | ||
- controller |
Oops, something went wrong.