Closed
Bug 235747
Opened 21 years ago
Closed 21 years ago
Move parser stuff into mozilla/parser
Categories
(Core :: DOM: HTML Parser, defect, P3)
Core
DOM: HTML Parser
Tracking
()
RESOLVED
FIXED
mozilla1.8alpha1
People
(Reporter: peterv, Assigned: peterv)
References
Details
Attachments
(2 files)
32.89 KB,
application/x-gzip
|
Details | |
12.71 KB,
patch
|
cls
:
review+
jst
:
superreview+
|
Details | Diff | Splinter Review |
We want to move mozilla/expat into mozilla/parser/expat and mozilla/htmlparser
into mozilla/parser/htmlparser. As soon as the cvs copies are done I'll attach
the necessary build/code changes here.
err.. what's happening here? Right now we're having two forks which seems like a
very bad idea.
Assignee | ||
Comment 2•21 years ago
|
||
I'm not going to do this during the freeze but unfortunately the repository
copies happened just before the start of the freeze. I'll handle the forks until
I land the makefile changes, shouldn't be too big a deal.
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
Priority: -- → P3
Target Milestone: --- → mozilla1.8alpha
Assignee | ||
Comment 3•21 years ago
|
||
Assignee | ||
Comment 4•21 years ago
|
||
Assignee | ||
Comment 5•21 years ago
|
||
Comment on attachment 147448 [details] [diff] [review]
v1 (without the allmakefiles.sh changes)
The allmakefiles.sh changes are in the gzipped patch (attachment 147447 [details]). I
replaced every occurence of expat with parser/expat and htmlparser with
parser/htmlparser.
Attachment #147448 -
Flags: review?(cls)
Comment 6•21 years ago
|
||
Nit:
+include $(DEPTH)/config/autoconf.mk
+
+DIRS = expat \
+ htmlparser
+
+include $(topsrcdir)/config/rules.mk
Everywhere else, a DIRS listing has a backslash after it. Is it missing from
htmlparser deliberately here?
Assignee | ||
Comment 7•21 years ago
|
||
I'll just put them on one line if it bothers you.
Attachment #147448 -
Flags: review?(cls) → review+
Assignee | ||
Updated•21 years ago
|
Attachment #147448 -
Flags: superreview?(jst)
Comment 8•21 years ago
|
||
Comment on attachment 147448 [details] [diff] [review]
v1 (without the allmakefiles.sh changes)
sr=jst
Check it in! Check it in! :-)
Attachment #147448 -
Flags: superreview?(jst) → superreview+
Comment 9•21 years ago
|
||
the DIRS from my understanding had stuff like in all other makefiles
(manually going from coment #6
+DIRS = expat \
+ htmlparser
+
where in actuality it would look like
+DIRS = expat \
+ htmlparser\
+ ${NULL}
to make adding in extra DIRS easy(ier). though some makefiles have it all on
one line also.
Assignee | ||
Comment 10•21 years ago
|
||
Checked in, old files removed.
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Comment 11•21 years ago
|
||
peterv: the preferred way to use DIRS is the second form justin cited in comment 9.
the reason is so that you can add or remove an item from the list without taking
blame for the entire list.
You need to log in
before you can comment on or make changes to this bug.
Description
•