Yeah, the first run of arc lint creates the file, and subsequent runs do not update it.
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Oct 12 2023
Oct 6 2023
I've taken the habit of updating to "latest RC" whenever I make an RC cut (every 3-4 months?), and then leaving it there until I feel like updating to master.
"I feel like updating to master" ususally means "there's something interesting there", and unless it's only interesting to this install, I tend to also cut the RC while I'm at it (or wait for when I do that).
Oct 5 2023
great - see D25446
@fgaz can you try this and see if it it works for you?
I'm looking at PhutilLibraryMapBuilder:analyzeLibrary(), and it kinda looks like:
- if $this->fileSymbolMap is null, we call analyzeLibrary()`
- We load the data from the file if it's there
- We update the data
- We store it in $this->fileSymbolMap
- and we always save it to disk
There's no return in analyzeLibrary`, so if we got there, we'll save to disk. And there's no other write to fileSymbolMap, so we'll always get there.
Oct 3 2023
Sep 30 2023
Sep 27 2023
Sep 23 2023
So would the latter option mean doing $html_details = array($head, $more, implode(' ', $exceptions)); here? I kind of find this approach cleaner than appending a space to each item in the $exceptions array.
I don't think we have a specific task for "general UI text improvements" - there's the UX project, but "improve UX" is an ongoing process, so I don't think a single parent task is a good match.
Interestingly: https://secure.phabricator.com/T10574 argues for removal of the additional data from edges.
... whereas the $html_details is constructed as merely array($head, $more, $exceptions); ...
Sep 22 2023
Sep 18 2023
Sep 17 2023
Without a reproduction, this is speculative.
Why would a branch name be an integer and not a string?
Sep 15 2023
Yeah, I generally agree with "let the user set the width of the page"...
Sep 13 2023
Sep 11 2023
Can you add a couple of tests to https://we.phorge.it/source/arcanist/browse/master/src/utils/__tests__/cowsay/ ?
Sep 8 2023
Sep 5 2023
Did some digging, and it looks like Segoe is not something we can use:
Sep 4 2023
Sep 3 2023
Sep 1 2023
Nuance has a "GitHub Repository: Import issues and pull requests from a GitHub repository" Source Type - it might already be doing something related?
Aug 31 2023
hey, @ton - is this useful for you?
yeah, just default to https if it doesn't include a schema, and I think it should be fine in that regards.
There's probably already some method somewhere that looks at a uri and chooses HTTPFuture or HTTPSFuture based on the schema...
Aug 30 2023
Check out https://we.phorge.it/book/contrib/article/javascript_coding_standards/ and the Javeline docs here: https://github.com/phacility/javelin/tree/master/src/docs/concepts
(I'll try to render the Javeline guide here later).
See D25420 for a conflicting change...
ooh, check out D25349 for basically this exact use-case...
Aug 29 2023
Aug 28 2023
if you check the checkbox, it will use the current setting timezone.
Aug 27 2023
I'm thinking of adding similar handling for E_USER_NOTICE and E_USER_WARNING - to allow using them in extension code and in things like T15316 (Right now, we treat those as fatal errors too).
Aug 26 2023
Would taking care of the depreciations bump the minimum PHP version required to run Phorge?
Not in itself, but we do plan to bump the minimum to 7.1 (in T15047).
Aug 25 2023
Does not reproduce to me.
Which browser are you using? Are there any javascript errors?
Yeah, the dialog looks better then the extra notification...
Aug 24 2023
But it adds another notification, and now the user will have to pick between 2 buttons that say "solve conflict".
It's also not the common path - in the common case, we expect users to actually approve the timezone offered by the dialog (which should be the one detected from the browser).
0. Welcome!
- This diff is based of a commit that's not in master - some local changes that make it not-apply
- the space should be on the inside of the pht(), not attached to it.
- even better, find whatever is calling describeAutomaticCapability(), and if it accepts an array (some implementations return array, some return string), have the caller add a space between each element of the array - solving this once for all callers...
Adding another notification will only make this more annoying.
Aug 22 2023
This might be a Good Starter Task, I think - you'll need to add a class for the config, and pull the config value in diffusion.
go for it.
Aug 21 2023
a hack that might work: add a field in the document that's called "typeahead-text" or something, and put both title and callsign into it (and maybe number and short-name as well). Then use that field in the Datasource.
Since this is a full-text field, whatever the user types will fit this field...
rP99c9df96b4ffbf7 (2015) is the big "convert to Full Text Search" commit, but looks like it's not about Ferret (2017?).
I suspect that the code in People is the oldest one - this stuff blames to 2011! and does explicit sql stuff!
Yeah, that's probably good - that's the query for typeaheads and probably global search, but not for other cases.