Skip to content
#

routing

Here are 1,436 public repositories matching this topic...

ShannonChenCHN
ShannonChenCHN commented Jan 31, 2018

Thanks for open sourcing such a great project!

After reading the README documentation, I just couldn't understand the Handler Block Helper part.

The README documentation says:

This is specifically useful for cases in which you want a separate object or class to be the handler for a deeplink route. An example might be a view controller that you want to instantiate and present in respon

danpat
danpat commented Dec 14, 2018

It's possible to instantiate an OSRM object in Javascript like this:

    const osrmInstance = new OSRM({
        algorithm: 'CH',
        dataset_name: 'foo',
        mmap_memory: true
    });

This should throw an error - setting mmap_memory should require supplying a path, and this is incompatible with using dataset_name, which triggers using shared memory.

These opti

jacobemcken
jacobemcken commented Jan 2, 2020

I don't use Compojure on a regular basis (sometimes with years in between), so I always hit the wiki to find out how it is used. The basics are really intuitive and easy to get up and running. But I always struggle to figure out how the more complex stuff works. Specifically I have two reoccurring issues that I get stuck with every time, where I have to turn to web searches (usually ending up on S

grahammendick
grahammendick commented May 2, 2018

I'm submitting a ...

  • bug report
  • feature request
  • other (Please do not submit support requests here (below))

The Router Challenge aims to be to Routers what TodoMVC is to MV* frameworks. It offers the same Music Catalog application built in React using different Routers. For it to be succe

sworleys
sworleys commented Mar 11, 2020

In zebra/rt_netlink.c, we call vrf_lookup_by_id() when we get a route to find the associated vrf object for that table.

This should be improved to be a hash table mapping of Table ID to zebra_vrf object.

You would need to create a hash table probably in zebra/zebra_vrf.h that uses the table_id hash as a key and then update the code in vrf_lookup_by_id() to use this.

This shoul

o-alquimista
o-alquimista commented Jan 19, 2020

For projects using Symfony Flex, only Step 1 is needed. This information is usually given in the beginning of any instruction page in the Symfony docs, but is missing for this bundle. Users who are not yet familiar with how Flex works might attempt to follow the instructions needlessly.

  • I
PropreCity
PropreCity commented Nov 18, 2019

Before version 2.0 of Altorouter, I could make "/" character optional, if it was before an optional block parameter.

$router->map('GET', '/archives/[lmin:category]?', 'Article#archives');

It doesn't work anymore, the "/" is no longer an option. I can't access /archives, only /archives/.
In the documentation:
`.[:format]? // Match an optional parameter 'format' - a / o

bug
lemonbrain-mk
lemonbrain-mk commented Apr 19, 2020

Hey,

I did a lot of work for authorization for your project. The first one is to use your project with concrete5 and the second one is to authorize the requests with jwt including the websocket server. This would maybe be a good example package for your documentation, how somebody could include authorization? I know it's not an issue, but i dont know how to reach you :)
https://github.com/lemo

martinklepsch
martinklepsch commented Jan 3, 2018

Currently most of the examples in the README expect something after the /. Given that matching the "empty path" is a very common scenario users will want to accomplish it could be documented more prominently. I don't have more than anecdotal data on this but I'd expect that it is also often a source of confusion.

(def my-routes ["/" {"" :index ; I'm not even sure if this is correc
duhenglucky
duhenglucky commented Jan 10, 2019

As interface shows below:

    /**
     * <p>
     * Send batch messages to server.
     *
     * @param messages messages to be sent.
     */
    void send(List<Message> messages);

This API can lead to multiple behaviors, such as sending to multiple partitions, or the same partition, so how should we define the behavior of this method?

And this issue exists in many places, suc

Improve this page

Add a description, image, and links to the routing topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the routing topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.