Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
f23529c5
Commit
f23529c5
authored
Mar 30, 2015
by
Taylor Gerring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
General repo cleanup
parent
e1c6c01b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
7 deletions
+10
-7
.gitignore
.gitignore
+5
-1
.gitmodules
.gitmodules
+0
-3
.mailmap
.mailmap
+3
-1
update-license.go
update-license.go
+2
-2
No files found.
.gitignore
View file @
f23529c5
...
@@ -13,6 +13,8 @@
...
@@ -13,6 +13,8 @@
.ethtest
.ethtest
*/**/*tx_database*
*/**/*tx_database*
*/**/*dapps*
*/**/*dapps*
Godeps/_workspace/pkg
Godeps/_workspace/bin
#*
#*
.#*
.#*
...
@@ -21,7 +23,9 @@
...
@@ -21,7 +23,9 @@
.project
.project
.settings
.settings
cmd/ethereum/ethereum
geth
mist
cmd/geth/geth
cmd/mist/mist
cmd/mist/mist
deploy/osx/Mist.app
deploy/osx/Mist.app
deploy/osx/Mist\ Installer.dmg
deploy/osx/Mist\ Installer.dmg
.gitmodules
View file @
f23529c5
[submodule "ethereal/assets/samplecoin"]
path = ethereal/assets/samplecoin
url = git@github.com:obscuren/SampleCoin.git
[submodule "cmd/mist/assets/ext/ethereum.js"]
[submodule "cmd/mist/assets/ext/ethereum.js"]
path = cmd/mist/assets/ext/ethereum.js
path = cmd/mist/assets/ext/ethereum.js
url = https://github.com/ethereum/ethereum.js
url = https://github.com/ethereum/ethereum.js
.mailmap
View file @
f23529c5
...
@@ -9,4 +9,6 @@ Joseph Goulden <joegoulden@gmail.com>
...
@@ -9,4 +9,6 @@ Joseph Goulden <joegoulden@gmail.com>
Nick Savers <nicksavers@gmail.com>
Nick Savers <nicksavers@gmail.com>
Maran Hidskes <maran.hidskes@gmail.com>
Maran Hidskes <maran.hidskes@gmail.com>
\ No newline at end of file
Taylor Gerring <taylor.gerring@gmail.com> <taylor.gerring@ethereum.org>
update-license.go
View file @
f23529c5
...
@@ -40,7 +40,7 @@ var (
...
@@ -40,7 +40,7 @@ var (
extensions
=
[]
string
{
".go"
,
".js"
,
".qml"
}
extensions
=
[]
string
{
".go"
,
".js"
,
".qml"
}
// paths with any of these prefixes will be skipped
// paths with any of these prefixes will be skipped
skipPrefixes
=
[]
string
{
"tests/files/"
,
"cmd/mist/assets/ext/"
,
"cmd/mist/assets/muted/"
}
skipPrefixes
=
[]
string
{
"
Godeps/"
,
"
tests/files/"
,
"cmd/mist/assets/ext/"
,
"cmd/mist/assets/muted/"
}
// paths with this prefix are licensed as GPL. all other files are LGPL.
// paths with this prefix are licensed as GPL. all other files are LGPL.
gplPrefixes
=
[]
string
{
"cmd/"
}
gplPrefixes
=
[]
string
{
"cmd/"
}
...
@@ -190,7 +190,7 @@ func fileInfo(file string) (*info, error) {
...
@@ -190,7 +190,7 @@ func fileInfo(file string) (*info, error) {
break
break
}
}
}
}
cmd
:=
exec
.
Command
(
"git"
,
"log"
,
"--follow"
,
"--find-copies"
,
"--pretty=format:%a
I
| %aN <%aE>"
,
"--"
,
file
)
cmd
:=
exec
.
Command
(
"git"
,
"log"
,
"--follow"
,
"--find-copies"
,
"--pretty=format:%a
i
| %aN <%aE>"
,
"--"
,
file
)
err
:=
doLines
(
cmd
,
func
(
line
string
)
{
err
:=
doLines
(
cmd
,
func
(
line
string
)
{
sep
:=
strings
.
IndexByte
(
line
,
'|'
)
sep
:=
strings
.
IndexByte
(
line
,
'|'
)
year
,
name
:=
line
[
:
4
],
line
[
sep
+
2
:
]
year
,
name
:=
line
[
:
4
],
line
[
sep
+
2
:
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment