Le 22/12/15 05:30, Vic Cekvenich a écrit :
> Hi Ben, I think I should check first, before I say things are missing.
> And it does appear that way. For example there are packages such as
> sslfilter under filter that show up in docs, yet when you check out the
> source code and search for those files, they are not there.
>
> It is my understanding that this mail list is for the mina project, so I
> guess I'm contacting the mina project that: there is missing source code
> that is documented on www in snippets and mina is an open source project.
> I would very much like to access the full source code documented - as
> linked by Emanuel:
> http://mina.apache.org/mina-project/xref/org/apache/mina/filter
> Cheers,
> Vic

We use git at MINA. Youc an get the full sources doing :

git clone http://git-wip-us.apache.org/repos/asf/mina.git mina

Now, what you get is the *full* MINA repo, and that includes MINA 3.0,
probably not what you want. Here is what you get when you run this command :

$ git tag
0.8.3
0.8.4
...
2.0.5
2.0.6
2.0.7
2.0.8
2.0.9
3.0.0-M1
3.0.0-M2
mina-parent-3.0.0-M1


You need to checkout the MINA 2.0.10 tag :

$ git checkout -b 2.0.10 2.0.10
Switched to a new branch '2.0.10'


That will allow you to see the full source used by this tag, and to
retreive the file you are looking at :

$ find . -name SslFilter.java
./mina-core/src/main/java/org/apache/mina/filter/ssl/SslFilter.java

I'll update the http://mina.apache.org/mina-project/sources.html page to
reflect that.

Thanks !

Reply via email to