[fossil-users] Evaluation Assurance Level (EAL) testing?

2010-04-06 Thread Stephen De Gabrielle
Hi,

does anyone know if fossil had been put through any EAL testing?

http://en.wikipedia.org/wiki/Evaluation_Assurance_Level

Cheers,

Stephen


--
Stephen De Gabrielle
stephen.degabrie...@acm.org
Telephone +44 (0)20 85670911
Mobile+44 (0)79 85189045
http://www.degabrielle.name/stephen
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Evaluation Assurance Level (EAL) testing?

2010-04-06 Thread D. Richard Hipp

On Apr 6, 2010, at 11:58 AM, Stephen De Gabrielle wrote:

 Hi,

 does anyone know if fossil had been put through any EAL testing?

I haven't done any EAL testing on Fossil and if anyone had, it seems  
like it would have probably been me.


 http://en.wikipedia.org/wiki/Evaluation_Assurance_Level

 Cheers,

 Stephen


 --
 Stephen De Gabrielle
 stephen.degabrie...@acm.org
 Telephone +44 (0)20 85670911
 Mobile+44 (0)79 85189045
 http://www.degabrielle.name/stephen
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

D. Richard Hipp
d...@hwaci.com



___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
Hi, all!

i'm developing a JavaScript RPC toolkit which i am of course hosting in
Fossil:


http://fossil.wanderinghorse.net/repos/JSONMessage/

that's all fine and good, but then i wanted to add a demo page. That
entailed adding a subdir under my project and leading the user there, of
course. But fossil defeats me...

If i have a link which simply says [demo/] then it treats it as a wiki page.
If i use [./demo] then when running in fossil ui mode fossil cannot find
the demo command (of course). i haven't tried [./demo] on the remote
server (CGI-based), but i suspect it _might_ work. i've tried using an A
HREF directly, but in local server mode that also gets intercepted.

My only working is using an absolute URL. The only problem with that is, if
i follow the link while using fossil ui then i end up on my remote server,
getting a different (probably older) copy of the demo.

i'm looking for a linking solution which will work both in local server
modes and CGI.

:-?

PS: this is not a big deal, just a minor annoyance. i'm not going to propose
any new features to support it if this cannot be done already.

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread verizon
Hi,

From advice I got previously here is how I can access a PDF that is in 
the repository with a relative link (works both locally and in a server)

[http:doc/tip/Ethernet/DOCS/npincomplete.pdf | Code Description 
(pdf) ]

Your link should work similarly.  The file is in code 
base/Ethernet/DOCS/npincomplete.pdf 

--jim


On 6 Apr, 2010, at 14:41, Stephan Beal wrote:

 Hi, all!
 
 i'm developing a JavaScript RPC toolkit which i am of course hosting in 
 Fossil:
 
 
 http://fossil.wanderinghorse.net/repos/JSONMessage/
 
 that's all fine and good, but then i wanted to add a demo page. That entailed 
 adding a subdir under my project and leading the user there, of course. But 
 fossil defeats me...
 
 If i have a link which simply says [demo/] then it treats it as a wiki page. 
 If i use [./demo] then when running in fossil ui mode fossil cannot find 
 the demo command (of course). i haven't tried [./demo] on the remote server 
 (CGI-based), but i suspect it _might_ work. i've tried using an A HREF 
 directly, but in local server mode that also gets intercepted.
 
 My only working is using an absolute URL. The only problem with that is, if i 
 follow the link while using fossil ui then i end up on my remote server, 
 getting a different (probably older) copy of the demo.
 
 i'm looking for a linking solution which will work both in local server modes 
 and CGI.
 
 :-?
 
 PS: this is not a big deal, just a minor annoyance. i'm not going to propose 
 any new features to support it if this cannot be done already.
 
 -- 
 - stephan beal
 http://wanderinghorse.net/home/stephan/
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
On Tue, Apr 6, 2010 at 9:10 PM, verizon vze35...@verizon.net wrote:

 From advice I got previously here is how I can access a PDF that is in the
 repository with a relative link (works both locally and in a server)

 [http:doc/tip/Ethernet/DOCS/npincomplete.pdf | Code Description (pdf) ]


That won't work in this case because...

The document i need to serve is a demo PHP page, which must be served by the
underlying web server. It uses JavaScript which requires a web server to be
able to POST messages to (it's an RPC framework, so it's all about passing
messages to/from the web server).

i was hoping i could link non-fossil'd subdirs without using absolute URLs
(including domain), but i haven't found a way to do it. They would be useful
because my public website is mirrored on my system, so i could simplify
local testing before updating the public server. But no big deal, in any
case.

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Rene de Zwart

Op Di, 6 april, 2010 23:03, schreef Stephan Beal:
 On Tue, Apr 6, 2010 at 9:10 PM, verizon vze35...@verizon.net wrote:

 From advice I got previously here is how I can access a PDF that is in
 the
 repository with a relative link (works both locally and in a server)

 [http:doc/tip/Ethernet/DOCS/npincomplete.pdf | Code Description (pdf) ]


 That won't work in this case because...

 The document i need to serve is a demo PHP page, which must be served by
 the
 underlying web server. It uses JavaScript which requires a web server to
 be
 able to POST messages to (it's an RPC framework, so it's all about passing
 messages to/from the web server).

 i was hoping i could link non-fossil'd subdirs without using absolute URLs
 (including domain), but i haven't found a way to do it. They would be
 useful
 because my public website is mirrored on my system, so i could simplify
 local testing before updating the public server. But no big deal, in any
 case.

 --
 - stephan beal
 http://wanderinghorse.net/home/stephan/
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Its is a bit odd to run 2 http servers (well maybe not that odd)
1) run fossil ui on port 8080
2) run apache (xampp) on port 80 for the php pages.
   use a link or a path to get de directory into the pages that apache
will serve. you could do [http://localhost/fossil/demo/my.php|php
demo].
It is the basic theme you could improve with virtual hosts so that your
development  system uses the same naming (of course you have to edit your
local hostfile )

-- 
Rene de Zwart

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
On Tue, Apr 6, 2010 at 11:36 PM, Rene de Zwart renew...@xs4all.nl wrote:

 Its is a bit odd to run 2 http servers (well maybe not that odd)


Fossil's running on my remote box as a CGI. On my local box apache serves 5
or 6 sites and fossil (on 8080) runs in ui mode quite often.


   use a link or a path to get de directory into the pages that apache
 will serve. you could do [http://localhost/fossil/demo/my.php|php
 demo].


That's what i do, but when i then upload to my remote repo that path no
longer works, and i don't want to update the wiki on every commit. Currently
i hard-code the link to the public site, and i don't see any way around
that. Maybe i could do it in TH, but that sounds like more hassle than it's
worth (i'm the only person affected by this problem).


 It is the basic theme you could improve with virtual hosts so that your
 development  system uses the same naming (of course you have to edit your
 local hostfile )


The development team == me, so nobody's hurting from this. Locally i
have/use vhosts, but i want to avoid setting up another subdomain on my
provider just for this mini-project.

Thanks for the attempt, though :).

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
On Wed, Apr 7, 2010 at 12:06 AM, Joshua Paine jos...@letterblock.comwrote:

 the PHP correctly. If http://fossil.wanderinghorse.net/demo/demo.php

were the right path, and it were working, you'd just write your link
 like a href=/demo/demo.phpMy Demo/a.


THAT i didn't think of: i could move the demo path outside of the CGI's path
while still keeping it in the webroot. That would almost solve my problem,
except that i still have to (a) hard-code the server name in the Wiki link
and (b) i can't redirect that server name via /etc/hosts entries because i
also want to be able to access the public site.



 But I think you said you also want it to work via `fossil ui`. That's
 impossible in plain HTML. `fossil ui` will start and connect to a web


i don't need the app to run in ui, i just would like to be able to link to
a server-local subdir (or a higher-level dir, as you just suggested) from a
wiki page running in ui mode.

i think the higher-up dir would serve my purpose better than my current
approach - i'll give that a try.

:)

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Joshua Paine
On 04/06/2010 06:10 PM, Stephan Beal wrote:
 THAT i didn't think of: i could move the demo path outside of the CGI's
 path while still keeping it in the webroot. That would almost solve my
 problem, except that i still have to (a) hard-code the server name in
 the Wiki link and

You do not have to hard-code the server name so long as its the same as 
the fossil repo is being served through. Just linking to /foo/bar 
means http://whatever-domain-we-are-on-now.com/foo/bar;. It's the / at 
the beginning that does that--just like a *nix filesystem path: `cd foo` 
changes to 'working_directory/foo', but `cd /foo` changes to /foo.

-- 
Joshua Paine
LetterBlock LLC
http://letterblock.com/
Web applications built with joy.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users