The OpenCv Project

A new way to manage your users’ cv

Archive for the ‘en’ Category

The translation system

  • Filed under: dev, en
Jeudi
oct 30,2008

babel tower I know that a lot of you was waiting for this. And it’s going to be released really soon!

I’m actually working on the translation system. I’m preparing the english version, but there will probably be some mistakes to correct. So i count on you to help me translate the app!

To see the actual version of the translation, feel free to go on the new demonstration page, or on the new wiki of opencv manager.

And as always, the forum is THE place to discuss about OpenCV manager!

  • Commentaires fermés
  • Lundi
    oct 13,2008

    This is the second post of the Jquery plugin Selection series. If you didn’t read the others, take a look at this page.

    Jquery for the one who don’t know it (probably not a lot), as described on its homepage, is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.

    So today, i’m going to write about the Jquery Form Plugin, that you can find on the malsup.com website. Well, the description from the plugin’s website is clear: The jQuery Form Plugin allows you to easily and unobtrusively upgrade HTML forms to use AJAX. The main methods, ajaxForm and ajaxSubmit, gather information from the form element to determine how to manage the submit process. Both of these methods support numerous options which allows you to have full control over how the data is submitted. Submitting a form with AJAX doesn’t get any easier than this!.

    This is all you need to know! In a shorter version, you want to save a data from a form without reloading the page, then use Jform. How does it work:

    1. Go on the the Jquery Form Plugin, download the file on the repository: http://jqueryjs.googlecode.com/svn/trunk/plugins/form/jquery.form.js

    2. Add this line before your </head>:

    <script src="jquery.form.js" type="text/javascript" charset="utf-8"></script>

    3. Now add a simple form to your page. Nothing complicated:

    <form id="myForm" action="comment.php" method="post">
        Name: <input name="name" type="text" />
        Comment: <textarea name="comment"></textarea>
        <input type="submit" value="Submit Comment" />
    </form>

    4.And finally our Jquery code:

    <script type="text/javascript">
            $(document).ready(function() {
                $('#myForm').ajaxForm(function() {
                    alert("Thank you for your comment!");
                });
            });
    </script>

    Time to explain the code. Like with all our jquery scripts, we start with $(document).ready(function() {. $(”#myform”).ajaxForm(); will apply the « ajaxForm » plugin on our form with the “#myform“ id. The alert() in our function allows us to display a message after submitting.*

    You can use this plugin just like that. But here are some useful options. If you want to use them, modify your $(‘#myForm’).ajaxForm(function(){ …. }); to:

    var options = { 
            target:        '#output1',   // target element(s) to be updated with server response 
            beforeSubmit:  showRequest,  // pre-submit callback 
            success:       showResponse  // post-submit callback 
    
            // other available options: 
            //url:       url         // override for form's 'action' attribute 
            //type:      type        // 'get' or 'post', override for form's 'method' attribute 
            //dataType:  null        // 'xml', 'script', or 'json' (expected server response type) 
            //clearForm: true        // clear all form fields after successful submit 
            //resetForm: true        // reset the form after successful submit 
    
            // $.ajax options can be used here too, for example: 
            //timeout:   3000 
        }; 
    
        $('#myForm').ajaxForm(options);
    

    The beforeSubmit and succes options are useful to verify and validate the script, and then diplay data. The url option will be useful if you want to redirect your datas to another file when the javascript is enabled. The clearForm and resetForm options are clear. And one last thing, if you want to use some options of the $.ajax , you can.

    There is a lot of others great plugin for forms. If you want more informations about them, just make a little search on the jquery plugin repository. I’m waiting for your comments !

    We are on twitter :)

    Mardi
    oct 7,2008

    Well, all is in the title … Now, you can follow us on twitter at http://twitter.com/opencv . Have a good twit!

  • Commentaires fermés
  • And now ?

    • Filed under: dev, en
    Lundi
    oct 6,2008

    I want to share with you the roadmap for the v0.2 – Little Fixes.

    v0.2 – Little Fixes

    • Profile
      • New tab for the Ziki and LinkedIn profile
      • Regenerate a password
      • Add a picture to your CVedit of the 07.10.2008
    • WIADN
      • RSS Feed
    • Geolocalisation – User’s map

    And if i have the time, i will add the resume export to word and txt format.

    One thing important is that i will release an english version for non-french speakers.

    Want something else ?

    Mardi
    sept 30,2008

    No one to tell me that i forgot something a little bit important ?

    Here you can find the database.sql file to install … the database :) , or download the new

  • Commentaires fermés
  • Release: v0.1 – start

    Lundi
    sept 29,2008

    I’m proud to annonce you the first alpha release of OpenCV Manager.
    You can download it here: http://code.google.com/p/opencvmanager/

    Please, understand that the app is in early alpha stage and is not actually really stable.
    There are probably bugs, but with your help, the development will be faster!

    One note on the translations. As i said on the forum, the app is actually in french. Now that a first version of the app is released, i’m going to work on the translation system.

    I hope you will like it !

    Remember, the forum’s url is http://opencvmanager.kune.fr/community

  • Commentaires fermés
  • Now it’s working on IE !

    • Filed under: dev, en
    Lundi
    sept 8,2008

    Yes yes i know, you’ve waited a long time for that bug fix, and now it seems to work with both IE and Firefox.

    If you find news bugs (yes, you will …), tell me about it on the forum: http://opencvmanager.kune.fr/forum and I will try to fix it as soon as i can.

    Oh and by the way, this little baby is now on twitter too: http://twitter.com/opencv

    OpenCV Manager, open to the public!

    Mercredi
    sept 3,2008

    Hey people !!!

    Just to get you in touch with the news about the project smile
    You want to try it ? Now you can !!! But, as i said in a post, i’m going to host the first alpha release. You can log in at http://opencvmanager.kune.fr/demo/register.php
    If you find a bug, explain me what you were doing and i will fix it.

    Remember that the app isn’t actually compatible with IE. I’m working on it, there are just some code to change.

    If you want to see the demo page: http://opencvmanager.kune.fr/demo

    Thanks a lot !

  • Commentaires fermés
  • Mercredi
    sept 3,2008

    Just a little post to share with you a modification i’ve made of the Pass Meter Jquery Plugin.

    Initially, when you use the plugin, the strength meter appears in the password input.

    Now you can use it outside the input easily, just add the outsideElt option:

    var options = {outsideElt = '#myelt'};
    $('input#mypassword').attachPassMeter(options);

    where #myelt could be the class of your element or the id.

  • Commentaires fermés
  • Screenshot: Modify your Resume

    Samedi
    août 16,2008

    I’m coming with a screenshot of the page where you can modify your resume:

    Like it, don’t like it ? Tell me !!!

    Newsletter

    Enter your email address:

    Delivered by FeedBurner

    Ads

    Meta