/[MITgcm]/MITgcm/pkg/ctrl/ctrl_set_pack_xyz.F
ViewVC logotype

Log of /MITgcm/pkg/ctrl/ctrl_set_pack_xyz.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Links to HEAD: (view) (download) (annotate)
Sticky Tag:

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Tue Jun 16 20:20:26 2015 UTC (8 years, 10 months ago) by gforget
Branch: MAIN
CVS Tags: HEAD, checkpoint65n, checkpoint65o, checkpoint65p, checkpoint65q, checkpoint65r, checkpoint65s, checkpoint65t, checkpoint65u, checkpoint65v, checkpoint65w, checkpoint65x, checkpoint65y, checkpoint65z, checkpoint66a, checkpoint66b, checkpoint66c, checkpoint66d, checkpoint66e, checkpoint66f, checkpoint66g, checkpoint66h, checkpoint66i, checkpoint66j, checkpoint66k, checkpoint66l, checkpoint66m, checkpoint66n, checkpoint66o
Changes since 1.27: +15 -7 lines
Diff to previous 1.27
- ctrl_map_ini_genarr.F: rename xx_etan0 as xx_etan, consistent with
  the other initial condition controls; add numbers of characters.
- ctrl_set_pack_xy.F, etc.: replace tests for .NOT.ctrlSmoothCorrel2D
  with tests for doPackOld = (.NOT.ctrlSmoothCorrel2D).AND.(.NOT.ctrlUseGen)
  etc. to disentangle packing options from ALLOW_SMOOTH_CORREL2D/3D CPP options.


Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Mon Mar 23 21:07:37 2015 UTC (9 years, 1 month ago) by gforget
Branch: MAIN
CVS Tags: checkpoint65k, checkpoint65l, checkpoint65m
Changes since 1.26: +9 -1 lines
Diff to previous 1.26
- if autodiff is not compiled then use
  READ_REC_XY_RL/READ_REC_XYZ_RL instead
  of active read/write


Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Tue Aug 6 20:57:00 2013 UTC (10 years, 9 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint64m, checkpoint64n, checkpoint64o, checkpoint64p, checkpoint64q, checkpoint64r, checkpoint64s, checkpoint64t, checkpoint64u, checkpoint64v, checkpoint64w, checkpoint64x, checkpoint64y, checkpoint64z, checkpoint65, checkpoint65a, checkpoint65b, checkpoint65c, checkpoint65d, checkpoint65e, checkpoint65f, checkpoint65g, checkpoint65h, checkpoint65i, checkpoint65j
Changes since 1.25: +4 -3 lines
Diff to previous 1.25
- bug fix : dummy argument type


Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Fri Feb 1 19:25:32 2013 UTC (11 years, 3 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint64d, checkpoint64e, checkpoint64f, checkpoint64g, checkpoint64h, checkpoint64i, checkpoint64j, checkpoint64k, checkpoint64l
Changes since 1.24: +41 -24 lines
Diff to previous 1.24
More additions to enable simple rescaling of generic control variables


Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Tue Sep 4 14:58:53 2012 UTC (11 years, 8 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint63s, checkpoint64, checkpoint64a, checkpoint64b, checkpoint64c
Changes since 1.23: +7 -7 lines
Diff to previous 1.23
- ctrl_get_gen.F : replace #ifdef ALLOW_SMOOTH_CORREL2D with
  #ifdef ALLOW_SMOOTH, IF ctrlSmoothCorrel2D, IF useSMOOTH.
- ctrl_map_ini_gen.F : replace #ifdef ALLOW_SMOOTH_CORREL3D with
  #ifdef ALLOW_SMOOTH, IF ctrlSmoothCorrel3D, IF useSMOOTH.
- ctrl_set_pack_xy.F, ctrl_set_unpack_xy.F, ctrl_set_pack_xyz.F, ctrl_set_unpack_xyz.F :
  replace ALLOW_SMOOTH_CORREL2D/3D brackets with ctrlSmoothCorrel2D/3D.


Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Fri Aug 10 19:38:58 2012 UTC (11 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint63r
Changes since 1.22: +2 -2 lines
Diff to previous 1.22
rename CTRL_CPPOPTIONS.h to CTRL_OPTIONS.h


Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Tue Jul 19 12:44:36 2011 UTC (12 years, 9 months ago) by mlosch
Branch: MAIN
CVS Tags: checkpoint63a, checkpoint63b, checkpoint63c, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63p, checkpoint63q
Changes since 1.21: +3 -4 lines
Diff to previous 1.21
remove unused variables and some obsolete code


Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Thu Dec 23 02:43:43 2010 UTC (13 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint62q, checkpoint62r, checkpoint62s, checkpoint62t, checkpoint62u, checkpoint62v, checkpoint62w, checkpoint62x, checkpoint62y, checkpoint62z, checkpoint63
Changes since 1.20: +9 -9 lines
Diff to previous 1.20
change arg. list of S/R MDSIO_PASS_R4/8toRL/S.


Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Sun Sep 26 02:51:38 2010 UTC (13 years, 7 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint62l, checkpoint62m, checkpoint62n, checkpoint62o, checkpoint62p
Changes since 1.19: +193 -2 lines
Diff to previous 1.19
o pkg/ctrl: option ALLOW_PACKUNPACK_METHOD2

  provides an alternative way to handle pack/unpack in adjoint runs.
  Here we rely on commonly used, up-to-date, I/O mdsio routines
  (WRITE_REC_3D_RL.F and REC_REC_3D_RL.F) rather than on mdsio_gl.F.
  Indeed mdsio_gl.F, which is used only in pack/unpack, has not been
  thorougly maintained, which leads pack/unpack to fail in several situations.
  METHOD2 is expected to prove more robust and require less maintenance.
  It could eventually become the default. The basic testing was done
  with a a cube sphere, using exch2, multiple processors + mpi, multiple
  tiles per processor, and with discarded blank tiles. Unlike the current
  default, METHOD2 seemed to work just fine using singlecpuio or not,
  using processor sub-directories or not.


Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Tue Oct 9 00:00:01 2007 UTC (16 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint59i, checkpoint59j, checkpoint59k, checkpoint59l, checkpoint59m, checkpoint59n, checkpoint59o, checkpoint59p, checkpoint59q, checkpoint59r, checkpoint60, checkpoint61, checkpoint61a, checkpoint61b, checkpoint61c, checkpoint61d, checkpoint61e, checkpoint61f, checkpoint61g, checkpoint61h, checkpoint61i, checkpoint61j, checkpoint61k, checkpoint61l, checkpoint61m, checkpoint61n, checkpoint61o, checkpoint61p, checkpoint61q, checkpoint61r, checkpoint61s, checkpoint61t, checkpoint61u, checkpoint61v, checkpoint61w, checkpoint61x, checkpoint61y, checkpoint61z, checkpoint62, checkpoint62a, checkpoint62b, checkpoint62c, checkpoint62d, checkpoint62e, checkpoint62f, checkpoint62g, checkpoint62h, checkpoint62i, checkpoint62j, checkpoint62k
Changes since 1.18: +8 -6 lines
Diff to previous 1.18
add missing cvs $Header:$ or $Name:$


Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Tue Jun 19 03:42:30 2007 UTC (16 years, 10 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint59d, checkpoint59e, checkpoint59f, checkpoint59g, checkpoint59h
Changes since 1.17: +4 -0 lines
Diff to previous 1.17
pkg/smooth application to control vector


Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Thu Jun 14 18:55:36 2007 UTC (16 years, 10 months ago) by heimbach
Branch: MAIN
Changes since 1.16: +3 -0 lines
Diff to previous 1.16
Exclude global arrays if we dont need/want them
(thought we had checked this in a while ago, but apparently not)


Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Sat Jul 15 00:27:37 2006 UTC (17 years, 9 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint58m_post, checkpoint58n_post, checkpoint58o_post, checkpoint58p_post, checkpoint58q_post, checkpoint58r_post, checkpoint58s_post, checkpoint58t_post, checkpoint58u_post, checkpoint58v_post, checkpoint58w_post, checkpoint58x_post, checkpoint58y_post, checkpoint59, checkpoint59a, checkpoint59b, checkpoint59c
Changes since 1.15: +1 -1 lines
Diff to previous 1.15
bug, in preconditioning by delZnorm, at iteration 0


Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Sat May 27 17:07:21 2006 UTC (17 years, 11 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint58f_post, checkpoint58g_post, checkpoint58h_post, checkpoint58i_post, checkpoint58j_post, checkpoint58k_post, checkpoint58l_post
Changes since 1.14: +1 -2 lines
Diff to previous 1.14
Adding parameter delZexp (default = 0.)


Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Thu Apr 27 12:50:39 2006 UTC (18 years ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint58e_post
Changes since 1.13: +2 -1 lines
Diff to previous 1.13
o supressing admtlm-related vector output for now
  (such ad admtlm_vector, admtlm_eigen)


Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Tue Nov 1 04:09:46 2005 UTC (18 years, 6 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint57w_post, checkpoint57x_post, checkpoint57y_post, checkpoint57y_pre, checkpoint57z_post, checkpoint58, checkpoint58a_post, checkpoint58b_post, checkpoint58c_post, checkpoint58d_post
Changes since 1.12: +8 -0 lines
Diff to previous 1.12
Completely restructured the arpack2model interface.
Now (again) only 1-d wetpoint vector is passed to ARPACK.
ctrl_unpack/pack are mimiced by admtlm_dsvd2model/model2dsvd


Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Thu Jun 16 15:31:50 2005 UTC (18 years, 10 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpint57u_post, checkpoint57i_post, checkpoint57j_post, checkpoint57k_post, checkpoint57l_post, checkpoint57m_post, checkpoint57n_post, checkpoint57o_post, checkpoint57p_post, checkpoint57q_post, checkpoint57r_post, checkpoint57s_post, checkpoint57t_post, checkpoint57v_post
Changes since 1.11: +2 -1 lines
Diff to previous 1.11
Modify thickness rescaling from sqrt(dz(1)/dz(k)) to dz(1)/dz(k)


Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Thu Apr 7 23:38:43 2005 UTC (19 years, 1 month ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint57g_post, checkpoint57g_pre, checkpoint57h_done, checkpoint57h_post, checkpoint57h_pre
Changes since 1.10: +1 -1 lines
Diff to previous 1.10
o separate masks used for ctrl_pack/unpack 'from write_grid' output
  (suggested by G. Forget)
o added new control variables
  * init. uVel, vVel, etanN
  * lambda[Theta,Salt]ClimRelax


Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Wed Jan 12 23:39:39 2005 UTC (19 years, 3 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint57c_post, checkpoint57c_pre, checkpoint57d_post, checkpoint57e_post, checkpoint57f_post, checkpoint57f_pre, eckpoint57e_pre
Changes since 1.9: +9 -6 lines
Diff to previous 1.9
o introduce z-scaling of
  * gradient (doZscalePack) and
  * control (doZscaleUnpack)


Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Tue Jan 4 22:02:31 2005 UTC (19 years, 4 months ago) by heimbach
Branch: MAIN
Changes since 1.8: +75 -10 lines
Diff to previous 1.8
o Add ctrlvec diagnostics in pack/unpack for nondimensional I/O
o May be enabled via doPackDiag


Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Tue Nov 16 05:42:12 2004 UTC (19 years, 5 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint56, checkpoint56a_post, checkpoint56b_post, checkpoint56c_post, checkpoint57, checkpoint57a_post, checkpoint57a_pre, checkpoint57b_post
Changes since 1.7: +0 -11 lines
Diff to previous 1.7
More on dsvd vs. MITgcm interfacing
o handling of g_, ad, via admtlm_vector (mds...vector)
o use ctrl_pack/unpack for admtlm_vector I/O
o use optimcycle for dsvd iteration
o make sure norm is w.r.t. derived quantities


Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Thu Nov 6 22:05:08 2003 UTC (20 years, 6 months ago) by heimbach
Branch: MAIN
CVS Tags: branch-netcdf, checkpoint51u_post, checkpoint52, checkpoint52a_post, checkpoint52a_pre, checkpoint52b_post, checkpoint52b_pre, checkpoint52c_post, checkpoint52d_post, checkpoint52d_pre, checkpoint52e_post, checkpoint52e_pre, checkpoint52f_post, checkpoint52f_pre, checkpoint52h_pre, checkpoint52i_post, checkpoint52i_pre, checkpoint52j_post, checkpoint52j_pre, checkpoint52k_post, checkpoint52l_post, checkpoint52l_pre, checkpoint52m_post, checkpoint52n_post, checkpoint53, checkpoint53a_post, checkpoint53b_post, checkpoint53b_pre, checkpoint53c_post, checkpoint53d_post, checkpoint53d_pre, checkpoint53f_post, checkpoint53g_post, checkpoint54, checkpoint54a_post, checkpoint54a_pre, checkpoint54b_post, checkpoint54c_post, checkpoint54d_post, checkpoint54e_post, checkpoint54f_post, checkpoint55, checkpoint55a_post, checkpoint55b_post, checkpoint55c_post, checkpoint55d_post, checkpoint55d_pre, checkpoint55e_post, checkpoint55f_post, checkpoint55g_post, checkpoint55h_post, checkpoint55i_post, checkpoint55j_post, ecco_c52_e35, hrcube4, hrcube5, hrcube_1, hrcube_2, hrcube_3
Branch point for: netcdf-sm0
Changes since 1.6: +1 -6 lines
Diff to previous 1.6
o merging from ecco-branch
o cleaned some cross-dependencies and updated CPP options


Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Thu Oct 30 19:09:05 2003 UTC (20 years, 6 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint51q_post, checkpoint51r_post, checkpoint51s_post, checkpoint51t_post
Branch point for: branch-nonh
Changes since 1.5: +2 -3 lines
Diff to previous 1.5
ctrl package totally restructured
o pack/unpack now optional and decoupled from
  xx_/adxx_ I/O
o ctrl_pack/unpack cleaned
  (new routines ctrl_init_ctrlvar.F, pkg/ctrl/ctrl_init_wet.F)
o confined inclusion of AD_CONFIG.h to where necessary.


Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Thu Oct 23 04:41:40 2003 UTC (20 years, 6 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint51n_post, checkpoint51n_pre, checkpoint51o_post, checkpoint51o_pre, checkpoint51p_post
Branch point for: checkpoint51n_branch
Changes since 1.4: +4 -0 lines
Diff to previous 1.4
 o added the [#include "AD_CONFIG.h"] statement to all files that need
   it for adjoint/tl #defines
 o re-worked the build logic in genmake2 to support AD_CONFIG.h
 o removed tools/genmake since it no longer works


Revision 1.1.2.4 - (view) (download) (annotate) - [select for diffs]
Thu Sep 25 22:13:44 2003 UTC (20 years, 7 months ago) by heimbach
Branch: ecco-branch
Changes since 1.1.2.3: +1 -1 lines
Diff to previous 1.1.2.3 , to branch point 1.1 , to next main 1.28
o ctrl_set_... routines
  - changed cbuff to real*4 to accelerate I/O
  - bug fixes for sliced routines: affects indices jj,kk


Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Tue Jun 24 16:07:07 2003 UTC (20 years, 10 months ago) by heimbach
Branch: MAIN
CVS Tags: branchpoint-genmake2, checkpoint51, checkpoint51a_post, checkpoint51b_post, checkpoint51b_pre, checkpoint51c_post, checkpoint51d_post, checkpoint51e_post, checkpoint51f_post, checkpoint51f_pre, checkpoint51g_post, checkpoint51h_pre, checkpoint51i_post, checkpoint51i_pre, checkpoint51j_post, checkpoint51k_post, checkpoint51l_post, checkpoint51l_pre, checkpoint51m_post
Branch point for: branch-genmake2, tg2-branch
Changes since 1.3: +32 -3 lines
Diff to previous 1.3
Merging for c51 vs. e34


Revision 1.1.2.3 - (view) (download) (annotate) - [select for diffs]
Thu Jun 19 15:18:49 2003 UTC (20 years, 10 months ago) by heimbach
Branch: ecco-branch
CVS Tags: ecco_c50_e33, ecco_c50_e33a, ecco_c51_e34, ecco_c51_e34a, ecco_c51_e34b, ecco_c51_e34c, ecco_c51_e34d, ecco_c51_e34e, ecco_c51_e34f, ecco_c51_e34g
Changes since 1.1.2.2: +32 -3 lines
Diff to previous 1.1.2.2 , to branch point 1.1
o replaced mutiple ctrl_get... by single generic ctrl_get_gen.F
o somewhat cleaned ctrl_init structure
o Merged G. Gebbie's obcs changes (ctrl_getobcs?.F)
o Merged A. Koehl's modif's for effecive 2d I/O in ctrl_pack/unpack


Revision 1.1.2.2 - (view) (download) (annotate) - [select for diffs]
Fri Mar 7 03:06:41 2003 UTC (21 years, 2 months ago) by heimbach
Branch: ecco-branch
CVS Tags: ecco_c50_e28, ecco_c50_e29, ecco_c50_e30, ecco_c50_e31, ecco_c50_e32
Changes since 1.1.2.1: +0 -2 lines
Diff to previous 1.1.2.1 , to branch point 1.1
merging c49 and e27


Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Fri Nov 29 13:38:37 2002 UTC (21 years, 5 months ago) by heimbach
Branch: MAIN
CVS Tags: branch-exfmods-tag, c49_ctrl, checkpoint47b_post, checkpoint47c_post, checkpoint47d_post, checkpoint47d_pre, checkpoint47e_post, checkpoint47f_post, checkpoint47g_post, checkpoint47h_post, checkpoint47i_post, checkpoint47j_post, checkpoint48, checkpoint48a_post, checkpoint48b_post, checkpoint48c_post, checkpoint48c_pre, checkpoint48d_post, checkpoint48d_pre, checkpoint48e_post, checkpoint48f_post, checkpoint48g_post, checkpoint48h_post, checkpoint48i_post, checkpoint49, checkpoint50, checkpoint50a_post, checkpoint50b_post, checkpoint50b_pre, checkpoint50c_post, checkpoint50c_pre, checkpoint50d_post, checkpoint50d_pre, checkpoint50e_post, checkpoint50e_pre, checkpoint50f_post, checkpoint50f_pre, checkpoint50g_post, checkpoint50h_post, checkpoint50i_post
Branch point for: branch-exfmods-curt
Changes since 1.2: +0 -10 lines
Diff to previous 1.2
Controls of sst, sss, hfacc, bottomdrag.
(no ice climbing).


Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Sat Jul 13 02:47:32 2002 UTC (21 years, 10 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint46, checkpoint46a_post, checkpoint46a_pre, checkpoint46b_post, checkpoint46b_pre, checkpoint46c_post, checkpoint46c_pre, checkpoint46d_post, checkpoint46d_pre, checkpoint46e_post, checkpoint46e_pre, checkpoint46f_post, checkpoint46g_post, checkpoint46g_pre, checkpoint46h_post, checkpoint46h_pre, checkpoint46i_post, checkpoint46j_post, checkpoint46j_pre, checkpoint46k_post, checkpoint46l_post, checkpoint46l_pre, checkpoint46m_post, checkpoint46n_post, checkpoint47, checkpoint47a_post
Changes since 1.1: +175 -0 lines
Diff to previous 1.1
Merging new ctrl package from release1_p5:
o new ctrl package
  - adopted from ECCO environment to enable optimization
  - added Eliassen Palm fluxes to controls


Revision 1.1.4.1 - (view) (download) (annotate) - [select for diffs]
Fri Jul 12 15:43:54 2002 UTC (21 years, 10 months ago) by heimbach
Branch: release1
CVS Tags: release1_p10, release1_p11, release1_p12, release1_p12_pre, release1_p13, release1_p13_pre, release1_p14, release1_p15, release1_p16, release1_p17, release1_p5, release1_p6, release1_p7, release1_p8, release1_p9
Branch point for: release1_50yr
Changes since 1.1: +175 -0 lines
Diff to previous 1.1 , to next main 1.28
Incorporating new ctrl package.
o adopted from ECCO environment to enable optimization
o added Eliassen Palm fluxes to controls


Revision 1.1.2.1 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 20:23:58 2002 UTC (22 years, 3 months ago) by heimbach
Branch: ecco-branch
CVS Tags: ecco-branch-mod1, ecco-branch-mod2, ecco-branch-mod3, ecco-branch-mod4, ecco-branch-mod5, ecco_c44_e16, ecco_c44_e17, ecco_c44_e18, ecco_c44_e19, ecco_c44_e20, ecco_c44_e21, ecco_c44_e22, ecco_c44_e23, ecco_c44_e24, ecco_c44_e25, ecco_c44_e26, ecco_c44_e27, ecco_ice1, ecco_ice2, icebear2, icebear3, icebear4, icebear5
Branch point for: c24_e25_ice, icebear
Changes since 1.1: +167 -0 lines
Diff to previous 1.1
Starting from ecco-branch, replacing packages
cost, ctrl, ecco, obcs by ECCO packages.
Will create tag ecco-branch-mod1 after this modif.


Revision 1.1
Tue Feb 5 20:23:58 2002 UTC (22 years, 3 months ago) by heimbach
Branch: MAIN
Branch point for: ecco-branch, release1
FILE REMOVED
file ctrl_set_pack_xyz.F was initially added on branch ecco-branch.


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

  ViewVC Help
Powered by ViewVC 1.1.22