Oto Šimeček

Results 10 issues of Oto Šimeček

Hi, It would be great to be able to run apexdox from CLI in node.js to include it in our CI scripts. :) Though there seems to be quite a...

enhancement
needs investigation

Hi, in GlobalHeaderButton the is no longer (GlobalHeader has been probably refactored). Now it renders 2 nested s for non-dropdown GlobalHeaderButtons. https://github.com/salesforce/design-system-react/blob/9bf11922023e46e85ecc07f6fb376938180a1bcc/components/global-header/button.jsx#L32

global-header
stale

Currently if you try to add `Query.selectField('FORMAT(Amount) Amount')` the Query formating fails on: `checkFieldLevelSecurity(Schema.SObjectType objType, String fieldPath)` because it tries to get the whole String from fieldMap. `FunctionFieldTuple`s are supported...

Hi, First - Query.apex is awesome, however I have now pretty specific usecase: I need to set the conditionString of Condition directly - i.e. I have configuration object where there...

Hi, Tests fail when User have different timezone to GMT. Log: ``` RTest.toTest System.AssertException: Assertion Failed: Expected: 2017-12-31 23:00:00, Actual: 2018-01-01 00:00:00 in classes/RTest.cls:396:1 ``` This is in my opinion...

**Proposed Rule Name:** Type has correct capitalization **Proposed Category:** [Code Style] **Description:** Check if Type declaration and constructors have proper capitalization according to SFDX class cache. Alternatively if not possible...

a:new-rule

Added keycaps with homing notch

Hi, not sure in what tool you have designed these, but could you share the source files? Btw: awesome job - these look great :)

Test `JsepTest.timeTest()` fails on line 204 for User with GMT timezone: ### JsepTest.cls ```java ... node = (Jsep.TimeNode )new Jsep(s4).parse(); System.assertEquals(true, node.value!=v); // line 204 System.assertEquals(node.getType(), Jsep.JSEP_TIME); ... ``` ###...

Current behaviour: ``` new QueryBuilder(Account.class) .addConditions() .add(new QueryBuilder.SimpleCondition('Name = \'Test\'') .add(new QueryBuilder.SimpleCondition('Field2 = \'Test\'') .endConditions() .toString(); // returns SELECT Id FROM Account WHERE Name = 'Test' ``` Expected behaviour: ```...