Closed Bug 1031534 Opened 10 years ago Closed 10 years ago

License fragment headers throughout

Categories

(Firefox for Android Graveyard :: Search Activity, defect)

ARM
Android
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: eedens, Assigned: eedens)

References

Details

Attachments

(1 file, 2 obsolete files)

Attached patch bug-1031534-fix.patch (obsolete) — Splinter Review
The patch is queued as a pull request: https://github.com/ericedens/FirefoxSearch/pull/12/files
Attachment #8447420 - Flags: review?(nalexander)
Also, here's a quick Python script to check whether files are missing the license:



import os

files = [os.path.join(dp, f) for dp, dn, fn in 
         os.walk(os.path.expanduser("FirefoxSearch")) for f in fn]
for fname in files:
    if '.git' in fname: continue
    if '.idea' in fname: continue
    if 'geckoView' in fname: continue
    with open(fname) as f:
        if 'MPL' not in f.read():
            print fname
Attachment #8447420 - Flags: review?(nalexander)
Attached patch bug-1031534-fix.patch (obsolete) — Splinter Review
Fixed commenting style
Attachment #8447420 - Attachment is obsolete: true
Attachment #8447435 - Flags: review?(nalexander)
Attachment #8447435 - Flags: review?(nalexander)
Attachment #8447435 - Attachment is obsolete: true
Attachment #8447442 - Flags: review?(nalexander)
Attachment #8447442 - Flags: review?(nalexander) → review+
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
This patch never landed, did it? Eric, typical practice is to resolve bugs once the patch lands on mozilla-central.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Hi Ryan, on this project, for the moment, we're committing changes through a GitHub repo [1], and then pushing to M-C as a separate workflow [2]. So this particular patch was landed through that pull request.

1. https://github.com/ericedens/FirefoxSearch/pull/12/files
2. https://bugzilla.mozilla.org/show_bug.cgi?id=1021864
Status: REOPENED → RESOLVED
Closed: 10 years ago10 years ago
Resolution: --- → FIXED
Fair enough. In the future, it's always good form to post changeset links to wherever you committed the patch to, though.
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: