forked from dfinke/ImportExcel
-
Notifications
You must be signed in to change notification settings - Fork 0
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Checking mergeability…
Don’t worry, you can still create the pull request.
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: Treader/ImportExcel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dfinke/ImportExcel
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 10 commits
- 4 files changed
- 3 contributors
Commits on Oct 21, 2024
-
Removed due to various AV's flagging the link as malicious thus flagging and quarentining the module.
Configuration menu - View commit details
-
Copy full SHA for a2bc50a - Browse repository at this point
Copy the full SHA a2bc50aView commit details -
Re-add icon variable (Commented)
re-added variable for easier modification in the future.
Configuration menu - View commit details
-
Copy full SHA for 5a61c5d - Browse repository at this point
Copy the full SHA 5a61c5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for db84a59 - Browse repository at this point
Copy the full SHA db84a59View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb41d3d - Browse repository at this point
Copy the full SHA fb41d3dView commit details -
Merge pull request dfinke#1648 from evenmartinsen/master
Remove flagged URL
Configuration menu - View commit details
-
Copy full SHA for 85e48ac - Browse repository at this point
Copy the full SHA 85e48acView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc4a5e9 - Browse repository at this point
Copy the full SHA dc4a5e9View commit details
Commits on Apr 11, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 49affcf - Browse repository at this point
Copy the full SHA 49affcfView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa447a7 - Browse repository at this point
Copy the full SHA fa447a7View commit details
Commits on Apr 23, 2025
-
[Get-HtmlTable] XPath optimization
```powershell $rows = $h.SelectNodes("//table[$TableIndex]//tr") ``` XPath selector in line 53 uses complex expression that can lead to unexpected result. The problem is that HtmlAgilityPack may have specific issues. In particular, on websites containing multiple tables this selector can find not one table. This is aggravated by the fact that tables can have different structures. To avoid ambiguity this PR suggests to separate queries. Oneliner simplifies error checking ```powershell $rows = try { $h.SelectSingleNode("//table[$TableIndex]").SelectNodes(".//tr") } catch {} if (-not $rows) {Write-Warning "Could not find rows for `"//table[$TableIndex]`" in $Url ."} ``` This expression doesn't even need testing, it just works.Configuration menu - View commit details
-
Copy full SHA for 45ed6a0 - Browse repository at this point
Copy the full SHA 45ed6a0View commit details -
Merge pull request dfinke#1695 from scriptingstudio/master
[Get-HtmlTable] XPath optimization
Configuration menu - View commit details
-
Copy full SHA for 5387c06 - Browse repository at this point
Copy the full SHA 5387c06View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...master